/*# sourceMappingURL=maps/style.css.map */

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

@keyframes a {
	to {
		transform: rotate(1turn);
	}
}

:root {
	--swiper-theme-color: #007aff;
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.swiper, .swiper-wrapper {
	position: relative;
	z-index: 1;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	list-style: none;
	padding: 0;
	display: block;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
	transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	-webkit-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	-webkit-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	-webkit-scroll-snap-type: none;
	scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
	content: "";
	flex-shrink: 0;
	order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, .15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), transparent);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), transparent);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}

body.compensate-for-scrollbar {
	overflow: hidden;
}

.fancybox-active {
	height: auto;
}

.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden;
}

.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: 0;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}

*, .fancybox-container *, ::after, ::before {
	box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}

.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-caption {
	direction: ltr;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
}

.fancybox-caption, .fancybox-infobar, .fancybox-toolbar {
	opacity: 0;
	position: absolute;
}

.fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
	direction: ltr;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	transition: opacity .25s ease 0s, visibility 0s ease 0s;
	visibility: visible;
}

.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.fancybox-toolbar {
	right: 0;
	top: 0;
}

.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}

.fancybox-slide {
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}

.fancybox-slide:before {
	content: "";
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
	display: block;
}

.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0;
}

.fancybox-slide--image:before {
	display: none;
}

.fancybox-slide--html {
	padding: 6px;
}

.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}

.fancybox-image, .fancybox-slide--image .fancybox-content, .fancybox-spaceball {
	background: 0 0;
	left: 0;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(.5, 0, .14, 1);
	-webkit-backface-visibility: hidden;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	overflow: visible;
	transform-origin: top left;
	transition-property: transform, opacity;
	z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
	cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
	cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
	cursor: text;
}

.fancybox-image, .fancybox-spaceball {
	border: 0;
	height: 100%;
	margin: 0;
	max-height: none;
	width: 100%;
}

.fancybox-spaceball {
	z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%;
}

.fancybox-slide--video .fancybox-content {
	background: #000;
}

.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
	background: #fff;
}

.fancybox-iframe, .fancybox-video {
	background: 0 0;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0;
}

.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%;
}

.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

.fancybox-button {
	background: rgba(30, 30, 30, .6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px;
	color: #ccc;
}

.fancybox-button:link, .fancybox-button:visited {
	color: #ccc;
}

.fancybox-button:hover {
	color: #fff;
}

.fancybox-button:focus {
	outline: 0;
}

.fancybox-button.fancybox-focus {
	outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: 0;
}

.fancybox-button div {
	height: 100%;
}

.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}

.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
	display: none;
}

.fancybox-progress {
	background: #ff5268;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998;
}

.fancybox-close-small {
	background: 0 0;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401;
}

.fancybox-close-small:hover {
	color: #fff;
	opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small, .iv-search__form label {
	display: none;
}

.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px;
}

.fancybox-navigation .fancybox-button div {
	padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right);
}

.fancybox-caption {
	background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996;
}

@supports (padding:max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
	}
}

.fancybox-caption--separate {
	margin-top: -50px;
}

.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none;
}

.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}

.fancybox-loading {
	animation: a 1s linear infinite;
	background: 0 0;
	border: 4px solid #888;
	border-bottom-color: #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999;
}

.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
	transform: translateZ(0) scale(1);
}

@media (max-height:576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px;
	}
	
	.fancybox-slide--image {
		padding: 6px 0;
	}
	
	.fancybox-close-small {
		right: -6px;
	}
	
	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px;
	}
	
	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	@supports (padding:max(0px)) {
		.fancybox-caption {
			padding-left: max(12px, env(safe-area-inset-left));
			padding-right: max(12px, env(safe-area-inset-right));
		}
	}
}

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center;
}

.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px;
}

.fancybox-share p {
	margin: 0;
	padding: 0;
}

.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
	color: #fff;
}

.fancybox-share__button:hover {
	text-decoration: none;
}

.fancybox-share__button--fb {
	background: #3b5998;
}

.fancybox-share__button--fb:hover {
	background: #344e86;
}

.fancybox-share__button--pt {
	background: #bd081d;
}

.fancybox-share__button--pt:hover {
	background: #aa0719;
}

.fancybox-share__button--tw {
	background: #1da1f2;
}

.fancybox-share__button--tw:hover {
	background: #0d95e8;
}

.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px;
}

.fancybox-share__button svg path {
	fill: #fff;
}

.fancybox-share__input {
	background: 0 0;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0;
	outline: 0;
	padding: 10px 15px;
	width: 100%;
}

.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	width: 212px;
	z-index: 99995;
}

.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs, .iv-header__logo svg, .iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item.menu-item-has-children > a span, .iv-header__menu > .menu-item > a > span span, .iv-header__search-open svg, .iv-search__close svg {
	display: block;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}

.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: relative;
	white-space: nowrap;
	width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}

.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0, 0, 0, .1);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px;
}

.fancybox-thumbs__list a:before {
	border: 6px solid #ff5268;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
	opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
	opacity: 1;
}

@media (max-width:576px) {
	.fancybox-thumbs {
		width: 110px;
	}
	
	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}
	
	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px);
	}
}

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

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

hr {
	margin: 0;
	color: inherit;
	background-color: currentColor;
	border: 0;
	opacity: .25;
}

hr:not([size]) {
	height: 1px;
}

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

.h1:not(.iv-eyebrow), .h2:not(.iv-eyebrow), .h3:not(.iv-eyebrow), .h4:not(.iv-eyebrow), .h5:not(.iv-eyebrow), .h6:not(.iv-eyebrow), h1:not(.iv-eyebrow), h2:not(.iv-eyebrow), h3:not(.iv-eyebrow), h4:not(.iv-eyebrow), h5:not(.iv-eyebrow), h6:not(.iv-eyebrow) {
	margin: 0 0 25px;
	padding: 20px 0 0;
}

.h1:not(.iv-eyebrow):first-child, .h2:not(.iv-eyebrow):first-child, .h3:not(.iv-eyebrow):first-child, .h4:not(.iv-eyebrow):first-child, .h5:not(.iv-eyebrow):first-child, .h6:not(.iv-eyebrow):first-child, h1:not(.iv-eyebrow):first-child, h2:not(.iv-eyebrow):first-child, h3:not(.iv-eyebrow):first-child, h4:not(.iv-eyebrow):first-child, h5:not(.iv-eyebrow):first-child, h6:not(.iv-eyebrow):first-child {
	padding-top: 0;
}

.h1:not(.iv-eyebrow):last-child, .h2:not(.iv-eyebrow):last-child, .h3:not(.iv-eyebrow):last-child, .h4:not(.iv-eyebrow):last-child, .h5:not(.iv-eyebrow):last-child, .h6:not(.iv-eyebrow):last-child, h1:not(.iv-eyebrow):last-child, h2:not(.iv-eyebrow):last-child, h3:not(.iv-eyebrow):last-child, h4:not(.iv-eyebrow):last-child, h5:not(.iv-eyebrow):last-child, h6:not(.iv-eyebrow):last-child {
	margin-bottom: 0;
}

.h1, h1 {
	font-size: 1.5625rem;
	line-height: 1.15;
}

@media (min-width:768px) {
	.h1, h1 {
		font-size: 2.1875rem;
		line-height: 1.2;
	}
}

@media (min-width:1200px) {
	.h1, h1 {
		font-size: 3.125rem;
		line-height: 1.1;
	}
}

.h1-alt {
	font-size: 1.5625rem;
	line-height: 1.15;
}

@media (min-width:768px) {
	.h1-alt {
		font-size: 1.875rem;
		line-height: 1.2;
	}
}

@media (min-width:1200px) {
	.h1-alt {
		font-size: 2.5rem;
		line-height: 1.1;
	}
}

.h2, h2 {
	font-size: 1.875rem;
	line-height: 1.5;
}

@media (min-width:768px) {
	.h2, h2 {
		font-size: 2.1875rem;
		line-height: 1.3;
	}
}

@media (min-width:1200px) {
	.h2, h2 {
		font-size: 3.4375rem;
		line-height: 1.2;
	}
}

.h3, h3 {
	font-size: 1.75rem;
	line-height: 1.1;
}

@media (min-width:768px) {
	.h3, h3 {
		font-size: 1.875rem;
		line-height: 1.4;
	}
}

@media (min-width:1200px) {
	.h3, h3 {
		font-size: 2rem;
		line-height: 1.3;
	}
}

.h4, h4 {
	font-size: 1.5625rem;
	line-height: 1.2;
}

@media (min-width:768px) {
	.h4, h4 {
		font-size: 1.5rem;
		line-height: 1.35;
	}
}

.h5, .h6, h5, h6 {
	font-size: 1.25rem;
	line-height: 1.6;
}

@media (min-width:768px) {
	.h5, .h6, h5, h6 {
		font-size: 1.875rem;
	}
}

@media (min-width:1200px) {
	.h5, .h6, h5, h6 {
		font-size: 1.25rem;
	}
}

ol:last-child, p:last-child, ul:last-child {
	margin-bottom: 0;
}

abbr[data-bs-original-title], abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

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

ol, ul {
	padding: 0 0 0 20px;
}

ul {
	margin: 0 0 25px 20px;
	list-style-type: none;
}

ul ul {
	list-style-type: circle;
}

ul ul ul {
	list-style-type: square;
}

blockquote, q, sub, sup, ul > li {
	position: relative;
}

ul > li:before {
	content: "";
	position: absolute;
	top: clamp(.5rem, .5rem + ((1vw - .4rem) * 3.9063), .8125rem);
	left: -14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--deep-grey);
}

ol {
	margin: 0 0 25px 25px;
	list-style-position: outside;
}

dl {
	margin-bottom: 20px;
}

dd {
	margin: 0 20px 20px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-items a:hover, .iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item > .sub-menu .menu-item:hover a, b, dt, strong {
	font-weight: 700;
}

blockquote, q {
	padding: 0 0 0 40px;
	display: block;
}

small {
	font-size: 80%;
}

mark {
	background-color: #fcf8e3;
}

sub, sup {
	font-size: .75rem;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -4px;
}

sup {
	top: -8px;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre {
	background-color: #eee;
	line-height: 1.5;
	max-width: 100%;
	padding: 15px;
	text-align: left;
	display: block;
	margin-top: 0;
	margin-bottom: 15px;
	overflow: auto;
}

[dir=rtl] pre {
	text-align: right;
}

code, kbd, pre, samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	direction: ltr;
	unicode-bidi: bidi-override;
}

code, pre {
	font-size: .875rem;
}

code {
	color: #d63384;
	word-wrap: break-word;
	display: inline-block;
	padding: 3px 10px;
	border-radius: 3px;
}

kbd, samp {
	font-size: 1rem;
}

pre code {
	font-size: inherit;
	word-break: normal;
}

a > code, pre code {
	color: inherit;
}

kbd {
	padding: .2rem .4rem;
	font-size: .875em;
	color: #fff;
	background-color: #212529;
	border-radius: .2rem;
	padding: 2px 5px;
	border-radius: 4px;
}

kbd kbd {
	padding: 0;
	font-size: 1em;
	font-weight: 700;
}

figure {
	margin: 0 0 15px;
}

img, svg {
	vertical-align: middle;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
	width: 100%;
	border: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	margin: 15px 0 25px;
}

table caption {
	caption-side: top;
	text-align: center;
	padding-top: 0;
	padding-bottom: 10px;
	color: #6c757d;
}

code, table tfoot, table thead {
	background-color: #f9f9f9;
}

table tbody tr {
	border-bottom: 1px solid #eee;
}

table tbody tr:last-child {
	border-bottom: none;
}

table td, table th {
	padding: 10px 15px;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label, output {
	display: inline-block;
}

button {
	border-radius: 0;
}

.iv-header__top-bar a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
	outline: 0;
}

button, input, optgroup, select, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button, select {
	text-transform: none;
}

[role=button] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

select:disabled {
	opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
	display: none;
}

[type=button], [type=reset], [type=submit], button {
	-webkit-appearance: button;
}

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

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

textarea {
	resize: vertical;
}

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

legend {
	float: left;
	width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: calc(1.275rem + .3vw);
	line-height: inherit;
}

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

legend + * {
	clear: left;
}

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

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

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

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

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

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

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

iframe {
	border: 0;
}

summary {
	display: list-item;
	cursor: pointer;
}

progress {
	vertical-align: baseline;
}

[hidden] {
	display: none !important;
}

img {
	height: auto;
	max-width: 100%;
}

embed, iframe, object {
	margin-bottom: 20px;
	max-width: 100%;
}

button:focus, input:focus {
	outline: 0;
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
	display: block;
	margin: 5px auto;
}

.alignright, a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
}

.alignleft, .wp-caption.alignleft, .wp-caption.alignnone, a img.alignleft, a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #fff;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: left;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 12px;
	line-height: 17px;
	margin: 10px 0 0;
	padding: 0 4px 5px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: .875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.gallery {
	margin-left: -.5em;
	margin-right: -.5em;
}

.gallery:after {
	display: table;
	content: "";
	clear: both;
}

.gallery-item {
	margin: 0;
	float: left;
	padding: .5em;
}

.gallery-item img {
	width: 100%;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
	float: none;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1), .gallery-columns-3 .gallery-item:nth-child(3n+1), .gallery-columns-4 .gallery-item:nth-child(4n+1), .gallery-columns-5 .gallery-item:nth-child(5n+1), .gallery-columns-6 .gallery-item:nth-child(6n+1), .gallery-columns-7 .gallery-item:nth-child(7n+1), .gallery-columns-8 .gallery-item:nth-child(8n+1), .gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.iv-skip {
	position: fixed !important;
	top: -99999px;
	left: calc(( 100% - var(--wp--style--global--wide-size) ) / 2);
	opacity: 0;
}

.iv-skip:focus {
	opacity: 1;
	top: var(--header-height);
}

.iv-skip:focus-visible {
	opacity: 1;
	top: var(--header-height);
}

.iv-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 998;
	transition: top .3s;
}

.admin-bar .iv-header {
	top: 46px;
}

@media (min-width:783px) {
	.admin-bar .iv-header {
		top: 32px;
	}
}

.iv-is-scroll:not(.admin-bar) .iv-header {
	top: var(--header-bars-height-negative);
}

.iv-is-scroll.admin-bar .iv-header {
	top: calc(var(--header-bars-height-negative) + 46px);
}

@media (min-width:783px) {
	.iv-is-scroll.admin-bar .iv-header {
		top: calc(var(--header-bars-height-negative) + 32px);
	}
}

.iv-header__alert-bar, .iv-header__top-bar a {
	font-size: 1rem;
	line-height: 1.5;
	text-decoration: none;
	transition: all .4s;
}

.iv-header__alert-bar {
	background-color: var(--wp--preset--color--yellow);
	padding: 8px clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	color: var(--wp--preset--color--deep-grey);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.iv-header__alert-bar svg circle {
	transition: all .4s;
	fill: transparent;
}

@media (hover:hover) {
	.iv-header__alert-bar:hover svg circle {
		fill: var(--wp--preset--color--light-grey);
	}
}

.iv-header__top-bar {
	padding: 6px 0;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-header__top-bar > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

@media (max-width:767px) {
	.iv-header__top-bar > .iv-container-wide {
		justify-content: center;
	}
}

.iv-header__top-bar a {
	font-weight: 300;
	color: var(--wp--preset--color--light-grey);
	display: block;
	position: relative;
	margin-right: 20px;
}

@media (max-width:500px) {
	.iv-header__top-bar a {
		margin-right: 0;
	}
}

.iv-header__top-bar a:last-child {
	margin-right: 0;
}

.iv-header__top-bar a:last-child:before {
	display: none;
}

@media (hover:hover) {
	.iv-header__top-bar a:hover {
		color: var(--wp--preset--color--yellow);
	}
}

.iv-header__top-bar a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	width: 1px;
	height: 18px;
	background-color: var(--wp--preset--color--light-grey);
}

@media (max-width:500px) {
	.iv-header__top-bar a:before {
		right: -10px;
	}
}

.iv-header__top-bar a:focus {
	outline: 1px solid var(--wp--preset--color--light-grey);
}

.iv-header__top-bar a:focus-visible {
	outline: 1px solid var(--wp--preset--color--light-grey);
}

.iv-header__main {
	height: 60px;
	background-color: var(--wp--preset--color--beige);
}

@media (min-width:1200px) {
	.iv-header__main {
		height: 84px;
	}
}

.iv-header__main > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	height: inherit;
}

.iv-header__logo {
	display: block;
	width: 150px;
}

.iv-header__menu {
	height: inherit;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

@media (max-width:1199px) {
	.iv-header__menu {
		display: none;
	}
}

.iv-header__menu a, .iv-mobile-nav__menu a, .iv-search__results-item a {
	text-decoration: none;
}

.iv-header__menu > .menu-item {
	height: inherit;
}

.iv-header__menu > .menu-item:hover > a:before {
	width: 100%;
	right: auto;
	left: 0;
}

.iv-header__menu > .menu-item > a {
	height: inherit;
	display: flex;
	align-items: center;
	font-size: 1rem;
	line-height: 30px;
	position: relative;
}

.iv-header__menu > .menu-item > a:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 2px;
	left: auto;
	right: 0;
	background-color: var(--wp--preset--color--yellow);
	transition: all .5s;
}

.iv-header__menu > .menu-item > a > span {
	display: block;
	padding: 0 20px;
	border-radius: 16px;
	transition: border-color .3s;
}

.iv-header__menu > .menu-item.menu-item-has-children:hover > .sub-menu {
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	width: 676px;
	min-height: 580px;
	z-index: 999;
	transition: transform .5s, opacity .5s, visibility .5s;
	transform-origin: 50% 0;
	transform: scaleY(0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu.sub-menu-level-0.hover-level-two:before {
	width: 306px;
	opacity: 1;
	transition: width .4s 0s, opacity .4s 0s;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu:before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(100% - 32px);
	transition: width .4s .15s, opacity .4s .15s;
	width: 32px;
	opacity: 0;
	height: 100%;
	z-index: -1;
	background: var(--wp--preset--gradient--light-gradient);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	border-radius: 0 20px 20px 0;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__container {
	border-radius: 20px;
	background-color: var(--wp--preset--color--white);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	padding: 60px 0 60px 50px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	height: inherit;
	min-height: inherit;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info {
	flex: 0 0 250px;
	max-width: 250px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__separator {
	flex: 0 0 2px;
	max-width: 2px;
	background-color: var(--wp--preset--color--yellow);
	margin-left: 40px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info .h3, .iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info .h3 {
	margin-bottom: 19px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info-text {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info-btns {
	display: flex;
	flex-direction: column;
	margin-top: 27px;
	gap: 26px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-text {
	margin-top: 27px;
	font-weight: 700;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-items a {
	display: block;
	margin-top: 15px;
	cursor: pointer;
	font-size: 16px;
	transition: all .6s;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item:hover > a {
	font-weight: 700;
	background-color: var(--wp--preset--color--light-grey);
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item:hover > .sub-menu {
	left: 100%;
	opacity: 1;
	transition: left .4s .1s, opacity .4s .1s;
	pointer-events: initial;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item > a {
	display: block;
	line-height: 48px;
	font-size: 1rem;
	font-weight: 300;
	transition: all .6s;
	padding-left: 40px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item.menu-item-has-children:hover > a svg {
	opacity: 1;
	transform: translate(50%, -50%);
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item.menu-item-has-children > a {
	position: relative;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item.menu-item-has-children > a svg {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	display: block;
	transition: all .5s;
	opacity: 0;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item > .sub-menu {
	width: 274px;
	height: 100%;
	position: absolute;
	top: 0;
	left: calc(100% - 50px);
	opacity: 0;
	transition: left .4s 0s, opacity .4s 0s;
	padding: 60px 40px 60px 55px;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.iv-header__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__wrap > .menu-item > .sub-menu .menu-item a {
	display: block;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
	transition: all .6s;
}

.iv-header__functionality {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

@media (max-width:1199px) {
	.iv-header__functionality {
		display: none;
	}
}

.iv-header__open-menu, .iv-header__search-open {
	padding: 0;
	background-color: transparent;
	border: 0;
}

.iv-header__search-open {
	display: block;
	align-self: stretch;
}

.iv-header__open-menu {
	width: 44px;
	height: 31px;
	overflow: hidden;
	color: var(--wp--preset--color--black);
}

@media (min-width:1200px) {
	.iv-header__open-menu {
		display: none;
	}
}

.iv-header__open-menu.active span:nth-child(1) {
	margin-top: -35px;
}

.iv-header__open-menu span {
	display: block;
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	transition: all .4s;
}

.iv-header__open-menu span:nth-child(1) {
	margin-bottom: 5px;
}

.iv-header__open-menu span svg {
	display: block;
	margin-left: auto;
}

.iv-search-active {
	overflow: hidden;
}

.iv-search {
	position: fixed;
	top: var(--header-height);
	left: 0;
	bottom: 0;
	background-color: var(--wp--preset--color--white);
	width: 100%;
	z-index: 2147483660;
	overflow: auto;
	padding: 45px 0;
	transition: all .5s;
	opacity: 0;
	visibility: hidden;
}

@media (min-width:768px) {
	.iv-search {
		padding: 115px 0 45px;
	}
}

@media (min-width:1200px) {
	.iv-search {
		padding: 90px 0 45px;
	}
}

.iv-is-scroll:not(.admin-bar) .iv-search {
	top: var(--header-main-height);
}

.iv-is-scroll.admin-bar .iv-search {
	top: calc(var(--header-main-height) + 32px);
}

.iv-search-active .iv-search {
	opacity: 1;
	visibility: visible;
}

.iv-search__close {
	background-color: transparent;
	border: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.7;
	font-weight: 700;
	margin-bottom: 75px;
}

@media (min-width:768px) {
	.iv-search__close {
		margin-bottom: 60px;
	}
}

@media (min-width:1200px) {
	.iv-search__close {
		margin-bottom: 90px;
	}
}

.iv-search__close span {
	color: var(--wp--preset--color--black);
	line-height: 1;
}

.is-mac-os .iv-search__close span, .is-mac-os .iv-search__form [type=reset] .title {
	transform: translateY(.125rem);
}

.iv-search__form {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-bottom: 24px;
	margin-bottom: 80px;
	border-bottom: 1.5px solid #e5e5e5;
}

@media (min-width:1200px) {
	.iv-search__form {
		padding-bottom: 12px;
		margin-bottom: 90px;
	}
}

.iv-search__form [type=text] {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	font-size: 1.125rem;
	line-height: 1.35;
	font-weight: 300;
	border: 0;
	padding: 0;
}

.iv-search__form [type=text]::-webkit-input-placeholder {
	color: var(--wp--preset--color--deep-grey);
	opacity: 1;
}

.iv-search__form [type=text]::-moz-placeholder {
	color: var(--wp--preset--color--deep-grey);
	opacity: 1;
}

.iv-search__form [type=text]::placeholder {
	color: var(--wp--preset--color--deep-grey);
	opacity: 1;
}

@media (min-width:1200px) {
	.iv-search__form [type=text] {
		font-size: 2rem;
		line-height: 1.3;
	}
}

.iv-search__form [type=reset] {
	border: 0;
	background-color: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	gap: 10px;
	transition: all .4s;
	width: 45px;
	pointer-events: none;
}

.iv-search__form [type=reset] span {
	display: block;
}

.iv-search__form [type=reset].active {
	pointer-events: initial;
	width: 101px;
}

.iv-search__form [type=reset] .icon svg.active, .iv-search__form [type=reset].active .icon svg.deactivate {
	opacity: 0;
}

.iv-search__form [type=reset].active .icon svg.active {
	opacity: 1;
}

.iv-search__form [type=reset] .icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
	position: relative;
	overflow: hidden;
}

.iv-search__form [type=reset] .icon svg {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .4s;
}

.iv-search__form [type=reset] .title {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 18px;
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-search__results {
	display: flex;
	flex-wrap: wrap;
}

.iv-search__results > .h4 {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 60px;
}

@media (min-width:1200px) {
	.iv-search__results > .h4 {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
}

.iv-search__results-content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-search__results-content {
		flex: 0 0 716px;
		max-width: 716px;
	}
}

.iv-search__results-item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
}

.iv-search__results-item:last-child {
	margin-bottom: 0;
}

.iv-search__results-item-excerpt {
	margin-bottom: 30px;
}

.iv-mobile-nav {
	position: fixed;
	top: var(--header-height);
	left: 0;
	bottom: 0;
	transform: translateX(100%);
	background-color: var(--wp--preset--color--white);
	width: 100%;
	z-index: 2147483650;
	transition: transform .6s;
	overflow: auto;
}

@media (min-width:1200px) {
	.iv-mobile-nav {
		display: none;
	}
}

.admin-bar .iv-mobile-nav {
	top: calc(var(--header-height) + 46px);
}

@media (min-width:783px) {
	.admin-bar .iv-mobile-nav {
		top: calc(var(--header-height) + 32px);
	}
}

.iv-is-scroll:not(.admin-bar) .iv-mobile-nav {
	top: var(--header-main-height);
}

.iv-is-scroll.admin-bar .iv-mobile-nav {
	top: calc(var(--header-main-height) + 46px);
}

@media (min-width:783px) {
	.iv-is-scroll.admin-bar .iv-mobile-nav {
		top: calc(var(--header-main-height) + 32px);
	}
}

.iv-body-active-mobile-menu .iv-mobile-nav, .iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu.active {
	transform: translateX(0);
}

.iv-mobile-nav__container {
	padding: 55px 0 85px;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap, .iv-mobile-nav__menu > .menu-item > .menu-item-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	border-bottom: 1px solid #e5e5e5;
}

.iv-mobile-nav__menu > .menu-item > .menu-item-wrap a {
	display: block;
	font-size: 1.5rem;
	line-height: 1.35;
	padding: 1.89375rem 0;
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap .menu-item-open-sub-menu, .iv-mobile-nav__menu > .menu-item > .menu-item-wrap .menu-item-open-sub-menu {
	background-color: transparent;
	padding: 0;
	width: 45px;
	height: 45px;
	position: relative;
	border: 0;
}

.iv-btn span, .iv-mobile-nav__menu > .menu-item > .menu-item-wrap .menu-item-open-sub-menu svg, .iv-post span {
	display: block;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: auto;
	z-index: 5;
	background-color: var(--wp--preset--color--white);
	transform: translateX(-100%);
	transition: transform .6s;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu > .iv-container-wide {
	padding: 45px 0;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .iv-back-to-menu {
	background-color: transparent;
	border: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: 1.125rem;
	line-height: 1.7;
	font-weight: 700;
	margin-bottom: 45px;
	color: var(--wp--preset--color--deep-grey);
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--wp--preset--color--yellow);
	margin-bottom: 19px;
}

@media (min-width:768px) {
	.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info {
		padding-bottom: 50px;
		margin-bottom: 60px;
	}
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info-text {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__info-btns {
	display: flex;
	flex-direction: column;
	margin-top: 27px;
	gap: 20px;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-text {
	margin-top: 27px;
	font-weight: 700;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-items a {
	display: block;
	margin-top: 15px;
	cursor: pointer;
	font-size: 16px;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu__featured-items a:hover {
	font-weight: 700;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap a {
	display: block;
	font-size: 1.125rem;
	line-height: 1.35;
	padding: 2.146875rem 0;
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap .menu-item-open-sub-menu.active svg:nth-child(2) {
	transform: translate(-50%, -50%) rotate(0);
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap .menu-item-open-sub-menu svg, .iv-mobile-nav__search-open svg {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item > .menu-item-wrap .menu-item-open-sub-menu svg:nth-child(2) {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform .4s;
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu {
	display: none;
	margin: -1px clamp(-4.375rem, -1.5625rem + ((1vw - .36rem) * -23.4375), -1.5625rem) 0;
	padding: 53px clamp(1.875rem, 1.875rem + ((1vw - .36rem) * 41.6667), 6.875rem);
	background-color: var(--wp--preset--color--light-grey);
}

.iv-mobile-nav__menu > .menu-item.menu-item-has-children > .sub-menu .sub-menu .menu-item a {
	display: block;
	padding: 12px 0;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
}

.iv-mobile-nav__footer {
	display: flex;
	flex-wrap: wrap;
	margin-top: 75px;
	gap: 45px;
}

@media (min-width:768px) {
	.iv-mobile-nav__footer {
		align-items: center;
		justify-content: space-between;
	}
}

@media (max-width:767px) {
	.iv-mobile-nav__footer {
		flex-direction: column;
	}
}

.iv-mobile-nav__search-open {
	flex: 0 0 48px;
	max-width: 48px;
	height: 48px;
	display: block;
	background-color: transparent;
	border: 0;
	padding: 0;
	position: relative;
}

:focus, a:focus, button:not(.iv-btn):focus {
	outline: 1px solid var(--wp--preset--color--deep-grey);
}

:focus:not(:focus-visible), a:focus:not(:focus-visible), button:not(.iv-btn):focus:not(:focus-visible) {
	outline: 0;
}

:focus-visible, a:focus-visible, button:not(.iv-btn):focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
}

.iv-animate-text:not(.initialized) {
	visibility: hidden !important;
	opacity: 0 !important;
}

.iv-section-element:not(.initialized):not([class*=_is-preview]) {
	opacity: 0;
}

.iv-body-active-mobile-menu {
	overflow: hidden;
}

.main-wrapper {
	padding-top: var(--header-bars-height);
}

.main-wrapper > :not([class*=-section-element]):not(.alignwide):not(.alignfull) {
	max-width: var(--wp--style--global--content-size);
}

.main-wrapper > :not([class*=-section-element]):not(.alignfull) {
	margin-left: auto;
	margin-right: auto;
}

.main-wrapper > :not([class*=-section-element]).alignwide {
	max-width: var(--wp--style--global--wide-size);
}

.main-wrapper > :not([class*=-section-element]).alignfull {
	max-width: none;
}

.iv-container, .iv-container-wide {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto;
	margin-right: auto;
}

.iv-container-wide {
	max-width: var(--wp--style--global--wide-size);
}

.iv-btn {
	display: inline-flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: clamp(.9375rem, .9375rem + ((1vw - .36rem) * 1.5625), 1.125rem);
	line-height: 1.7;
	text-decoration: none;
	position: relative;
	font-weight: 700;
	background-color: transparent;
}

@media (min-width:1200px) {
	.iv-btn {
		font-size: 1.5rem;
	}
}

.iv-btn__title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.is-mac-os .iv-btn__title {
	transform: translateY(.125rem);
}

.iv-btn__icon {
	flex: 0 0 54px;
	max-width: 54px;
	width: 54px;
	height: 45px;
	position: relative;
	overflow: hidden;
}

.iv-btn__icon:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
	background-color: transparent;
	transition: background-color .4s;
}

.iv-btn__icon svg {
	display: block;
	position: absolute;
	top: 50%;
	left: -8px;
	transform: translateY(-50%);
	transition: left .4s;
	z-index: 5;
}

.iv-btn_primary-dark, .iv-btn_primary-light {
	gap: 17px;
}

@media (hover:hover) {
	.iv-btn_primary-dark:hover .iv-btn__icon:before, .iv-btn_primary-light:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-btn_primary-dark:hover .iv-btn__icon svg, .iv-btn_primary-light:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-btn_primary-dark:focus, .iv-btn_primary-light:focus {
	outline: 0;
}

.iv-btn_primary-black:focus:not(:focus-visible), .iv-btn_primary-dark:focus:not(:focus-visible), .iv-btn_primary-light:focus:not(:focus-visible), .iv-btn_primary-yellow:focus:not(:focus-visible), .iv-btn_secondary-dark:focus:not(:focus-visible), .iv-btn_secondary-light:focus:not(:focus-visible), .iv-navigation > div:focus:not(:focus-visible) {
	outline: 0;
}

.iv-btn_primary-dark:focus-visible, .iv-btn_primary-light:focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
	outline-offset: 4px;
}

.iv-btn_primary-dark:focus-visible .iv-btn__icon:before, .iv-btn_primary-light:focus-visible .iv-btn__icon:before {
	background-color: var(--wp--preset--color--yellow);
}

.iv-btn_primary-dark:focus-visible .iv-btn__icon svg, .iv-btn_primary-light:focus-visible .iv-btn__icon svg {
	left: 0;
}

.iv-btn_primary-dark {
	color: var(--wp--preset--color--deep-grey);
}

.iv-btn_primary-dark svg path {
	fill: var(--wp--preset--color--deep-grey);
}

.iv-btn_primary-light {
	color: var(--wp--preset--color--light-grey);
}

.iv-btn_primary-light svg path {
	fill: var(--wp--preset--color--light-grey);
}

.iv-btn_secondary-dark, .iv-btn_secondary-light {
	padding: 5px 40px 9px;
	border: 1px solid var(--wp--preset--color--yellow);
	border-radius: 27px;
	transition: color .4s, background-color .4s;
	gap: 12px;
}

@media (hover:hover) {
	.iv-btn_secondary-dark:hover, .iv-btn_secondary-light:hover {
		color: var(--wp--preset--color--deep-grey);
		background-color: var(--wp--preset--color--yellow);
	}
}

.iv-btn_secondary-dark:focus, .iv-btn_secondary-light:focus {
	outline: 0;
}

.iv-btn_secondary-dark:focus-visible, .iv-btn_secondary-light:focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
	outline-offset: 4px;
	color: var(--wp--preset--color--deep-grey);
	background-color: var(--wp--preset--color--yellow);
}

.iv-btn_secondary-dark {
	color: var(--wp--preset--color--deep-grey);
}

.iv-btn_secondary-light {
	color: var(--wp--preset--color--light-grey);
}

.iv-btn_primary-yellow {
	padding: 5px 40px 9px;
	background-color: var(--wp--preset--color--yellow) !important;
	color: var(--wp--preset--color--deep-grey) !important;
	border: 1px solid var(--wp--preset--color--yellow) !important;
	border-radius: 27px !important;
	transition: color .4s, background-color .4s;
	font-weight: 700;
}

.iv-btn_primary-yellow:focus {
	outline: 0;
}

.iv-btn_primary-yellow:focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
	outline-offset: 4px;
	color: var(--wp--preset--color--deep-grey) !important;
}

.iv-btn_primary-black {
	padding: 5px 40px 9px;
	background-color: var(--wp--preset--color--black) !important;
	color: var(--wp--preset--color--white) !important;
	border: 1px solid var(--wp--preset--color--black) !important;
	border-radius: 27px !important;
	transition: color .4s, background-color .4s, border-color .4s;
	font-weight: 700;
}

@media (hover:hover) {
	.iv-btn_primary-black:hover {
		background-color: var(--wp--preset--color--yellow) !important;
		color: var(--wp--preset--color--deep-grey) !important;
		border-color: var(--wp--preset--color--yellow) !important;
	}
}

.iv-btn_primary-black:focus {
	outline: 0;
}

.iv-btn_primary-black:focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
	outline-offset: 4px;
	background-color: var(--wp--preset--color--yellow) !important;
	color: var(--wp--preset--color--deep-grey) !important;
	border-color: var(--wp--preset--color--yellow) !important;
}

.iv-btn_hidden-title .iv-btn__title {
	display: none;
}

.iv-eyebrow {
	display: inline-block;
	font-size: 15px;
	line-height: 150%;
	color: #1f2022;
	text-decoration: none;
	font-style: normal;
	letter-spacing: 1.5px;
}

.iv-navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.iv-navigation > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	transition: all .4s;
}

.iv-navigation > div.swiper-button-prev {
	background-color: var(--wp--preset--color--black);
}

.iv-navigation > div.swiper-button-prev svg path {
	stroke: #fff;
}

.iv-navigation > div.swiper-button-next {
	background-color: var(--wp--preset--color--yellow);
}

.iv-navigation > div.swiper-button-lock {
	display: none !important;
}

.iv-navigation > div[aria-disabled=true] {
	opacity: .5;
	pointer-events: none;
	border-color: var(--wp--preset--color--deep-grey);
}

@media (hover:hover) {
	.iv-navigation > div:hover {
		background-color: var(--wp--preset--color--yellow);
	}
}

.iv-navigation > div:focus {
	outline: 0;
}

.iv-navigation > div:focus-visible {
	background-color: var(--wp--preset--color--yellow);
	border: 1px solid var(--wp--preset--color--deep-grey);
}

.iv-post {
	display: block;
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.iv-post .h4 {
	text-decoration: none;
	padding: 0;
	margin-bottom: 6px;
}

.iv-post__category-tile {
	position: absolute;
	background: #eba900;
	padding: 5px 15px;
	border-radius: 20px;
	top: 15px;
	left: 15px;
	text-transform: uppercase;
	color: #fff;
}

.iv-post__category-tile a {
	color: #fff;
	text-decoration: none;
}

.iv-post__category-tile-block-content {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: var(--wp--preset--color--beige);
	padding: 2px 15px;
	margin-bottom: 10px;
	border-radius: 20px;
	text-transform: uppercase;
	color: #000;
	font-size: .9rem;
}

.iv-post__category-tile-block-content a {
	color: #000;
	text-decoration: none;
}

@media (hover:hover) {
	.iv-post:hover .iv-post__img {
		border-radius: 21px 21px 0 0;
	}
	
	.iv-post:hover .iv-post__content {
		top: 0;
	}
	
	.iv-post:hover .iv-post__description {
		opacity: 1;
	}
	
	.iv-post:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-post:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-post__img {
	display: block;
	height: 196px;
	overflow: hidden;
	transition: top .4s;
}

@media (min-width:1200px) {
	.iv-post__img {
		height: 228px;
	}
}

.iv-post__img img, .iv-product-full-image__img img, .iv-product__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-post__trigger {
	height: 100%;
	min-height: 185px;
	padding: 20px 20px 85px;
}

@media (min-width:1200px) {
	.iv-post__trigger {
		padding: 40px 30px 87px;
	}
}

.iv-post__content {
	z-index: 2;
	width: 100%;
	background-color: var(--wp--preset--color--white);
	padding: 20px 20px 75px;
	transition: top .5s;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-post__content {
		padding: 20px 30px 80px;
	}
}

.iv-post__cats {
	display: flex !important;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.iv-post .iv-post__header-cats a, .iv-post .iv-post__header-cats span, .iv-post__cats a, .iv-post__cats span {
	background-color: var(--wp--preset--color--light-grey);
	border-radius: 10px;
	font-size: 1rem;
	line-height: 1.5;
	text-decoration: none;
	padding: 7px 22px;
}

.iv-post__description {
	font-size: 1rem;
	line-height: 1.5;
	opacity: 0;
	transition: opacity .5s;
}

.iv-post .iv-btn {
	display: flex;
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 4;
}

@media (min-width:1200px) {
	.iv-post .iv-btn {
		left: 30px;
		bottom: 22px;
	}
}

.iv-post .iv-post__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
	min-height: 70px;
}

.iv-post .iv-post__header-img {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.iv-post .iv-post__header-img img {
	width: auto;
	height: 70px;
	max-width: 130px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: right center;
	object-position: right center;
}

.iv-post .iv-post__header-cats {
	display: flex !important;
	flex-wrap: wrap;
	gap: 6px;
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-product-full-image {
	display: block;
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	height: 100%;
	min-height: 511px;
	position: relative;
	text-decoration: none;
}

@media (min-width:768px) {
	.iv-product-full-image {
		min-height: 513px;
	}
}

@media (min-width:1200px) {
	.iv-product-full-image {
		min-height: 567px;
	}
}

.iv-product span, .iv-product-full-image span {
	display: block;
}

.iv-product-full-image .h4 {
	padding: 0;
	margin-bottom: 6px;
}

@media (hover:hover) {
	.iv-product-full-image:hover .iv-product-full-image__img {
		transform: scale(1.1);
	}
	
	.iv-product-full-image:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-product-full-image:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-product-full-image__img {
	height: 196px;
	transition: all .5s;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-product-full-image__img {
		height: 228px;
	}
}

.iv-product-full-image__content {
	padding: 20px 20px 105px;
	position: relative;
}

@media (min-width:1200px) {
	.iv-product-full-image__content {
		padding: 40px 30px 107px;
	}
}

.iv-product-full-image__new-release {
	border-radius: 10px;
	padding: 7px 22px;
	font-size: 1rem;
	line-height: 1.5;
	background-color: var(--wp--preset--color--light-grey);
	margin-bottom: 20px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.iv-product-full-image__description {
	font-size: 1rem;
	line-height: 1.5;
}

.iv-product-full-image .iv-btn {
	display: flex;
	position: absolute;
	z-index: 4;
	right: 20px;
	bottom: 20px;
}

@media (min-width:1200px) {
	.iv-product-full-image .iv-btn {
		right: 30px;
		bottom: 22px;
	}
}

.iv-product {
	display: block;
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	height: 100%;
	min-height: 532px;
	position: relative;
	text-decoration: none;
}

@media (min-width:768px) {
	.iv-product {
		min-height: auto;
	}
}

@media (min-width:1200px) {
	.iv-product {
		padding-top: 27px;
		min-height: auto;
	}
}

.iv-product .h4 {
	padding: 0;
	margin-bottom: 6px;
}

@media (hover:hover) {
	.iv-product:hover .iv-product__img img {
		transform: scale(1.1);
	}
	
	.iv-product:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-product:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-product_full-width-image {
	padding-top: 0;
}

.iv-product_full-width-image .iv-product__img {
	width: 100%;
}

.iv-product_full-width-image .iv-product__img img {
	border-radius: 20px 20px 0 0;
	-o-object-fit: cover !important;
	object-fit: cover !important;
}

.iv-product__img {
	width: calc(100% - 40px);
	height: 284px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-product__img {
		height: 168px;
	}
}

@media (min-width:1200px) {
	.iv-product__img {
		width: calc(100% - 84px);
		height: 200px;
	}
}

.iv-product__img img {
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	transition: all .5s;
}

.iv-product__content {
	padding: 25px 20px 80px;
}

@media (min-width:768px) {
	.iv-product__content {
		padding: 25px 20px 80px;
	}
}

@media (min-width:1200px) {
	.iv-product__content {
		padding: 30px 20px 80px;
	}
}

.iv-product__new-release {
	border-radius: 10px;
	padding: 7px 22px;
	font-size: 1rem;
	line-height: 1.5;
	background-color: var(--wp--preset--color--light-grey);
	margin-bottom: 20px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.iv-product__new-release_none {
	opacity: 0;
	visibility: hidden;
}

.iv-product__description {
	font-size: 1rem;
	line-height: 1.5;
}

.iv-product .iv-btn {
	display: flex;
	position: absolute;
	z-index: 4;
	right: 20px;
	bottom: 20px;
}

@media (min-width:1200px) {
	.iv-product .iv-btn {
		right: 30px;
		bottom: 22px;
	}
}

.iv-resource-detail {
	padding-bottom: 100px;
	padding-top: 130px;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-resource-detail {
		padding-top: 84px;
	}
}

@media (min-width:1600px) {
	.iv-resource-detail .iv-resource-detail-top {
		align-items: flex-start;
		flex-direction: column;
	}
	
	.iv-resource-detail .iv-resource-detail-top .iv-resource-detail-top__content, .iv-resource-detail_event .iv-resource-detail-top .iv-resource-detail-top__content {
		padding-top: 35px;
	}
	
	.iv-resource-detail_event .iv-resource-detail-top {
		align-items: flex-start;
	}
}

.iv-resource-detail_event .iv-resource-detail__content {
	margin-top: 100px;
}

@media (min-width:1200px) {
	.iv-resource-detail_event .iv-resource-detail__content {
		margin-top: 60px;
	}
}

@media (min-width:1600px) {
	.iv-resource-detail_testimonial .iv-resource-detail-top {
		align-items: flex-start;
	}
	
	.iv-resource-detail_testimonial .iv-resource-detail-top .iv-resource-detail-top__content {
		padding-top: 35px;
	}
}

.iv-resource-detail__content {
	max-width: 867px;
	margin: 100px auto 0;
}

@media (min-width:1200px) {
	.iv-resource-detail__content {
		margin-top: 80px;
	}
}

.iv-resource-detail__redactor-content img {
	max-width: 100%;
	display: block;
	margin: 0 0 15px;
}

.iv-resource-detail__redactor-content > * {
	padding: 0;
	margin-bottom: 20px;
}

.iv-resource-detail__redactor-content blockquote, .iv-resource-detail__redactor-content q {
	margin: 40px 0;
	font-size: 1.5625rem;
	line-height: 1.2;
}

@media (min-width:768px) {
	.iv-resource-detail__redactor-content blockquote, .iv-resource-detail__redactor-content q {
		margin: 30px 0 20px;
		font-size: 1.5rem;
		line-height: 1.35;
	}
}

.iv-resource-detail__redactor-content h2 {
	font-size: 26px;
}

.iv-resource-detail__soc {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width:767px) {
	.iv-resource-detail__soc {
		justify-content: space-between;
	}
}

.iv-resource-detail__soc-items {
	display: flex;
	align-items: center;
	gap: 23px;
}

.iv-resource-detail__soc-item {
	width: 39px;
	height: 39px;
	display: block;
	color: var(--wp--preset--color--white);
	padding: 0;
	background-color: transparent;
	border: 0;
}

.iv-resource-detail__soc-item:hover {
	color: var(--wp--preset--color--yellow);
}

.iv-resource-detail__soc-item:hover svg circle {
	fill: currentColor;
}

.iv-resource-detail__soc-item svg {
	width: 100%;
	height: 100%;
}

.iv-resource-detail__soc-item svg circle {
	transition: all .3s cubic-bezier(.5, .02, .13, .5);
}

.iv-resource-detail__info {
	border-radius: 20px;
	background: var(--wp--preset--gradient--light-gradient);
	padding: 25px;
}

@media (min-width:768px) {
	.iv-resource-detail__info {
		padding: 50px;
	}
}

@media (min-width:1200px) {
	.iv-resource-detail__info {
		padding: 67px 103px;
	}
}

.iv-resource-detail__info:not(:last-child) {
	margin-bottom: 100px;
}

@media (min-width:1200px) {
	.iv-resource-detail__info:not(:last-child) {
		margin-bottom: 70px;
	}
}

.iv-resource-detail__info-btn {
	text-align: center;
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-resource-detail__info-items {
		position: relative;
	}
	
	.iv-resource-detail__info-items::after {
		content: "";
		width: 1px;
		height: 100%;
		position: absolute;
		background: var(--wp--preset--color--yellow);
		left: 0;
		top: 0;
	}
}

@media (min-width:1200px) {
	.iv-resource-detail__info-items {
		display: flex;
		flex-wrap: wrap;
	}
}

.iv-resource-detail__info-items:not(:last-child) {
	margin-bottom: 30px;
}

@media (max-width:767px) {
	.iv-resource-detail__info-items:not(:last-child) {
		margin-bottom: 25px;
	}
}

.iv-resource-detail__info-item {
	position: relative;
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-resource-detail__info-item {
		padding-left: 16px;
	}
}

@media (min-width:1200px) {
	.iv-resource-detail__info-item {
		padding: 0 30px;
	}
	
	.iv-resource-detail__info-item:first-child {
		padding-left: 0;
	}
	
	.iv-resource-detail__info-item:last-child {
		padding-right: 0;
	}
}

@media (max-width:767px) {
	.iv-resource-detail__info-item:not(:last-child) {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
}

.iv-resource-detail__info-item::after {
	content: "";
	position: absolute;
	height: calc(100% - 6px);
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	background: var(--wp--preset--color--yellow);
}

@media (max-width:1199px) {
	.iv-resource-detail__info-item::after {
		display: none;
	}
}

@media (max-width:767px) {
	.iv-resource-detail__info-item::after {
		content: "";
		width: 100%;
		height: 1px;
		position: absolute;
		display: block;
		bottom: 0;
		left: 0;
		top: auto;
		transform: translateY(0);
		background: var(--wp--preset--color--yellow);
	}
}

.iv-resource-detail__info-item:last-child::after {
	display: none;
}

@media (min-width:1200px) {
	.iv-resource-detail-top {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
}

.iv-resource-detail-top__content {
	width: 100%;
	flex-shrink: 0;
	margin-right: auto;
	max-width: 800px;
}

@media (min-width:1200px) {
	.iv-resource-detail-top__content {
		padding: 50px 70px 50px 0;
	}
}

@media (min-width:1600px) {
	.iv-resource-detail-top__content {
		padding: 50px 20px 50px 0;
	}
}

@media (max-width:1199px) {
	.iv-resource-detail-top__content {
		margin-bottom: 70px;
	}
}

.iv-resource-detail-top__content .h3 {
	padding-top: 0;
}

.iv-resource-detail-top__content .h3:not(:last-child) {
	margin-bottom: 17px;
}

.iv-resource-detail-top__back {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 20px;
	font-weight: 700;
	transition: all .4s;
}

.iv-resource-detail-top__back:not(:last-child) {
	margin-bottom: 32px;
}

.iv-resource-detail-top__back:hover {
	color: var(--wp--preset--color--yellow);
}

.iv-resource-detail-top__back:hover svg path {
	fill: var(--wp--preset--color--yellow);
}

.iv-resource-center-archive__search svg, .iv-resource-detail-top__back svg {
	display: block;
}

.iv-resource-detail-top__back svg path {
	transition: all .4s;
}

.iv-resource-detail-top__logo {
	max-width: 128px;
}

.iv-resource-detail-top__logo:not(:last-child) {
	margin-bottom: 17px;
}

.iv-resource-detail-top__eyebrow:not(:last-child) {
	margin-bottom: 32px;
}

@media (max-width:767px) {
	.iv-resource-detail-top__text {
		font-size: 16px;
		line-height: 1.5;
	}
}

.iv-resource-detail-top__text:not(:last-child) {
	margin-bottom: 36px;
}

@media (min-width:768px) {
	.iv-resource-detail-top__items {
		display: flex;
		flex-wrap: wrap;
	}
}

.iv-resource-detail-top__item {
	padding: 0 30px;
	position: relative;
}

@media (max-width:767px) {
	.iv-resource-detail-top__item {
		padding: 0 0 0 16px;
		font-size: 16px;
		line-height: 150%;
	}
	
	.iv-resource-detail-top__item:not(:last-child) {
		margin-bottom: 12px;
	}
}

@media (min-width:768px) {
	.iv-resource-detail-top__item:first-child {
		padding-left: 0;
	}
	
	.iv-resource-detail-top__item:last-child {
		padding-right: 0;
	}
}

.iv-resource-detail-top__item::after {
	content: "";
	position: absolute;
	height: calc(100% - 6px);
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	background: var(--wp--preset--color--yellow);
}

@media (max-width:767px) {
	.iv-resource-detail-top__item::after {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		left: 0;
		transform: translateY(-70%);
	}
}

@media (min-width:768px) {
	.iv-resource-detail-top__item:last-child::after {
		display: none;
	}
}

.iv-resource-detail-top__item span {
	text-transform: uppercase;
}

.iv-resource-center-archive {
	padding-top: 160px;
}

@media (min-width:1200px) {
	.iv-resource-center-archive {
		padding-top: 184px;
	}
}

.iv-resource-center-archive > .iv-container-wide > .h1 {
	margin-bottom: 25px;
	padding: 0;
}

.iv-resource-center-archive__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 100px;
}

.iv-resource-center-archive__header-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 65px;
}

@media (min-width:768px) {
	.iv-resource-center-archive__header-row {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-resource-center-archive__header-row {
		margin-bottom: 135px;
	}
}

.iv-resource-center-archive__categories {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.iv-resource-center-archive__categories-desktop {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	border-bottom: 1px solid #e5e5e5;
}

.iv-resource-center-archive__categories-desktop a {
	display: block;
	font-size: 1.125rem;
	text-decoration: none;
	font-weight: 700;
	padding-bottom: 18px;
	color: rgba(31, 32, 34, .7);
	transition: all .5s;
	position: relative;
}

.iv-resource-center-archive__categories-desktop a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	right: 0;
	left: auto;
	bottom: -1px;
	background-color: var(--wp--preset--color--yellow);
	transition: all .4s;
}

.iv-resource-center-archive__categories-desktop a.active, .iv-resource-center-archive__categories-desktop a:hover {
	color: #1f2022;
}

.iv-footer__menu-copyright .menu-item a:hover:before, .iv-resource-center-archive__categories-desktop a.active:before {
	width: 100%;
	left: 0;
	right: auto;
}

.iv-resource-center-archive__search {
	border: 0;
	background-color: transparent;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
}

.iv-resource-center-archive__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

@media (min-width:768px) {
	.iv-resource-center-archive__row {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-resource-center-archive__row {
		gap: 20px 25px;
	}
}

.iv-resource-center-archive__row > * {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-resource-center-archive__row > * {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
		height: auto;
	}
}

@media (min-width:1200px) {
	.iv-resource-center-archive__row > * {
		flex: 0 0 calc(33.33333% - 16.667px);
		max-width: calc(33.33333% - 16.667px);
	}
}

.iv-resource-center-archive__paginate {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 60px;
}

@media (min-width:768px) {
	.iv-resource-center-archive__paginate {
		margin-top: 70px;
	}
}

.iv-resource-center-archive__paginate .page-numbers {
	min-width: 40px;
	line-height: 40px;
	height: 40px;
	display: block;
	text-decoration: none;
	text-align: center;
	border-radius: 8px;
}

.iv-resource-center-archive__paginate .page-numbers.next, .iv-resource-center-archive__paginate .page-numbers.prev {
	position: relative;
}

.iv-resource-center-archive__paginate .page-numbers.next svg, .iv-resource-center-archive__paginate .page-numbers.prev svg {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iv-resource-center-archive__paginate .page-numbers.current {
	background-color: var(--wp--preset--color--yellow);
}

.iv-bg-white + .iv-bg-white {
	padding-top: 0;
}

@media (max-width:767px) {
	.iv-bg-white + .iv-bg-white.iv-product-cta {
		padding-top: 50px;
	}
}

.iv-error-page {
	padding: 130px 0 70px;
	text-align: center;
}

@media (min-width:1200px) {
	.iv-error-page {
		padding: 184px 0 100px;
	}
}

.iv-error-page .iv-btn {
	margin-top: 30px;
}

.swiper-notification {
	display: none !important;
}

.iv-preloader {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, .5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}

.iv-preloader img {
	max-width: 40px;
}

.ot-floating-button__front {
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/invue-cookie.svg") !important;
}

#ot-sdk-btn-floating .ot-floating-button__front {
	background-color: transparent !important;
}

.ot-floating-button__front.nitro-lazy {
	background-image: none !important;
}

.iv-product-configurator__row {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

@media (min-width:1200px) {
	.iv-product-configurator__row {
		gap: 80px;
	}
}

.iv-product-configurator__col {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-product-configurator__col {
		flex: 0 0 calc(50% - 40px);
		max-width: calc(50% - 40px);
	}
}

.iv-product-configurator__title {
	margin-bottom: 10px !important;
}

.iv-product-configurator__description {
	margin-bottom: 70px;
}

.iv-product-configurator__gallery, .iv-product-configurator__select {
	margin-bottom: 50px;
}

.iv-product-configurator__select label {
	font-size: 24px;
	line-height: 1.35;
	margin-bottom: 15px;
}

@media (min-width:1200px) {
	.iv-product-configurator__gallery {
		margin-bottom: 70px;
	}
}

.iv-product-configurator__gallery-item {
	display: block;
	margin: 0 auto;
	width: 340px;
	height: 340px;
	position: relative;
}

@media (min-width:1200px) {
	.iv-product-configurator__gallery-item {
		width: 580px;
		height: 580px;
	}
}

.iv-product-configurator__gallery-item img, .iv-product-configurator__thumbnails-item img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.iv-product-configurator__thumbnails .swiper-wrapper {
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.iv-product-configurator__thumbnails .swiper-slide {
	border: 1px solid transparent;
	width: auto;
}

.iv-product-configurator__thumbnails .swiper-slide-thumb-active {
	border-color: var(--wp--preset--color--yellow);
}

.iv-product-configurator__thumbnails-item {
	display: block;
	width: 90px;
	height: 90px;
	position: relative;
}

@media (min-width:1200px) {
	.iv-product-configurator__thumbnails-item {
		width: 103px;
		height: 103px;
	}
}

.iv-footer__container {
	padding-top: 90px;
	background: var(--wp--preset--color--midnight);
	color: var(--wp--preset--color--white);
}

.iv-footer__logo {
	display: block;
	width: 178px;
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-footer__logo {
		margin-bottom: 80px;
	}
}

@media (min-width:1200px) {
	.iv-footer__logo {
		margin-bottom: 85px;
	}
}

.iv-footer__logo svg {
	display: block;
	width: 100%;
	height: auto;
}

.iv-footer__row {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-footer__row {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

@media (max-width:767px) {
	.iv-footer__row {
		display: none;
	}
}

@media (min-width:768px) {
	.iv-footer__col {
		flex: 0 0 calc(33.33333% - 43.334px);
		max-width: calc(33.33333% - 43.334px);
	}
}

@media (min-width:1200px) {
	.iv-footer__col {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 190px;
	}
}

@media (max-width:767px) {
	.iv-footer__col {
		margin-bottom: 60px;
	}
	
	.iv-footer__col:last-child {
		margin-bottom: 0;
	}
}

.iv-footer__col-title {
	margin-bottom: 20px;
}

.iv-footer__row-mobile {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-footer__row-mobile {
		display: none;
	}
}

.iv-footer__col-mobile {
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
}

.iv-footer__menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.iv-footer__menu .menu-item:before, .iv-footer__menu-copyright .menu-item:before {
	display: none;
}

.iv-footer__menu .menu-item a {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-decoration: none;
	font-size: .875rem;
	line-height: 24px;
	font-weight: 300;
	transition: all .5s;
	position: relative;
	-webkit-text-decoration-color: var(--wp--preset--color--yellow);
	text-decoration-color: var(--wp--preset--color--yellow);
	text-underline-offset: 5px;
	color: #fff;
}

.iv-footer__menu .menu-item a:hover {
	text-decoration: underline;
	-webkit-text-decoration-color: var(--wp--preset--color--yellow) !important;
	text-decoration-color: var(--wp--preset--color--yellow) !important;
	text-decoration-thickness: 2px;
}

.iv-footer__copyright {
	background: var(--wp--preset--color--midnight);
	color: var(--wp--preset--color--white);
	display: flex;
	align-items: stretch;
	min-height: 300px;
	margin-top: -60px;
}

@media (min-width:768px) {
	.iv-footer__copyright {
		min-height: 400px;
	}
}

@media (min-width:1200px) {
	.iv-footer__copyright {
		margin-top: -300px;
		min-height: 450px;
	}
}

@media (max-width:767px) {
	.iv-footer__copyright {
		flex-direction: column;
		position: relative;
	}
}

.iv-footer__copyright-content {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
}

@media (max-width:767px) {
	.iv-footer__copyright-content {
		flex: 1;
		position: relative;
		z-index: 2;
	}
}

.iv-footer__copyright-content .iv-container-wide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.iv-footer__copyright-content .iv-container-wide .iv-footer__copyright-text {
	max-width: 545px;
}

.iv-footer__copyright-text {
	font-size: .875rem;
	line-height: 16px;
	padding: 60px 0;
}

@media (min-width:768px) {
	.iv-footer__copyright-text {
		padding: 80px 0;
	}
}

@media (max-width:767px) {
	.iv-footer__copyright-text {
		padding: 40px 0;
	}
}

.iv-footer__copyright-graphic {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media (max-width:767px) {
	.iv-footer__copyright-graphic {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: .1;
		z-index: 1;
	}
}

.iv-footer__copyright-graphic img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: right center;
	object-position: right center;
	display: block;
}

.iv-footer__languages {
	flex: 0 0 150px;
	max-width: 150px;
	color: #fff;
}

@media (max-width:500px) {
	.iv-footer__languages {
		flex: 0 0 100px;
		max-width: 100px;
	}
}

.iv-footer__languages .select2-container .select2-selection {
	padding: 0;
}

.iv-footer__languages .select2-container .select2-selection__rendered {
	padding-left: 30px;
	padding-top: 5px;
	position: relative;
}

.iv-footer__languages .select2-container .select2-selection__rendered:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/source/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/glob-white.svg");
}

.iv-footer__languages .select2-container .select2-selection__arrow {
	width: 12px;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/arrow-lang.svg");
}

.iv-footer__languages .select2-container .select2-selection__arrow.nitro-lazy {
	background-image: none !important;
}

.iv-footer__bottom {
	padding: 42px 0;
	background-color: var(--wp--preset--color--light-grey);
}

.iv-footer__bottom > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

@media (min-width:768px) {
	.iv-footer__bottom > .iv-container-wide {
		gap: 50px;
	}
}

.iv-footer__menu-copyright {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-footer__menu-copyright {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
}

@media (max-width:767px) {
	.iv-footer__menu-copyright {
		flex-direction: column;
		align-items: center;
	}
}

@media (min-width:768px) {
	.iv-footer__menu-copyright .menu-item {
		padding-right: 12px;
		border-right: 1px solid var(--wp--preset--color--deep-grey);
	}
	
	.iv-footer__menu-copyright .menu-item:last-child {
		padding-right: 0;
		border-right: none;
	}
}

.iv-footer__menu-copyright .menu-item a, .iv-footer__social a {
	display: block;
	font-size: 1rem;
	transition: all .4s;
	text-decoration: none;
}

.iv-footer__menu-copyright .menu-item a {
	line-height: 1.5;
	font-weight: 300;
	position: relative;
}

.iv-footer__menu-copyright .menu-item a:before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: auto;
	right: 0;
	width: 0;
	height: 2px;
	transition: all .5s;
}

.iv-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 23px;
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-footer__social {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
}

@media (max-width:767px) {
	.iv-footer__social {
		justify-content: center;
	}
}

.iv-footer__social a {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
	background-color: transparent;
	text-align: center;
	line-height: 39px;
}

.iv-footer__menu-copyright .menu-item a:before, .iv-footer__social a:hover {
	background-color: var(--wp--preset--color--yellow);
}

/*!
 * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
@keyframes fa-beat {
	0%, 90% {
		transform: scale(1);
	}
	
	45% {
		transform: scale(var(--fa-beat-scale, 1.25));
	}
}

@keyframes fa-bounce {
	0%, 64%, to {
		transform: scale(1, 1) translateY(0);
	}
	
	10% {
		transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
	}
	
	30% {
		transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
	}
	
	50% {
		transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
	}
	
	57% {
		transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -.125em));
	}
}

@keyframes fa-fade {
	50% {
		opacity: var(--fa-fade-opacity, .4);
	}
}

@keyframes fa-beat-fade {
	0%, to {
		opacity: var(--fa-beat-fade-opacity, .4);
		transform: scale(1);
	}
	
	50% {
		opacity: 1;
		transform: scale(var(--fa-beat-fade-scale, 1.125));
	}
}

@keyframes fa-flip {
	50% {
		transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
	}
}

@keyframes fa-shake {
	0% {
		transform: rotate(-15deg);
	}
	
	4% {
		transform: rotate(15deg);
	}
	
	24%, 8% {
		transform: rotate(-18deg);
	}
	
	12%, 28% {
		transform: rotate(18deg);
	}
	
	16% {
		transform: rotate(-22deg);
	}
	
	20% {
		transform: rotate(22deg);
	}
	
	32% {
		transform: rotate(-12deg);
	}
	
	36% {
		transform: rotate(12deg);
	}
	
	40%, to {
		transform: rotate(0deg);
	}
}

@keyframes fa-spin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(236, 172, 0, .4);
	}
	
	70% {
		box-shadow: 0 0 0 15px transparent;
	}
	
	to {
		box-shadow: 0 0 0 0 transparent;
	}
}

.fa {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
	font-family: "Font Awesome 6 Free";
}

.fa-brands, .fab {
	font-family: "Font Awesome 6 Brands";
}

.fa-1x {
	font-size: 1em;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-6x {
	font-size: 6em;
}

.fa-7x {
	font-size: 7em;
}

.fa-8x {
	font-size: 8em;
}

.fa-9x {
	font-size: 9em;
}

.fa-10x {
	font-size: 10em;
}

.fa-2xs {
	font-size: .625em;
	line-height: .1em;
	vertical-align: .225em;
}

.fa-xs {
	font-size: .75em;
	line-height: .08333em;
	vertical-align: .125em;
}

.fa-sm {
	font-size: .875em;
	line-height: .07143em;
	vertical-align: .05357em;
}

.fa-lg {
	font-size: 1.25em;
	line-height: .05em;
	vertical-align: -.075em;
}

.fa-xl {
	font-size: 1.5em;
	line-height: .04167em;
	vertical-align: -.125em;
}

.fa-2xl {
	font-size: 2em;
	line-height: .03125em;
	vertical-align: -.1875em;
}

.fa-fw {
	text-align: center;
	width: 1.25em;
}

.fa-ul {
	list-style-type: none;
	margin-left: var(--fa-li-margin, 2.5em);
	padding-left: 0;
}

.fa-ul > li {
	position: relative;
}

.fa-li {
	left: calc(var(--fa-li-width, 2em) * -1);
	position: absolute;
	text-align: center;
	width: var(--fa-li-width, 2em);
	line-height: inherit;
}

.fa-border {
	border-color: var(--fa-border-color, #eee);
	border-radius: var(--fa-border-radius, .1em);
	border-style: var(--fa-border-style, solid);
	border-width: var(--fa-border-width, .08em);
	padding: var(--fa-border-padding, .2em .25em .15em);
}

.fa-pull-left {
	float: left;
	margin-right: var(--fa-pull-margin, .3em);
}

.fa-pull-right {
	float: right;
	margin-left: var(--fa-pull-margin, .3em);
}

.fa-beat {
	animation-name: fa-beat;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-beat, .fa-beat-fade, .fa-bounce, .fa-fade {
	animation-duration: var(--fa-animation-duration, 1s);
}

.fa-bounce {
	animation-name: fa-bounce;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
}

.fa-beat-fade, .fa-fade {
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-fade {
	animation-name: fa-fade;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
}

.fa-beat-fade {
	animation-name: fa-beat-fade;
}

.fa-beat-fade, .fa-flip, .fa-shake, .fa-spin {
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
}

.fa-flip {
	animation-name: fa-flip;
	animation-duration: var(--fa-animation-duration, 1s);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake, .fa-spin {
	animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-shake {
	animation-name: fa-shake;
	animation-duration: var(--fa-animation-duration, 1s);
}

.fa-spin {
	animation-name: fa-spin;
	animation-duration: var(--fa-animation-duration, 2s);
}

.fa-spin-reverse {
	--fa-animation-direction: reverse;
}

.fa-pulse, .fa-spin-pulse {
	animation-name: fa-spin;
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion:reduce) {
	.fa-beat, .fa-beat-fade, .fa-bounce, .fa-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
		animation-delay: -1ms;
		animation-duration: 1ms;
		animation-iteration-count: 1;
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

.fa-rotate-90 {
	transform: rotate(90deg);
}

.fa-rotate-180, .select2-container.select2-container--open .select2-selection__arrow {
	transform: rotate(180deg);
}

.fa-rotate-270 {
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
	transform: scale(-1, -1);
}

.fa-rotate-by {
	transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: var(--fa-inverse, #fff);
}

.fa-0::before {
	content: "0";
}

.fa-1::before {
	content: "1";
}

.fa-2::before {
	content: "2";
}

.fa-3::before {
	content: "3";
}

.fa-4::before {
	content: "4";
}

.fa-5::before {
	content: "5";
}

.fa-6::before {
	content: "6";
}

.fa-7::before {
	content: "7";
}

.fa-8::before {
	content: "8";
}

.fa-9::before {
	content: "9";
}

.fa-fill-drip::before {
	content: "";
}

.fa-arrows-to-circle::before {
	content: "";
}

.fa-chevron-circle-right::before, .fa-circle-chevron-right::before {
	content: "";
}

.fa-at::before {
	content: "@";
}

.fa-trash-alt::before, .fa-trash-can::before {
	content: "";
}

.fa-text-height::before {
	content: "";
}

.fa-user-times::before, .fa-user-xmark::before {
	content: "";
}

.fa-stethoscope::before {
	content: "";
}

.fa-comment-alt::before, .fa-message::before {
	content: "";
}

.fa-info::before {
	content: "";
}

.fa-compress-alt::before, .fa-down-left-and-up-right-to-center::before {
	content: "";
}

.fa-explosion::before {
	content: "";
}

.fa-file-alt::before, .fa-file-lines::before, .fa-file-text::before {
	content: "";
}

.fa-wave-square::before {
	content: "";
}

.fa-ring::before {
	content: "";
}

.fa-building-un::before {
	content: "";
}

.fa-dice-three::before {
	content: "";
}

.fa-calendar-alt::before, .fa-calendar-days::before {
	content: "";
}

.fa-anchor-circle-check::before {
	content: "";
}

.fa-building-circle-arrow-right::before {
	content: "";
}

.fa-volleyball-ball::before, .fa-volleyball::before {
	content: "";
}

.fa-arrows-up-to-line::before {
	content: "";
}

.fa-sort-desc::before, .fa-sort-down::before {
	content: "";
}

.fa-circle-minus::before, .fa-minus-circle::before {
	content: "";
}

.fa-door-open::before {
	content: "";
}

.fa-right-from-bracket::before, .fa-sign-out-alt::before {
	content: "";
}

.fa-atom::before {
	content: "";
}

.fa-soap::before {
	content: "";
}

.fa-heart-music-camera-bolt::before, .fa-icons::before {
	content: "";
}

.fa-microphone-alt-slash::before, .fa-microphone-lines-slash::before {
	content: "";
}

.fa-bridge-circle-check::before {
	content: "";
}

.fa-pump-medical::before {
	content: "";
}

.fa-fingerprint::before {
	content: "";
}

.fa-hand-point-right::before {
	content: "";
}

.fa-magnifying-glass-location::before, .fa-search-location::before {
	content: "";
}

.fa-forward-step::before, .fa-step-forward::before {
	content: "";
}

.fa-face-smile-beam::before, .fa-smile-beam::before {
	content: "";
}

.fa-flag-checkered::before {
	content: "";
}

.fa-football-ball::before, .fa-football::before {
	content: "";
}

.fa-school-circle-exclamation::before {
	content: "";
}

.fa-crop::before {
	content: "";
}

.fa-angle-double-down::before, .fa-angles-down::before {
	content: "";
}

.fa-users-rectangle::before {
	content: "";
}

.fa-people-roof::before {
	content: "";
}

.fa-people-line::before {
	content: "";
}

.fa-beer-mug-empty::before, .fa-beer::before {
	content: "";
}

.fa-diagram-predecessor::before {
	content: "";
}

.fa-arrow-up-long::before, .fa-long-arrow-up::before {
	content: "";
}

.fa-burn::before, .fa-fire-flame-simple::before {
	content: "";
}

.fa-male::before, .fa-person::before {
	content: "";
}

.fa-laptop::before {
	content: "";
}

.fa-file-csv::before {
	content: "";
}

.fa-menorah::before {
	content: "";
}

.fa-truck-plane::before {
	content: "";
}

.fa-record-vinyl::before {
	content: "";
}

.fa-face-grin-stars::before, .fa-grin-stars::before {
	content: "";
}

.fa-bong::before {
	content: "";
}

.fa-pastafarianism::before, .fa-spaghetti-monster-flying::before {
	content: "";
}

.fa-arrow-down-up-across-line::before {
	content: "";
}

.fa-spoon::before, .fa-utensil-spoon::before {
	content: "";
}

.fa-jar-wheat::before {
	content: "";
}

.fa-envelopes-bulk::before, .fa-mail-bulk::before {
	content: "";
}

.fa-file-circle-exclamation::before {
	content: "";
}

.fa-circle-h::before, .fa-hospital-symbol::before {
	content: "";
}

.fa-pager::before {
	content: "";
}

.fa-address-book::before, .fa-contact-book::before {
	content: "";
}

.fa-strikethrough::before {
	content: "";
}

.fa-k::before {
	content: "K";
}

.fa-landmark-flag::before {
	content: "";
}

.fa-pencil-alt::before, .fa-pencil::before {
	content: "";
}

.fa-backward::before {
	content: "";
}

.fa-caret-right::before {
	content: "";
}

.fa-comments::before {
	content: "";
}

.fa-file-clipboard::before, .fa-paste::before {
	content: "";
}

.fa-code-pull-request::before {
	content: "";
}

.fa-clipboard-list::before {
	content: "";
}

.fa-truck-loading::before, .fa-truck-ramp-box::before {
	content: "";
}

.fa-user-check::before {
	content: "";
}

.fa-vial-virus::before {
	content: "";
}

.fa-sheet-plastic::before {
	content: "";
}

.fa-blog::before {
	content: "";
}

.fa-user-ninja::before {
	content: "";
}

.fa-person-arrow-up-from-line::before {
	content: "";
}

.fa-scroll-torah::before, .fa-torah::before {
	content: "";
}

.fa-broom-ball::before, .fa-quidditch-broom-ball::before, .fa-quidditch::before {
	content: "";
}

.fa-toggle-off::before {
	content: "";
}

.fa-archive::before, .fa-box-archive::before {
	content: "";
}

.fa-person-drowning::before {
	content: "";
}

.fa-arrow-down-9-1::before, .fa-sort-numeric-desc::before, .fa-sort-numeric-down-alt::before {
	content: "";
}

.fa-face-grin-tongue-squint::before, .fa-grin-tongue-squint::before {
	content: "";
}

.fa-spray-can::before {
	content: "";
}

.fa-truck-monster::before {
	content: "";
}

.fa-w::before {
	content: "W";
}

.fa-earth-africa::before, .fa-globe-africa::before {
	content: "";
}

.fa-rainbow::before {
	content: "";
}

.fa-circle-notch::before {
	content: "";
}

.fa-tablet-alt::before, .fa-tablet-screen-button::before {
	content: "";
}

.fa-paw::before {
	content: "";
}

.fa-cloud::before {
	content: "";
}

.fa-trowel-bricks::before {
	content: "";
}

.fa-face-flushed::before, .fa-flushed::before {
	content: "";
}

.fa-hospital-user::before {
	content: "";
}

.fa-tent-arrow-left-right::before {
	content: "";
}

.fa-gavel::before, .fa-legal::before {
	content: "";
}

.fa-binoculars::before {
	content: "";
}

.fa-microphone-slash::before {
	content: "";
}

.fa-box-tissue::before {
	content: "";
}

.fa-motorcycle::before {
	content: "";
}

.fa-bell-concierge::before, .fa-concierge-bell::before {
	content: "";
}

.fa-pen-ruler::before, .fa-pencil-ruler::before {
	content: "";
}

.fa-people-arrows-left-right::before, .fa-people-arrows::before {
	content: "";
}

.fa-mars-and-venus-burst::before {
	content: "";
}

.fa-caret-square-right::before, .fa-square-caret-right::before {
	content: "";
}

.fa-cut::before, .fa-scissors::before {
	content: "";
}

.fa-sun-plant-wilt::before {
	content: "";
}

.fa-toilets-portable::before {
	content: "";
}

.fa-hockey-puck::before {
	content: "";
}

.fa-table::before {
	content: "";
}

.fa-magnifying-glass-arrow-right::before {
	content: "";
}

.fa-digital-tachograph::before, .fa-tachograph-digital::before {
	content: "";
}

.fa-users-slash::before {
	content: "";
}

.fa-clover::before {
	content: "";
}

.fa-mail-reply::before, .fa-reply::before {
	content: "";
}

.fa-star-and-crescent::before {
	content: "";
}

.fa-house-fire::before {
	content: "";
}

.fa-minus-square::before, .fa-square-minus::before {
	content: "";
}

.fa-helicopter::before {
	content: "";
}

.fa-compass::before {
	content: "";
}

.fa-caret-square-down::before, .fa-square-caret-down::before {
	content: "";
}

.fa-file-circle-question::before {
	content: "";
}

.fa-laptop-code::before {
	content: "";
}

.fa-swatchbook::before {
	content: "";
}

.fa-prescription-bottle::before {
	content: "";
}

.fa-bars::before, .fa-navicon::before {
	content: "";
}

.fa-people-group::before {
	content: "";
}

.fa-hourglass-3::before, .fa-hourglass-end::before {
	content: "";
}

.fa-heart-broken::before, .fa-heart-crack::before {
	content: "";
}

.fa-external-link-square-alt::before, .fa-square-up-right::before {
	content: "";
}

.fa-face-kiss-beam::before, .fa-kiss-beam::before {
	content: "";
}

.fa-film::before {
	content: "";
}

.fa-ruler-horizontal::before {
	content: "";
}

.fa-people-robbery::before {
	content: "";
}

.fa-lightbulb::before {
	content: "";
}

.fa-caret-left::before {
	content: "";
}

.fa-circle-exclamation::before, .fa-exclamation-circle::before {
	content: "";
}

.fa-school-circle-xmark::before {
	content: "";
}

.fa-arrow-right-from-bracket::before, .fa-sign-out::before {
	content: "";
}

.fa-chevron-circle-down::before, .fa-circle-chevron-down::before {
	content: "";
}

.fa-unlock-alt::before, .fa-unlock-keyhole::before {
	content: "";
}

.fa-cloud-showers-heavy::before {
	content: "";
}

.fa-headphones-alt::before, .fa-headphones-simple::before {
	content: "";
}

.fa-sitemap::before {
	content: "";
}

.fa-circle-dollar-to-slot::before, .fa-donate::before {
	content: "";
}

.fa-memory::before {
	content: "";
}

.fa-road-spikes::before {
	content: "";
}

.fa-fire-burner::before {
	content: "";
}

.fa-flag::before {
	content: "";
}

.fa-hanukiah::before {
	content: "";
}

.fa-feather::before {
	content: "";
}

.fa-volume-down::before, .fa-volume-low::before {
	content: "";
}

.fa-comment-slash::before {
	content: "";
}

.fa-cloud-sun-rain::before {
	content: "";
}

.fa-compress::before {
	content: "";
}

.fa-wheat-alt::before, .fa-wheat-awn::before {
	content: "";
}

.fa-ankh::before {
	content: "";
}

.fa-hands-holding-child::before {
	content: "";
}

.fa-asterisk::before {
	content: "*";
}

.fa-check-square::before, .fa-square-check::before {
	content: "";
}

.fa-peseta-sign::before {
	content: "";
}

.fa-header::before, .fa-heading::before {
	content: "";
}

.fa-ghost::before {
	content: "";
}

.fa-list-squares::before, .fa-list::before {
	content: "";
}

.fa-phone-square-alt::before, .fa-square-phone-flip::before {
	content: "";
}

.fa-cart-plus::before {
	content: "";
}

.fa-gamepad::before {
	content: "";
}

.fa-circle-dot::before, .fa-dot-circle::before {
	content: "";
}

.fa-dizzy::before, .fa-face-dizzy::before {
	content: "";
}

.fa-egg::before {
	content: "";
}

.fa-house-medical-circle-xmark::before {
	content: "";
}

.fa-campground::before {
	content: "";
}

.fa-folder-plus::before {
	content: "";
}

.fa-futbol-ball::before, .fa-futbol::before, .fa-soccer-ball::before {
	content: "";
}

.fa-paint-brush::before, .fa-paintbrush::before {
	content: "";
}

.fa-lock::before {
	content: "";
}

.fa-gas-pump::before {
	content: "";
}

.fa-hot-tub-person::before, .fa-hot-tub::before {
	content: "";
}

.fa-map-location::before, .fa-map-marked::before {
	content: "";
}

.fa-house-flood-water::before {
	content: "";
}

.fa-tree::before {
	content: "";
}

.fa-bridge-lock::before {
	content: "";
}

.fa-sack-dollar::before {
	content: "";
}

.fa-edit::before, .fa-pen-to-square::before {
	content: "";
}

.fa-car-side::before {
	content: "";
}

.fa-share-alt::before, .fa-share-nodes::before {
	content: "";
}

.fa-heart-circle-minus::before {
	content: "";
}

.fa-hourglass-2::before, .fa-hourglass-half::before {
	content: "";
}

.fa-microscope::before {
	content: "";
}

.fa-sink::before {
	content: "";
}

.fa-bag-shopping::before, .fa-shopping-bag::before {
	content: "";
}

.fa-arrow-down-z-a::before, .fa-sort-alpha-desc::before, .fa-sort-alpha-down-alt::before {
	content: "";
}

.fa-mitten::before {
	content: "";
}

.fa-person-rays::before {
	content: "";
}

.fa-users::before {
	content: "";
}

.fa-eye-slash::before {
	content: "";
}

.fa-flask-vial::before {
	content: "";
}

.fa-hand-paper::before, .fa-hand::before {
	content: "";
}

.fa-om::before {
	content: "";
}

.fa-worm::before {
	content: "";
}

.fa-house-circle-xmark::before {
	content: "";
}

.fa-plug::before {
	content: "";
}

.fa-chevron-up::before {
	content: "";
}

.fa-hand-spock::before {
	content: "";
}

.fa-stopwatch::before {
	content: "";
}

.fa-face-kiss::before, .fa-kiss::before {
	content: "";
}

.fa-bridge-circle-xmark::before {
	content: "";
}

.fa-face-grin-tongue::before, .fa-grin-tongue::before {
	content: "";
}

.fa-chess-bishop::before {
	content: "";
}

.fa-face-grin-wink::before, .fa-grin-wink::before {
	content: "";
}

.fa-deaf::before, .fa-deafness::before, .fa-ear-deaf::before, .fa-hard-of-hearing::before {
	content: "";
}

.fa-road-circle-check::before {
	content: "";
}

.fa-dice-five::before {
	content: "";
}

.fa-rss-square::before, .fa-square-rss::before {
	content: "";
}

.fa-land-mine-on::before {
	content: "";
}

.fa-i-cursor::before {
	content: "";
}

.fa-stamp::before {
	content: "";
}

.fa-stairs::before {
	content: "";
}

.fa-i::before {
	content: "I";
}

.fa-hryvnia-sign::before, .fa-hryvnia::before {
	content: "";
}

.fa-pills::before {
	content: "";
}

.fa-face-grin-wide::before, .fa-grin-alt::before {
	content: "";
}

.fa-tooth::before {
	content: "";
}

.fa-v::before {
	content: "V";
}

.fa-bangladeshi-taka-sign::before {
	content: "";
}

.fa-bicycle::before {
	content: "";
}

.fa-rod-asclepius::before, .fa-rod-snake::before, .fa-staff-aesculapius::before, .fa-staff-snake::before {
	content: "";
}

.fa-head-side-cough-slash::before {
	content: "";
}

.fa-ambulance::before, .fa-truck-medical::before {
	content: "";
}

.fa-wheat-awn-circle-exclamation::before {
	content: "";
}

.fa-snowman::before {
	content: "";
}

.fa-mortar-pestle::before {
	content: "";
}

.fa-road-barrier::before {
	content: "";
}

.fa-school::before {
	content: "";
}

.fa-igloo::before {
	content: "";
}

.fa-joint::before {
	content: "";
}

.fa-angle-right::before {
	content: "";
}

.fa-horse::before {
	content: "";
}

.fa-q::before {
	content: "Q";
}

.fa-g::before {
	content: "G";
}

.fa-notes-medical::before {
	content: "";
}

.fa-temperature-2::before, .fa-temperature-half::before, .fa-thermometer-2::before, .fa-thermometer-half::before {
	content: "";
}

.fa-dong-sign::before {
	content: "";
}

.fa-capsules::before {
	content: "";
}

.fa-poo-bolt::before, .fa-poo-storm::before {
	content: "";
}

.fa-face-frown-open::before, .fa-frown-open::before {
	content: "";
}

.fa-hand-point-up::before {
	content: "";
}

.fa-money-bill::before {
	content: "";
}

.fa-bookmark::before {
	content: "";
}

.fa-align-justify::before {
	content: "";
}

.fa-umbrella-beach::before {
	content: "";
}

.fa-helmet-un::before {
	content: "";
}

.fa-bullseye::before {
	content: "";
}

.fa-bacon::before {
	content: "";
}

.fa-hand-point-down::before {
	content: "";
}

.fa-arrow-up-from-bracket::before {
	content: "";
}

.fa-folder-blank::before, .fa-folder::before {
	content: "";
}

.fa-file-medical-alt::before, .fa-file-waveform::before {
	content: "";
}

.fa-radiation::before {
	content: "";
}

.fa-chart-simple::before {
	content: "";
}

.fa-mars-stroke::before {
	content: "";
}

.fa-vial::before {
	content: "";
}

.fa-dashboard::before, .fa-gauge-med::before, .fa-gauge::before, .fa-tachometer-alt-average::before {
	content: "";
}

.fa-magic-wand-sparkles::before, .fa-wand-magic-sparkles::before {
	content: "";
}

.fa-e::before {
	content: "E";
}

.fa-pen-alt::before, .fa-pen-clip::before {
	content: "";
}

.fa-bridge-circle-exclamation::before {
	content: "";
}

.fa-user::before {
	content: "";
}

.fa-school-circle-check::before {
	content: "";
}

.fa-dumpster::before {
	content: "";
}

.fa-shuttle-van::before, .fa-van-shuttle::before {
	content: "";
}

.fa-building-user::before {
	content: "";
}

.fa-caret-square-left::before, .fa-square-caret-left::before {
	content: "";
}

.fa-highlighter::before {
	content: "";
}

.fa-key::before {
	content: "";
}

.fa-bullhorn::before {
	content: "";
}

.fa-globe::before {
	content: "";
}

.fa-synagogue::before {
	content: "";
}

.fa-person-half-dress::before {
	content: "";
}

.fa-road-bridge::before {
	content: "";
}

.fa-location-arrow::before {
	content: "";
}

.fa-c::before {
	content: "C";
}

.fa-tablet-button::before {
	content: "";
}

.fa-building-lock::before {
	content: "";
}

.fa-pizza-slice::before {
	content: "";
}

.fa-money-bill-wave::before {
	content: "";
}

.fa-area-chart::before, .fa-chart-area::before {
	content: "";
}

.fa-house-flag::before {
	content: "";
}

.fa-person-circle-minus::before {
	content: "";
}

.fa-ban::before, .fa-cancel::before {
	content: "";
}

.fa-camera-rotate::before {
	content: "";
}

.fa-air-freshener::before, .fa-spray-can-sparkles::before {
	content: "";
}

.fa-star::before {
	content: "";
}

.fa-repeat::before {
	content: "";
}

.fa-cross::before {
	content: "";
}

.fa-box::before {
	content: "";
}

.fa-venus-mars::before {
	content: "";
}

.fa-arrow-pointer::before, .fa-mouse-pointer::before {
	content: "";
}

.fa-expand-arrows-alt::before, .fa-maximize::before {
	content: "";
}

.fa-charging-station::before {
	content: "";
}

.fa-shapes::before, .fa-triangle-circle-square::before {
	content: "";
}

.fa-random::before, .fa-shuffle::before {
	content: "";
}

.fa-person-running::before, .fa-running::before {
	content: "";
}

.fa-mobile-retro::before {
	content: "";
}

.fa-grip-lines-vertical::before {
	content: "";
}

.fa-spider::before {
	content: "";
}

.fa-hands-bound::before {
	content: "";
}

.fa-file-invoice-dollar::before {
	content: "";
}

.fa-plane-circle-exclamation::before {
	content: "";
}

.fa-x-ray::before {
	content: "";
}

.fa-spell-check::before {
	content: "";
}

.fa-slash::before {
	content: "";
}

.fa-computer-mouse::before, .fa-mouse::before {
	content: "";
}

.fa-arrow-right-to-bracket::before, .fa-sign-in::before {
	content: "";
}

.fa-shop-slash::before, .fa-store-alt-slash::before {
	content: "";
}

.fa-server::before {
	content: "";
}

.fa-virus-covid-slash::before {
	content: "";
}

.fa-shop-lock::before {
	content: "";
}

.fa-hourglass-1::before, .fa-hourglass-start::before {
	content: "";
}

.fa-blender-phone::before {
	content: "";
}

.fa-building-wheat::before {
	content: "";
}

.fa-person-breastfeeding::before {
	content: "";
}

.fa-right-to-bracket::before, .fa-sign-in-alt::before {
	content: "";
}

.fa-venus::before {
	content: "";
}

.fa-passport::before {
	content: "";
}

.fa-heart-pulse::before, .fa-heartbeat::before {
	content: "";
}

.fa-people-carry-box::before, .fa-people-carry::before {
	content: "";
}

.fa-temperature-high::before {
	content: "";
}

.fa-microchip::before {
	content: "";
}

.fa-crown::before {
	content: "";
}

.fa-weight-hanging::before {
	content: "";
}

.fa-xmarks-lines::before {
	content: "";
}

.fa-file-prescription::before {
	content: "";
}

.fa-weight-scale::before, .fa-weight::before {
	content: "";
}

.fa-user-friends::before, .fa-user-group::before {
	content: "";
}

.fa-arrow-up-a-z::before, .fa-sort-alpha-up::before {
	content: "";
}

.fa-chess-knight::before {
	content: "";
}

.fa-face-laugh-squint::before, .fa-laugh-squint::before {
	content: "";
}

.fa-wheelchair::before {
	content: "";
}

.fa-arrow-circle-up::before, .fa-circle-arrow-up::before {
	content: "";
}

.fa-toggle-on::before {
	content: "";
}

.fa-person-walking::before, .fa-walking::before {
	content: "";
}

.fa-l::before {
	content: "L";
}

.fa-fire::before {
	content: "";
}

.fa-bed-pulse::before, .fa-procedures::before {
	content: "";
}

.fa-shuttle-space::before, .fa-space-shuttle::before {
	content: "";
}

.fa-face-laugh::before, .fa-laugh::before {
	content: "";
}

.fa-folder-open::before {
	content: "";
}

.fa-heart-circle-plus::before {
	content: "";
}

.fa-code-fork::before {
	content: "";
}

.fa-city::before {
	content: "";
}

.fa-microphone-alt::before, .fa-microphone-lines::before {
	content: "";
}

.fa-pepper-hot::before {
	content: "";
}

.fa-unlock::before {
	content: "";
}

.fa-colon-sign::before {
	content: "";
}

.fa-headset::before {
	content: "";
}

.fa-store-slash::before {
	content: "";
}

.fa-road-circle-xmark::before {
	content: "";
}

.fa-user-minus::before {
	content: "";
}

.fa-mars-stroke-up::before, .fa-mars-stroke-v::before {
	content: "";
}

.fa-champagne-glasses::before, .fa-glass-cheers::before {
	content: "";
}

.fa-clipboard::before {
	content: "";
}

.fa-house-circle-exclamation::before {
	content: "";
}

.fa-file-arrow-up::before, .fa-file-upload::before {
	content: "";
}

.fa-wifi-3::before, .fa-wifi-strong::before, .fa-wifi::before {
	content: "";
}

.fa-bath::before, .fa-bathtub::before {
	content: "";
}

.fa-underline::before {
	content: "";
}

.fa-user-edit::before, .fa-user-pen::before {
	content: "";
}

.fa-signature::before {
	content: "";
}

.fa-stroopwafel::before {
	content: "";
}

.fa-bold::before {
	content: "";
}

.fa-anchor-lock::before {
	content: "";
}

.fa-building-ngo::before {
	content: "";
}

.fa-manat-sign::before {
	content: "";
}

.fa-not-equal::before {
	content: "";
}

.fa-border-style::before, .fa-border-top-left::before {
	content: "";
}

.fa-map-location-dot::before, .fa-map-marked-alt::before {
	content: "";
}

.fa-jedi::before {
	content: "";
}

.fa-poll::before, .fa-square-poll-vertical::before {
	content: "";
}

.fa-mug-hot::before {
	content: "";
}

.fa-battery-car::before, .fa-car-battery::before {
	content: "";
}

.fa-gift::before {
	content: "";
}

.fa-dice-two::before {
	content: "";
}

.fa-chess-queen::before {
	content: "";
}

.fa-glasses::before {
	content: "";
}

.fa-chess-board::before {
	content: "";
}

.fa-building-circle-check::before {
	content: "";
}

.fa-person-chalkboard::before {
	content: "";
}

.fa-mars-stroke-h::before, .fa-mars-stroke-right::before {
	content: "";
}

.fa-hand-back-fist::before, .fa-hand-rock::before {
	content: "";
}

.fa-caret-square-up::before, .fa-square-caret-up::before {
	content: "";
}

.fa-cloud-showers-water::before {
	content: "";
}

.fa-bar-chart::before, .fa-chart-bar::before {
	content: "";
}

.fa-hands-bubbles::before, .fa-hands-wash::before {
	content: "";
}

.fa-less-than-equal::before {
	content: "";
}

.fa-train::before {
	content: "";
}

.fa-eye-low-vision::before, .fa-low-vision::before {
	content: "";
}

.fa-crow::before {
	content: "";
}

.fa-sailboat::before {
	content: "";
}

.fa-window-restore::before {
	content: "";
}

.fa-plus-square::before, .fa-square-plus::before {
	content: "";
}

.fa-torii-gate::before {
	content: "";
}

.fa-frog::before {
	content: "";
}

.fa-bucket::before {
	content: "";
}

.fa-image::before {
	content: "";
}

.fa-microphone::before {
	content: "";
}

.fa-cow::before {
	content: "";
}

.fa-caret-up::before {
	content: "";
}

.fa-screwdriver::before {
	content: "";
}

.fa-folder-closed::before {
	content: "";
}

.fa-house-tsunami::before {
	content: "";
}

.fa-square-nfi::before {
	content: "";
}

.fa-arrow-up-from-ground-water::before {
	content: "";
}

.fa-glass-martini-alt::before, .fa-martini-glass::before {
	content: "";
}

.fa-rotate-back::before, .fa-rotate-backward::before, .fa-rotate-left::before, .fa-undo-alt::before {
	content: "";
}

.fa-columns::before, .fa-table-columns::before {
	content: "";
}

.fa-lemon::before {
	content: "";
}

.fa-head-side-mask::before {
	content: "";
}

.fa-handshake::before {
	content: "";
}

.fa-gem::before {
	content: "";
}

.fa-dolly-box::before, .fa-dolly::before {
	content: "";
}

.fa-smoking::before {
	content: "";
}

.fa-compress-arrows-alt::before, .fa-minimize::before {
	content: "";
}

.fa-monument::before {
	content: "";
}

.fa-snowplow::before {
	content: "";
}

.fa-angle-double-right::before, .fa-angles-right::before {
	content: "";
}

.fa-cannabis::before {
	content: "";
}

.fa-circle-play::before, .fa-play-circle::before {
	content: "";
}

.fa-tablets::before {
	content: "";
}

.fa-ethernet::before {
	content: "";
}

.fa-eur::before, .fa-euro-sign::before, .fa-euro::before {
	content: "";
}

.fa-chair::before {
	content: "";
}

.fa-check-circle::before, .fa-circle-check::before {
	content: "";
}

.fa-circle-stop::before, .fa-stop-circle::before {
	content: "";
}

.fa-compass-drafting::before, .fa-drafting-compass::before {
	content: "";
}

.fa-plate-wheat::before {
	content: "";
}

.fa-icicles::before {
	content: "";
}

.fa-person-shelter::before {
	content: "";
}

.fa-neuter::before {
	content: "";
}

.fa-id-badge::before {
	content: "";
}

.fa-marker::before {
	content: "";
}

.fa-face-laugh-beam::before, .fa-laugh-beam::before {
	content: "";
}

.fa-helicopter-symbol::before {
	content: "";
}

.fa-universal-access::before {
	content: "";
}

.fa-chevron-circle-up::before, .fa-circle-chevron-up::before {
	content: "";
}

.fa-lari-sign::before {
	content: "";
}

.fa-volcano::before {
	content: "";
}

.fa-person-walking-dashed-line-arrow-right::before {
	content: "";
}

.fa-gbp::before, .fa-pound-sign::before, .fa-sterling-sign::before {
	content: "";
}

.fa-viruses::before {
	content: "";
}

.fa-square-person-confined::before {
	content: "";
}

.fa-user-tie::before {
	content: "";
}

.fa-arrow-down-long::before, .fa-long-arrow-down::before {
	content: "";
}

.fa-tent-arrow-down-to-line::before {
	content: "";
}

.fa-certificate::before {
	content: "";
}

.fa-mail-reply-all::before, .fa-reply-all::before {
	content: "";
}

.fa-suitcase::before {
	content: "";
}

.fa-person-skating::before, .fa-skating::before {
	content: "";
}

.fa-filter-circle-dollar::before, .fa-funnel-dollar::before {
	content: "";
}

.fa-camera-retro::before {
	content: "";
}

.fa-arrow-circle-down::before, .fa-circle-arrow-down::before {
	content: "";
}

.fa-arrow-right-to-file::before, .fa-file-import::before {
	content: "";
}

.fa-external-link-square::before, .fa-square-arrow-up-right::before {
	content: "";
}

.fa-box-open::before {
	content: "";
}

.fa-scroll::before {
	content: "";
}

.fa-spa::before {
	content: "";
}

.fa-location-pin-lock::before {
	content: "";
}

.fa-pause::before {
	content: "";
}

.fa-hill-avalanche::before {
	content: "";
}

.fa-temperature-0::before, .fa-temperature-empty::before, .fa-thermometer-0::before, .fa-thermometer-empty::before {
	content: "";
}

.fa-bomb::before {
	content: "";
}

.fa-registered::before {
	content: "";
}

.fa-address-card::before, .fa-contact-card::before, .fa-vcard::before {
	content: "";
}

.fa-balance-scale-right::before, .fa-scale-unbalanced-flip::before {
	content: "";
}

.fa-subscript::before {
	content: "";
}

.fa-diamond-turn-right::before, .fa-directions::before {
	content: "";
}

.fa-burst::before {
	content: "";
}

.fa-house-laptop::before, .fa-laptop-house::before {
	content: "";
}

.fa-face-tired::before, .fa-tired::before {
	content: "";
}

.fa-money-bills::before {
	content: "";
}

.fa-smog::before {
	content: "";
}

.fa-crutch::before {
	content: "";
}

.fa-cloud-arrow-up::before, .fa-cloud-upload-alt::before, .fa-cloud-upload::before {
	content: "";
}

.fa-palette::before {
	content: "";
}

.fa-arrows-turn-right::before {
	content: "";
}

.fa-vest::before {
	content: "";
}

.fa-ferry::before {
	content: "";
}

.fa-arrows-down-to-people::before {
	content: "";
}

.fa-seedling::before, .fa-sprout::before {
	content: "";
}

.fa-arrows-alt-h::before, .fa-left-right::before {
	content: "";
}

.fa-boxes-packing::before {
	content: "";
}

.fa-arrow-circle-left::before, .fa-circle-arrow-left::before {
	content: "";
}

.fa-group-arrows-rotate::before {
	content: "";
}

.fa-bowl-food::before {
	content: "";
}

.fa-candy-cane::before {
	content: "";
}

.fa-arrow-down-wide-short::before, .fa-sort-amount-asc::before, .fa-sort-amount-down::before {
	content: "";
}

.fa-cloud-bolt::before, .fa-thunderstorm::before {
	content: "";
}

.fa-remove-format::before, .fa-text-slash::before {
	content: "";
}

.fa-face-smile-wink::before, .fa-smile-wink::before {
	content: "";
}

.fa-file-word::before {
	content: "";
}

.fa-file-powerpoint::before {
	content: "";
}

.fa-arrows-h::before, .fa-arrows-left-right::before {
	content: "";
}

.fa-house-lock::before {
	content: "";
}

.fa-cloud-arrow-down::before, .fa-cloud-download-alt::before, .fa-cloud-download::before {
	content: "";
}

.fa-children::before {
	content: "";
}

.fa-blackboard::before, .fa-chalkboard::before {
	content: "";
}

.fa-user-alt-slash::before, .fa-user-large-slash::before {
	content: "";
}

.fa-envelope-open::before {
	content: "";
}

.fa-handshake-alt-slash::before, .fa-handshake-simple-slash::before {
	content: "";
}

.fa-mattress-pillow::before {
	content: "";
}

.fa-guarani-sign::before {
	content: "";
}

.fa-arrows-rotate::before, .fa-refresh::before, .fa-sync::before {
	content: "";
}

.fa-fire-extinguisher::before {
	content: "";
}

.fa-cruzeiro-sign::before {
	content: "";
}

.fa-greater-than-equal::before {
	content: "";
}

.fa-shield-alt::before, .fa-shield-halved::before {
	content: "";
}

.fa-atlas::before, .fa-book-atlas::before {
	content: "";
}

.fa-virus::before {
	content: "";
}

.fa-envelope-circle-check::before {
	content: "";
}

.fa-layer-group::before {
	content: "";
}

.fa-arrows-to-dot::before {
	content: "";
}

.fa-archway::before {
	content: "";
}

.fa-heart-circle-check::before {
	content: "";
}

.fa-house-chimney-crack::before, .fa-house-damage::before {
	content: "";
}

.fa-file-archive::before, .fa-file-zipper::before {
	content: "";
}

.fa-square::before {
	content: "";
}

.fa-glass-martini::before, .fa-martini-glass-empty::before {
	content: "";
}

.fa-couch::before {
	content: "";
}

.fa-cedi-sign::before {
	content: "";
}

.fa-italic::before {
	content: "";
}

.fa-church::before {
	content: "";
}

.fa-comments-dollar::before {
	content: "";
}

.fa-democrat::before {
	content: "";
}

.fa-z::before {
	content: "Z";
}

.fa-person-skiing::before, .fa-skiing::before {
	content: "";
}

.fa-road-lock::before {
	content: "";
}

.fa-a::before {
	content: "A";
}

.fa-temperature-arrow-down::before, .fa-temperature-down::before {
	content: "";
}

.fa-feather-alt::before, .fa-feather-pointed::before {
	content: "";
}

.fa-p::before {
	content: "P";
}

.fa-snowflake::before {
	content: "";
}

.fa-newspaper::before {
	content: "";
}

.fa-ad::before, .fa-rectangle-ad::before {
	content: "";
}

.fa-arrow-circle-right::before, .fa-circle-arrow-right::before {
	content: "";
}

.fa-filter-circle-xmark::before {
	content: "";
}

.fa-locust::before {
	content: "";
}

.fa-sort::before, .fa-unsorted::before {
	content: "";
}

.fa-list-1-2::before, .fa-list-numeric::before, .fa-list-ol::before {
	content: "";
}

.fa-person-dress-burst::before {
	content: "";
}

.fa-money-check-alt::before, .fa-money-check-dollar::before {
	content: "";
}

.fa-vector-square::before {
	content: "";
}

.fa-bread-slice::before {
	content: "";
}

.fa-language::before {
	content: "";
}

.fa-face-kiss-wink-heart::before, .fa-kiss-wink-heart::before {
	content: "";
}

.fa-filter::before {
	content: "";
}

.fa-question::before {
	content: "?";
}

.fa-file-signature::before {
	content: "";
}

.fa-arrows-alt::before, .fa-up-down-left-right::before {
	content: "";
}

.fa-house-chimney-user::before {
	content: "";
}

.fa-hand-holding-heart::before {
	content: "";
}

.fa-puzzle-piece::before {
	content: "";
}

.fa-money-check::before {
	content: "";
}

.fa-star-half-alt::before, .fa-star-half-stroke::before {
	content: "";
}

.fa-code::before {
	content: "";
}

.fa-glass-whiskey::before, .fa-whiskey-glass::before {
	content: "";
}

.fa-building-circle-exclamation::before {
	content: "";
}

.fa-magnifying-glass-chart::before {
	content: "";
}

.fa-arrow-up-right-from-square::before, .fa-external-link::before {
	content: "";
}

.fa-cubes-stacked::before {
	content: "";
}

.fa-krw::before, .fa-won-sign::before, .fa-won::before {
	content: "";
}

.fa-virus-covid::before {
	content: "";
}

.fa-austral-sign::before {
	content: "";
}

.fa-f::before {
	content: "F";
}

.fa-leaf::before {
	content: "";
}

.fa-road::before {
	content: "";
}

.fa-cab::before, .fa-taxi::before {
	content: "";
}

.fa-person-circle-plus::before {
	content: "";
}

.fa-chart-pie::before, .fa-pie-chart::before {
	content: "";
}

.fa-bolt-lightning::before {
	content: "";
}

.fa-sack-xmark::before {
	content: "";
}

.fa-file-excel::before {
	content: "";
}

.fa-file-contract::before {
	content: "";
}

.fa-fish-fins::before {
	content: "";
}

.fa-building-flag::before {
	content: "";
}

.fa-face-grin-beam::before, .fa-grin-beam::before {
	content: "";
}

.fa-object-ungroup::before {
	content: "";
}

.fa-poop::before {
	content: "";
}

.fa-location-pin::before, .fa-map-marker::before {
	content: "";
}

.fa-kaaba::before {
	content: "";
}

.fa-toilet-paper::before {
	content: "";
}

.fa-hard-hat::before, .fa-hat-hard::before, .fa-helmet-safety::before {
	content: "";
}

.fa-eject::before {
	content: "";
}

.fa-arrow-alt-circle-right::before, .fa-circle-right::before {
	content: "";
}

.fa-plane-circle-check::before {
	content: "";
}

.fa-face-rolling-eyes::before, .fa-meh-rolling-eyes::before {
	content: "";
}

.fa-object-group::before {
	content: "";
}

.fa-chart-line::before, .fa-line-chart::before {
	content: "";
}

.fa-mask-ventilator::before {
	content: "";
}

.fa-arrow-right::before {
	content: "";
}

.fa-map-signs::before, .fa-signs-post::before {
	content: "";
}

.fa-cash-register::before {
	content: "";
}

.fa-person-circle-question::before {
	content: "";
}

.fa-h::before {
	content: "H";
}

.fa-tarp::before {
	content: "";
}

.fa-screwdriver-wrench::before, .fa-tools::before {
	content: "";
}

.fa-arrows-to-eye::before {
	content: "";
}

.fa-plug-circle-bolt::before {
	content: "";
}

.fa-heart::before {
	content: "";
}

.fa-mars-and-venus::before {
	content: "";
}

.fa-home-user::before, .fa-house-user::before {
	content: "";
}

.fa-dumpster-fire::before {
	content: "";
}

.fa-house-crack::before {
	content: "";
}

.fa-cocktail::before, .fa-martini-glass-citrus::before {
	content: "";
}

.fa-face-surprise::before, .fa-surprise::before {
	content: "";
}

.fa-bottle-water::before {
	content: "";
}

.fa-circle-pause::before, .fa-pause-circle::before {
	content: "";
}

.fa-toilet-paper-slash::before {
	content: "";
}

.fa-apple-alt::before, .fa-apple-whole::before {
	content: "";
}

.fa-kitchen-set::before {
	content: "";
}

.fa-r::before {
	content: "R";
}

.fa-temperature-1::before, .fa-temperature-quarter::before, .fa-thermometer-1::before, .fa-thermometer-quarter::before {
	content: "";
}

.fa-cube::before {
	content: "";
}

.fa-bitcoin-sign::before {
	content: "";
}

.fa-shield-dog::before {
	content: "";
}

.fa-solar-panel::before {
	content: "";
}

.fa-lock-open::before {
	content: "";
}

.fa-elevator::before {
	content: "";
}

.fa-money-bill-transfer::before {
	content: "";
}

.fa-money-bill-trend-up::before {
	content: "";
}

.fa-house-flood-water-circle-arrow-right::before {
	content: "";
}

.fa-poll-h::before, .fa-square-poll-horizontal::before {
	content: "";
}

.fa-circle::before {
	content: "";
}

.fa-backward-fast::before, .fa-fast-backward::before {
	content: "";
}

.fa-recycle::before {
	content: "";
}

.fa-user-astronaut::before {
	content: "";
}

.fa-plane-slash::before {
	content: "";
}

.fa-trademark::before {
	content: "";
}

.fa-basketball-ball::before, .fa-basketball::before {
	content: "";
}

.fa-satellite-dish::before {
	content: "";
}

.fa-arrow-alt-circle-up::before, .fa-circle-up::before {
	content: "";
}

.fa-mobile-alt::before, .fa-mobile-screen-button::before {
	content: "";
}

.fa-volume-high::before, .fa-volume-up::before {
	content: "";
}

.fa-users-rays::before {
	content: "";
}

.fa-wallet::before {
	content: "";
}

.fa-clipboard-check::before {
	content: "";
}

.fa-file-audio::before {
	content: "";
}

.fa-burger::before, .fa-hamburger::before {
	content: "";
}

.fa-wrench::before {
	content: "";
}

.fa-bugs::before {
	content: "";
}

.fa-rupee-sign::before, .fa-rupee::before {
	content: "";
}

.fa-file-image::before {
	content: "";
}

.fa-circle-question::before, .fa-question-circle::before {
	content: "";
}

.fa-plane-departure::before {
	content: "";
}

.fa-handshake-slash::before {
	content: "";
}

.fa-book-bookmark::before {
	content: "";
}

.fa-code-branch::before {
	content: "";
}

.fa-hat-cowboy::before {
	content: "";
}

.fa-bridge::before {
	content: "";
}

.fa-phone-alt::before, .fa-phone-flip::before {
	content: "";
}

.fa-truck-front::before {
	content: "";
}

.fa-cat::before {
	content: "";
}

.fa-anchor-circle-exclamation::before {
	content: "";
}

.fa-truck-field::before {
	content: "";
}

.fa-route::before {
	content: "";
}

.fa-clipboard-question::before {
	content: "";
}

.fa-panorama::before {
	content: "";
}

.fa-comment-medical::before {
	content: "";
}

.fa-teeth-open::before {
	content: "";
}

.fa-file-circle-minus::before {
	content: "";
}

.fa-tags::before {
	content: "";
}

.fa-wine-glass::before {
	content: "";
}

.fa-fast-forward::before, .fa-forward-fast::before {
	content: "";
}

.fa-face-meh-blank::before, .fa-meh-blank::before {
	content: "";
}

.fa-parking::before, .fa-square-parking::before {
	content: "";
}

.fa-house-signal::before {
	content: "";
}

.fa-bars-progress::before, .fa-tasks-alt::before {
	content: "";
}

.fa-faucet-drip::before {
	content: "";
}

.fa-cart-flatbed::before, .fa-dolly-flatbed::before {
	content: "";
}

.fa-ban-smoking::before, .fa-smoking-ban::before {
	content: "";
}

.fa-terminal::before {
	content: "";
}

.fa-mobile-button::before {
	content: "";
}

.fa-house-medical-flag::before {
	content: "";
}

.fa-basket-shopping::before, .fa-shopping-basket::before {
	content: "";
}

.fa-tape::before {
	content: "";
}

.fa-bus-alt::before, .fa-bus-simple::before {
	content: "";
}

.fa-eye::before {
	content: "";
}

.fa-face-sad-cry::before, .fa-sad-cry::before {
	content: "";
}

.fa-audio-description::before {
	content: "";
}

.fa-person-military-to-person::before {
	content: "";
}

.fa-file-shield::before {
	content: "";
}

.fa-user-slash::before {
	content: "";
}

.fa-pen::before {
	content: "";
}

.fa-tower-observation::before {
	content: "";
}

.fa-file-code::before {
	content: "";
}

.fa-signal-5::before, .fa-signal-perfect::before, .fa-signal::before {
	content: "";
}

.fa-bus::before {
	content: "";
}

.fa-heart-circle-xmark::before {
	content: "";
}

.fa-home-lg::before, .fa-house-chimney::before {
	content: "";
}

.fa-window-maximize::before {
	content: "";
}

.fa-face-frown::before, .fa-frown::before {
	content: "";
}

.fa-prescription::before {
	content: "";
}

.fa-shop::before, .fa-store-alt::before {
	content: "";
}

.fa-floppy-disk::before, .fa-save::before {
	content: "";
}

.fa-vihara::before {
	content: "";
}

.fa-balance-scale-left::before, .fa-scale-unbalanced::before {
	content: "";
}

.fa-sort-asc::before, .fa-sort-up::before {
	content: "";
}

.fa-comment-dots::before, .fa-commenting::before {
	content: "";
}

.fa-plant-wilt::before {
	content: "";
}

.fa-diamond::before {
	content: "";
}

.fa-face-grin-squint::before, .fa-grin-squint::before {
	content: "";
}

.fa-hand-holding-dollar::before, .fa-hand-holding-usd::before {
	content: "";
}

.fa-bacterium::before {
	content: "";
}

.fa-hand-pointer::before {
	content: "";
}

.fa-drum-steelpan::before {
	content: "";
}

.fa-hand-scissors::before {
	content: "";
}

.fa-hands-praying::before, .fa-praying-hands::before {
	content: "";
}

.fa-arrow-right-rotate::before, .fa-arrow-rotate-forward::before, .fa-arrow-rotate-right::before, .fa-redo::before {
	content: "";
}

.fa-biohazard::before {
	content: "";
}

.fa-location-crosshairs::before, .fa-location::before {
	content: "";
}

.fa-mars-double::before {
	content: "";
}

.fa-child-dress::before {
	content: "";
}

.fa-users-between-lines::before {
	content: "";
}

.fa-lungs-virus::before {
	content: "";
}

.fa-face-grin-tears::before, .fa-grin-tears::before {
	content: "";
}

.fa-phone::before {
	content: "";
}

.fa-calendar-times::before, .fa-calendar-xmark::before {
	content: "";
}

.fa-child-reaching::before {
	content: "";
}

.fa-head-side-virus::before {
	content: "";
}

.fa-user-cog::before, .fa-user-gear::before {
	content: "";
}

.fa-arrow-up-1-9::before, .fa-sort-numeric-up::before {
	content: "";
}

.fa-door-closed::before {
	content: "";
}

.fa-shield-virus::before {
	content: "";
}

.fa-dice-six::before {
	content: "";
}

.fa-mosquito-net::before {
	content: "";
}

.fa-bridge-water::before {
	content: "";
}

.fa-person-booth::before {
	content: "";
}

.fa-text-width::before {
	content: "";
}

.fa-hat-wizard::before {
	content: "";
}

.fa-pen-fancy::before {
	content: "";
}

.fa-digging::before, .fa-person-digging::before {
	content: "";
}

.fa-trash::before {
	content: "";
}

.fa-gauge-simple-med::before, .fa-gauge-simple::before, .fa-tachometer-average::before {
	content: "";
}

.fa-book-medical::before {
	content: "";
}

.fa-poo::before {
	content: "";
}

.fa-quote-right-alt::before, .fa-quote-right::before {
	content: "";
}

.fa-shirt::before, .fa-t-shirt::before, .fa-tshirt::before {
	content: "";
}

.fa-cubes::before {
	content: "";
}

.fa-divide::before {
	content: "";
}

.fa-tenge-sign::before, .fa-tenge::before {
	content: "";
}

.fa-headphones::before {
	content: "";
}

.fa-hands-holding::before {
	content: "";
}

.fa-hands-clapping::before {
	content: "";
}

.fa-republican::before {
	content: "";
}

.fa-arrow-left::before {
	content: "";
}

.fa-person-circle-xmark::before {
	content: "";
}

.fa-ruler::before {
	content: "";
}

.fa-align-left::before {
	content: "";
}

.fa-dice-d6::before {
	content: "";
}

.fa-restroom::before {
	content: "";
}

.fa-j::before {
	content: "J";
}

.fa-users-viewfinder::before {
	content: "";
}

.fa-file-video::before {
	content: "";
}

.fa-external-link-alt::before, .fa-up-right-from-square::before {
	content: "";
}

.fa-table-cells::before, .fa-th::before {
	content: "";
}

.fa-file-pdf::before {
	content: "";
}

.fa-bible::before, .fa-book-bible::before {
	content: "";
}

.fa-o::before {
	content: "O";
}

.fa-medkit::before, .fa-suitcase-medical::before {
	content: "";
}

.fa-user-secret::before {
	content: "";
}

.fa-otter::before {
	content: "";
}

.fa-female::before, .fa-person-dress::before {
	content: "";
}

.fa-comment-dollar::before {
	content: "";
}

.fa-briefcase-clock::before, .fa-business-time::before {
	content: "";
}

.fa-table-cells-large::before, .fa-th-large::before {
	content: "";
}

.fa-book-tanakh::before, .fa-tanakh::before {
	content: "";
}

.fa-phone-volume::before, .fa-volume-control-phone::before {
	content: "";
}

.fa-hat-cowboy-side::before {
	content: "";
}

.fa-clipboard-user::before {
	content: "";
}

.fa-child::before {
	content: "";
}

.fa-lira-sign::before {
	content: "";
}

.fa-satellite::before {
	content: "";
}

.fa-plane-lock::before {
	content: "";
}

.fa-tag::before {
	content: "";
}

.fa-comment::before {
	content: "";
}

.fa-birthday-cake::before, .fa-cake-candles::before, .fa-cake::before {
	content: "";
}

.fa-envelope::before {
	content: "";
}

.fa-angle-double-up::before, .fa-angles-up::before {
	content: "";
}

.fa-paperclip::before {
	content: "";
}

.fa-arrow-right-to-city::before {
	content: "";
}

.fa-ribbon::before {
	content: "";
}

.fa-lungs::before {
	content: "";
}

.fa-arrow-up-9-1::before, .fa-sort-numeric-up-alt::before {
	content: "";
}

.fa-litecoin-sign::before {
	content: "";
}

.fa-border-none::before {
	content: "";
}

.fa-circle-nodes::before {
	content: "";
}

.fa-parachute-box::before {
	content: "";
}

.fa-indent::before {
	content: "";
}

.fa-truck-field-un::before {
	content: "";
}

.fa-hourglass-empty::before, .fa-hourglass::before {
	content: "";
}

.fa-mountain::before {
	content: "";
}

.fa-user-doctor::before, .fa-user-md::before {
	content: "";
}

.fa-circle-info::before, .fa-info-circle::before {
	content: "";
}

.fa-cloud-meatball::before {
	content: "";
}

.fa-camera-alt::before, .fa-camera::before {
	content: "";
}

.fa-square-virus::before {
	content: "";
}

.fa-meteor::before {
	content: "";
}

.fa-car-on::before {
	content: "";
}

.fa-sleigh::before {
	content: "";
}

.fa-arrow-down-1-9::before, .fa-sort-numeric-asc::before, .fa-sort-numeric-down::before {
	content: "";
}

.fa-hand-holding-droplet::before, .fa-hand-holding-water::before {
	content: "";
}

.fa-water::before {
	content: "";
}

.fa-calendar-check::before {
	content: "";
}

.fa-braille::before {
	content: "";
}

.fa-prescription-bottle-alt::before, .fa-prescription-bottle-medical::before {
	content: "";
}

.fa-landmark::before {
	content: "";
}

.fa-truck::before {
	content: "";
}

.fa-crosshairs::before {
	content: "";
}

.fa-person-cane::before {
	content: "";
}

.fa-tent::before {
	content: "";
}

.fa-vest-patches::before {
	content: "";
}

.fa-check-double::before {
	content: "";
}

.fa-arrow-down-a-z::before, .fa-sort-alpha-asc::before, .fa-sort-alpha-down::before {
	content: "";
}

.fa-money-bill-wheat::before {
	content: "";
}

.fa-cookie::before {
	content: "";
}

.fa-arrow-left-rotate::before, .fa-arrow-rotate-back::before, .fa-arrow-rotate-backward::before, .fa-arrow-rotate-left::before, .fa-undo::before {
	content: "";
}

.fa-hard-drive::before, .fa-hdd::before {
	content: "";
}

.fa-face-grin-squint-tears::before, .fa-grin-squint-tears::before {
	content: "";
}

.fa-dumbbell::before {
	content: "";
}

.fa-list-alt::before, .fa-rectangle-list::before {
	content: "";
}

.fa-tarp-droplet::before {
	content: "";
}

.fa-house-medical-circle-check::before {
	content: "";
}

.fa-person-skiing-nordic::before, .fa-skiing-nordic::before {
	content: "";
}

.fa-calendar-plus::before {
	content: "";
}

.fa-plane-arrival::before {
	content: "";
}

.fa-arrow-alt-circle-left::before, .fa-circle-left::before {
	content: "";
}

.fa-subway::before, .fa-train-subway::before {
	content: "";
}

.fa-chart-gantt::before {
	content: "";
}

.fa-indian-rupee-sign::before, .fa-indian-rupee::before, .fa-inr::before {
	content: "";
}

.fa-crop-alt::before, .fa-crop-simple::before {
	content: "";
}

.fa-money-bill-1::before, .fa-money-bill-alt::before {
	content: "";
}

.fa-left-long::before, .fa-long-arrow-alt-left::before {
	content: "";
}

.fa-dna::before {
	content: "";
}

.fa-virus-slash::before {
	content: "";
}

.fa-minus::before, .fa-subtract::before {
	content: "";
}

.fa-chess::before {
	content: "";
}

.fa-arrow-left-long::before, .fa-long-arrow-left::before {
	content: "";
}

.fa-plug-circle-check::before {
	content: "";
}

.fa-street-view::before {
	content: "";
}

.fa-franc-sign::before {
	content: "";
}

.fa-volume-off::before {
	content: "";
}

.fa-american-sign-language-interpreting::before, .fa-asl-interpreting::before, .fa-hands-american-sign-language-interpreting::before, .fa-hands-asl-interpreting::before {
	content: "";
}

.fa-cog::before, .fa-gear::before {
	content: "";
}

.fa-droplet-slash::before, .fa-tint-slash::before {
	content: "";
}

.fa-mosque::before {
	content: "";
}

.fa-mosquito::before {
	content: "";
}

.fa-star-of-david::before {
	content: "";
}

.fa-person-military-rifle::before {
	content: "";
}

.fa-cart-shopping::before, .fa-shopping-cart::before {
	content: "";
}

.fa-vials::before {
	content: "";
}

.fa-plug-circle-plus::before {
	content: "";
}

.fa-place-of-worship::before {
	content: "";
}

.fa-grip-vertical::before {
	content: "";
}

.fa-arrow-turn-up::before, .fa-level-up::before {
	content: "";
}

.fa-u::before {
	content: "U";
}

.fa-square-root-alt::before, .fa-square-root-variable::before {
	content: "";
}

.fa-clock-four::before, .fa-clock::before {
	content: "";
}

.fa-backward-step::before, .fa-step-backward::before {
	content: "";
}

.fa-pallet::before {
	content: "";
}

.fa-faucet::before {
	content: "";
}

.fa-baseball-bat-ball::before {
	content: "";
}

.fa-s::before {
	content: "S";
}

.fa-timeline::before {
	content: "";
}

.fa-keyboard::before {
	content: "";
}

.fa-caret-down::before {
	content: "";
}

.fa-clinic-medical::before, .fa-house-chimney-medical::before {
	content: "";
}

.fa-temperature-3::before, .fa-temperature-three-quarters::before, .fa-thermometer-3::before, .fa-thermometer-three-quarters::before {
	content: "";
}

.fa-mobile-android-alt::before, .fa-mobile-screen::before {
	content: "";
}

.fa-plane-up::before {
	content: "";
}

.fa-piggy-bank::before {
	content: "";
}

.fa-battery-3::before, .fa-battery-half::before {
	content: "";
}

.fa-mountain-city::before {
	content: "";
}

.fa-coins::before {
	content: "";
}

.fa-khanda::before {
	content: "";
}

.fa-sliders-h::before, .fa-sliders::before {
	content: "";
}

.fa-folder-tree::before {
	content: "";
}

.fa-network-wired::before {
	content: "";
}

.fa-map-pin::before {
	content: "";
}

.fa-hamsa::before {
	content: "";
}

.fa-cent-sign::before {
	content: "";
}

.fa-flask::before {
	content: "";
}

.fa-person-pregnant::before {
	content: "";
}

.fa-wand-sparkles::before {
	content: "";
}

.fa-ellipsis-v::before, .fa-ellipsis-vertical::before {
	content: "";
}

.fa-ticket::before {
	content: "";
}

.fa-power-off::before {
	content: "";
}

.fa-long-arrow-alt-right::before, .fa-right-long::before {
	content: "";
}

.fa-flag-usa::before {
	content: "";
}

.fa-laptop-file::before {
	content: "";
}

.fa-teletype::before, .fa-tty::before {
	content: "";
}

.fa-diagram-next::before {
	content: "";
}

.fa-person-rifle::before {
	content: "";
}

.fa-house-medical-circle-exclamation::before {
	content: "";
}

.fa-closed-captioning::before {
	content: "";
}

.fa-hiking::before, .fa-person-hiking::before {
	content: "";
}

.fa-venus-double::before {
	content: "";
}

.fa-images::before {
	content: "";
}

.fa-calculator::before {
	content: "";
}

.fa-people-pulling::before {
	content: "";
}

.fa-n::before {
	content: "N";
}

.fa-cable-car::before, .fa-tram::before {
	content: "";
}

.fa-cloud-rain::before {
	content: "";
}

.fa-building-circle-xmark::before {
	content: "";
}

.fa-ship::before {
	content: "";
}

.fa-arrows-down-to-line::before {
	content: "";
}

.fa-download::before {
	content: "";
}

.fa-face-grin::before, .fa-grin::before {
	content: "";
}

.fa-backspace::before, .fa-delete-left::before {
	content: "";
}

.fa-eye-dropper-empty::before, .fa-eye-dropper::before, .fa-eyedropper::before {
	content: "";
}

.fa-file-circle-check::before {
	content: "";
}

.fa-forward::before {
	content: "";
}

.fa-mobile-android::before, .fa-mobile-phone::before, .fa-mobile::before {
	content: "";
}

.fa-face-meh::before, .fa-meh::before {
	content: "";
}

.fa-align-center::before {
	content: "";
}

.fa-book-dead::before, .fa-book-skull::before {
	content: "";
}

.fa-drivers-license::before, .fa-id-card::before {
	content: "";
}

.fa-dedent::before, .fa-outdent::before {
	content: "";
}

.fa-heart-circle-exclamation::before {
	content: "";
}

.fa-home-alt::before, .fa-home-lg-alt::before, .fa-home::before, .fa-house::before {
	content: "";
}

.fa-calendar-week::before {
	content: "";
}

.fa-laptop-medical::before {
	content: "";
}

.fa-b::before {
	content: "B";
}

.fa-file-medical::before {
	content: "";
}

.fa-dice-one::before {
	content: "";
}

.fa-kiwi-bird::before {
	content: "";
}

.fa-arrow-right-arrow-left::before, .fa-exchange::before {
	content: "";
}

.fa-redo-alt::before, .fa-rotate-forward::before, .fa-rotate-right::before {
	content: "";
}

.fa-cutlery::before, .fa-utensils::before {
	content: "";
}

.fa-arrow-up-wide-short::before, .fa-sort-amount-up::before {
	content: "";
}

.fa-mill-sign::before {
	content: "";
}

.fa-bowl-rice::before {
	content: "";
}

.fa-skull::before {
	content: "";
}

.fa-broadcast-tower::before, .fa-tower-broadcast::before {
	content: "";
}

.fa-truck-pickup::before {
	content: "";
}

.fa-long-arrow-alt-up::before, .fa-up-long::before {
	content: "";
}

.fa-stop::before {
	content: "";
}

.fa-code-merge::before {
	content: "";
}

.fa-upload::before {
	content: "";
}

.fa-hurricane::before {
	content: "";
}

.fa-mound::before {
	content: "";
}

.fa-toilet-portable::before {
	content: "";
}

.fa-compact-disc::before {
	content: "";
}

.fa-file-arrow-down::before, .fa-file-download::before {
	content: "";
}

.fa-caravan::before {
	content: "";
}

.fa-shield-cat::before {
	content: "";
}

.fa-bolt::before, .fa-zap::before {
	content: "";
}

.fa-glass-water::before {
	content: "";
}

.fa-oil-well::before {
	content: "";
}

.fa-vault::before {
	content: "";
}

.fa-mars::before {
	content: "";
}

.fa-toilet::before {
	content: "";
}

.fa-plane-circle-xmark::before {
	content: "";
}

.fa-cny::before, .fa-jpy::before, .fa-rmb::before, .fa-yen-sign::before, .fa-yen::before {
	content: "";
}

.fa-rouble::before, .fa-rub::before, .fa-ruble-sign::before, .fa-ruble::before {
	content: "";
}

.fa-sun::before {
	content: "";
}

.fa-guitar::before {
	content: "";
}

.fa-face-laugh-wink::before, .fa-laugh-wink::before {
	content: "";
}

.fa-horse-head::before {
	content: "";
}

.fa-bore-hole::before {
	content: "";
}

.fa-industry::before {
	content: "";
}

.fa-arrow-alt-circle-down::before, .fa-circle-down::before {
	content: "";
}

.fa-arrows-turn-to-dots::before {
	content: "";
}

.fa-florin-sign::before {
	content: "";
}

.fa-arrow-down-short-wide::before, .fa-sort-amount-desc::before, .fa-sort-amount-down-alt::before {
	content: "";
}

.fa-less-than::before {
	content: "<";
}

.fa-angle-down::before {
	content: "";
}

.fa-car-tunnel::before {
	content: "";
}

.fa-head-side-cough::before {
	content: "";
}

.fa-grip-lines::before {
	content: "";
}

.fa-thumbs-down::before {
	content: "";
}

.fa-user-lock::before {
	content: "";
}

.fa-arrow-right-long::before, .fa-long-arrow-right::before {
	content: "";
}

.fa-anchor-circle-xmark::before {
	content: "";
}

.fa-ellipsis-h::before, .fa-ellipsis::before {
	content: "";
}

.fa-chess-pawn::before {
	content: "";
}

.fa-first-aid::before, .fa-kit-medical::before {
	content: "";
}

.fa-person-through-window::before {
	content: "";
}

.fa-toolbox::before {
	content: "";
}

.fa-hands-holding-circle::before {
	content: "";
}

.fa-bug::before {
	content: "";
}

.fa-credit-card-alt::before, .fa-credit-card::before {
	content: "";
}

.fa-automobile::before, .fa-car::before {
	content: "";
}

.fa-hand-holding-hand::before {
	content: "";
}

.fa-book-open-reader::before, .fa-book-reader::before {
	content: "";
}

.fa-mountain-sun::before {
	content: "";
}

.fa-arrows-left-right-to-line::before {
	content: "";
}

.fa-dice-d20::before {
	content: "";
}

.fa-truck-droplet::before {
	content: "";
}

.fa-file-circle-xmark::before {
	content: "";
}

.fa-temperature-arrow-up::before, .fa-temperature-up::before {
	content: "";
}

.fa-medal::before {
	content: "";
}

.fa-bed::before {
	content: "";
}

.fa-h-square::before, .fa-square-h::before {
	content: "";
}

.fa-podcast::before {
	content: "";
}

.fa-temperature-4::before, .fa-temperature-full::before, .fa-thermometer-4::before, .fa-thermometer-full::before {
	content: "";
}

.fa-bell::before {
	content: "";
}

.fa-superscript::before {
	content: "";
}

.fa-plug-circle-xmark::before {
	content: "";
}

.fa-star-of-life::before {
	content: "";
}

.fa-phone-slash::before {
	content: "";
}

.fa-paint-roller::before {
	content: "";
}

.fa-hands-helping::before, .fa-handshake-angle::before {
	content: "";
}

.fa-location-dot::before, .fa-map-marker-alt::before {
	content: "";
}

.fa-file::before {
	content: "";
}

.fa-greater-than::before {
	content: ">";
}

.fa-person-swimming::before, .fa-swimmer::before {
	content: "";
}

.fa-arrow-down::before {
	content: "";
}

.fa-droplet::before, .fa-tint::before {
	content: "";
}

.fa-eraser::before {
	content: "";
}

.fa-earth-america::before, .fa-earth-americas::before, .fa-earth::before, .fa-globe-americas::before {
	content: "";
}

.fa-person-burst::before {
	content: "";
}

.fa-dove::before {
	content: "";
}

.fa-battery-0::before, .fa-battery-empty::before {
	content: "";
}

.fa-socks::before {
	content: "";
}

.fa-inbox::before {
	content: "";
}

.fa-section::before {
	content: "";
}

.fa-gauge-high::before, .fa-tachometer-alt-fast::before, .fa-tachometer-alt::before {
	content: "";
}

.fa-envelope-open-text::before {
	content: "";
}

.fa-hospital-alt::before, .fa-hospital-wide::before, .fa-hospital::before {
	content: "";
}

.fa-wine-bottle::before {
	content: "";
}

.fa-chess-rook::before {
	content: "";
}

.fa-bars-staggered::before, .fa-reorder::before, .fa-stream::before {
	content: "";
}

.fa-dharmachakra::before {
	content: "";
}

.fa-hotdog::before {
	content: "";
}

.fa-blind::before, .fa-person-walking-with-cane::before {
	content: "";
}

.fa-drum::before {
	content: "";
}

.fa-ice-cream::before {
	content: "";
}

.fa-heart-circle-bolt::before {
	content: "";
}

.fa-fax::before {
	content: "";
}

.fa-paragraph::before {
	content: "";
}

.fa-check-to-slot::before, .fa-vote-yea::before {
	content: "";
}

.fa-star-half::before {
	content: "";
}

.fa-boxes-alt::before, .fa-boxes-stacked::before, .fa-boxes::before {
	content: "";
}

.fa-chain::before, .fa-link::before {
	content: "";
}

.fa-assistive-listening-systems::before, .fa-ear-listen::before {
	content: "";
}

.fa-tree-city::before {
	content: "";
}

.fa-play::before {
	content: "";
}

.fa-font::before {
	content: "";
}

.fa-rupiah-sign::before {
	content: "";
}

.fa-magnifying-glass::before, .fa-search::before {
	content: "";
}

.fa-ping-pong-paddle-ball::before, .fa-table-tennis-paddle-ball::before, .fa-table-tennis::before {
	content: "";
}

.fa-diagnoses::before, .fa-person-dots-from-line::before {
	content: "";
}

.fa-trash-can-arrow-up::before, .fa-trash-restore-alt::before {
	content: "";
}

.fa-naira-sign::before {
	content: "";
}

.fa-cart-arrow-down::before {
	content: "";
}

.fa-walkie-talkie::before {
	content: "";
}

.fa-file-edit::before, .fa-file-pen::before {
	content: "";
}

.fa-receipt::before {
	content: "";
}

.fa-pen-square::before, .fa-pencil-square::before, .fa-square-pen::before {
	content: "";
}

.fa-suitcase-rolling::before {
	content: "";
}

.fa-person-circle-exclamation::before {
	content: "";
}

.fa-chevron-down::before {
	content: "";
}

.fa-battery-5::before, .fa-battery-full::before, .fa-battery::before {
	content: "";
}

.fa-skull-crossbones::before {
	content: "";
}

.fa-code-compare::before {
	content: "";
}

.fa-list-dots::before, .fa-list-ul::before {
	content: "";
}

.fa-school-lock::before {
	content: "";
}

.fa-tower-cell::before {
	content: "";
}

.fa-down-long::before, .fa-long-arrow-alt-down::before {
	content: "";
}

.fa-ranking-star::before {
	content: "";
}

.fa-chess-king::before {
	content: "";
}

.fa-person-harassing::before {
	content: "";
}

.fa-brazilian-real-sign::before {
	content: "";
}

.fa-landmark-alt::before, .fa-landmark-dome::before {
	content: "";
}

.fa-arrow-up::before {
	content: "";
}

.fa-television::before, .fa-tv-alt::before, .fa-tv::before {
	content: "";
}

.fa-shrimp::before {
	content: "";
}

.fa-list-check::before, .fa-tasks::before {
	content: "";
}

.fa-jug-detergent::before {
	content: "";
}

.fa-circle-user::before, .fa-user-circle::before {
	content: "";
}

.fa-user-shield::before {
	content: "";
}

.fa-wind::before {
	content: "";
}

.fa-car-burst::before, .fa-car-crash::before {
	content: "";
}

.fa-y::before {
	content: "Y";
}

.fa-person-snowboarding::before, .fa-snowboarding::before {
	content: "";
}

.fa-shipping-fast::before, .fa-truck-fast::before {
	content: "";
}

.fa-fish::before {
	content: "";
}

.fa-user-graduate::before {
	content: "";
}

.fa-adjust::before, .fa-circle-half-stroke::before {
	content: "";
}

.fa-clapperboard::before {
	content: "";
}

.fa-circle-radiation::before, .fa-radiation-alt::before {
	content: "";
}

.fa-baseball-ball::before, .fa-baseball::before {
	content: "";
}

.fa-jet-fighter-up::before {
	content: "";
}

.fa-diagram-project::before, .fa-project-diagram::before {
	content: "";
}

.fa-copy::before {
	content: "";
}

.fa-volume-mute::before, .fa-volume-times::before, .fa-volume-xmark::before {
	content: "";
}

.fa-hand-sparkles::before {
	content: "";
}

.fa-grip-horizontal::before, .fa-grip::before {
	content: "";
}

.fa-share-from-square::before, .fa-share-square::before {
	content: "";
}

.fa-child-combatant::before, .fa-child-rifle::before {
	content: "";
}

.fa-gun::before {
	content: "";
}

.fa-phone-square::before, .fa-square-phone::before {
	content: "";
}

.fa-add::before, .fa-plus::before {
	content: "+";
}

.fa-expand::before {
	content: "";
}

.fa-computer::before {
	content: "";
}

.fa-close::before, .fa-multiply::before, .fa-remove::before, .fa-times::before, .fa-xmark::before {
	content: "";
}

.fa-arrows-up-down-left-right::before, .fa-arrows::before {
	content: "";
}

.fa-chalkboard-teacher::before, .fa-chalkboard-user::before {
	content: "";
}

.fa-peso-sign::before {
	content: "";
}

.fa-building-shield::before {
	content: "";
}

.fa-baby::before {
	content: "";
}

.fa-users-line::before {
	content: "";
}

.fa-quote-left-alt::before, .fa-quote-left::before {
	content: "";
}

.fa-tractor::before {
	content: "";
}

.fa-trash-arrow-up::before, .fa-trash-restore::before {
	content: "";
}

.fa-arrow-down-up-lock::before {
	content: "";
}

.fa-lines-leaning::before {
	content: "";
}

.fa-ruler-combined::before {
	content: "";
}

.fa-copyright::before {
	content: "";
}

.fa-equals::before {
	content: "=";
}

.fa-blender::before {
	content: "";
}

.fa-teeth::before {
	content: "";
}

.fa-ils::before, .fa-shekel-sign::before, .fa-shekel::before, .fa-sheqel-sign::before, .fa-sheqel::before {
	content: "";
}

.fa-map::before {
	content: "";
}

.fa-rocket::before {
	content: "";
}

.fa-photo-film::before, .fa-photo-video::before {
	content: "";
}

.fa-folder-minus::before {
	content: "";
}

.fa-store::before {
	content: "";
}

.fa-arrow-trend-up::before {
	content: "";
}

.fa-plug-circle-minus::before {
	content: "";
}

.fa-sign-hanging::before, .fa-sign::before {
	content: "";
}

.fa-bezier-curve::before {
	content: "";
}

.fa-bell-slash::before {
	content: "";
}

.fa-tablet-android::before, .fa-tablet::before {
	content: "";
}

.fa-school-flag::before {
	content: "";
}

.fa-fill::before {
	content: "";
}

.fa-angle-up::before {
	content: "";
}

.fa-drumstick-bite::before {
	content: "";
}

.fa-holly-berry::before {
	content: "";
}

.fa-chevron-left::before {
	content: "";
}

.fa-bacteria::before {
	content: "";
}

.fa-hand-lizard::before {
	content: "";
}

.fa-notdef::before {
	content: "";
}

.fa-disease::before {
	content: "";
}

.fa-briefcase-medical::before {
	content: "";
}

.fa-genderless::before {
	content: "";
}

.fa-chevron-right::before {
	content: "";
}

.fa-retweet::before {
	content: "";
}

.fa-car-alt::before, .fa-car-rear::before {
	content: "";
}

.fa-pump-soap::before {
	content: "";
}

.fa-video-slash::before {
	content: "";
}

.fa-battery-2::before, .fa-battery-quarter::before {
	content: "";
}

.fa-radio::before {
	content: "";
}

.fa-baby-carriage::before, .fa-carriage-baby::before {
	content: "";
}

.fa-traffic-light::before {
	content: "";
}

.fa-thermometer::before {
	content: "";
}

.fa-vr-cardboard::before {
	content: "";
}

.fa-hand-middle-finger::before {
	content: "";
}

.fa-percent::before, .fa-percentage::before {
	content: "%";
}

.fa-truck-moving::before {
	content: "";
}

.fa-glass-water-droplet::before {
	content: "";
}

.fa-display::before {
	content: "";
}

.fa-face-smile::before, .fa-smile::before {
	content: "";
}

.fa-thumb-tack::before, .fa-thumbtack::before {
	content: "";
}

.fa-trophy::before {
	content: "";
}

.fa-person-praying::before, .fa-pray::before {
	content: "";
}

.fa-hammer::before {
	content: "";
}

.fa-hand-peace::before {
	content: "";
}

.fa-rotate::before, .fa-sync-alt::before {
	content: "";
}

.fa-spinner::before {
	content: "";
}

.fa-robot::before {
	content: "";
}

.fa-peace::before {
	content: "";
}

.fa-cogs::before, .fa-gears::before {
	content: "";
}

.fa-warehouse::before {
	content: "";
}

.fa-arrow-up-right-dots::before {
	content: "";
}

.fa-splotch::before {
	content: "";
}

.fa-face-grin-hearts::before, .fa-grin-hearts::before {
	content: "";
}

.fa-dice-four::before {
	content: "";
}

.fa-sim-card::before {
	content: "";
}

.fa-transgender-alt::before, .fa-transgender::before {
	content: "";
}

.fa-mercury::before {
	content: "";
}

.fa-arrow-turn-down::before, .fa-level-down::before {
	content: "";
}

.fa-person-falling-burst::before {
	content: "";
}

.fa-award::before {
	content: "";
}

.fa-ticket-alt::before, .fa-ticket-simple::before {
	content: "";
}

.fa-building::before {
	content: "";
}

.fa-angle-double-left::before, .fa-angles-left::before {
	content: "";
}

.fa-qrcode::before {
	content: "";
}

.fa-clock-rotate-left::before, .fa-history::before {
	content: "";
}

.fa-face-grin-beam-sweat::before, .fa-grin-beam-sweat::before {
	content: "";
}

.fa-arrow-right-from-file::before, .fa-file-export::before {
	content: "";
}

.fa-shield-blank::before, .fa-shield::before {
	content: "";
}

.fa-arrow-up-short-wide::before, .fa-sort-amount-up-alt::before {
	content: "";
}

.fa-house-medical::before {
	content: "";
}

.fa-golf-ball-tee::before, .fa-golf-ball::before {
	content: "";
}

.fa-chevron-circle-left::before, .fa-circle-chevron-left::before {
	content: "";
}

.fa-house-chimney-window::before {
	content: "";
}

.fa-pen-nib::before {
	content: "";
}

.fa-tent-arrow-turn-left::before {
	content: "";
}

.fa-tents::before {
	content: "";
}

.fa-magic::before, .fa-wand-magic::before {
	content: "";
}

.fa-dog::before {
	content: "";
}

.fa-carrot::before {
	content: "";
}

.fa-moon::before {
	content: "";
}

.fa-wine-glass-alt::before, .fa-wine-glass-empty::before {
	content: "";
}

.fa-cheese::before {
	content: "";
}

.fa-yin-yang::before {
	content: "";
}

.fa-music::before {
	content: "";
}

.fa-code-commit::before {
	content: "";
}

.fa-temperature-low::before {
	content: "";
}

.fa-biking::before, .fa-person-biking::before {
	content: "";
}

.fa-broom::before {
	content: "";
}

.fa-shield-heart::before {
	content: "";
}

.fa-gopuram::before {
	content: "";
}

.fa-earth-oceania::before, .fa-globe-oceania::before {
	content: "";
}

.fa-square-xmark::before, .fa-times-square::before, .fa-xmark-square::before {
	content: "";
}

.fa-hashtag::before {
	content: "#";
}

.fa-expand-alt::before, .fa-up-right-and-down-left-from-center::before {
	content: "";
}

.fa-oil-can::before {
	content: "";
}

.fa-t::before {
	content: "T";
}

.fa-hippo::before {
	content: "";
}

.fa-chart-column::before {
	content: "";
}

.fa-infinity::before {
	content: "";
}

.fa-vial-circle-check::before {
	content: "";
}

.fa-person-arrow-down-to-line::before {
	content: "";
}

.fa-voicemail::before {
	content: "";
}

.fa-fan::before {
	content: "";
}

.fa-person-walking-luggage::before {
	content: "";
}

.fa-arrows-alt-v::before, .fa-up-down::before {
	content: "";
}

.fa-cloud-moon-rain::before {
	content: "";
}

.fa-calendar::before {
	content: "";
}

.fa-trailer::before {
	content: "";
}

.fa-bahai::before, .fa-haykal::before {
	content: "";
}

.fa-sd-card::before {
	content: "";
}

.fa-dragon::before {
	content: "";
}

.fa-shoe-prints::before {
	content: "";
}

.fa-circle-plus::before, .fa-plus-circle::before {
	content: "";
}

.fa-face-grin-tongue-wink::before, .fa-grin-tongue-wink::before {
	content: "";
}

.fa-hand-holding::before {
	content: "";
}

.fa-plug-circle-exclamation::before {
	content: "";
}

.fa-chain-broken::before, .fa-chain-slash::before, .fa-link-slash::before, .fa-unlink::before {
	content: "";
}

.fa-clone::before {
	content: "";
}

.fa-person-walking-arrow-loop-left::before {
	content: "";
}

.fa-arrow-up-z-a::before, .fa-sort-alpha-up-alt::before {
	content: "";
}

.fa-fire-alt::before, .fa-fire-flame-curved::before {
	content: "";
}

.fa-tornado::before {
	content: "";
}

.fa-file-circle-plus::before {
	content: "";
}

.fa-book-quran::before, .fa-quran::before {
	content: "";
}

.fa-anchor::before {
	content: "";
}

.fa-border-all::before {
	content: "";
}

.fa-angry::before, .fa-face-angry::before {
	content: "";
}

.fa-cookie-bite::before {
	content: "";
}

.fa-arrow-trend-down::before {
	content: "";
}

.fa-feed::before, .fa-rss::before {
	content: "";
}

.fa-draw-polygon::before {
	content: "";
}

.fa-balance-scale::before, .fa-scale-balanced::before {
	content: "";
}

.fa-gauge-simple-high::before, .fa-tachometer-fast::before, .fa-tachometer::before {
	content: "";
}

.fa-shower::before {
	content: "";
}

.fa-desktop-alt::before, .fa-desktop::before {
	content: "";
}

.fa-m::before {
	content: "M";
}

.fa-table-list::before, .fa-th-list::before {
	content: "";
}

.fa-comment-sms::before, .fa-sms::before {
	content: "";
}

.fa-book::before {
	content: "";
}

.fa-user-plus::before {
	content: "";
}

.fa-check::before {
	content: "";
}

.fa-battery-4::before, .fa-battery-three-quarters::before {
	content: "";
}

.fa-house-circle-check::before {
	content: "";
}

.fa-angle-left::before {
	content: "";
}

.fa-diagram-successor::before {
	content: "";
}

.fa-truck-arrow-right::before {
	content: "";
}

.fa-arrows-split-up-and-left::before {
	content: "";
}

.fa-fist-raised::before, .fa-hand-fist::before {
	content: "";
}

.fa-cloud-moon::before {
	content: "";
}

.fa-briefcase::before {
	content: "";
}

.fa-person-falling::before {
	content: "";
}

.fa-image-portrait::before, .fa-portrait::before {
	content: "";
}

.fa-user-tag::before {
	content: "";
}

.fa-rug::before {
	content: "";
}

.fa-earth-europe::before, .fa-globe-europe::before {
	content: "";
}

.fa-cart-flatbed-suitcase::before, .fa-luggage-cart::before {
	content: "";
}

.fa-rectangle-times::before, .fa-rectangle-xmark::before, .fa-times-rectangle::before, .fa-window-close::before {
	content: "";
}

.fa-baht-sign::before {
	content: "";
}

.fa-book-open::before {
	content: "";
}

.fa-book-journal-whills::before, .fa-journal-whills::before {
	content: "";
}

.fa-handcuffs::before {
	content: "";
}

.fa-exclamation-triangle::before, .fa-triangle-exclamation::before, .fa-warning::before {
	content: "";
}

.fa-database::before {
	content: "";
}

.fa-arrow-turn-right::before, .fa-mail-forward::before, .fa-share::before {
	content: "";
}

.fa-bottle-droplet::before {
	content: "";
}

.fa-mask-face::before {
	content: "";
}

.fa-hill-rockslide::before {
	content: "";
}

.fa-exchange-alt::before, .fa-right-left::before {
	content: "";
}

.fa-paper-plane::before {
	content: "";
}

.fa-road-circle-exclamation::before {
	content: "";
}

.fa-dungeon::before {
	content: "";
}

.fa-align-right::before {
	content: "";
}

.fa-money-bill-1-wave::before, .fa-money-bill-wave-alt::before {
	content: "";
}

.fa-life-ring::before {
	content: "";
}

.fa-hands::before, .fa-sign-language::before, .fa-signing::before {
	content: "";
}

.fa-calendar-day::before {
	content: "";
}

.fa-ladder-water::before, .fa-swimming-pool::before, .fa-water-ladder::before {
	content: "";
}

.fa-arrows-up-down::before, .fa-arrows-v::before {
	content: "";
}

.fa-face-grimace::before, .fa-grimace::before {
	content: "";
}

.fa-wheelchair-alt::before, .fa-wheelchair-move::before {
	content: "";
}

.fa-level-down-alt::before, .fa-turn-down::before {
	content: "";
}

.fa-person-walking-arrow-right::before {
	content: "";
}

.fa-envelope-square::before, .fa-square-envelope::before {
	content: "";
}

.fa-dice::before {
	content: "";
}

.fa-bowling-ball::before {
	content: "";
}

.fa-brain::before {
	content: "";
}

.fa-band-aid::before, .fa-bandage::before {
	content: "";
}

.fa-calendar-minus::before {
	content: "";
}

.fa-circle-xmark::before, .fa-times-circle::before, .fa-xmark-circle::before {
	content: "";
}

.fa-gifts::before {
	content: "";
}

.fa-hotel::before {
	content: "";
}

.fa-earth-asia::before, .fa-globe-asia::before {
	content: "";
}

.fa-id-card-alt::before, .fa-id-card-clip::before {
	content: "";
}

.fa-magnifying-glass-plus::before, .fa-search-plus::before {
	content: "";
}

.fa-thumbs-up::before {
	content: "";
}

.fa-user-clock::before {
	content: "";
}

.fa-allergies::before, .fa-hand-dots::before {
	content: "";
}

.fa-file-invoice::before {
	content: "";
}

.fa-window-minimize::before {
	content: "";
}

.fa-coffee::before, .fa-mug-saucer::before {
	content: "";
}

.fa-brush::before {
	content: "";
}

.fa-mask::before {
	content: "";
}

.fa-magnifying-glass-minus::before, .fa-search-minus::before {
	content: "";
}

.fa-ruler-vertical::before {
	content: "";
}

.fa-user-alt::before, .fa-user-large::before {
	content: "";
}

.fa-train-tram::before {
	content: "";
}

.fa-user-nurse::before {
	content: "";
}

.fa-syringe::before {
	content: "";
}

.fa-cloud-sun::before {
	content: "";
}

.fa-stopwatch-20::before {
	content: "";
}

.fa-square-full::before {
	content: "";
}

.fa-magnet::before {
	content: "";
}

.fa-jar::before {
	content: "";
}

.fa-note-sticky::before, .fa-sticky-note::before {
	content: "";
}

.fa-bug-slash::before {
	content: "";
}

.fa-arrow-up-from-water-pump::before {
	content: "";
}

.fa-bone::before {
	content: "";
}

.fa-user-injured::before {
	content: "";
}

.fa-face-sad-tear::before, .fa-sad-tear::before {
	content: "";
}

.fa-plane::before {
	content: "";
}

.fa-tent-arrows-down::before {
	content: "";
}

.fa-exclamation::before {
	content: "!";
}

.fa-arrows-spin::before {
	content: "";
}

.fa-print::before {
	content: "";
}

.fa-try::before, .fa-turkish-lira-sign::before, .fa-turkish-lira::before {
	content: "";
}

.fa-dollar-sign::before, .fa-dollar::before, .fa-usd::before {
	content: "$";
}

.fa-x::before {
	content: "X";
}

.fa-magnifying-glass-dollar::before, .fa-search-dollar::before {
	content: "";
}

.fa-users-cog::before, .fa-users-gear::before {
	content: "";
}

.fa-person-military-pointing::before {
	content: "";
}

.fa-bank::before, .fa-building-columns::before, .fa-institution::before, .fa-museum::before, .fa-university::before {
	content: "";
}

.fa-umbrella::before {
	content: "";
}

.fa-trowel::before {
	content: "";
}

.fa-d::before {
	content: "D";
}

.fa-stapler::before {
	content: "";
}

.fa-masks-theater::before, .fa-theater-masks::before {
	content: "";
}

.fa-kip-sign::before {
	content: "";
}

.fa-hand-point-left::before {
	content: "";
}

.fa-handshake-alt::before, .fa-handshake-simple::before {
	content: "";
}

.fa-fighter-jet::before, .fa-jet-fighter::before {
	content: "";
}

.fa-share-alt-square::before, .fa-square-share-nodes::before {
	content: "";
}

.fa-barcode::before {
	content: "";
}

.fa-plus-minus::before {
	content: "";
}

.fa-video-camera::before, .fa-video::before {
	content: "";
}

.fa-graduation-cap::before, .fa-mortar-board::before {
	content: "";
}

.fa-hand-holding-medical::before {
	content: "";
}

.fa-person-circle-check::before {
	content: "";
}

.fa-level-up-alt::before, .fa-turn-up::before {
	content: "";
}

.fa-sr-only, .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

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

:host, :root {
	--fa-style-family-brands: "Font Awesome 6 Brands";
	--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

.fa-brands, .fab {
	font-weight: 400;
}

.fa-monero:before {
	content: "";
}

.fa-hooli:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-shopware:before {
	content: "";
}

.fa-creative-commons-nc:before {
	content: "";
}

.fa-aws:before {
	content: "";
}

.fa-redhat:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-cloudflare:before {
	content: "";
}

.fa-ups:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-dyalog:before {
	content: "";
}

.fa-bity:before {
	content: "";
}

.fa-stackpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-guilded:before {
	content: "";
}

.fa-vnv:before {
	content: "";
}

.fa-js-square:before, .fa-square-js:before {
	content: "";
}

.fa-microsoft:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-orcid:before {
	content: "";
}

.fa-java:before {
	content: "";
}

.fa-invision:before {
	content: "";
}

.fa-creative-commons-pd-alt:before {
	content: "";
}

.fa-centercode:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-hire-a-helper:before {
	content: "";
}

.fa-creative-commons-by:before {
	content: "";
}

.fa-unity:before {
	content: "";
}

.fa-whmcs:before {
	content: "";
}

.fa-rocketchat:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-untappd:before {
	content: "";
}

.fa-mailchimp:before {
	content: "";
}

.fa-css3-alt:before {
	content: "";
}

.fa-reddit-square:before, .fa-square-reddit:before {
	content: "";
}

.fa-vimeo-v:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-square-font-awesome:before {
	content: "";
}

.fa-deskpro:before {
	content: "";
}

.fa-sistrix:before {
	content: "";
}

.fa-instagram-square:before, .fa-square-instagram:before {
	content: "";
}

.fa-battle-net:before {
	content: "";
}

.fa-the-red-yeti:before {
	content: "";
}

.fa-hacker-news-square:before, .fa-square-hacker-news:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-threads:before {
	content: "";
}

.fa-napster:before {
	content: "";
}

.fa-snapchat-square:before, .fa-square-snapchat:before {
	content: "";
}

.fa-google-plus-g:before {
	content: "";
}

.fa-artstation:before {
	content: "";
}

.fa-markdown:before {
	content: "";
}

.fa-sourcetree:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-diaspora:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-phoenix-squadron:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-algolia:before {
	content: "";
}

.fa-red-river:before {
	content: "";
}

.fa-creative-commons-sa:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
	content: "";
}

.fa-atlassian:before {
	content: "";
}

.fa-linkedin-in:before {
	content: "";
}

.fa-digital-ocean:before {
	content: "";
}

.fa-nimblr:before {
	content: "";
}

.fa-chromecast:before {
	content: "";
}

.fa-evernote:before {
	content: "";
}

.fa-hacker-news:before {
	content: "";
}

.fa-creative-commons-sampling:before {
	content: "";
}

.fa-adversal:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-watchman-monitoring:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-weixin:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-git-alt:before {
	content: "";
}

.fa-lyft:before {
	content: "";
}

.fa-rev:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-wizards-of-the-coast:before {
	content: "";
}

.fa-square-viadeo:before, .fa-viadeo-square:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.fa-centos:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-cloudsmith:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-dribbble-square:before, .fa-square-dribbble:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-node:before {
	content: "";
}

.fa-mix:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-cc-apple-pay:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-debian:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-instalod:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-sellcast:before {
	content: "";
}

.fa-square-twitter:before, .fa-twitter-square:before {
	content: "";
}

.fa-r-project:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-freebsd:before {
	content: "";
}

.fa-vuejs:before {
	content: "";
}

.fa-accusoft:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-fonticons-fi:before {
	content: "";
}

.fa-app-store:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-itunes-note:before {
	content: "";
}

.fa-golang:before {
	content: "";
}

.fa-kickstarter:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-uncharted:before {
	content: "";
}

.fa-firstdraft:before {
	content: "";
}

.fa-square-youtube:before, .fa-youtube-square:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-rendact:before, .fa-wpressr:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-galactic-republic:before {
	content: "";
}

.fa-nfc-directional:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-joget:before {
	content: "";
}

.fa-fedora:before {
	content: "";
}

.fa-stripe-s:before {
	content: "";
}

.fa-meta:before {
	content: "";
}

.fa-laravel:before {
	content: "";
}

.fa-hotjar:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-sticker-mule:before {
	content: "";
}

.fa-creative-commons-zero:before {
	content: "";
}

.fa-hips:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-discord:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-app-store-ios:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-confluence:before {
	content: "";
}

.fa-mdb:before {
	content: "";
}

.fa-dochub:before {
	content: "";
}

.fa-accessible-icon:before {
	content: "";
}

.fa-ebay:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-unsplash:before {
	content: "";
}

.fa-yarn:before {
	content: "";
}

.fa-square-steam:before, .fa-steam-square:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-square-vimeo:before, .fa-vimeo-square:before {
	content: "";
}

.fa-asymmetrik:before {
	content: "";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
	content: "";
}

.fa-gratipay:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-hive:before {
	content: "";
}

.fa-gitkraken:before {
	content: "";
}

.fa-keybase:before {
	content: "";
}

.fa-apple-pay:before {
	content: "";
}

.fa-padlet:before {
	content: "";
}

.fa-amazon-pay:before {
	content: "";
}

.fa-github-square:before, .fa-square-github:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-fedex:before {
	content: "";
}

.fa-phoenix-framework:before {
	content: "";
}

.fa-shopify:before {
	content: "";
}

.fa-neos:before {
	content: "";
}

.fa-square-threads:before {
	content: "";
}

.fa-hackerrank:before {
	content: "";
}

.fa-researchgate:before {
	content: "";
}

.fa-swift:before {
	content: "";
}

.fa-angular:before {
	content: "";
}

.fa-speakap:before {
	content: "";
}

.fa-angrycreative:before {
	content: "";
}

.fa-y-combinator:before {
	content: "";
}

.fa-empire:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-gitlab-square:before, .fa-square-gitlab:before {
	content: "";
}

.fa-studiovinari:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-goodreads:before {
	content: "";
}

.fa-odnoklassniki-square:before, .fa-square-odnoklassniki:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-sith:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-page4:before {
	content: "";
}

.fa-hashnode:before {
	content: "";
}

.fa-react:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-squarespace:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-creative-commons-share:before {
	content: "";
}

.fa-bitcoin:before {
	content: "";
}

.fa-keycdn:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-itch-io:before {
	content: "";
}

.fa-umbraco:before {
	content: "";
}

.fa-galactic-senate:before {
	content: "";
}

.fa-ubuntu:before {
	content: "";
}

.fa-draft2digital:before {
	content: "";
}

.fa-stripe:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-dhl:before {
	content: "";
}

.fa-pinterest-square:before, .fa-square-pinterest:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-blackberry:before {
	content: "";
}

.fa-creative-commons-pd:before {
	content: "";
}

.fa-playstation:before {
	content: "";
}

.fa-quinscape:before {
	content: "";
}

.fa-less:before {
	content: "";
}

.fa-blogger-b:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-typo3:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-dailymotion:before {
	content: "";
}

.fa-affiliatetheme:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-bootstrap:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-nfc-symbol:before {
	content: "";
}

.fa-ethereum:before {
	content: "";
}

.fa-speaker-deck:before {
	content: "";
}

.fa-creative-commons-nc-eu:before {
	content: "";
}

.fa-patreon:before {
	content: "";
}

.fa-avianex:before {
	content: "";
}

.fa-ello:before {
	content: "";
}

.fa-gofore:before {
	content: "";
}

.fa-bimobject:before {
	content: "";
}

.fa-facebook-f:before {
	content: "";
}

.fa-google-plus-square:before, .fa-square-google-plus:before {
	content: "";
}

.fa-mandalorian:before {
	content: "";
}

.fa-first-order-alt:before {
	content: "";
}

.fa-osi:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-d-and-d-beyond:before {
	content: "";
}

.fa-periscope:before {
	content: "";
}

.fa-fulcrum:before {
	content: "";
}

.fa-cloudscale:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-mizuni:before {
	content: "";
}

.fa-schlix:before {
	content: "";
}

.fa-square-xing:before, .fa-xing-square:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-cloudversify:before {
	content: "";
}

.fa-usps:before {
	content: "";
}

.fa-megaport:before {
	content: "";
}

.fa-magento:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-fly:before {
	content: "";
}

.fa-aviato:before {
	content: "";
}

.fa-itunes:before {
	content: "";
}

.fa-cuttlefish:before {
	content: "";
}

.fa-blogger:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-viber:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-symfony:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-facebook-messenger:before {
	content: "";
}

.fa-audible:before {
	content: "";
}

.fa-think-peaks:before {
	content: "";
}

.fa-bilibili:before {
	content: "";
}

.fa-erlang:before {
	content: "";
}

.fa-x-twitter:before {
	content: "";
}

.fa-cotton-bureau:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-42-group:before, .fa-innosoft:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-elementor:before {
	content: "";
}

.fa-pied-piper-square:before, .fa-square-pied-piper:before {
	content: "";
}

.fa-creative-commons-nd:before {
	content: "";
}

.fa-palfed:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-resolving:before {
	content: "";
}

.fa-xbox:before {
	content: "";
}

.fa-searchengin:before {
	content: "";
}

.fa-tiktok:before {
	content: "";
}

.fa-facebook-square:before, .fa-square-facebook:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-hubspot:before {
	content: "";
}

.fa-deploydog:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-mixer:before {
	content: "";
}

.fa-lastfm-square:before, .fa-square-lastfm:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-mendeley:before {
	content: "";
}

.fa-uniregistry:before {
	content: "";
}

.fa-figma:before {
	content: "";
}

.fa-creative-commons-remix:before {
	content: "";
}

.fa-cc-amazon-pay:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-cmplid:before {
	content: "";
}

.fa-facebook:before {
	content: "";
}

.fa-gripfire:before {
	content: "";
}

.fa-jedi-order:before {
	content: "";
}

.fa-uikit:before {
	content: "";
}

.fa-fort-awesome-alt:before {
	content: "";
}

.fa-phabricator:before {
	content: "";
}

.fa-ussunnah:before {
	content: "";
}

.fa-earlybirds:before {
	content: "";
}

.fa-trade-federation:before {
	content: "";
}

.fa-autoprefixer:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-google-play:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-line:before {
	content: "";
}

.fa-google-drive:before {
	content: "";
}

.fa-servicestack:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-deezer:before {
	content: "";
}

.fa-raspberry-pi:before {
	content: "";
}

.fa-jira:before {
	content: "";
}

.fa-docker:before {
	content: "";
}

.fa-screenpal:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-gitter:before {
	content: "";
}

.fa-d-and-d:before {
	content: "";
}

.fa-microblog:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-pied-piper-hat:before {
	content: "";
}

.fa-kickstarter-k:before {
	content: "";
}

.fa-yandex:before {
	content: "";
}

.fa-readme:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-sass:before {
	content: "";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
	content: "";
}

.fa-buromobelexperte:before {
	content: "";
}

.fa-salesforce:before {
	content: "";
}

.fa-octopus-deploy:before {
	content: "";
}

.fa-medapps:before {
	content: "";
}

.fa-ns8:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-apper:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-waze:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-snapchat-ghost:before, .fa-snapchat:before {
	content: "";
}

.fa-fantasy-flight-games:before {
	content: "";
}

.fa-rust:before {
	content: "";
}

.fa-wix:before {
	content: "";
}

.fa-behance-square:before, .fa-square-behance:before {
	content: "";
}

.fa-supple:before {
	content: "";
}

.fa-rebel:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-staylinked:before {
	content: "";
}

.fa-kaggle:before {
	content: "";
}

.fa-space-awesome:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-cpanel:before {
	content: "";
}

.fa-goodreads-g:before {
	content: "";
}

.fa-git-square:before, .fa-square-git:before {
	content: "";
}

.fa-square-tumblr:before, .fa-tumblr-square:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-creative-commons-nc-jp:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-perbyte:before {
	content: "";
}

.fa-grunt:before {
	content: "";
}

.fa-weebly:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-themeco:before {
	content: "";
}

.fa-python:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-bots:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-hornbill:before {
	content: "";
}

.fa-js:before {
	content: "";
}

.fa-ideal:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-dev:before {
	content: "";
}

.fa-sketch:before {
	content: "";
}

.fa-yandex-international:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-uber:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-php:before {
	content: "";
}

.fa-alipay:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-firefox-browser:before {
	content: "";
}

.fa-replyd:before {
	content: "";
}

.fa-suse:before {
	content: "";
}

.fa-jenkins:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-rockrms:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-buffer:before {
	content: "";
}

.fa-npm:before {
	content: "";
}

.fa-yammer:before {
	content: "";
}

.fa-btc:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-stubber:before {
	content: "";
}

.fa-telegram-plane:before, .fa-telegram:before {
	content: "";
}

.fa-old-republic:before {
	content: "";
}

.fa-odysee:before {
	content: "";
}

.fa-square-whatsapp:before, .fa-whatsapp-square:before {
	content: "";
}

.fa-node-js:before {
	content: "";
}

.fa-edge-legacy:before {
	content: "";
}

.fa-slack-hash:before, .fa-slack:before {
	content: "";
}

.fa-medrt:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-vaadin:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-square-x-twitter:before {
	content: "";
}

.fa-reacteurope:before {
	content: "";
}

.fa-medium-m:before, .fa-medium:before {
	content: "";
}

.fa-amilia:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-flipboard:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-critical-role:before {
	content: "";
}

.fa-sitrox:before {
	content: "";
}

.fa-discourse:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-mastodon:before {
	content: "";
}

.fa-airbnb:before {
	content: "";
}

.fa-wolf-pack-battalion:before {
	content: "";
}

.fa-buy-n-large:before {
	content: "";
}

.fa-gulp:before {
	content: "";
}

.fa-creative-commons-sampling-plus:before {
	content: "";
}

.fa-strava:before {
	content: "";
}

.fa-ember:before {
	content: "";
}

.fa-canadian-maple-leaf:before {
	content: "";
}

.fa-teamspeak:before {
	content: "";
}

.fa-pushed:before {
	content: "";
}

.fa-wordpress-simple:before {
	content: "";
}

.fa-nutritionix:before {
	content: "";
}

.fa-wodu:before {
	content: "";
}

.fa-google-pay:before {
	content: "";
}

.fa-intercom:before {
	content: "";
}

.fa-zhihu:before {
	content: "";
}

.fa-korvue:before {
	content: "";
}

.fa-pix:before {
	content: "";
}

.fa-steam-symbol:before {
	content: "";
}

:host, :root {
	--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

.fa-regular, .far {
	font-weight: 400;
}

:host, :root {
	--fa-style-family-classic: "Font Awesome 6 Free";
	--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

.fa-solid, .fas {
	font-weight: 900;
}

.select2-container {
	box-sizing: border-box;
	display: block;
	margin: 0;
}

.select2-container:not(.select2) {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	z-index: 10001;
}

.select2-container .select2-selection {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--wp--preset--color--deep-grey);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	padding: 0 12px;
	position: relative;
	height: 48px;
}

.select2-container .select2-selection__rendered {
	font-size: 1rem;
	line-height: 1.2;
}

.select2-container .select2-selection__arrow {
	width: 10px;
	height: 7px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/arrow.svg");
	transition: all .4s;
}

.select2-container .select2-selection__arrow.nitro-lazy {
	background-image: none !important;
}

.select2-container .select2-selection__arrow b {
	display: none;
}

.select2-container .select2-selection__clear {
	display: none;
	background: 0 0;
	border: 0;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}

@media (min-width:768px) {
	.select2-container .select2-selection__clear {
		right: -30px;
	}
}

.select2-dropdown {
	background-color: var(--wp--preset--color--white);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	border: 0;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}

.select2-results {
	display: block;
	overflow: auto;
	max-height: 400px;
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 400px;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.select2-results__options::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.select2-results__option {
	padding: 12px;
	margin-bottom: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	font-size: 1rem;
	line-height: 1.2;
	position: relative;
	border-bottom: 1px solid var(--wp--preset--color--black);
	transition: all .3s;
}

.select2-results__option--highlighted, .select2-results__option--selected {
	background-color: var(--wp--preset--color--yellow);
	color: var(--wp--preset--color--deep-grey);
}

.select2-results__option--selectable {
	cursor: pointer;
}

.select2-container--open .select2-dropdown {
	left: 0;
}

.admin-bar .select2-container--open .select2-dropdown {
	top: 32px;
}

.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-radius: 0;
	overflow: hidden;
}

.select2-search--dropdown {
	display: block;
	padding: 4px;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
	display: none;
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
	display: none !important;
}

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

.h1:not(.iv-eyebrow), .h2:not(.iv-eyebrow), .h3:not(.iv-eyebrow), .h4:not(.iv-eyebrow), .h5:not(.iv-eyebrow), .h6:not(.iv-eyebrow), h1:not(.iv-eyebrow), h2:not(.iv-eyebrow), h3:not(.iv-eyebrow), h4:not(.iv-eyebrow), h5:not(.iv-eyebrow), h6:not(.iv-eyebrow) {
	margin: 0 0 25px;
	padding: 20px 0 0;
}

.h1:not(.iv-eyebrow):first-child, .h2:not(.iv-eyebrow):first-child, .h3:not(.iv-eyebrow):first-child, .h4:not(.iv-eyebrow):first-child, .h5:not(.iv-eyebrow):first-child, .h6:not(.iv-eyebrow):first-child, h1:not(.iv-eyebrow):first-child, h2:not(.iv-eyebrow):first-child, h3:not(.iv-eyebrow):first-child, h4:not(.iv-eyebrow):first-child, h5:not(.iv-eyebrow):first-child, h6:not(.iv-eyebrow):first-child {
	padding-top: 0;
}

.h1:not(.iv-eyebrow):last-child, .h2:not(.iv-eyebrow):last-child, .h3:not(.iv-eyebrow):last-child, .h4:not(.iv-eyebrow):last-child, .h5:not(.iv-eyebrow):last-child, .h6:not(.iv-eyebrow):last-child, h1:not(.iv-eyebrow):last-child, h2:not(.iv-eyebrow):last-child, h3:not(.iv-eyebrow):last-child, h4:not(.iv-eyebrow):last-child, h5:not(.iv-eyebrow):last-child, h6:not(.iv-eyebrow):last-child {
	margin-bottom: 0;
}

.h1, h1 {
	font-size: 1.5625rem;
	line-height: 1.15;
}

@media (min-width:768px) {
	.h1, h1 {
		font-size: 2.1875rem;
		line-height: 1.2;
	}
}

@media (min-width:1200px) {
	.h1, h1 {
		font-size: 3.125rem;
		line-height: 1.1;
	}
}

.h2, h2 {
	font-size: 1.875rem;
	line-height: 1.5;
}

@media (min-width:768px) {
	.h2, h2 {
		font-size: 2.1875rem;
		line-height: 1.3;
	}
}

@media (min-width:1200px) {
	.h2, h2 {
		font-size: 3.4375rem;
		line-height: 1.2;
	}
}

.h3, h3 {
	font-size: 1.75rem;
	line-height: 1.1;
}

@media (min-width:768px) {
	.h3, h3 {
		font-size: 1.875rem;
		line-height: 1.4;
	}
}

@media (min-width:1200px) {
	.h3, h3 {
		font-size: 2rem;
		line-height: 1.3;
	}
}

.h4, h4 {
	font-size: 1.5625rem;
	line-height: 1.2;
}

@media (min-width:768px) {
	.h4, h4 {
		font-size: 1.5rem;
		line-height: 1.35;
	}
}

.h5, .h6, h5, h6 {
	font-size: 1.25rem;
	line-height: 1.6;
}

@media (min-width:768px) {
	.h5, .h6, h5, h6 {
		font-size: 1.875rem;
	}
}

@media (min-width:1200px) {
	.h5, .h6, h5, h6 {
		font-size: 1.25rem;
	}
}

.iv-btn {
	display: inline-flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0;
	border: 0;
	font-size: clamp(.9375rem, .9375rem + ((1vw - .36rem) * 1.5625), 1.125rem);
	line-height: 1.7;
	text-decoration: none;
	position: relative;
	background-color: transparent;
	padding: 5px 40px 9px;
}

.iv-btn span, .iv-homepage-hero__card span, .iv-product span {
	display: block;
}

.iv-btn__title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.is-mac-os .iv-btn__title {
	transform: translateY(.125rem);
}

.iv-btn__icon {
	flex: 0 0 54px;
	max-width: 54px;
	width: 54px;
	height: 45px;
	position: relative;
	overflow: hidden;
}

.iv-btn__icon:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #ecac00;
	background-color: transparent;
	transition: background-color .4s;
	box-sizing: border-box;
}

.iv-btn__icon svg {
	display: block;
	position: absolute;
	top: 50%;
	left: -8px;
	transform: translateY(-50%);
	transition: left .4s;
	z-index: 5;
}

.iv-btn_primary-dark, .iv-btn_primary-light {
	gap: 17px;
}

@media (hover:hover) {
	.iv-btn_primary-dark:hover .iv-btn__icon:before, .iv-btn_primary-light:hover .iv-btn__icon:before {
		background-color: #ecac00;
	}
	
	.iv-btn_primary-dark:hover .iv-btn__icon svg, .iv-btn_primary-light:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-btn_primary-dark:focus, .iv-btn_primary-light:focus {
	outline: 0;
}

.iv-btn_primary-dark:focus:not(:focus-visible), .iv-btn_primary-light:focus:not(:focus-visible), .iv-btn_product-listing-btn:focus:not(:focus-visible), .iv-btn_secondary-dark:focus:not(:focus-visible), .iv-btn_secondary-light:focus:not(:focus-visible), .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform-theme-button:focus:not(:focus-visible), .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_button:focus:not(:focus-visible) {
	outline: 0;
}

.iv-btn_primary-dark:focus-visible, .iv-btn_primary-light:focus-visible {
	outline: 1px solid #1f2022;
	outline-offset: 4px;
}

.iv-btn_primary-dark:focus-visible .iv-btn__icon:before, .iv-btn_primary-light:focus-visible .iv-btn__icon:before {
	background-color: #ecac00;
}

.iv-btn_primary-dark:focus-visible .iv-btn__icon svg, .iv-btn_primary-light:focus-visible .iv-btn__icon svg {
	left: 0;
}

.iv-btn_primary-dark svg path {
	fill: #1f2022;
}

.iv-btn_primary-light {
	color: #f1f1f1;
}

.iv-btn_primary-light svg path {
	fill: #f1f1f1;
}

.iv-btn_product-listing-btn {
	left: 50%;
	transform: translate(-50%);
	text-align: center;
	width: 180px;
	padding: 5px 40px 9px;
	border: 1px solid #ecac00;
	border-radius: 27px;
	transition: color .4s, background-color .4s;
	gap: 12px;
}

@media (hover:hover) {
	.iv-btn_product-listing-btn:hover {
		color: #1f2022;
		background-color: #fff;
	}
}

.iv-btn_product-listing-btn:focus {
	outline: 0;
}

.iv-btn_product-listing-btn:focus-visible {
	outline: 1px solid #1f2022;
	outline-offset: 4px;
	color: #1f2022;
	background-color: #ecac00;
}

.iv-btn_secondary-dark, .iv-btn_secondary-light {
	padding: 5px 40px 9px;
	border: 1px solid #ecac00;
	border-radius: 27px;
	transition: color .4s, background-color .4s;
	gap: 12px;
}

@media (hover:hover) {
	.iv-btn_secondary-dark:hover, .iv-btn_secondary-light:hover {
		color: #1f2022;
		background-color: #ecac00;
	}
}

.iv-btn_secondary-dark:focus, .iv-btn_secondary-light:focus, .iv-partner-map__image a:focus {
	outline: 0;
}

.iv-btn_secondary-dark:focus-visible, .iv-btn_secondary-light:focus-visible {
	outline: 1px solid #1f2022;
	outline-offset: 4px;
	color: #1f2022;
	background-color: #ecac00;
}

.iv-btn_secondary-dark {
	color: #1f2022;
}

.iv-btn_secondary-light {
	color: #f1f1f1;
}

.iv-btn_hidden-title .iv-btn__title {
	display: none;
}

.iv-input-row {
	border: 1px solid #ecedf8;
	padding: 10px;
}

.iv-input-row select + input {
	margin-top: 10px;
}

.iv-input-row input {
	margin: 0 0 10px;
}

.iv-input-row input[type=url] {
	width: 100%;
}

.iv-input-row textarea {
	margin: 0;
}

.iv-input-control, .iv-input-row__upload {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 10px;
}

.iv-input-row__upload img {
	display: block;
	height: 150px;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.iv-input-control {
	padding-top: 10px;
	margin-bottom: 15px;
}

.iv-field-product-quiz {
	position: relative;
}

.iv-field-product-quiz_editor {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}

.iv-alternating-images-with-list__item-content ul li:before, .iv-field-product-quiz .gfield-choice-input, .iv-form-hero__form .gform_confirmation_message br {
	display: none !important;
}

.iv-field-product-quiz .gfield-choice-input:checked + .iv-field-product-quiz__item .iv-field-product-quiz__item-img img {
	transform: scale(1.1);
}

.iv-field-product-quiz .gfield-choice-input:checked + .iv-field-product-quiz__item .iv-btn__icon:before {
	background-color: #ecac00;
}

.iv-field-product-quiz .gfield-choice-input:checked + .iv-field-product-quiz__item .iv-btn__icon svg {
	left: 0;
}

.iv-field-product-quiz .iv-navigation {
	position: absolute;
	top: -10px;
	right: calc(( 100% - var(--wp--style--global--wide-size) ) / 2);
	z-index: 9;
}

.iv-field-product-quiz .swiper {
	padding: 50px 0 20px;
}

.iv-field-product-quiz .swiper-slide {
	width: 295px;
	height: auto;
}

.iv-field-product-quiz__item {
	display: block;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	transition: box-shadow .4s;
	overflow: hidden;
	position: relative;
	margin: 0;
}

.iv-field-product-quiz__item:not(.iv-field-product-quiz__item_editor) {
	max-width: none !important;
	height: 100%;
	cursor: pointer;
}

.iv-field-product-quiz__item_editor {
	flex: 0 0 calc(25% - 11.25px);
	max-width: calc(25% - 11.25px);
}

.iv-field-product-quiz__item_editor .iv-field-product-quiz__item-content {
	padding: 30px 20px !important;
}

@media (min-width:1200px) {
	.iv-field-product-quiz__item {
		padding-top: 27px;
	}
}

@media (hover:hover) {
	.iv-field-product-quiz__item:hover .iv-field-product-quiz__item-img img {
		transform: scale(1.1);
	}
	
	.iv-field-product-quiz__item:hover .iv-btn__icon:before {
		background-color: #ecac00;
	}
	
	.iv-field-product-quiz__item:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-field-product-quiz__item .h4 {
	padding: 0;
	margin-bottom: 6px;
}

.iv-field-product-quiz__item-img {
	width: calc(100% - 40px);
	height: 284px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-field-product-quiz__item-img {
		height: 168px;
	}
}

@media (min-width:1200px) {
	.iv-field-product-quiz__item-img {
		width: calc(100% - 84px);
		height: 200px;
	}
}

.iv-field-product-quiz__item-img img, .iv-product__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	transition: all .5s;
}

.iv-field-product-quiz__item-content {
	padding: 25px 20px 80px;
}

@media (min-width:768px) {
	.iv-field-product-quiz__item-content {
		padding: 25px 20px 80px;
	}
}

@media (min-width:1200px) {
	.iv-field-product-quiz__item-content {
		padding: 30px 20px 80px;
	}
}

.iv-field-product-quiz__item-description {
	font-size: 1rem;
	line-height: 1.5;
}

.iv-field-product-quiz__item .iv-btn {
	display: flex;
	position: absolute;
	z-index: 4;
	right: 20px;
	bottom: 20px;
}

@media (min-width:1200px) {
	.iv-field-product-quiz__item .iv-btn {
		right: 30px;
		bottom: 22px;
	}
}

.iv-product {
	display: block;
	background-color: #fff;
	color: #1f2022;
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	height: 100%;
	min-height: 532px;
	position: relative;
	text-decoration: none;
}

@media (min-width:768px) {
	.iv-product {
		min-height: auto;
	}
}

@media (min-width:1200px) {
	.iv-product {
		padding-top: 27px;
		min-height: auto;
	}
}

.iv-product .h4 {
	padding: 0;
	margin-bottom: 6px;
}

@media (hover:hover) {
	.iv-product:hover {
		color: #1f2022;
	}
	
	.iv-product:hover .iv-product__img img {
		transform: scale(1.1);
	}
	
	.iv-product:hover .iv-btn__icon:before {
		background-color: #ecac00;
	}
	
	.iv-product:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-featured-cards-with-images__header_column h3, .iv-product_full-width-image {
	padding-top: 0;
}

.iv-product_full-width-image .iv-product__img {
	width: 100%;
}

.iv-product_full-width-image .iv-product__img img {
	border-radius: 20px 20px 0 0;
	-o-object-fit: cover !important;
	object-fit: cover !important;
}

.iv-product__img {
	width: calc(100% - 40px);
	height: 284px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-product__img {
		height: 168px;
	}
}

@media (min-width:1200px) {
	.iv-product__img {
		width: calc(100% - 84px);
		height: 200px;
	}
}

.iv-product__content {
	padding: 25px 20px;
}

@media (min-width:768px) {
	.iv-product__content {
		padding: 25px 20px;
	}
}

@media (min-width:1200px) {
	.iv-product__content {
		padding: 30px 20px;
	}
}

.iv-product__new-release {
	border-radius: 10px;
	padding: 7px 22px;
	font-size: 1rem;
	line-height: 1.5;
	background-color: #f1f1f1;
	margin-bottom: 20px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.iv-product__new-release_none {
	opacity: 0;
	visibility: hidden;
	display: none !important;
}

.iv-product__description {
	font-size: 1rem;
	line-height: 1.5;
}

.iv-product .iv-btn {
	display: flex;
	position: absolute;
	z-index: 4;
	right: 20px;
	bottom: 20px;
}

@media (min-width:1200px) {
	.iv-product .iv-btn {
		right: 30px;
		bottom: 22px;
	}
}

.iv-field-product-quiz-result {
	overflow: auto;
	padding: 20px;
}

.iv-field-product-quiz-result__container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 802px;
}

.iv-field-product-quiz-result__container .iv-product {
	width: 295px;
	position: relative;
	z-index: 5;
}

.iv-field-product-quiz-result__info {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 250px;
	bottom: 0;
	right: 0;
	padding: 0 35px 0 110px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
}

.wp-custom-spacer {
	width: 100%;
	-webkit-margin-before: 0 !important;
	margin-block-start: 0 !important;
}

.wp-custom-spacer + * {
	position: relative;
	z-index: 11;
}

.wp-custom-spacer_is-preview {
	background: repeating-linear-gradient(-45deg, #e5e5e5, #e5e5e5 15px, #fff 0, #fff 30px);
}

.iv-alternating-images-with-list {
	padding: 100px 0 70px;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list {
		padding: 125px 0;
	}
}

.iv-alternating-images-with-list__header {
	margin-bottom: 70px;
	text-align: center;
}

@media (min-width:768px) {
	.iv-alternating-images-with-list__header {
		text-align: left;
		margin-bottom: 80px;
	}
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list__header {
		text-align: center;
	}
}

.iv-alternating-images-with-list__text {
	margin: 0 auto;
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list__text {
		max-width: 870px;
	}
}

@media (max-width:767px) {
	.iv-alternating-images-with-list__text {
		font-size: 16px;
		line-height: 150%;
	}
}

.iv-alternating-images-with-list__item {
	margin-bottom: 30px;
}

.iv-alternating-images-with-list__item:not(:last-child) {
	padding-bottom: 50px;
}

@media (max-width:767px) {
	.iv-alternating-images-with-list__item:not(:last-child) {
		border-bottom: 1.5px solid #e5e5e5;
	}
}

@media (min-width:768px) {
	.iv-alternating-images-with-list__item {
		margin-bottom: 0;
	}
	
	.iv-alternating-images-with-list__item:not(:last-child) {
		padding-bottom: 100px;
	}
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list__item {
		display: grid;
		align-items: center;
		grid-template-columns: repeat(2, 1fr);
	}
	
	.iv-alternating-images-with-list__item:not(:last-child) {
		padding-bottom: 0;
	}
	
	.iv-alternating-images-with-list__item:nth-child(even) .iv-alternating-images-with-list__item-content {
		order: -1;
	}
}

.iv-alternating-images-with-list__item-img {
	max-width: 483px;
	margin-bottom: 70px;
}

@media (min-width:768px) {
	.iv-alternating-images-with-list__item-img {
		margin-bottom: 80px;
	}
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list__item-img {
		margin-bottom: 0;
		max-width: 100%;
	}
}

.iv-alternating-images-with-list__item-img img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.iv-alternating-images-with-list__item-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.iv-alternating-images-with-list__item-content ul li {
	padding-left: 46px;
	position: relative;
}

.iv-alternating-images-with-list__item-content ul li svg {
	display: block;
	position: absolute;
	top: clamp(-.1875rem, -.1875rem + ((1vw - .4rem) * 3.125), .0625rem);
	left: 0;
}

.iv-alternating-images-with-list__item-content ul li:not(:last-child) {
	margin-bottom: 37px;
}

@media (min-width:1200px) {
	.iv-alternating-images-with-list__item-content {
		padding: 80px 96px 80px 80px;
	}
}

.iv-accordion-with-heading-image {
	padding-bottom: 100px;
}

@media (min-width:1200px) {
	.iv-accordion-with-heading-image {
		padding: 125px 0;
	}
}

.iv-accordion-with-heading-image__header {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 70px;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__header {
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: flex-end;
	}
}

@media (min-width:1200px) {
	.iv-accordion-with-heading-image__header {
		align-items: center;
	}
}

.iv-accordion-with-heading-image__header-img {
	margin-bottom: 50px;
	flex: 0 0 100%;
	max-width: 340px;
	height: 321px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__header-img {
		flex: 0 0 335px;
		max-width: 335px;
		height: 318px;
		margin: 0;
	}
}

@media (min-width:1200px) {
	.iv-accordion-with-heading-image__header-img {
		flex: 0 0 425px;
		max-width: 425px;
		height: 403px;
	}
}

.iv-accordion-with-heading-image__header-img img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.iv-accordion-with-heading-image__header-content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__header-content {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 675px;
	}
}

.iv-accordion-with-heading-image__header-content h2 {
	margin-bottom: 25px;
}

.iv-accordion-with-heading-image__accordion-item {
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	margin-bottom: 20px;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__accordion-item {
		margin-bottom: 24px;
	}
}

@media (min-width:1200px) {
	.iv-accordion-with-heading-image__accordion-item {
		margin-bottom: 40px;
	}
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header {
	position: relative;
	margin: 0;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 25px;
	align-items: flex-start;
	cursor: pointer;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__accordion-item .ui-accordion-header {
		padding: 30px;
		align-items: center;
		min-height: 105px;
	}
}

@media (max-width:767px) {
	.iv-accordion-with-heading-image__accordion-item .ui-accordion-header {
		font-size: 1.25rem;
		line-height: 1.6;
	}
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header.ui-state-active .ui-accordion-header-icon:after, .iv-card-accordion-item .ui-accordion-header.ui-state-active .ui-accordion-header-icon:after, .iv-faqs__accordion-item .ui-accordion-header.ui-state-active .ui-accordion-header-icon:after, .iv-partner-map__content .ui-accordion-header.ui-state-active .ui-accordion-header-icon:after, .iv-product-specs__accordion-item .ui-accordion-header.ui-state-active .ui-accordion-header-icon:after {
	transform: translate(-50%, -50%) rotate(0);
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header-iv-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header-icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header-icon:after, .iv-accordion-with-heading-image__accordion-item .ui-accordion-header-icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1.5px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header-icon:before {
	transform: translate(-50%, -50%);
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-header-icon:after {
	transition: all .4s;
	transform: translate(-50%, -50%) rotate(90deg);
}

.iv-accordion-with-heading-image__accordion-item .ui-accordion-content {
	padding: 0 20px 20px;
}

@media (min-width:768px) {
	.iv-accordion-with-heading-image__accordion-item .ui-accordion-content {
		padding: 0 30px 30px;
	}
}

@media (max-width:767px) {
	.iv-accordion-with-heading-image__accordion-item .ui-accordion-content {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.iv-homepage-hero__card-description > span, .iv-step-module {
	overflow: hidden;
}

@media (max-width:1199px) {
	.iv-step-module {
		padding-top: 100px;
	}
}

@media (min-width:1200px) {
	.iv-step-module_left > .iv-container-wide {
		flex-direction: row-reverse;
	}
}

.iv-step-module_left .iv-step-module__image:before {
	right: 0;
}

.iv-step-module_right .iv-step-module__image:before {
	left: 0;
}

@media (max-width:1199px) {
	.iv-step-module_image-1 {
		background: var(--wp--preset--gradient--light-gradient);
	}
}

@media (min-width:768px) {
	.iv-step-module_image-1 .iv-step-module__images {
		height: 650px;
	}
}

.iv-step-module_image-1 .iv-step-module__image {
	width: 100%;
	height: 318px;
}

@media (min-width:768px) {
	.iv-step-module_image-1 .iv-step-module__image {
		height: 100%;
	}
}

.iv-step-module_image-1 .iv-step-module__image img {
	width: 100%;
	height: 100%;
}

.iv-step-module_image-1 .iv-step-module__image:before {
	content: "";
	position: absolute;
	top: 0;
	width: 50vw;
	height: 100%;
	background: var(--wp--preset--gradient--light-gradient);
	z-index: 1;
}

@media (max-width:1199px) {
	.iv-step-module_image-1 .iv-step-module__image:before {
		display: none;
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-step-module_image-2 .iv-step-module__images {
		display: flex;
		flex-wrap: wrap;
	}
}

.iv-step-module_image-2 .iv-step-module__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 340px;
}

@media (min-width:768px) {
	.iv-step-module_image-2 .iv-step-module__image {
		height: 330px;
	}
}

@media (min-width:1200px) {
	.iv-step-module_image-2 .iv-step-module__image {
		height: 325px;
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-step-module_image-2 .iv-step-module__image {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width:1199px) {
	.iv-step-module_image-2 .iv-step-module__image {
		background: var(--wp--preset--gradient--light-gradient);
	}
}

.iv-step-module_image-2 .iv-step-module__image img, .iv-step-module_image-3 .iv-step-module__image img, .iv-step-module_image-4 .iv-step-module__image img {
	max-width: 277px;
	max-height: 265px;
}

.iv-step-module_image-2 .iv-step-module__image:before {
	content: "";
	position: absolute;
	top: 0;
	width: 50vw;
	height: 100%;
	background: var(--wp--preset--gradient--light-gradient);
	z-index: 1;
}

@media (max-width:1199px) {
	.iv-step-module_image-2 .iv-step-module__image:before {
		display: none;
	}
}

@media (min-width:768px) {
	.iv-step-module_image-3 .iv-step-module__images, .iv-step-module_image-4 .iv-step-module__images {
		display: flex;
		flex-wrap: wrap;
	}
}

.iv-step-module_image-3 .iv-step-module__image, .iv-step-module_image-4 .iv-step-module__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 340px;
	background: var(--wp--preset--gradient--light-gradient);
}

@media (min-width:768px) {
	.iv-step-module_image-3 .iv-step-module__image, .iv-step-module_image-4 .iv-step-module__image {
		flex: 0 0 50%;
		max-width: 50%;
		height: 330px;
	}
}

@media (min-width:1200px) {
	.iv-step-module_image-3 .iv-step-module__image, .iv-step-module_image-4 .iv-step-module__image {
		height: 325px;
	}
}

@media (min-width:768px) {
	.iv-step-module_image-5 .iv-step-module__images, .iv-step-module_image-6 .iv-step-module__images {
		display: flex;
		flex-wrap: wrap;
	}
}

.iv-step-module_image-5 .iv-step-module__image, .iv-step-module_image-6 .iv-step-module__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 340px;
	background: var(--wp--preset--gradient--light-gradient);
}

@media (min-width:768px) {
	.iv-step-module_image-5 .iv-step-module__image, .iv-step-module_image-6 .iv-step-module__image {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
		height: 325px;
	}
}

.iv-step-module_image-5 .iv-step-module__image img, .iv-step-module_image-6 .iv-step-module__image img {
	max-width: 195px;
	max-height: 186px;
}

.iv-step-module > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.iv-step-module__images {
	flex: 0 0 100%;
	max-width: 694px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width:1200px) {
	.iv-step-module__images {
		flex: 0 0 50%;
		max-width: 50%;
		margin: 0;
	}
}

.iv-step-module__image {
	position: relative;
}

.iv-step-module__image img {
	display: block;
	position: relative;
	z-index: 3;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 20px;
}

.iv-step-module__content {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 50px;
}

@media (min-width:1200px) {
	.iv-step-module__content {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 80px;
		margin-bottom: 0;
	}
}

.iv-step-module .iv-eyebrow {
	margin-bottom: 50px;
}

@media (min-width:1200px) {
	.iv-step-module .iv-eyebrow {
		margin-bottom: 66px;
	}
}

.iv-featured-cards-with-images {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images {
		padding: 125px 0;
	}
}

.iv-featured-cards-with-images__header {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__header {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__header {
		margin-bottom: 80px;
	}
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__header_row {
		text-align: center;
	}
}

.iv-featured-cards-with-images__header_column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 25px;
}

.iv-featured-cards-with-images__header .iv-eyebrow {
	margin-bottom: 20px;
}

.iv-featured-cards-with-images__header-title {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__header-title {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 477px;
	}
}

.iv-featured-cards-with-images__header-content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__header-content {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 548px;
	}
}

.iv-featured-cards-with-images__header-description:not(:last-child) {
	margin-bottom: 30px;
}

.iv-featured-cards-with-images__stacked {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__stacked {
		gap: 70px 30px;
	}
}

@media (min-width:1600px) {
	.iv-featured-cards-with-images__stacked {
		gap: 50px;
	}
}

.iv-featured-cards-with-images__carousel .swiper {
	margin-bottom: 40px;
	padding: 16px 0 20px;
	margin-top: -16px;
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__carousel .swiper {
		margin-bottom: 60px;
	}
}

.iv-featured-cards-with-images__carousel .swiper .swiper-slide {
	width: 310px;
	height: auto;
}

@media (min-width:420px) {
	.iv-featured-cards-with-images__carousel .swiper .swiper-slide {
		width: 335px;
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__carousel .swiper .swiper-slide {
		width: 585px;
	}
}

@media (max-width:767px) {
	.iv-featured-cards-with-images__carousel .iv-navigation {
		justify-content: center;
	}
}

.iv-featured-cards-with-images__item {
	flex: 0 0 100%;
	max-width: 100%;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	height: 100%;
}

.iv-featured-cards-with-images__item:not(.iv-featured-cards-with-images__item_only):not(.iv-featured-cards-with-images__item_slide) {
	height: auto;
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__item:not(.iv-featured-cards-with-images__item_only):not(.iv-featured-cards-with-images__item_slide) {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__item:not(.iv-featured-cards-with-images__item_only):not(.iv-featured-cards-with-images__item_slide) {
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
	}
}

@media (min-width:1600px) {
	.iv-featured-cards-with-images__item:not(.iv-featured-cards-with-images__item_only):not(.iv-featured-cards-with-images__item_slide) {
		flex: 0 0 calc(50% - 25px);
		max-width: calc(50% - 25px);
	}
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__item_only-img {
		height: 332px !important;
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__item_only-img {
		height: 572px !important;
	}
}

@media (min-width:1600px) {
	.iv-featured-cards-with-images__item_only-img {
		height: 582px !important;
	}
}

.iv-featured-cards-with-images__item-img {
	width: 100%;
	height: 220px;
	position: relative;
	display: block;
	text-decoration: none;
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__item-img {
		height: 230px;
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__item-img {
		height: 421px;
	}
}

.iv-featured-cards-with-images__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-featured-cards-with-images__item-img [data-fancybox] {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 48px;
	height: 48px;
}

@media (min-width:768px) {
	.iv-featured-cards-with-images__item-img [data-fancybox] {
		width: 64px;
		height: 64px;
	}
}

@media (min-width:1200px) {
	.iv-featured-cards-with-images__item-img [data-fancybox] {
		width: 86px;
		height: 86px;
	}
}

@media (hover:hover) {
	.iv-featured-cards-with-images__item-img [data-fancybox]:hover svg path:nth-child(1) {
		fill: var(--wp--preset--color--yellow);
	}
}

.iv-featured-cards-with-images__item-img [data-fancybox] svg, .iv-hero_anchor-right .iv-hero__media [data-fancybox] svg, .iv-hero_full-width .iv-hero__media [data-fancybox] svg, .iv-large-image-video-content__large-image [data-fancybox] svg, .iv-large-image-video-content__three-up-grid-col [data-fancybox] svg {
	width: 100%;
	height: 100%;
	display: block;
}

.iv-featured-cards-with-images__item-img [data-fancybox] svg path:nth-child(1), .iv-large-image-video-content__large-image [data-fancybox] svg path:nth-child(1), .iv-large-image-video-content__three-up-grid-col [data-fancybox] svg path:nth-child(1) {
	transition: all .5s;
}

.iv-featured-cards-with-images__item-content {
	padding: 30px;
}

.iv-featured-cards-with-images__item-content h4 {
	margin-bottom: 11px;
}

.iv-hotspots {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-hotspots {
		padding: 125px 0;
	}
}

.iv-hotspots__header {
	text-align: center;
	margin-bottom: 26px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width:767px) {
	.iv-hotspots__header {
		font-size: 1rem;
	}
}

@media (min-width:768px) {
	.iv-hotspots__heading {
		margin-bottom: 6px;
	}
}

.iv-hotspots__content {
	display: flex;
	flex-direction: column-reverse;
	gap: 26px;
}

@media (min-width:1200px) {
	.iv-hotspots__content {
		flex-direction: row;
		gap: 51px;
		justify-content: center;
		align-items: center;
	}
}

.iv-hotspots__image-wrap {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

@media (min-width:768px) {
	.iv-hotspots__image-wrap {
		max-width: 464px;
		height: auto;
		margin: 0 auto;
	}
}

@media (min-width:1200px) {
	.iv-hotspots__image-wrap {
		max-width: 655px;
	}
}

.iv-hotspots__image-pin, .iv-hotspots__image-pin:before {
	border-radius: 50%;
	transition: all .3s;
	position: absolute;
	transform: translate(-50%, -50%);
}

.iv-hotspots__image-pin {
	background-color: var(--wp--preset--color--light-grey);
	width: 26px;
	height: 26px;
	text-align: center;
	cursor: pointer;
	filter: drop-shadow(0 2.035px 10.174px rgba(0, 0, 0, .15));
}

@media (min-width:768px) {
	.iv-hotspots__image-pin {
		width: 35px;
		height: 35px;
	}
}

@media (min-width:1200px) {
	.iv-hotspots__image-pin {
		width: 50px;
		height: 50px;
	}
}

.iv-hotspots__image-pin:before {
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid var(--wp--preset--color--light-grey);
	left: 50%;
	top: 50%;
}

.iv-hotspots__image-pin:not(.active) {
	box-shadow: 0 0 0 rgba(236, 172, 0, .4);
	animation: pulse 1.5s infinite;
}

.iv-hotspots__image-pin.active, .iv-hotspots__slider-item-num:before {
	background-color: var(--wp--preset--color--yellow);
}

.iv-hotspots__image-pin.active:before {
	width: 38px;
	height: 38px;
	border-color: var(--wp--preset--color--yellow);
}

@media (min-width:768px) {
	.iv-hotspots__image-pin.active:before {
		width: 52px;
		height: 52px;
	}
}

@media (min-width:1200px) {
	.iv-hotspots__image-pin.active:before {
		width: 73px;
		height: 73px;
	}
}

.iv-hotspots__image-pin > div {
	line-height: 1;
	font-size: .75rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width:768px) {
	.iv-hotspots__image-pin > div {
		font-size: 1.0625rem;
	}
}

@media (min-width:1200px) {
	.iv-hotspots__image-pin > div {
		font-size: 1.5rem;
	}
}

.iv-hotspots__slider {
	text-align: center;
}

@media (min-width:1200px) {
	.iv-hotspots__slider {
		text-align: left;
		max-width: 391px;
	}
}

.iv-hotspots__slider-item-num {
	width: 57px;
	height: 57px;
	border-radius: 50%;
	font-size: 1.125rem;
	line-height: 57px;
	text-align: center;
	border: 1px solid var(--wp--preset--color--yellow);
	position: relative;
	margin-bottom: 9px;
}

@media (max-width:1199px) {
	.iv-hotspots__slider-item-num {
		margin-left: auto;
		margin-right: auto;
	}
}

.iv-hotspots__slider-item-num > div {
	position: relative;
	z-index: 5;
}

.iv-hotspots__slider-item-num:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
}

.iv-hotspots__slider-item h3 {
	padding-top: 0;
	margin-bottom: 9px;
}

.iv-hotspots__slider-item p {
	max-width: 321px;
	margin: 0 auto 20px;
}

@media (min-width:768px) {
	.iv-hotspots__slider-item p {
		max-width: 391px;
	}
}

.iv-hotspots__slider-item p:last-child {
	margin-bottom: 0;
}

.iv-hotspots__nav {
	display: flex;
	flex-direction: row;
	gap: 14px;
	justify-content: center;
	padding-top: 36px;
}

@media (min-width:768px) {
	.iv-hotspots__nav {
		padding-top: 40px;
	}
}

@media (min-width:1200px) {
	.iv-hotspots__nav {
		display: none;
	}
}

.iv-faqs {
	padding: 50px 0;
	background: linear-gradient(56deg, #f3f3f3 0, #fff 100%);
}

@media (min-width:1200px) {
	.iv-faqs {
		padding: 125px 0;
	}
}

.iv-faqs__container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--wp--style--global--wide-size);
}

@media (min-width:1600px) {
	.iv-faqs__container {
		max-width: var(--wp--style--global--content-size);
	}
}

.iv-faqs__title.h2 {
	margin-bottom: 40px !important;
	text-align: center;
}

@media (min-width:768px) {
	.iv-faqs__title.h2 {
		margin-bottom: 70px !important;
	}
}

.iv-faqs__accordion-item {
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
}

.iv-faqs__accordion-item:not(:last-child) {
	margin-bottom: 20px;
}

@media (min-width:768px) {
	.iv-faqs__accordion-item:not(:last-child) {
		margin-bottom: 24px;
	}
}

@media (min-width:1200px) {
	.iv-faqs__accordion-item:not(:last-child) {
		margin-bottom: 40px;
	}
}

.iv-faqs__accordion-item .ui-accordion-header {
	position: relative;
	margin: 0;
	padding: 20px !important;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 25px;
	align-items: flex-start;
	cursor: pointer;
}

@media (min-width:768px) {
	.iv-faqs__accordion-item .ui-accordion-header {
		padding: 30px !important;
		align-items: center;
		min-height: 105px;
	}
}

@media (max-width:767px) {
	.iv-faqs__accordion-item .ui-accordion-header {
		font-size: 1.25rem;
		line-height: 1.6;
	}
}

.iv-faqs__accordion-item .ui-accordion-header-iv-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-faqs__accordion-item .ui-accordion-header-icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-faqs__accordion-item .ui-accordion-header-icon:after, .iv-faqs__accordion-item .ui-accordion-header-icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1.5px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-faqs__accordion-item .ui-accordion-header-icon:before {
	transform: translate(-50%, -50%);
}

.iv-faqs__accordion-item .ui-accordion-header-icon:after {
	transition: all .4s;
	transform: translate(-50%, -50%) rotate(90deg);
}

.iv-faqs__accordion-item .ui-accordion-content {
	padding: 0 20px 20px;
}

@media (min-width:768px) {
	.iv-faqs__accordion-item .ui-accordion-content {
		padding: 0 30px 30px;
	}
}

@media (max-width:767px) {
	.iv-faqs__accordion-item .ui-accordion-content {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.iv-two-column-product {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-two-column-product {
		padding: 125px 0;
	}
}

.iv-two-column-product__title {
	text-align: center;
}

.iv-two-column-product__title:not(:last-child) {
	margin-bottom: 40px;
}

@media (min-width:1200px) {
	.iv-two-column-product__title:not(:last-child) {
		margin-bottom: 70px;
	}
	
	.iv-two-column-product__title {
		max-width: 900px;
		margin: 0 auto;
	}
}

@media (min-width:768px) {
	.iv-two-column-product__items {
		display: grid;
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width:1200px) {
	.iv-two-column-product__items {
		gap: 160px;
		max-width: 1012px;
		margin: 0 auto;
	}
}

@media (min-width:1600px) {
	.iv-two-column-product__items {
		max-width: 100%;
	}
}

.iv-two-column-product__item {
	display: block;
	text-decoration: none;
}

@media (max-width:768px) {
	.iv-two-column-product__item:not(:last-child) {
		margin-bottom: 40px;
	}
}

@media (hover:hover) {
	.iv-two-column-product__item_link:hover .iv-two-column-product__item-img img {
		transform: scale(1.1);
	}
}

.iv-two-column-product__item-img {
	aspect-ratio: 341/324;
}

@media (min-width:768px) {
	.iv-two-column-product__item-img {
		aspect-ratio: 530/500;
	}
}

.iv-two-column-product__item-img img {
	transform-origin: center;
	transition: all .3s cubic-bezier(.5, .02, .13, .5);
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.iv-two-column-product__item-img:not(:last-child) {
	margin-bottom: 25px;
}

@media (min-width:768px) {
	.iv-two-column-product__item-img:not(:last-child) {
		margin-bottom: 30px;
	}
}

.iv-two-column-product__item-description {
	text-align: center;
}

@media (max-width:767px) {
	.iv-two-column-product__item-description {
		font-size: 16px;
		line-height: 150%;
	}
}

.iv-large-image-video-content {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-large-image-video-content {
		padding: 125px 0;
	}
}

.iv-large-image-video-content__header {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.iv-large-image-video-content__header_top:not(:last-child) {
	margin-bottom: 70px;
}

.iv-large-image-video-content__header_bottom {
	margin-top: 70px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__header_bottom {
		margin-top: 80px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__header_bottom {
		margin-top: 100px;
	}
}

.iv-large-image-video-content__header_row {
	max-width: 953px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	flex-direction: column;
}

.iv-large-image-video-content__header_row .iv-large-image-video-content__header-description {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.iv-large-image-video-content__header_column {
	justify-content: space-between;
}

.iv-large-image-video-content__header_column .iv-large-image-video-content__header-col {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-large-image-video-content__header_column .iv-large-image-video-content__header-col {
		flex-basis: 0;
		flex-grow: 1;
	}
	
	.iv-large-image-video-content__header_column .iv-large-image-video-content__header-col:first-child {
		max-width: 477px;
	}
	
	.iv-large-image-video-content__header_column .iv-large-image-video-content__header-col:last-child {
		max-width: 548px;
	}
}

.iv-large-image-video-content__header .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-large-image-video-content__header .h1, .iv-large-image-video-content__header .h2, .iv-large-image-video-content__header .h3, .iv-large-image-video-content__header .h4, .iv-large-image-video-content__header .h5, .iv-large-image-video-content__header .h6 {
	padding: 0;
	margin: 0;
}

.iv-large-image-video-content__header .h3, .iv-large-image-video-content__header .h4, .iv-large-image-video-content__header .h5 {
	max-width: 841px;
	margin-left: auto;
	margin-right: auto;
}

.iv-large-image-video-content__large-image {
	position: relative;
	height: 230px;
	overflow: hidden;
	border-radius: 20px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__large-image {
		height: 330px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__large-image {
		height: 572px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__large-image {
		height: 580px;
	}
}

.iv-large-image-video-content__large-image img {
	width: 100%;
	height: 150%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-large-image-video-content__large-image [data-fancybox] {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 48px;
	height: 48px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__large-image [data-fancybox] {
		width: 64px;
		height: 64px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__large-image [data-fancybox] {
		width: 86px;
		height: 86px;
	}
}

@media (hover:hover) {
	.iv-large-image-video-content__large-image [data-fancybox]:hover svg path:nth-child(1) {
		fill: var(--wp--preset--color--yellow);
	}
}

.iv-large-image-video-content__four-up-grid {
	gap: 20px;
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid {
		display: flex;
		flex-wrap: wrap;
	}
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) {
		display: grid;
		grid-template-columns: calc(50% - 12px) 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas: "img-1 img-2 img-3" "img-1 img-4 img-4";
		align-items: end;
		gap: 24px;
		height: 335px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) {
		grid-template-columns: calc(50% - 10px) 1fr 1fr;
		gap: 20px;
		height: 510px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) {
		height: 524px;
	}
}

.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
	height: 340px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		grid-area: img-1;
		height: 335px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		height: 510px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		height: 524px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		grid-area: img-2;
		height: 155.5px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		height: 232px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		grid-area: img-3;
		height: 155.5px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		height: 232px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(4) {
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(4) {
		grid-area: img-4;
		height: 155.5px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(4) {
		height: 258px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(4) {
		height: 272px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid:not(.iv-large-image-video-content__four-up-grid_three-images):not(.iv-large-image-video-content__four-up-grid_two-images) .iv-large-image-video-content__four-up-grid-col:nth-child(4) {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_three-images {
		display: grid;
		grid-template-columns: calc(50% - 12px) 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas: "img-1 img-2" "img-1 img-3";
		align-items: end;
		gap: 24px;
		height: 335px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_three-images {
		gap: 20px;
		height: 510px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid_three-images {
		height: 524px;
	}
}

.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
	height: 340px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		grid-area: img-1;
		height: 335px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		height: 510px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		height: 524px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(1) {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		grid-area: img-2;
		height: 155.5px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		height: 245px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		height: 252px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(2) {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		grid-area: img-3;
		height: 155.5px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		height: 245px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		height: 252px;
	}
}

@media (max-width:767px) {
	.iv-large-image-video-content__four-up-grid_three-images .iv-large-image-video-content__four-up-grid-col:nth-child(3) {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__four-up-grid_two-images {
	display: flex;
	flex-wrap: wrap;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_two-images {
		gap: 24px;
		height: 335px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_two-images {
		gap: 20px;
		height: 510px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__four-up-grid_two-images {
		height: 524px;
	}
}

.iv-large-image-video-content__four-up-grid_two-images .iv-large-image-video-content__four-up-grid-col {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}

@media (min-width:768px) {
	.iv-large-image-video-content__four-up-grid_two-images .iv-large-image-video-content__four-up-grid-col {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__four-up-grid_two-images .iv-large-image-video-content__four-up-grid-col {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__four-up-grid img, .iv-large-image-video-content__three-up-grid-col img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-large-image-video-content__three-up-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__three-up-grid {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__three-up-grid {
		gap: 43px 38px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__three-up-grid {
		gap: 20px;
	}
}

.iv-large-image-video-content__three-up-grid-col {
	position: relative;
}

.iv-large-image-video-content__three-up-grid-col:nth-child(1) {
	flex: 0 0 100%;
	max-width: 100%;
	height: 160px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(1) {
		height: 328px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(1) {
		height: 572px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(1) {
		height: 578px;
	}
}

.iv-large-image-video-content__three-up-grid-col:nth-child(2), .iv-large-image-video-content__three-up-grid-col:nth-child(3) {
	height: 97px;
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
}

@media (min-width:768px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(2), .iv-large-image-video-content__three-up-grid-col:nth-child(3) {
		height: 205px;
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(2), .iv-large-image-video-content__three-up-grid-col:nth-child(3) {
		height: 355px;
		flex: 0 0 calc(50% - 19px);
		max-width: calc(50% - 19px);
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__three-up-grid-col:nth-child(2), .iv-large-image-video-content__three-up-grid-col:nth-child(3) {
		height: 367px;
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.iv-large-image-video-content__three-up-grid-col [data-fancybox] {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 48px;
	height: 48px;
}

@media (min-width:768px) {
	.iv-large-image-video-content__three-up-grid-col [data-fancybox] {
		width: 64px;
		height: 64px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__three-up-grid-col [data-fancybox] {
		width: 86px;
		height: 86px;
	}
}

@media (hover:hover) {
	.iv-large-image-video-content__three-up-grid-col [data-fancybox]:hover svg path:nth-child(1) {
		fill: var(--wp--preset--color--yellow);
	}
}

.iv-large-image-video-content__full-width-image {
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	padding: 15px;
	height: 168px;
}

.iv-large-image-video-content__full-width-image--mobile img.mobile {
	display: none;
}

@media (max-width:767px) {
	.iv-large-image-video-content__full-width-image--mobile {
		height: auto;
	}
	
	.iv-large-image-video-content__full-width-image--mobile img.desktop {
		display: none;
	}
	
	.iv-large-image-video-content__full-width-image--mobile img.mobile {
		display: block;
	}
}

@media (min-width:768px) {
	.iv-large-image-video-content__full-width-image {
		border-radius: 30px;
		padding: 30px;
		height: 342px;
	}
}

@media (min-width:1200px) {
	.iv-large-image-video-content__full-width-image {
		padding: 55px;
		height: 592px;
	}
}

@media (min-width:1600px) {
	.iv-large-image-video-content__full-width-image {
		height: 602px;
	}
}

.iv-large-image-video-content__full-width-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.iv-homepage-hero {
	background: linear-gradient(180deg, #f3f3f3 4.09%, #fff 86.22%);
	padding: 130px 0 100px;
	position: relative;
	overflow: visible;
}

@media (min-width:768px) {
	.iv-homepage-hero {
		padding: 140px 0 100px;
	}
}

@media (min-width:1200px) {
	.iv-homepage-hero {
		padding: 160px 0;
	}
}

@media (min-width:1600px) {
	.iv-homepage-hero {
		padding: 160px 0 123px;
	}
}

.iv-homepage-hero_is-preview .iv-homepage-hero__card {
	height: 113px;
	padding: 41px 20px;
}

.iv-homepage-hero_is-preview .iv-homepage-hero__bg {
	width: 416px;
}

@media (min-width:768px) {
	.iv-homepage-hero > .iv-container-wide {
		row-gap: 72px;
	}
}

.iv-homepage-hero__cards, .iv-homepage-hero__content {
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

.iv-homepage-hero__content {
	flex-direction: column;
	max-width: 750px;
	text-align: center;
}

@media (min-width:1200px) {
	.iv-homepage-hero__content h1 {
		font-size: clamp(1.5625rem, 1.5625rem + ((1vw - .48rem) * 3.4722), 2.5rem);
	}
}

.iv-homepage-hero__content .iv-btn {
	margin-top: 5px;
}

.iv-homepage-hero__cards {
	max-width: 1220px;
	width: 100%;
	margin-top: 5rem;
}

@media (max-width:1200px) {
	.iv-homepage-hero__cards {
		flex-direction: column;
		padding: 0 40px;
	}
}

@media (max-width:767px) {
	.iv-homepage-hero__cards {
		display: none;
	}
}

.iv-homepage-hero__card {
	display: block;
	overflow: hidden;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	border-radius: 20px;
	text-decoration: none;
	position: relative;
	transition: padding .6s, height .6s;
	background-color: var(--wp--preset--color--white);
	padding: 40px;
	pointer-events: none;
	flex: 1;
	margin: 10px;
}

@media (max-width:1200px) {
	.iv-homepage-hero__card {
		display: flex;
		align-items: center;
		width: 100%;
	}
}

.iv-homepage-hero__card_ne150-homepage-hero .iv-homepage-hero__card-animation, .iv-homepage-hero__card_ne150-homepage-hero .iv-homepage-hero__card-animation-img {
	width: 115px;
	height: 108px;
	top: .15625rem;
}

.iv-homepage-hero__card_one-key-homepage-hero .iv-homepage-hero__card-animation, .iv-homepage-hero__card_one-key-homepage-hero .iv-homepage-hero__card-animation-img {
	width: 146px;
	height: 61px;
	top: 1.625rem;
}

.iv-homepage-hero__card_padlock-homepage-hero .iv-homepage-hero__card-animation, .iv-homepage-hero__card_padlock-homepage-hero .iv-homepage-hero__card-animation-img {
	width: 105px;
	height: 114px;
	top: -1px;
}

@media (min-width:1200px) {
	.iv-homepage-hero__card.before-initial {
		padding: 35px 40px 27px;
	}
}

.iv-homepage-hero__card.initial {
	height: var(--same-height-block);
}

@media (min-width:1200px) {
	.iv-homepage-hero__card.initial {
		height: 113px;
		padding: 41px 20px;
	}
}

@media (hover:hover) and (min-width:1200px) {
	.iv-homepage-hero__card.initial:hover {
		height: var(--height-block);
		padding: 35px 40px 27px;
		transition-delay: .4s;
	}
	
	.iv-homepage-hero__card.initial:hover .iv-homepage-hero__card-container svg, .iv-homepage-hero__card.initial:hover .iv-homepage-hero__card-description > span span {
		transition-delay: .4s;
		transform: translateY(0);
	}
	
	.iv-homepage-hero__card.initial:hover .iv-homepage-hero__card-image {
		transform: translateX(0);
		transition-delay: .15s;
	}
}

.iv-homepage-hero__card-container {
	max-width: 190px;
}

.iv-homepage-hero__card-container svg {
	display: block;
	margin-top: 18px;
}

@media (min-width:1200px) {
	.iv-homepage-hero__card-container svg {
		transform: translateY(100%);
		transition: all .7s;
	}
}

.iv-homepage-hero__card-heading {
	line-height: 1.72222;
	margin-bottom: 7px;
}

.iv-homepage-hero__card-description {
	font-size: 1rem;
	line-height: 1.5;
}

@media (min-width:1200px) {
	.iv-homepage-hero__card-description > span span {
		transform: translateY(100%);
		transition: all .7s;
	}
}

.iv-homepage-hero__card-animation, .iv-homepage-hero__card-animation-img {
	display: block;
	position: absolute;
	right: 0;
}

.iv-homepage-hero__card-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 160px;
	height: 100%;
}

@media (max-width:1200px) {
	.iv-homepage-hero__card-image {
		width: 269px;
	}
}

@media (min-width:1200px) {
	.iv-homepage-hero__card-image {
		width: 150px;
		height: var(--height-block);
		transform: translateX(100%);
		transition: all .7s;
	}
}

@media (min-width:1600px) {
	.iv-homepage-hero__card-image {
		width: 175px;
	}
}

.iv-homepage-hero__card-image img, .iv-homepage-hero__slide-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-homepage-hero__slider {
	margin-top: 84px;
	position: relative;
	z-index: 5;
}

@media (min-width:768px) {
	.iv-homepage-hero__slider {
		display: none;
	}
}

.iv-homepage-hero__slider .swiper {
	padding: 16px 0 20px;
}

.iv-homepage-hero__slider .swiper-slide {
	width: 295px;
	height: auto;
}

.iv-homepage-hero__slide {
	border-radius: 20px;
	height: 100%;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	display: block;
	text-decoration: none;
	background-color: var(--wp--preset--color--white);
}

.iv-homepage-hero__slide span {
	display: block;
}

.iv-homepage-hero__slide-image {
	height: 216px;
}

.iv-homepage-hero__slide-content {
	padding: 20px 20px 75px;
}

.iv-homepage-hero__slide-content svg {
	display: block;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.iv-homepage-hero__slide-heading {
	font-weight: 700;
	line-height: 1.7;
	margin-bottom: 7px;
}

.iv-homepage-hero__slide-description {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.iv-homepage-hero__bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(195deg, #f3f3f3 4.09%, #fff 86.22%);
}

@media (min-width:1200px) {
	.iv-homepage-hero__bg {
		top: 0;
		right: 0;
		left: auto;
		height: 100% !important;
		width: var(--width-bg);
	}
}

@media (max-width:767px) {
	.iv-homepage-hero__bg {
		height: 411px !important;
	}
}

.iv-hero {
	overflow: hidden;
}

.iv-hero_is-preview.iv-hero_full-width .iv-hero__media {
	max-width: 1220px;
	margin-left: auto;
	margin-right: auto;
}

.iv-hero_product-white {
	padding-top: 100px;
}

@media (min-width:1200px) {
	.iv-hero_product-white {
		padding: 120px 0 70px;
	}
}

@media (min-width:1600px) {
	.iv-hero_product-white {
		padding: 140px 0;
	}
}

.iv-hero_product-white > .iv-container-wide {
	gap: 70px;
}

.iv-hero_product-white .iv-hero__media {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 510px;
	margin-bottom: 25px;
}

@media (min-width:1200px) {
	.iv-hero_product-white .iv-hero__media {
		height: 484px;
		margin-bottom: 0;
	}
}

@media (max-width:1199px) {
	.iv-hero_product-white .iv-hero__media {
		margin-left: auto;
		margin-right: auto;
	}
}

.iv-hero_product-white .iv-hero__media_anchored-bottom {
	height: auto;
	position: relative;
}

@media (min-width:1200px) {
	.iv-hero_product-white .iv-hero__media_anchored-bottom {
		bottom: -70px;
	}
}

@media (min-width:1600px) {
	.iv-hero_product-white .iv-hero__media_anchored-bottom {
		width: 550px;
		bottom: -140px;
	}
}

.iv-hero_product-white .iv-hero__media img {
	border-radius: 20px;
}

@media (max-width:1199px) {
	.iv-hero_anchor-right {
		padding: 80px 0;
	}
}

.iv-hero_anchor-right > .iv-container-wide {
	gap: 70px;
}

@media (min-width:768px) {
	.iv-hero_anchor-right > .iv-container-wide {
		gap: 80px;
	}
}

@media (min-width:1200px) {
	.iv-hero_anchor-right > .iv-container-wide {
		gap: 70px;
	}
}

.iv-hero_anchor-right .iv-hero__media {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	height: 280px;
}

@media (min-width:768px) {
	.iv-hero_anchor-right .iv-hero__media {
		height: 400px;
	}
}

@media (min-width:1200px) {
	.iv-hero_anchor-right .iv-hero__media {
		flex: 0 0 425px;
		max-width: 425px;
		height: 583px;
	}
}

@media (min-width:1300px) {
	.iv-hero_anchor-right .iv-hero__media {
		flex: 0 0 365px;
		max-width: 365px;
	}
}

@media (min-width:1600px) {
	.iv-hero_anchor-right .iv-hero__media {
		height: 621px;
	}
}

.iv-hero_anchor-right .iv-hero__media-wrap {
	position: relative;
	height: 100%;
}

.iv-hero_anchor-right .iv-hero__media img, .iv-hero_full-width .iv-hero__media img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-hero_anchor-right .iv-hero__media [data-fancybox] {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 48px;
	height: 48px;
}

@media (min-width:768px) {
	.iv-hero_anchor-right .iv-hero__media [data-fancybox] {
		width: 64px;
		height: 64px;
	}
}

@media (min-width:1200px) {
	.iv-hero_anchor-right .iv-hero__media [data-fancybox] {
		width: 86px;
		height: 86px;
	}
}

@media (hover:hover) {
	.iv-hero_anchor-right .iv-hero__media [data-fancybox]:hover svg path:nth-child(1) {
		fill: var(--wp--preset--color--yellow);
	}
}

.iv-hero_anchor-right .iv-hero__media [data-fancybox] svg path:nth-child(1), .iv-hero_full-width .iv-hero__media [data-fancybox] svg path:nth-child(1) {
	transition: all .5s;
}

.iv-hero_full-width {
	padding: 80px 0 0;
}

.iv-hero_full-width:first-child {
	padding: 140px 0 0;
}

@media (min-width:1200px) {
	.iv-hero_full-width {
		padding: 100px 0 0;
	}
	
	.iv-hero_full-width:first-child {
		padding: 184px 0 0;
	}
	
	.iv-hero_full-width .iv-hero__content {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width:1300px) {
	.iv-hero_full-width .iv-hero__content {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.iv-hero_full-width .iv-hero__media {
	position: relative;
	height: 280px;
}

@media (min-width:768px) {
	.iv-hero_full-width .iv-hero__media {
		height: 331px;
	}
}

@media (min-width:1200px) {
	.iv-hero_full-width .iv-hero__media {
		height: 572px;
	}
}

@media (min-width:1600px) {
	.iv-hero_full-width .iv-hero__media {
		height: 582px;
	}
}

.iv-hero_full-width .iv-hero__media [data-fancybox] {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 48px;
	height: 48px;
}

@media (min-width:768px) {
	.iv-hero_full-width .iv-hero__media [data-fancybox] {
		width: 64px;
		height: 64px;
	}
}

@media (min-width:1200px) {
	.iv-hero_full-width .iv-hero__media [data-fancybox] {
		width: 86px;
		height: 86px;
	}
}

@media (hover:hover) {
	.iv-hero_full-width .iv-hero__media [data-fancybox]:hover svg path:nth-child(1) {
		fill: var(--wp--preset--color--yellow);
	}
}

.iv-hero_full-width .js-trigger-media {
	margin-top: 70px;
}

@media (min-width:768px) {
	.iv-hero_full-width .js-trigger-media {
		margin-top: 80px;
	}
}

.iv-hero > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.iv-hero__content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-hero__content {
		flex: 0 0 550px;
		max-width: 550px;
	}
}

@media (min-width:1300px) {
	.iv-hero__content {
		flex: 0 0 627px;
		max-width: 627px;
	}
}

.iv-hero__content > .iv-eyebrow {
	margin-top: 0;
	margin-bottom: 30px;
}

@media (min-width:768px) {
	.iv-hero__content > .iv-eyebrow {
		margin-bottom: 50px;
	}
}

.iv-hero__content .h1, .iv-hero__content > h1:not(.iv-eyebrow) {
	padding-top: 0;
}

.iv-hero__cta {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

@media (min-width:768px) {
	.iv-hero__cta {
		margin-top: 50px;
	}
}

@media (max-width:767px) {
	.iv-hero__cta {
		flex-direction: column;
	}
}

.iv-hero-banner {
	padding: 130px 0 30px;
}

.iv-hero-banner__content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.iv-hero-banner__cta {
	margin-top: 40px;
	margin-bottom: 60px;
}

.iv-hero-banner__cta .iv-btn {
	padding: 8px 40px 9px;
}

.iv-hero-banner__image img {
	border-radius: 30px;
}

.iv-hero-banner__video {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 30px;
	overflow: hidden;
}

.iv-hero-banner__video video {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 30px;
}

.iv-hero-banner__video iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.iv-logo-carousel {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-logo-carousel {
		padding: 125px 0;
	}
}

.iv-logo-carousel__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
	gap: 25px;
}

@media (min-width:768px) {
	.iv-logo-carousel__content {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-logo-carousel__content {
		gap: 30px;
	}
}

.iv-logo-carousel__heading {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 0;
}

@media (min-width:1200px) {
	.iv-logo-carousel__heading {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
}

@media (min-width:1600px) {
	.iv-logo-carousel__heading {
		max-width: 476px;
	}
}

.iv-logo-carousel__text {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-logo-carousel__text {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
}

@media (min-width:1600px) {
	.iv-logo-carousel__text {
		max-width: 640px;
	}
}

.iv-logo-carousel__slider .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

.iv-logo-carousel__slider .swiper-slide {
	width: 128px;
	height: auto;
}

.iv-company-benefits-cards {
	padding: 50px 0;
	background: var(--wp--preset--gradient--beige-gradient);
}

@media (min-width:1200px) {
	.iv-company-benefits-cards {
		padding: 125px 0;
	}
}

.iv-company-benefits-cards__header {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-company-benefits-cards__header {
		text-align: center;
		margin-bottom: 70px;
	}
}

.iv-company-benefits-cards__text {
	max-width: 670px;
}

@media (min-width:768px) {
	.iv-company-benefits-cards__text {
		margin: 0 auto;
	}
}

.iv-company-benefits-cards__list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

@media (min-width:768px) {
	.iv-company-benefits-cards__list {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-company-benefits-cards__list {
		gap: 70px 15px;
	}
}

.iv-company-benefits-cards__item {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 30px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	background: var(--wp--preset--color--white);
	overflow: hidden;
	flex: 0 0 100%;
	max-width: 100%;
	min-height: 292px;
}

@media (min-width:768px) {
	.iv-company-benefits-cards__item {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
		padding: 30px;
	}
}

@media (min-width:1200px) {
	.iv-company-benefits-cards__item {
		flex: 0 0 calc(33.33333% - 10px);
		max-width: calc(33.33333% - 10px);
		padding: 50px 30px;
	}
}

.iv-company-benefits-cards__item .h4 {
	margin-bottom: 6px;
}

.iv-company-benefits-cards__item ul {
	margin-left: 0;
	padding-left: 20px;
}

.iv-company-benefits-cards__item p:last-of-type {
	margin-bottom: 10px;
}

.iv-company-benefits-cards__item .iv-btn {
	margin-top: auto;
}

@media (min-width:1200px) {
	.iv-company-benefits-cards__item .iv-btn {
		position: relative;
		opacity: 0;
		top: 30px;
		transition: top .25s, opacity .35s;
	}
}

.iv-company-benefits-cards__item:hover .iv-btn {
	opacity: 1;
	top: 0;
}

.iv-staff-testimonial {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-staff-testimonial {
		padding: 125px 0;
	}
}

.iv-staff-testimonial__header {
	margin-bottom: 60px;
}

@media (min-width:1200px) {
	.iv-staff-testimonial__header {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 70px;
		margin-bottom: 80px;
	}
	
	.iv-staff-testimonial__heading {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 476px;
		margin-bottom: 0;
	}
	
	.iv-staff-testimonial__subheading {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 674px;
	}
}

.iv-staff-testimonial__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
}

@media (min-width:768px) {
	.iv-staff-testimonial__container {
		padding: 50px;
		border-radius: 30px;
		box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	}
}

@media (min-width:1200px) {
	.iv-staff-testimonial__container {
		gap: 50px;
	}
}

.iv-staff-testimonial__image {
	flex: 0 0 100%;
	max-width: 100%;
	height: 244px;
}

@media (min-width:768px) {
	.iv-staff-testimonial__image {
		height: 428px;
	}
}

@media (min-width:1200px) {
	.iv-staff-testimonial__image {
		flex: 0 0 506px;
		max-width: 506px;
		height: 449px;
	}
}

.iv-staff-testimonial__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.iv-staff-testimonial__content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-staff-testimonial__content {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
}

.iv-staff-testimonial__text {
	font-size: 1.5625rem;
	line-height: 1.2;
	font-weight: 300;
}

@media (min-width:768px) {
	.iv-staff-testimonial__text {
		font-size: 1.5rem;
		line-height: 1.35;
	}
}

.iv-staff-testimonial__copy {
	margin-top: 30px;
}

.iv-staff-testimonial__copy span, .iv-timeline-item__text b {
	font-weight: 700;
}

.iv-content-columns {
	padding: 50px 0;
}

.iv-content-columns_light-gradient {
	background: var(--wp--preset--gradient--light-gradient);
}

@media (min-width:768px) {
	.iv-content-columns__header {
		text-align: center;
	}
}

.iv-content-columns__header:not(:last-child) {
	margin-bottom: 70px;
}

@media (min-width:768px) {
	.iv-content-columns__header:not(:last-child) {
		margin-bottom: 100px;
	}
}

@media (min-width:1200px) {
	.iv-content-columns__header:not(:last-child) {
		margin-bottom: 140px;
	}
}

.iv-content-columns__header .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-content-columns__header .iv-btn {
	margin-top: 30px;
}

@media (min-width:1200px) {
	.iv-content-columns__header .iv-btn {
		margin-top: 40px;
	}
}

.iv-content-columns__title {
	max-width: 834px;
	margin: 0 auto;
}

.iv-content-columns__title:not(:last-child) {
	margin-bottom: 25px;
}

.iv-content-columns__text {
	max-width: 690px;
	margin: 0 auto;
}

.iv-content-columns__text_big {
	max-width: 775px;
}

@media (min-width:1200px) {
	.iv-content-columns__items {
		display: flex;
		gap: 112px;
	}
}

@media (max-width:1600px) {
	.iv-content-columns__items {
		gap: 104px;
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-content-columns__items_without-text {
		display: flex;
		gap: 32px;
	}
}

@media (min-width:768px) {
	.iv-content-columns__items_without-text .iv-content-columns__item {
		text-align: center;
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-content-columns__items_without-text .iv-content-columns__item {
		flex-basis: 33.33%;
	}
	
	.iv-content-columns__items_without-text .iv-content-columns__item:not(:last-child) {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	
	.iv-content-columns__items_without-text .iv-content-columns__item:not(:last-child) .iv-content-columns__item-line {
		height: 100%;
		top: 0;
		right: -17.5px;
		width: 1.5px;
		left: auto;
	}
}

@media (min-width:1200px) {
	.iv-content-columns__items_four {
		gap: 77px;
	}
}

@media (min-width:1600px) {
	.iv-content-columns__items_four {
		gap: 81px;
	}
}

.iv-content-columns__items_four .iv-content-columns__item {
	flex-basis: 25%;
}

@media (min-width:1200px) {
	.iv-content-columns__items_four .iv-content-columns__item:not(:last-child) .iv-content-columns__item-line {
		right: -25px;
	}
	
	.iv-content-columns__item {
		flex: 0 1 auto;
		flex-basis: 33.33%;
	}
}

.iv-content-columns__item:last-child .iv-content-columns__item-line {
	display: none;
}

.iv-content-columns__item:not(:last-child) {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

@media (min-width:768px) {
	.iv-content-columns__item:not(:last-child) {
		margin-bottom: 24px;
		padding-bottom: 24px;
	}
}

@media (min-width:1200px) {
	.iv-content-columns__item:not(:last-child) {
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

.iv-content-columns__item-line {
	background: var(--wp--preset--color--yellow);
	position: absolute;
	width: 100%;
	bottom: 0;
	height: 1px;
	left: 0;
}

@media (min-width:1200px) {
	.iv-content-columns__item-line {
		height: 100%;
		width: 1px;
		top: 0;
		right: -54px;
		left: auto;
	}
}

@media (min-width:1600px) {
	.iv-content-columns__item-line {
		right: -58px;
	}
}

.iv-content-columns__item-text {
	line-height: 1.2;
	font-size: 1rem;
}

@media (min-width:768px) {
	.iv-content-columns__item-text {
		line-height: 1.5;
	}
}

.iv-content-columns__item-text h1:not(:last-child), .iv-content-columns__item-text h2:not(:last-child), .iv-content-columns__item-text h3:not(:last-child), .iv-content-columns__item-text h4:not(:last-child), .iv-content-columns__item-text h5:not(:last-child), .iv-content-columns__item-text h6:not(:last-child) {
	margin-bottom: 6px;
}

.iv-product-specs {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-product-specs {
		padding: 125px 0;
	}
}

.iv-product-specs__head {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
}

@media (min-width:768px) {
	.iv-product-specs__head {
		text-align: center;
	}
}

.iv-product-specs__head:not(:last-child) {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-product-specs__head:not(:last-child) {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-product-specs__head:not(:last-child) {
		margin-bottom: 80px;
	}
}

.iv-product-specs__title {
	max-width: 800px;
	margin: 0 auto;
}

@media (min-width:1600px) {
	.iv-product-specs__title {
		max-width: 966px;
	}
}

.iv-product-specs__title:not(:last-child) {
	margin-bottom: 25px;
}

.iv-product-specs__text {
	max-width: 1016px;
	margin: 0 auto;
}

@media (min-width:1600px) {
	.iv-product-specs__text {
		max-width: 870px;
	}
}

@media (max-width:767px) {
	.iv-product-specs__text {
		font-size: 16px;
		line-height: 150%;
	}
}

@media (min-width:768px) {
	.iv-product-specs__row {
		gap: 50px;
		display: flex;
		align-items: center;
	}
}

@media (min-width:1200px) {
	.iv-product-specs__row {
		max-width: 1366px;
		gap: 80px;
	}
}

@media (min-width:1600px) {
	.iv-product-specs__row {
		max-width: var(--wp--style--global--wide-size);
		margin: 0 auto;
	}
}

.iv-product-specs__row:not(:last-child) {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-product-specs__row:not(:last-child) {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-product-specs__row:not(:last-child) {
		margin-bottom: 100px;
	}
}

@media (min-width:1600px) {
	.iv-product-specs__row:not(:last-child) {
		margin-bottom: 80px;
	}
}

.iv-product-specs__image {
	flex-shrink: 0;
	aspect-ratio: 390/372;
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-product-specs__image {
		width: 50%;
		aspect-ratio: 683/650;
		height: auto;
		margin-bottom: 0;
	}
}

@media (min-width:1600px) {
	.iv-product-specs__image {
		width: 49.1%;
		aspect-ratio: 600/582;
	}
}

.iv-product-specs__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 20px;
}

.iv-product-specs__content {
	flex: 1 1 auto;
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
}

@media (min-width:768px) {
	.iv-product-specs__content {
		padding-right: 70px;
		max-width: 100%;
		margin: 0;
	}
}

@media (min-width:1200px) {
	.iv-product-specs__content {
		padding-right: 80px;
	}
}

@media (min-width:1600px) {
	.iv-product-specs__content {
		padding-right: 0;
	}
}

.iv-product-specs__item {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 30px;
}

.iv-product-specs__item:not(:last-child) {
	margin-bottom: 30px;
}

.iv-product-specs__item-title:not(:last-child) {
	margin-bottom: 15px;
}

@media (max-width:767px) {
	.iv-product-specs__item-text {
		font-size: 16px;
		line-height: 150%;
	}
}

.iv-product-specs__accordion {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
}

.iv-product-specs__accordion-item {
	background-color: var(--wp--preset--color--white);
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
}

.iv-product-specs__accordion-item:not(:last-child) {
	margin-bottom: 20px;
}

@media (min-width:768px) {
	.iv-product-specs__accordion-item:not(:last-child) {
		margin-bottom: 24px;
	}
}

@media (min-width:1200px) {
	.iv-product-specs__accordion-item:not(:last-child) {
		margin-bottom: 40px;
	}
}

.iv-product-specs__accordion-item .ui-accordion-header {
	position: relative;
	margin: 0;
	padding: 20px !important;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 25px;
	align-items: center;
	cursor: pointer;
}

@media (min-width:768px) {
	.iv-product-specs__accordion-item .ui-accordion-header {
		padding: 30px !important;
		min-height: 105px;
	}
}

@media (max-width:767px) {
	.iv-product-specs__accordion-item .ui-accordion-header {
		font-size: 1.25rem;
		line-height: 1.6;
	}
}

.iv-product-specs__accordion-item .ui-accordion-header-iv-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-product-specs__accordion-item .ui-accordion-header-icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-product-specs__accordion-item .ui-accordion-header-icon:after, .iv-product-specs__accordion-item .ui-accordion-header-icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1.5px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-product-specs__accordion-item .ui-accordion-header-icon:before {
	transform: translate(-50%, -50%);
}

.iv-product-specs__accordion-item .ui-accordion-header-icon:after {
	transition: all .4s;
	transform: translate(-50%, -50%) rotate(90deg);
}

.iv-product-specs__accordion-item .ui-accordion-content {
	padding: 0 20px 20px;
}

@media (min-width:768px) {
	.iv-product-specs__accordion-item .ui-accordion-content {
		padding: 0 30px 30px;
	}
}

@media (max-width:767px) {
	.iv-product-specs__accordion-item .ui-accordion-content {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.iv-product-specs__accordion-link:not(:last-child) {
	margin-bottom: 22px;
}

.iv-card-accordion {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-card-accordion {
		padding: 125px 0;
	}
}

.iv-card-accordion-item__card {
	border-radius: 30px;
	padding: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
}

@media (min-width:768px) {
	.iv-card-accordion-item__card {
		padding: 30px;
	}
}

@media (min-width:1200px) {
	.iv-card-accordion-item__card {
		padding: 50px 30px;
	}
}

@media (max-width:767px) {
	.iv-card-accordion-item__card:not(:last-child) {
		margin-bottom: 25px;
	}
}

.iv-card-accordion-item__card .iv-btn_secondary-dark, .iv-card-accordion-item__card .iv-btn_secondary-light {
	margin-top: 30px;
}

.iv-card-accordion-item__card-title:not(:last-child) {
	margin-bottom: 6px;
}

.iv-card-accordion-item__card-location {
	line-height: 150%;
	font-size: 16px;
}

.iv-card-accordion-item__card-email {
	line-height: 150%;
	font-size: 16px;
	font-weight: 400;
	text-decoration: underline;
	transition: all .3s cubic-bezier(.5, .02, .13, .5);
}

.iv-card-accordion-item__card-email:hover {
	color: var(--wp--preset--color--yellow);
}

.iv-card-accordion-item__card-time {
	line-height: 150%;
	font-size: 16px;
}

.iv-card-accordion-item:not(:last-child) {
	margin-bottom: 50px;
}

@media (min-width:768px) {
	.iv-card-accordion-item:not(:last-child) {
		margin-bottom: 60px;
	}
}

@media (min-width:1200px) {
	.iv-card-accordion-item:not(:last-child) {
		margin-bottom: 70px;
	}
}

.iv-card-accordion-item .ui-accordion-header {
	position: relative;
	margin: 0;
	padding-bottom: 20px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 70px;
	align-items: flex-start;
	cursor: pointer;
	border-bottom: 1px solid #e5e5e5;
}

@media (min-width:768px) {
	.iv-card-accordion-item .ui-accordion-header {
		padding-bottom: 30px;
		align-items: center;
	}
}

@media (max-width:767px) {
	.iv-card-accordion-item .ui-accordion-header {
		font-size: 1.5625rem;
		line-height: 120%;
	}
}

.iv-card-accordion-item .ui-accordion-header:not(.ui-state-active) {
	transition: all .3s .4s cubic-bezier(.5, .02, .13, .5);
}

.iv-card-accordion-item .ui-accordion-header.ui-state-active {
	border-bottom: 1px solid transparent;
}

.iv-card-accordion-item .ui-accordion-header-iv-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-card-accordion-item .ui-accordion-header-icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-card-accordion-item .ui-accordion-header-icon:after, .iv-card-accordion-item .ui-accordion-header-icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1.5px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-card-accordion-item .ui-accordion-header-icon:before {
	transform: translate(-50%, -50%);
}

.iv-card-accordion-item .ui-accordion-header-icon:after {
	transition: all .4s;
	transform: translate(-50%, -50%) rotate(90deg);
}

.iv-card-accordion-item .ui-accordion-content {
	margin: 0 -30px;
	padding: 70px 30px 0;
	z-index: 2;
}

@media (min-width:768px) {
	.iv-card-accordion-item .ui-accordion-content {
		display: grid;
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width:1200px) {
	.iv-card-accordion-item .ui-accordion-content {
		gap: 16px;
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:767px) {
	.iv-card-accordion-item .ui-accordion-content {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.iv-partner-map {
	padding: 50px 0;
}

.iv-partner-map__heading {
	text-align: center;
	margin-bottom: 50px;
}

@media (min-width:768px) {
	.iv-partner-map__heading {
		max-width: 516px;
		margin: 0 auto 80px;
	}
}

@media (min-width:1200px) {
	.iv-partner-map__heading {
		max-width: 850px;
		margin: 0 auto 90px;
	}
}

.iv-partner-map__image {
	margin: 0 auto 50px;
}

@media (min-width:768px) {
	.iv-partner-map__image {
		max-width: 694px;
	}
}

@media (min-width:1200px) {
	.iv-partner-map__image {
		max-width: 792px;
	}
}

.iv-partner-map__image a.map-class-active .cls-1, .iv-partner-map__image a.map-class-active .cls-3, .iv-partner-map__image a.map-class-active .cls-4, .iv-partner-map__image a:hover .cls-1, .iv-partner-map__image a:hover .cls-3, .iv-partner-map__image a:hover .cls-4 {
	fill: var(--wp--preset--color--yellow);
}

.iv-partner-map__image .cls-1, .iv-partner-map__image .cls-3, .iv-partner-map__image .cls-4 {
	fill: #ccc;
	transition: fill .2s;
}

.iv-partner-map__image .cls-2 {
	fill: var(--wp--preset--color--light-grey);
}

.iv-partner-map__content {
	margin-bottom: 30px;
}

@media (min-width:1200px) {
	.iv-partner-map__content {
		margin-bottom: 40px;
	}
}

.iv-partner-map__content:last-child {
	margin-bottom: 0;
}

.iv-partner-map__content .ui-accordion-header {
	position: relative;
	margin: 0;
	padding: 30px 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	cursor: pointer;
	font-size: 1.5625rem;
	border-bottom: 1px solid #e5e5e5;
	transition: all .4s;
}

@media (min-width:768px) {
	.iv-partner-map__content .ui-accordion-header {
		font-size: 1.5rem;
		line-height: 1.2;
	}
}

.iv-partner-map__content .ui-accordion-header.ui-state-active {
	border-bottom-color: transparent;
}

.iv-partner-map__content .ui-accordion-header-iv-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-partner-map__content .ui-accordion-header-icon {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-partner-map__content .ui-accordion-header-icon:after, .iv-partner-map__content .ui-accordion-header-icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1.5px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-partner-map__content .ui-accordion-header-icon:before {
	transform: translate(-50%, -50%);
}

.iv-partner-map__content .ui-accordion-header-icon:after {
	transition: all .4s;
	transform: translate(-50%, -50%) rotate(90deg);
}

.iv-partner-map__content-row {
	padding-top: 40px;
	margin-left: -20px;
	margin-right: -20px;
}

.iv-partner-map__content-list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	padding: 0 20px;
}

@media (min-width:768px) {
	.iv-partner-map__content-list {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-partner-map__content-list {
		gap: 16px 15px;
	}
}

@media (min-width:1600px) {
	.iv-partner-map__content-list {
		gap: 16px 22px;
	}
}

.iv-partner-map__item {
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	border-radius: 30px;
	padding: 20px;
	flex: 0 0 100%;
	max-width: 100%;
	min-height: 148px;
}

@media (min-width:768px) {
	.iv-partner-map__item {
		padding: 30px;
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-partner-map__item {
		padding: 50px 30px;
		flex: 0 0 calc(33.33333% - 14.667px);
		max-width: calc(33.33333% - 14.667px);
	}
}

.iv-partner-map__item .h4 {
	margin-bottom: 6px;
}

.iv-partner-map__item a, .iv-partner-map__item-partner {
	font-size: 1rem;
	line-height: 1.5;
}

.iv-posts {
	padding: 50px 0;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-posts {
		padding: 125px 0;
	}
}

.iv-posts_light-gradient-and-white {
	position: relative;
}

.iv-posts_light-gradient-and-white:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 310px;
	background: var(--wp--preset--gradient--light-gradient);
}

@media (min-width:768px) {
	.iv-posts_light-gradient-and-white:before {
		bottom: 210px;
	}
}

@media (min-width:1200px) {
	.iv-posts_light-gradient-and-white:before {
		bottom: 285px;
	}
}

.iv-posts_beige {
	background: var(--wp--preset--color--beige);
}

.iv-posts_black {
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
}

.iv-posts > .iv-container-wide {
	position: relative;
	z-index: 5;
}

.iv-posts__header {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

@media (min-width:768px) {
	.iv-posts__header {
		margin-bottom: 50px;
	}
}

@media (min-width:1200px) {
	.iv-posts__header {
		margin-bottom: 70px;
	}
}

.iv-posts__header .h2 {
	margin: 0;
	padding: 0;
	text-align: center;
}

@media (max-width:767px) {
	.iv-posts__header .iv-btn {
		display: none;
	}
}

.iv-posts .swiper {
	position: relative;
	z-index: 5;
	padding: 20px 0;
}

.iv-posts .swiper .swiper-slide {
	height: auto;
	width: 295px;
}

@media (min-width:768px) {
	.iv-posts .swiper .swiper-slide {
		width: 335px;
	}
}

@media (min-width:1200px) {
	.iv-posts .swiper .swiper-slide {
		width: 390px;
	}
}

.iv-posts__btn-mobile {
	margin-top: 30px;
	text-align: center;
}

@media (min-width:768px) {
	.iv-posts__btn-mobile {
		display: none;
	}
}

.iv-timeline {
	padding: 50px 0;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-timeline {
		padding: 125px 0;
	}
}

.iv-timeline__header {
	text-align: center;
}

.iv-timeline__header:not(:last-child) {
	margin-bottom: 50px;
}

@media (min-width:768px) {
	.iv-timeline__header:not(:last-child) {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-timeline__header:not(:last-child) {
		margin-bottom: 82px;
	}
}

.iv-timeline__subtitle {
	max-width: 934px;
	margin: 0 auto;
}

@media (max-width:767px) {
	.iv-timeline__subtitle {
		font-size: 16px;
		line-height: 150%;
	}
}

.iv-timeline__arrows {
	justify-content: center;
	display: flex;
	position: relative;
	z-index: 4;
	margin-bottom: 40px;
}

@media (min-width:768px) {
	.iv-timeline__arrows {
		justify-content: flex-end;
		margin-bottom: 50px;
	}
}

@media (min-width:1200px) {
	.iv-timeline__arrows {
		margin-bottom: -53px;
	}
}

.iv-timeline__dots-slider {
	padding: 20px 30px;
	margin: -20px -30px;
}

@media (max-width:767px) {
	.iv-timeline__dots-slider {
		padding-right: 70px;
	}
}

.iv-timeline__dots-slider .swiper-slide-thumb-active .iv-timeline__dot {
	background: var(--wp--preset--color--yellow);
	box-shadow: 0 0 0 5px var(--wp--preset--color--white), 0 0 0 7px var(--wp--preset--color--yellow);
}

@media (max-width:767px) {
	.iv-timeline__dots-slider .swiper-slide-thumb-active .iv-timeline__dot {
		box-shadow: 0 0 0 2px var(--wp--preset--color--white), 0 0 0 4px var(--wp--preset--color--yellow);
	}
}

.iv-timeline__dots-slider-wrap {
	position: relative;
}

.iv-timeline__dots-slider-wrap:after {
	content: "";
	height: 1.5px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	background: #e5e5e5;
	transform: translate(-50%, -50%);
}

.iv-timeline__dots-slider-wrap:not(:last-child) {
	margin-bottom: 50px;
}

@media (min-width:1200px) {
	.iv-timeline__dots-slider-wrap:not(:last-child) {
		margin-bottom: 91px;
	}
}

.iv-timeline__dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1f2022;
	transition: all .3s cubic-bezier(.5, .02, .13, .5);
	cursor: pointer;
}

@media (max-width:767px) {
	.iv-timeline__dot {
		width: 12px;
		height: 12px;
	}
}

.iv-timeline__slider-main {
	padding-top: 16px;
}

.iv-timeline__slider-main .swiper-slide-active {
	z-index: 2;
}

.iv-timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

@media (min-width:768px) {
	.iv-timeline-item {
		gap: 70px;
	}
}

@media (max-width:1199px) {
	.iv-timeline-item {
		flex-direction: column-reverse;
	}
}

.iv-timeline-item__left {
	max-width: 100%;
	flex-shrink: 0;
}

@media (min-width:1200px) {
	.iv-timeline-item__left {
		width: 506px;
	}
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-timeline-item__left {
		display: flex;
		gap: 20px;
		width: 100%;
		padding-right: 15px;
		max-height: 504px;
	}
}

.iv-timeline-item__swiper-gallery-main:not(:last-child) {
	margin-bottom: 18px;
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-timeline-item__swiper-gallery-main:not(:last-child) {
		margin-bottom: 0;
	}
	
	.iv-timeline-item__swiper-gallery-main {
		width: 84%;
		flex-shrink: 0;
	}
}

.iv-timeline-item__image-big {
	aspect-ratio: 1;
	width: 100%;
}

@media (min-width:1200px) {
	.iv-timeline-item__image-big {
		height: 449px;
		aspect-ratio: auto;
	}
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-timeline-item__image-big {
		height: 100%;
	}
}

.iv-timeline-item__image-big img {
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-timeline-item__swiper-gallery-thumb {
		max-height: 100%;
		flex: 1 0 auto;
		width: 100%;
		flex-basis: 90px;
	}
}

@media (max-width:767px) {
	.iv-timeline-item__swiper-gallery-thumb .swiper-wrapper {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
}

.iv-timeline-item__swiper-gallery-thumb .swiper-slide {
	pointer-events: all !important;
}

@media (max-width:767px) {
	.iv-timeline-item__swiper-gallery-thumb .swiper-slide {
		width: calc(33.33% - 10px) !important;
	}
}

.iv-content-tabs__desktop-tab .swiper-slide.swiper-slide-thumb-active > div, .iv-content-tabs__desktop-tab .swiper-slide:hover > div, .iv-product-listing__tabs-desktop-tab .swiper-slide.swiper-slide-thumb-active > div, .iv-product-listing__tabs-desktop-tab .swiper-slide:hover > div, .iv-tabbed-card-carousel__desktop-tab .swiper-slide.swiper-slide-thumb-active > div, .iv-tabbed-card-carousel__desktop-tab .swiper-slide:hover > div, .iv-timeline-item__swiper-gallery-thumb .swiper-slide-thumb-active .iv-timeline-item__image-small::after {
	opacity: 1;
}

.iv-timeline-item__swiper-gallery-thumb .swiper-slide-thumb-active .iv-timeline-item__image-small::before {
	opacity: 0;
}

.iv-timeline-item__image-small {
	aspect-ratio: 1;
	position: relative;
	cursor: pointer;
}

@media (max-width:1199px) and (min-width:768px) {
	.iv-timeline-item__image-small {
		aspect-ratio: auto !important;
		height: 100%;
	}
}

.iv-timeline-item__image-small::after, .iv-timeline-item__image-small::before {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	transition: all .1s cubic-bezier(.5, .02, .13, .5);
}

.iv-timeline-item__image-small::after {
	opacity: 0;
	background: 0 0;
	border: 1px solid var(--wp--preset--color--yellow);
}

.iv-timeline-item__image-small::before {
	background: linear-gradient(0deg, rgba(31, 32, 34, .4) 0, rgba(31, 32, 34, .4) 100%);
}

.iv-timeline-item__image-small img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (min-width:1200px) {
	.iv-timeline-item__right .iv-eyebrow {
		max-width: calc(100% - 100px);
	}
}

.iv-timeline-item__right .iv-eyebrow:not(:last-child) {
	margin-bottom: 25px;
}

.iv-timeline-item__decade {
	font-size: 90px;
	line-height: 1;
	font-weight: 700;
	color: var(--wp--preset--color--white);
	text-stroke: 1px #1f2022;
	-webkit-text-stroke: 1px #1f2022;
}

@media (min-width:1200px) {
	.iv-timeline-item__decade {
		font-size: 125px;
		line-height: 125px;
	}
}

.iv-timeline-item__decade:not(:last-child) {
	margin-bottom: 10px;
}

.iv-timeline-item__text-scroll {
	position: relative;
}

@media (min-width:1200px) {
	.iv-timeline-item__text-scroll {
		height: 340px;
	}
	
	.iv-timeline-item__text-scroll::after, .iv-timeline-item__text-scroll::before {
		content: "";
		position: absolute;
		pointer-events: none;
		width: 100%;
		left: 0;
		transition: all .1s cubic-bezier(.5, .02, .13, .5);
	}
	
	.iv-timeline-item__text-scroll::after {
		bottom: 0;
		height: 213px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
	}
	
	.iv-timeline-item__text-scroll::before {
		top: 0;
		height: 103px;
		background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0, #fff 100%);
		opacity: 0;
	}
	
	.iv-timeline-item__text-scroll_top::before {
		opacity: 1;
	}
	
	.iv-timeline-item__text-scroll_bottom::after {
		opacity: 0;
	}
}

@media (max-width:767px) {
	.iv-timeline-item__text {
		font-size: 16px;
		line-height: 150%;
	}
}

@media (min-width:1200px) {
	.iv-timeline-item__text {
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	
	.iv-timeline-item__text::-webkit-scrollbar {
		display: none;
	}
}

@media (min-width:1200px) {
	.iv-simple-cta {
		padding: 125px 0;
	}
}

@media (min-width:1200px) {
	.iv-simple-cta .iv-btn {
		margin-top: 40px;
	}
}

@media (max-width:767px) {
	.iv-simple-cta__description {
		font-size: 16px;
		line-height: 150%;
	}
}

@media (min-width:1200px) {
	.iv-industry-grid {
		padding: 125px 0;
	}
}

@media (min-width:768px) {
	.iv-industry-grid__header {
		margin-bottom: 70px;
	}
}

@media (min-width:768px) {
	.iv-industry-grid__row {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-industry-grid__row {
		gap: 70px 33px;
	}
}

@media (min-width:1600px) {
	.iv-industry-grid__row {
		gap: 70px 25px;
	}
}

@media (min-width:768px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(33.33333% - 22px);
		max-width: calc(33.33333% - 22px);
	}
}

@media (min-width:1600px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(33.33333% - 16.667px);
		max-width: calc(33.33333% - 16.667px);
	}
}

.iv-simple-cta {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-simple-cta {
		padding: 125px 0;
	}
}

.iv-simple-cta_light-gradient {
	background: var(--wp--preset--gradient--light-gradient);
}

.iv-simple-cta_beige.iv-simple-cta_has-bg-image .iv-container-wide, .iv-simple-cta_black.iv-simple-cta_has-bg-image .iv-container-wide {
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/simple-cta-beige-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 50px 25px;
	border-radius: 20px;
}

.iv-simple-cta_beige.iv-simple-cta_has-bg-image .iv-container-wide.nitro-lazy, .iv-simple-cta_black.iv-simple-cta_has-bg-image .iv-container-wide.nitro-lazy {
	background-image: none !important;
}

.iv-simple-cta_black {
	color: var(--wp--preset--color--white);
}

.iv-simple-cta_black.iv-simple-cta_has-bg-image .iv-container-wide {
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/simple-cta-black-bg.jpg");
}

.iv-simple-cta_black.iv-simple-cta_has-bg-image .iv-container-wide.nitro-lazy {
	background-image: none !important;
}

.iv-simple-cta__content {
	text-align: center;
	max-width: 953px;
	margin: 0 auto;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gform_heading, .iv-simple-cta .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-simple-cta .iv-btn {
	margin-top: 30px;
}

@media (min-width:1200px) {
	.iv-simple-cta .iv-btn {
		margin-top: 40px;
	}
}

.iv-simple-cta__description {
	margin-top: 25px;
}

@media (max-width:767px) {
	.iv-simple-cta__description {
		font-size: 16px;
		line-height: 150%;
	}
}

.iv-product-cta {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-product-cta {
		padding: 125px 0;
	}
}

.iv-product-cta_light-grey .iv-product-cta__container {
	background: var(--wp--preset--gradient--light-gradient);
}

.iv-product-cta_dark-grey .iv-product-cta__container {
	background: var(--wp--preset--gradient--deep-gray-gradient);
	color: var(--wp--preset--color--light-grey);
}

.iv-product-cta_beige .iv-product-cta__container {
	background: var(--wp--preset--color--beige);
}

.iv-product-cta_black .iv-product-cta__container {
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
}

.iv-product-cta_black .iv-product-cta__content .iv-eyebrow {
	color: var(--wp--preset--color--white);
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-product-cta_centered-tablet-content .iv-product-cta__container {
		padding: 240px 50px 70px;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.iv-product-cta_centered-tablet-content .iv-product-cta__content {
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.iv-product-cta_centered-tablet-content .iv-product-cta__image {
		right: auto;
		left: 50%;
	}
}

.iv-product-cta__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 20px;
	position: relative;
	padding: 270px 30px 70px;
}

@media (min-width:768px) {
	.iv-product-cta__container {
		padding: 100px 50px;
		min-height: 497px;
	}
}

@media (min-width:1200px) {
	.iv-product-cta__container {
		padding: 75px 80px;
		min-height: 625px;
	}
}

.iv-product-cta__bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	pointer-events: none;
	z-index: 1;
}

.iv-product-cta__content {
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	z-index: 2;
}

@media (min-width:768px) {
	.iv-product-cta__content {
		flex: 0 0 350px;
		max-width: 350px;
	}
}

@media (min-width:1200px) {
	.iv-product-cta__content {
		flex: 0 0 555px;
		max-width: 555px;
	}
}

.iv-product-cta__content .iv-eyebrow {
	margin-bottom: 25px;
}

.iv-product-cta__content .iv-btn {
	margin-top: 20px;
}

.iv-product-cta__image {
	position: absolute;
	width: 100%;
	max-width: 335px;
	height: 317px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

@media (min-width:768px) {
	.iv-product-cta__image {
		left: auto;
		right: 0;
		top: -100px;
		transform: translateX(0);
	}
}

@media (min-width:1200px) {
	.iv-product-cta__image {
		max-width: 425px;
		height: 403px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media (min-width:1300px) {
	.iv-product-cta__image {
		right: 50px;
	}
}

.iv-customer-testimonials__logos .swiper-slide img, .iv-customer-testimonials__logos-gallery .swiper-slide img, .iv-product-cta__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.iv-industry-grid {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-industry-grid {
		padding: 125px 0;
	}
}

.iv-industry-grid__header {
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-industry-grid__header {
		margin-bottom: 70px;
	}
}

.iv-industry-grid__row {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

@media (min-width:768px) {
	.iv-industry-grid__row {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-industry-grid__row {
		gap: 70px 33px;
	}
}

@media (min-width:1600px) {
	.iv-industry-grid__row {
		gap: 70px 25px;
	}
}

.iv-industry-grid__row .iv-post {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (min-width:1200px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(33.33333% - 22px);
		max-width: calc(33.33333% - 22px);
	}
}

@media (min-width:1600px) {
	.iv-industry-grid__row .iv-post {
		flex: 0 0 calc(33.33333% - 16.667px);
		max-width: calc(33.33333% - 16.667px);
	}
}

.iv-form-hero {
	padding: 50px 0;
}

.iv-form-hero > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

@media (min-width:768px) {
	.iv-form-hero > .iv-container-wide {
		gap: 70px;
	}
}

@media (min-width:1200px) {
	.iv-form-hero > .iv-container-wide {
		gap: 90px;
	}
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields > .gfield, .iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields > .gfield.gfield--width-half, .iv-form-hero__header {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-form-hero__header {
		flex: 0 0 400px;
		max-width: 400px;
		padding-top: 70px;
	}
}

.iv-form-hero__form {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 30px 20px;
	border-radius: 30px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	background-color: var(--wp--preset--color--white);
}

@media (min-width:768px) {
	.iv-form-hero__form {
		padding: 50px 38px;
	}
}

@media (min-width:1200px) {
	.iv-form-hero__form {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
		padding: 70px 50px;
	}
}

.iv-form-hero__form .gform_confirmation_message {
	text-align: center;
	position: relative;
	padding-top: 103px;
}

.iv-form-hero__form .gform_confirmation_message:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 45px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/check.svg");
}

.iv-form-hero__form .gform_confirmation_message h3 {
	margin-bottom: 20px;
}

@media (min-width:1200px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_heading {
		margin-bottom: 40px;
	}
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields {
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 54px;
	column-gap: 54px;
	row-gap: 20px;
}

@media (min-width:768px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields {
		row-gap: 30px;
	}
}

@media (min-width:1200px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields {
		-moz-column-gap: 56px;
		column-gap: 56px;
		row-gap: 40px;
	}
}

@media (min-width:1600px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields {
		-moz-column-gap: 64px;
		column-gap: 64px;
	}
}

@media (min-width:768px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields > .gfield.gfield--width-half {
		flex: 0 0 calc(50% - 27px);
		max-width: calc(50% - 27px);
	}
}

@media (min-width:1200px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields > .gfield.gfield--width-half {
		flex: 0 0 calc(50% - 28px);
		max-width: calc(50% - 28px);
	}
}

@media (min-width:1600px) {
	.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields > .gfield.gfield--width-half {
		flex: 0 0 calc(50% - 32px);
		max-width: calc(50% - 32px);
	}
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields .validation_message {
	color: #ff0303 !important;
	font-size: .875rem !important;
	line-height: 1.5 !important;
	font-weight: 300 !important;
	margin: 0 !important;
	padding: 6px 12px !important;
	border: 0 !important;
	background-color: transparent !important;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gform_fields select[aria-invalid=true] + .select2-container .select2-selection__rendered {
	color: #ff0303;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .hidden_label .gfield_label {
	display: none !important;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield.gfield--type-captcha {
	padding-top: 20px;
	padding-bottom: 60px;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input {
	width: 100%;
	height: 48px;
	font-weight: 300;
	font-size: 1rem;
	line-height: 48px;
	padding: 0 12px;
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--deep-grey);
	border-radius: 0 !important;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input::-webkit-input-placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea::-webkit-input-placeholder {
	color: #1f2022;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input::-moz-placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea::-moz-placeholder {
	color: #1f2022;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input::placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea::placeholder {
	color: #1f2022;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input[aria-invalid=true]::-webkit-input-placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea[aria-invalid=true]::-webkit-input-placeholder {
	color: #ff0303;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input[aria-invalid=true]::-moz-placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea[aria-invalid=true]::-moz-placeholder {
	color: #ff0303;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield input[aria-invalid=true]::placeholder, .iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea[aria-invalid=true]::placeholder {
	color: #ff0303;
	opacity: 1;
}

.iv-form-hero__form .gform_wrapper.gravity-theme .gfield textarea {
	width: 100%;
	height: 120px !important;
	font-weight: 300;
	font-size: 1rem;
	line-height: 48px;
	padding: 5px 12px;
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--deep-grey);
	border-radius: 0 !important;
}

.iv-form-hero__hubspot {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 30px 20px;
	border-radius: 30px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	background-color: var(--wp--preset--color--white);
}

@media (min-width:768px) {
	.iv-form-hero__hubspot {
		padding: 50px 38px;
	}
}

@media (min-width:1200px) {
	.iv-form-hero__hubspot {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
		padding: 70px 50px;
	}
}

.iv-form-hero__hubspot-description:not(:last-child) {
	margin-bottom: 40px;
}

.iv-featured-recognition {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-featured-recognition {
		padding: 125px 0;
	}
}

.iv-featured-recognition_light {
	position: relative;
}

.iv-featured-recognition_light:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 570px;
	background: linear-gradient(56deg, #f3f3f3 0, #fff 100%);
}

@media (min-width:768px) {
	.iv-featured-recognition_light:before {
		height: 610px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition_light:before {
		height: 69%;
	}
}

.iv-featured-recognition > .iv-container-wide {
	position: relative;
	z-index: 5;
}

.iv-featured-recognition__heading {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 5;
}

@media (min-width:768px) {
	.iv-featured-recognition__heading {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition__heading {
		margin-bottom: 90px;
	}
}

.iv-featured-recognition__cards {
	display: flex;
	flex-direction: row;
	gap: 25px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width:768px) {
	.iv-featured-recognition__cards {
		gap: 24px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition__cards {
		gap: 18px;
	}
}

@media (min-width:1600px) {
	.iv-featured-recognition__cards {
		gap: 25px;
	}
}

.iv-featured-recognition__item {
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	background-color: var(--wp--preset--color--white);
	flex: 0 0 100%;
	max-width: 100%;
	text-decoration: none;
	position: relative;
	display: block;
}

@media (min-width:768px) {
	.iv-featured-recognition__item {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
		padding: 20px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition__item {
		flex: 0 0 calc(33.33333% - 12px);
		max-width: calc(33.33333% - 12px);
		padding: 27px 26px;
	}
}

@media (min-width:1600px) {
	.iv-featured-recognition__item {
		flex: 0 0 calc(33.33333% - 16.667px);
		max-width: calc(33.33333% - 16.667px);
	}
}

.iv-featured-recognition__item span:not(.iv-btn) {
	display: block;
}

@media (hover:hover) {
	.iv-featured-recognition__item:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-featured-recognition__item:hover .iv-btn__icon svg {
		left: 0;
	}
}

.iv-featured-recognition__item-image {
	height: 202px;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 20px;
}

@media (min-width:768px) {
	.iv-featured-recognition__item-image {
		height: 198px;
		margin-bottom: 24px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition__item-image {
		height: 228px;
		margin-bottom: 23px;
	}
}

.iv-featured-recognition__item-image img {
	width: 100%;
	height: 100%;
}

@media (max-width:767px) {
	.iv-featured-recognition__item-text {
		font-size: 16px;
		line-height: 1.5;
	}
}

.iv-featured-recognition__item-cta {
	display: flex !important;
	justify-content: center;
	margin-top: 20px;
}

@media (min-width:768px) {
	.iv-featured-recognition__item-cta {
		bottom: 20px;
	}
}

@media (min-width:1200px) {
	.iv-featured-recognition__item-cta {
		bottom: 23px;
		right: 26px;
	}
}

.iv-featured-recognition__item-cta .iv-btn {
	display: flex;
}

.iv-uses-carousel {
	padding: 50px 0;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-uses-carousel {
		padding: 125px 0;
	}
}

.iv-uses-carousel > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

@media (min-width:1600px) {
	.iv-uses-carousel > .iv-container-wide {
		-moz-column-gap: 51px;
		column-gap: 51px;
	}
}

@media (max-width:1199px) {
	.iv-uses-carousel > .iv-container-wide {
		row-gap: 54px;
	}
}

.iv-uses-carousel__header {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-uses-carousel__header {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width:1200px) {
	.iv-uses-carousel__header {
		flex: 0 0 400px;
		max-width: 400px;
	}
}

.iv-uses-carousel__header .h2 {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 0;
}

@media (min-width:768px) {
	.iv-uses-carousel__header .h2 {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
}

@media (min-width:1200px) {
	.iv-uses-carousel__header .h2 {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 50px;
	}
}

.iv-uses-carousel__nav {
	display: flex;
	gap: 14px;
}

@media (max-width:767px) {
	.iv-uses-carousel__nav {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

.iv-uses-carousel__cards {
	margin-left: clamp(-4.375rem, -1.5625rem + ((1vw - .36rem) * -23.4375), -1.5625rem);
	margin-right: clamp(-4.375rem, -1.5625rem + ((1vw - .36rem) * -23.4375), -1.5625rem);
}

.iv-uses-carousel__cards--overflow {
	overflow: hidden;
}

@media (max-width:991px) {
	.iv-uses-carousel__cards--overflow .swiper {
		overflow: hidden;
	}
}

@media (min-width:1200px) {
	.iv-uses-carousel__cards {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width:767px) {
	.iv-uses-carousel__cards {
		margin-bottom: 105px;
	}
}

.iv-uses-carousel__cards .swiper {
	padding: 16px 0 20px;
}

@media (max-width:991px) {
	.iv-uses-carousel__cards .swiper {
		overflow: visible;
	}
}

.iv-uses-carousel__cards .swiper-slide {
	width: 295px;
	height: auto;
	overflow: initial !important;
}

@media (min-width:768px) {
	.iv-uses-carousel__cards .swiper-slide {
		width: 309px;
	}
}

@media (min-width:1200px) {
	.iv-uses-carousel__cards .swiper-slide {
		width: 415px;
	}
}

.iv-uses-carousel__item {
	border-radius: 30px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	overflow: hidden;
	background-color: var(--wp--preset--color--beige);
	height: 100%;
	display: block;
	text-decoration: none;
	position: relative;
}

@media (min-width:1200px) {
	.iv-uses-carousel__item {
		margin-right: 25px;
	}
}

.iv-uses-carousel__item_link .iv-uses-carousel__item-text {
	text-align: center;
	padding: 30px 30px 85px;
}

@media (hover:hover) {
	.iv-uses-carousel__item_link:hover .iv-btn__icon:before {
		background-color: var(--wp--preset--color--yellow);
	}
	
	.iv-uses-carousel__item_link:hover .iv-btn__icon svg {
		left: 0;
	}
	
	.iv-uses-carousel__item_link:hover .iv-uses-carousel__item-image img {
		transform: scale(1.1);
	}
}

.iv-uses-carousel__item-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-uses-carousel__item-image {
		height: 230px;
	}
}

@media (min-width:1200px) {
	.iv-uses-carousel__item-image {
		height: 300px;
	}
}

.iv-uses-carousel__item-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: all .4s;
}

.iv-uses-carousel__item-text {
	padding: 30px;
	font-size: 25px;
	line-height: 1.2;
}

.iv-uses-carousel__item .iv-btn {
	position: absolute;
	display: block;
	bottom: 23px;
	right: 50%;
	transform: translateX(50%);
}

.iv-customer-testimonials {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-customer-testimonials {
		padding: 125px 0;
	}
}

.iv-customer-testimonials__header {
	margin-bottom: 60px;
	text-align: center;
}

@media (min-width:1200px) {
	.iv-customer-testimonials__header {
		margin-bottom: 80px;
	}
}

.iv-customer-testimonials__header .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-customer-testimonials__header .h2 {
	padding-top: 0;
	margin-bottom: 0;
}

.iv-customer-testimonials__header .h2:not(:last-child) {
	margin-bottom: 25px;
}

@media (min-width:768px) {
	.iv-customer-testimonials__header .h2:not(:last-child) {
		margin-bottom: 45px;
	}
}

@media (min-width:1200px) {
	.iv-customer-testimonials__header .h2:not(:last-child) {
		margin-bottom: 40px;
	}
}

.iv-customer-testimonials__logos-gallery {
	margin-bottom: 40px;
}

@media (min-width:768px) {
	.iv-customer-testimonials__logos-gallery {
		margin-bottom: 60px;
	}
}

.iv-customer-testimonials__logos-gallery .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

.iv-customer-testimonials__logos-gallery .swiper-slide {
	width: 150px;
	height: 74px;
	padding: 0 26px;
	transition: all .4s;
}

@media (min-width:768px) {
	.iv-customer-testimonials__logos-gallery .swiper-slide {
		width: 196px;
		height: 96px;
		padding: 0 34px;
	}
}

.iv-customer-testimonials__logos-gallery.filter-images-black .swiper-slide img {
	filter: brightness(0);
}

.iv-customer-testimonials__logos {
	margin-bottom: 40px;
}

@media (min-width:768px) {
	.iv-customer-testimonials__logos {
		margin-bottom: 60px;
	}
}

.iv-customer-testimonials__logos .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

.iv-customer-testimonials__logos .swiper-slide {
	width: 196px;
	height: 96px;
	padding: 0 34px;
	transition: all .4s;
	filter: grayscale(100%);
	cursor: pointer;
}

.iv-customer-testimonials__logos .swiper-slide.swiper-slide-thumb-active, .iv-customer-testimonials__logos .swiper-slide:hover {
	filter: grayscale(0);
}

.iv-customer-testimonials > .iv-container-wide {
	position: relative;
}

.iv-customer-testimonials .testimonial-background-beige {
	background-color: var(--wp--preset--color--beige);
	position: relative;
	padding: 25px 0;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-customer-testimonials .testimonial-background-beige {
		padding: 0;
	}
}

.iv-customer-testimonials .testimonial-background-beige .bg-container {
	position: absolute;
	bottom: 20%;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	z-index: 1;
	pointer-events: none;
	grid-column-gap: 3rem;
}

.iv-customer-testimonials .testimonial-background-beige .bg-container img, .iv-customer-testimonials .testimonial-background-black .bg-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: right;
	object-position: right;
	opacity: .5;
}

.iv-customer-testimonials .testimonial-background-beige .iv-container-wide {
	position: relative;
	z-index: 2;
}

.iv-customer-testimonials .testimonial-background-beige .iv-customer-testimonials__item {
	background-color: transparent;
	box-shadow: none;
	position: relative;
}

.iv-customer-testimonials .testimonial-background-beige .iv-customer-testimonials__item svg {
	position: absolute;
	width: 30px;
	top: 0;
	fill: #fff;
}

@media (min-width:1200px) {
	.iv-customer-testimonials .testimonial-background-beige .iv-navigation {
		left: 53%;
		transform: translateX(-50%);
	}
}

.iv-customer-testimonials .testimonial-background-black {
	background-color: var(--wp--preset--color--black);
	position: relative;
	padding: 25px 0;
	overflow: hidden;
}

@media (min-width:768px) {
	.iv-customer-testimonials .testimonial-background-black {
		padding: 0;
	}
}

.iv-customer-testimonials .testimonial-background-black .bg-container {
	position: absolute;
	bottom: 20%;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	z-index: 1;
	pointer-events: none;
	grid-column-gap: 3rem;
}

.iv-customer-testimonials .testimonial-background-black .iv-container-wide {
	position: relative;
	z-index: 2;
}

.iv-customer-testimonials .testimonial-background-black .iv-customer-testimonials__item {
	background-color: transparent;
	box-shadow: none;
}

.iv-customer-testimonials .testimonial-background-black .iv-btn__title, .iv-customer-testimonials .testimonial-background-black .iv-customer-testimonials__item-text, .iv-customer-testimonials .testimonial-background-black .iv-eyebrow {
	color: #fff;
}

.iv-customer-testimonials .testimonial-background-black .iv-customer-testimonials__item-text {
	margin-bottom: 25px;
}

@media (min-width:1200px) {
	.iv-customer-testimonials .testimonial-background-black .iv-navigation {
		left: 53%;
		transform: translateX(-50%);
	}
}

.iv-customer-testimonials__content {
	margin: 0 -12px;
	padding: 0 12px;
}

@media (min-width:768px) {
	.iv-customer-testimonials__content {
		margin: 0 -20px;
		padding: 20px;
	}
}

.iv-customer-testimonials__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
	background-color: var(--wp--preset--color--white);
	padding-bottom: 75px;
	height: auto;
}

@media (min-width:768px) {
	.iv-customer-testimonials__item {
		padding: 50px 50px 125px;
		border-radius: 30px;
		box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	}
}

@media (min-width:1200px) {
	.iv-customer-testimonials__item {
		padding: 50px;
		gap: 50px;
	}
}

.iv-customer-testimonials__item-image {
	flex: 0 0 100%;
	max-width: 100%;
	height: 244px;
}

@media (min-width:768px) {
	.iv-customer-testimonials__item-image {
		height: 425px;
	}
}

@media (min-width:1200px) {
	.iv-customer-testimonials__item-image {
		flex: 0 0 506px;
		max-width: 506px;
		height: 425px;
	}
}

.iv-content-tabs__desktop-item .item-inner .desktop-item-img img, .iv-customer-testimonials__item-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.iv-customer-testimonials__item-content {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:1200px) {
	.iv-customer-testimonials__item-content {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
	
	.iv-customer-testimonials__item-content:not(.iv-customer-testimonials__item-content_alone) {
		padding-bottom: 200px;
	}
}

.iv-customer-testimonials__item-content .iv-eyebrow {
	position: relative;
	margin-bottom: 20px;
	font-size: 2rem;
}

.iv-customer-testimonials__item-content .iv-eyebrow .iv-customer-testimonials__quote {
	position: absolute;
	width: 30px;
	top: 0;
	fill: #fff;
}

@media (max-width:767px) {
	.iv-customer-testimonials__item-content .iv-eyebrow {
		margin-bottom: 30px;
		font-size: 32px;
	}
}

.iv-customer-testimonials__item-content .iv-btn {
	margin-top: 20px;
}

@media (max-width:767px) {
	.iv-customer-testimonials__item-content .iv-btn {
		margin-top: 30px;
	}
}

.iv-customer-testimonials__item-text {
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 300;
}

@media (min-width:768px) {
	.iv-customer-testimonials__item-text {
		font-size: 1.5rem;
		line-height: 1.35;
	}
}

.iv-customer-testimonials .iv-navigation {
	position: absolute;
	z-index: 8;
	bottom: 0;
	left: 53%;
	transform: translateX(-50%);
	margin-bottom: 25px;
}

@media (min-width:768px) {
	.iv-customer-testimonials .iv-navigation {
		bottom: 70px;
		margin-bottom: auto;
	}
}

@media (min-width:1200px) {
	.iv-customer-testimonials .iv-navigation {
		left: 606px;
		bottom: 175px;
		transform: translateX(0);
	}
}

.iv-stats {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-stats {
		padding: 125px 0;
	}
}

.iv-stats_is-preview .iv-stats__header:not(.initialized) {
	visibility: visible !important;
	opacity: 1 !important;
}

.iv-stats_is-preview .iv-stats__row {
	height: auto !important;
}

.iv-stats_is-preview .iv-stats__item {
	opacity: 1 !important;
}

.iv-stats_is-preview .iv-stats__item-line {
	width: 100% !important;
}

.iv-stats_light-grey .iv-stats__wrap {
	background: var(--wp--preset--gradient--light-gradient);
}

.iv-stats_dark-grey .iv-stats__wrap {
	background: var(--wp--preset--gradient--deep-gray-gradient);
	color: var(--wp--preset--color--light-grey);
}

.iv-stats_dark-grey .iv-stats__item-numbers {
	-webkit-text-stroke-color: var(--wp--preset--color--light-grey);
}

.iv-stats__container-wrap > .iv-container-wide {
	height: 100%;
}

.iv-stats__wrap {
	position: -webkit-sticky;
	position: sticky;
	border-radius: 20px;
	padding-top: 30px;
}

@media (min-width:768px) {
	.iv-stats__wrap {
		padding-top: 60px;
	}
}

@media (min-width:1200px) {
	.iv-stats__wrap {
		padding-top: 120px;
	}
}

.iv-stats__container {
	max-width: min(100% - clamp(2.5rem, 2.5rem + ((1vw - .36rem) * 41.6667), 7.5rem), 948px);
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.iv-stats__header {
	margin-bottom: 70px;
}

@media (min-width:1200px) {
	.iv-stats__header:not(.initialized) {
		visibility: hidden !important;
		opacity: 0 !important;
	}
}

@media (min-width:768px) {
	.iv-stats__header {
		margin-bottom: 60px;
	}
}

@media (min-width:1200px) {
	.iv-stats__header {
		margin-bottom: 65px;
	}
}

.iv-stats__row {
	position: relative;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-stats__row {
		height: 290px;
		transition: height .4s;
	}
}

.iv-stats__items {
	width: 100%;
}

.iv-stats__item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 30px;
}

@media (min-width:768px) {
	.iv-stats__item {
		padding-top: 20px;
		padding-bottom: 25px;
		gap: 20px;
	}
}

@media (min-width:1200px) {
	.iv-stats__item {
		padding-top: 25px;
		padding-bottom: 25px;
		gap: 60px;
		opacity: 0;
	}
}

.iv-stats__item:first-child {
	opacity: 1;
}

@media (max-width:1199px) {
	.iv-stats__item:last-child .iv-stats__item-line {
		display: none !important;
	}
}

.iv-stats__item-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--wp--preset--color--yellow);
}

@media (min-width:1200px) {
	.iv-stats__item-line {
		width: 0;
	}
}

.iv-stats__item-numbers {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: 5.625rem;
	line-height: 125px;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--wp--preset--color--deep-grey);
	text-align: center;
}

@media (min-width:768px) {
	.iv-stats__item-numbers {
		flex: 0 0 250px;
		max-width: 250px;
		text-align: left;
	}
}

@media (min-width:1200px) {
	.iv-stats__item-numbers {
		font-size: 7.8125rem;
		flex: 0 0 300px;
		max-width: 300px;
	}
}

.iv-stats__item-text {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	padding: 0 !important;
	margin: 0 !important;
	text-align: center;
}

@media (min-width:768px) {
	.iv-stats__item-text {
		text-align: left;
	}
}

.iv-tabbed-card-carousel {
	padding: 50px 0;
	background: var(--wp--preset--gradient--beige-gradient);
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel {
		padding: 125px 0;
	}
}

.iv-tabbed-card-carousel__header {
	margin-bottom: 60px;
}

@media (min-width:768px) {
	.iv-tabbed-card-carousel__header {
		margin-bottom: 70px;
	}
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel__header {
		margin-bottom: 80px;
	}
}

.iv-tabbed-card-carousel__header .iv-eyebrow {
	margin-bottom: 45px;
}

.iv-tabbed-card-carousel__header .h2 {
	padding: 0;
	margin: 0;
}

@media (max-width:1199px) {
	.iv-tabbed-card-carousel__desktop {
		display: none;
	}
}

.iv-tabbed-card-carousel__desktop-tab {
	margin-bottom: 70px;
}

.iv-tabbed-card-carousel__desktop-tab .swiper-wrapper {
	border-bottom: 1px solid #e5e5e5;
}

.iv-tabbed-card-carousel__desktop-tab .swiper-slide {
	height: auto;
	width: auto;
	font-weight: 700;
	padding-bottom: 19px;
	cursor: pointer;
}

.iv-product-listing__tabs-desktop-tab .swiper-slide.swiper-slide-thumb-active:before, .iv-tabbed-card-carousel__desktop-tab .swiper-slide.swiper-slide-thumb-active:before {
	width: 100%;
	left: 0;
	right: auto;
}

.iv-product-listing__tabs-desktop-tab .swiper-slide > div, .iv-tabbed-card-carousel__desktop-tab .swiper-slide > div {
	opacity: .7;
	transition: all .4s;
}

.iv-product-listing__tabs-desktop-tab .swiper-slide:before, .iv-tabbed-card-carousel__desktop-tab .swiper-slide:before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	right: 0;
	left: auto;
	bottom: -1px;
	background-color: var(--wp--preset--color--yellow);
	transition: all .4s;
}

.iv-tabbed-card-carousel__desktop-content .iv-navigation {
	margin-top: 50px;
	margin-bottom: 2px;
}

.iv-tabbed-card-carousel__desktop-header {
	max-width: var(--wp--style--global--wide-size);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel__desktop-header {
		margin-bottom: 60px;
	}
}

@media (min-width:1600px) {
	.iv-tabbed-card-carousel__desktop-header {
		margin-bottom: 70px;
	}
}

.iv-tabbed-card-carousel__desktop-header > div {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
}

.iv-tabbed-card-carousel__cards {
	padding: 20px;
	margin-left: -20px;
}

@media (max-width:640px) {
	.iv-tabbed-card-carousel__cards {
		display: none;
	}
}

.iv-tabbed-card-carousel__cards .swiper-wrapper {
	align-items: stretch;
}

.iv-tabbed-card-carousel__cards .swiper-slide {
	height: auto;
	width: 335px;
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel__cards .swiper-slide {
		width: 590px;
	}
}

.iv-tabbed-card-carousel__cards .swiper-slide:not(.swiper-slide-visible) .iv-tabbed-card-carousel__card {
	box-shadow: none;
}

.iv-tabbed-card-carousel__card {
	padding: 20px;
	height: 100%;
	background-color: var(--wp--preset--color--white);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	border-radius: 30px;
}

@media (min-width:768px) {
	.iv-tabbed-card-carousel__card {
		padding: 30px;
	}
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel__card {
		padding: 50px 30px;
	}
}

@media (max-width:640px) {
	.iv-tabbed-card-carousel__card {
		margin-bottom: 25px;
	}
	
	.iv-tabbed-card-carousel__card:last-child {
		margin-bottom: 0;
	}
}

.iv-tabbed-card-carousel__card .h4 {
	margin-bottom: 6px;
	padding: 0;
}

.iv-tabbed-card-carousel__card-description {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
}

.iv-tabbed-card-carousel__card-description ul {
	margin-left: 0;
}

.iv-tabbed-card-carousel__card-description ul li:before {
	top: 9px;
}

@media (min-width:1200px) {
	.iv-tabbed-card-carousel__accordion {
		display: none;
	}
}

.iv-tabbed-card-carousel__accordion-item {
	margin-bottom: 18px;
}

.iv-tabbed-card-carousel__accordion-item:last-child {
	margin-bottom: 0;
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-header {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
	padding: 0 0 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	cursor: pointer;
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-header-active .ui-accordion-header-icon {
	transform: rotate(180deg);
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-header-icon {
	width: 35px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/accordion-arrow.svg");
	order: 2;
	transition: all .4s;
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-header-icon.nitro-lazy {
	background-image: none !important;
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-content {
	padding: 60px 0;
}

@media (min-width:768px) {
	.iv-tabbed-card-carousel__accordion-item .ui-accordion-content {
		padding: 70px 0;
	}
}

.iv-tabbed-card-carousel__accordion-item .ui-accordion-content .iv-navigation {
	padding: 0 clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	margin-top: 50px;
	justify-content: center;
}

@media (max-width:640px) {
	.iv-tabbed-card-carousel__accordion-item .ui-accordion-content .iv-navigation {
		display: none;
	}
}

.iv-tabbed-card-carousel__accordion-header {
	margin-bottom: 40px;
}

@media (min-width:768px) {
	.iv-tabbed-card-carousel__accordion-header {
		margin-bottom: 50px;
	}
}

@media (min-width:641px) {
	.iv-tabbed-card-carousel__accordion-row {
		display: none;
	}
}

.iv-product-listing {
	padding: 50px 0;
	overflow: hidden;
}

@media (min-width:1200px) {
	.iv-product-listing {
		padding: 125px 0;
	}
}

.iv-product-listing_bg-light-grey {
	background: var(--wp--preset--gradient--light-gradient);
}

.iv-product-listing_carousel {
	overflow: hidden;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product, .iv-product-listing__stacked-row > .iv-product, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product {
	background: var(--wp--preset--color--beige);
	transition: all .5s;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product .iv-product-eyebrow, .iv-product-listing__stacked-row > .iv-product .iv-product-eyebrow, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product .iv-product-eyebrow {
	border: var(--wp--preset--color--yellow) 1px solid;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 15px;
	transition: all .5s;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product .iv-product-eyebrow:hover, .iv-product-listing__stacked-row > .iv-product .iv-product-eyebrow:hover, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product .iv-product-eyebrow:hover {
	border: #fff 1px solid;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product:hover, .iv-product-listing__stacked-row > .iv-product:hover, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product:hover {
	background: var(--wp--preset--color--yellow);
	cursor: pointer;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product:hover .iv-product-eyebrow, .iv-product-listing__stacked-row > .iv-product:hover .iv-product-eyebrow, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product:hover .iv-product-eyebrow {
	border: #fff 1px solid;
}

.iv-product-listing__carousel-cards .swiper-slide .iv-product:hover .iv-btn_product-listing-btn, .iv-product-listing__stacked-row > .iv-product:hover .iv-btn_product-listing-btn, .iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product:hover .iv-btn_product-listing-btn {
	color: #1f2022;
	background-color: #fff;
}

.iv-product-listing__tabs-header .iv-eyebrow {
	margin-bottom: 45px;
}

.iv-product-listing__tabs-header .h2 {
	padding: 0;
}

@media (max-width:767px) {
	.iv-product-listing__tabs-desktop {
		display: none;
	}
}

.iv-product-listing__tabs-desktop-tab {
	margin-bottom: 70px;
}

.iv-product-listing__tabs-desktop-tab .swiper-slide {
	height: auto;
	width: auto;
	font-weight: 700;
	padding-bottom: 19px;
	cursor: pointer;
}

.iv-product-listing__tabs-desktop-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px;
}

@media (min-width:1200px) {
	.iv-product-listing__tabs-desktop-wrap {
		gap: 60px;
	}
}

.iv-product-listing__tabs-desktop-text {
	flex: 0 0 300px;
	max-width: 300px;
}

@media (min-width:834px) {
	.iv-product-listing__tabs-desktop-text {
		flex: 0 0 335px;
		max-width: 335px;
	}
}

@media (min-width:1200px) {
	.iv-product-listing__tabs-desktop-text {
		flex: 0 0 438px;
		max-width: 438px;
	}
}

.iv-product-listing__tabs-desktop-cards {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	padding-bottom: 2px;
	overflow: hidden;
}

.iv-product-listing__tabs-desktop-cards .swiper {
	padding: 16px 0 20px;
}

.iv-product-listing__tabs-desktop-cards .swiper-wrapper {
	align-items: stretch !important;
}

.iv-product-listing__tabs-desktop-cards .swiper-slide {
	width: 295px;
	height: auto;
	overflow: initial !important;
	pointer-events: inherit !important;
}

@media (min-width:768px) {
	.iv-product-listing__tabs-desktop-cards .swiper-slide {
		width: 312px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__tabs-desktop-cards .swiper-slide {
		width: 315px;
	}
}

@media (min-width:768px) {
	.iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product {
		margin-right: 17px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__tabs-desktop-cards .swiper-slide .iv-product {
		margin-right: 20px;
	}
}

.iv-product-listing__tabs-desktop-cards .iv-navigation {
	padding-left: 25px;
	margin-top: 20px;
}

@media (min-width:768px) {
	.iv-product-listing__tabs-accordion {
		display: none;
	}
}

.iv-product-listing__tabs-accordion .swiper-slide {
	height: auto;
}

.iv-product-listing__tabs-accordion-item {
	margin-bottom: 18px;
}

.iv-product-listing__tabs-accordion-item:last-child {
	margin-bottom: 0;
}

.iv-product-listing__tabs-accordion-item .ui-accordion-header {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
	padding: 0 0 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	cursor: pointer;
}

.iv-product-listing__tabs-accordion-item .ui-accordion-header-active .ui-accordion-header-icon {
	transform: rotate(180deg);
}

.iv-product-listing__tabs-accordion-item .ui-accordion-header-icon {
	width: 35px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/accordion-arrow.svg");
	order: 2;
	transition: all .4s;
}

.iv-product-listing__tabs-accordion-item .ui-accordion-header-icon.nitro-lazy {
	background-image: none !important;
}

.iv-product-listing__tabs-accordion-item .ui-accordion-content {
	padding: 60px 0;
}

.iv-product-listing__tabs-accordion-item .ui-accordion-content .iv-navigation {
	padding: 0 clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	margin-top: 40px;
	justify-content: center;
}

.iv-product-listing__tabs-accordion-text {
	margin-bottom: 44px;
	max-width: var(--wp--style--global--wide-size);
	margin-left: auto;
	margin-right: auto;
}

.iv-product-listing__tabs-accordion-slider {
	padding: 16px 0 20px;
}

.iv-product-listing__carousel {
	position: relative;
}

@media (min-width:1200px) {
	.iv-product-listing__carousel {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		-moz-column-gap: 40px;
		column-gap: 40px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__carousel {
		-moz-column-gap: 75px;
		column-gap: 75px;
	}
}

@media (min-width:768px) {
	.iv-product-listing__carousel-header {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width:1200px) {
	.iv-product-listing__carousel-header {
		flex: 0 0 400px;
		max-width: 400px;
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-product-listing__carousel-header {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 25px;
	}
}

@media (max-width:1199px) {
	.iv-product-listing__carousel-header {
		margin-bottom: 70px;
	}
}

.iv-product-listing__carousel-header .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-product-listing__carousel-header .h2 {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0;
}

.iv-product-listing__carousel-header-wrap {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-product-listing__carousel-header-wrap {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 525px;
	}
}

.iv-product-listing__carousel-nav {
	display: flex;
	gap: 14px;
	margin-top: 30px;
}

@media (min-width:768px) and (max-width:1199px) {
	.iv-product-listing__carousel-nav {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
		margin-top: 0;
	}
}

@media (max-width:767px) {
	.iv-product-listing__carousel-nav {
		position: absolute;
		bottom: -105px;
		left: calc(50% - 42px);
		margin-top: 0;
	}
}

.iv-product-listing__carousel-cards {
	overflow: hidden;
	margin-left: clamp(-4.375rem, -1.5625rem + ((1vw - .36rem) * -23.4375), -1.5625rem);
	margin-right: clamp(-4.375rem, -1.5625rem + ((1vw - .36rem) * -23.4375), -1.5625rem);
}

@media (min-width:1200px) {
	.iv-product-listing__carousel-cards {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width:767px) {
	.iv-product-listing__carousel-cards {
		margin-bottom: 105px;
	}
}

.iv-product-listing__carousel-cards .swiper {
	padding: 16px 0 20px;
}

.iv-product-listing__carousel-cards .swiper-slide {
	width: 295px;
	height: auto;
	overflow: initial !important;
}

@media (min-width:1200px) {
	.iv-product-listing__carousel-cards .swiper-slide {
		width: 312px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__carousel-cards .swiper-slide {
		width: 315px;
	}
}

@media (min-width:1200px) {
	.iv-product-listing__carousel-cards .swiper-slide .iv-product {
		margin-right: 17px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__carousel-cards .swiper-slide .iv-product {
		margin-right: 20px;
	}
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-header {
		text-align: center;
	}
}

.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row {
	gap: 36px;
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row {
		gap: 32px;
	}
}

@media (min-width:1200px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row {
		gap: 80px 28px;
	}
}

@media (min-width:1600px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row {
		gap: 80px 36px;
	}
}

.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row > * {
	flex: 0 0 100%;
	max-width: 100%;
	height: auto;
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(50% - 16px);
		max-width: calc(50% - 16px);
	}
}

@media (min-width:1200px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(33.33333% - 18.667px);
		max-width: calc(33.33333% - 18.667px);
	}
}

@media (min-width:1600px) {
	.iv-product-listing__stacked_col-3 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(33.33333% - 24px);
		max-width: calc(33.33333% - 24px);
	}
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-header {
		text-align: center;
	}
}

.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row {
	gap: 36px;
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row {
		gap: 28px;
	}
}

@media (min-width:1200px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row {
		gap: 24px;
	}
}

.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row > * {
	flex: 0 0 100%;
	max-width: 100%;
	height: auto;
}

@media (min-width:768px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(50% - 14px);
		max-width: calc(50% - 14px);
	}
}

@media (min-width:833px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(33.33333% - 18.667px);
		max-width: calc(33.33333% - 18.667px);
	}
}

@media (min-width:1200px) {
	.iv-product-listing__stacked_col-4 .iv-product-listing__stacked-row > * {
		flex: 0 0 calc(25% - 18px);
		max-width: calc(25% - 18px);
	}
}

.iv-product-listing__stacked-header {
	margin-bottom: 60px;
	max-width: 972px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width:768px) {
	.iv-product-listing__stacked-header {
		margin-bottom: 70px;
	}
}

.iv-product-listing__stacked-header .h2 {
	padding: 0;
}

.iv-product-listing__stacked-header .iv-eyebrow {
	margin-bottom: 30px;
}

.iv-product-listing__stacked-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.iv-complex-product-animation {
	padding: 50px 0 0;
	margin-bottom: 50px;
}

@media (min-width:1200px) {
	.iv-complex-product-animation {
		padding: 175px 0 0;
		margin-bottom: 175px;
	}
}

.iv-complex-product-animation_is-preview .iv-complex-product-animation__animation-trigger {
	height: auto !important;
}

.iv-complex-product-animation_ne150 .iv-complex-product-animation__hero {
	width: 200px;
	aspect-ratio: .6073446328;
}

@media (min-width:768px) and (min-height:800px) {
	.iv-complex-product-animation_ne150 .iv-complex-product-animation__hero {
		width: 300px;
	}
}

@media (max-height:799px) {
	.iv-complex-product-animation_ne150 .iv-complex-product-animation__hero {
		width: 230px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation_ne150 .iv-complex-product-animation__hero {
		width: 430px;
	}
}

.iv-complex-product-animation_one-key .iv-complex-product-animation__hero {
	width: 200px;
	aspect-ratio: .6013986014;
}

@media (min-width:768px) and (min-height:800px) {
	.iv-complex-product-animation_one-key .iv-complex-product-animation__hero {
		width: 300px;
	}
}

@media (max-height:799px) {
	.iv-complex-product-animation_one-key .iv-complex-product-animation__hero {
		width: 230px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation_one-key .iv-complex-product-animation__hero {
		width: 430px;
	}
}

.iv-complex-product-animation_live-one-pod .iv-complex-product-animation__hero {
	width: 200px;
	aspect-ratio: .5095367847;
}

@media (min-width:768px) and (min-height:800px) {
	.iv-complex-product-animation_live-one-pod .iv-complex-product-animation__hero {
		width: 300px;
	}
}

@media (max-height:799px) {
	.iv-complex-product-animation_live-one-pod .iv-complex-product-animation__hero {
		width: 230px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation_live-one-pod .iv-complex-product-animation__hero {
		width: 374px;
	}
}

.iv-complex-product-animation_live-one-pod-2 .iv-complex-product-animation__hero {
	width: 200px;
	aspect-ratio: .5095367847;
}

@media (min-width:768px) and (min-height:800px) {
	.iv-complex-product-animation_live-one-pod-2 .iv-complex-product-animation__hero {
		width: 300px;
	}
}

@media (max-height:799px) {
	.iv-complex-product-animation_live-one-pod-2 .iv-complex-product-animation__hero {
		width: 230px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation_live-one-pod-2 .iv-complex-product-animation__hero {
		width: 374px;
	}
}

.iv-complex-product-animation_padlock .iv-complex-product-animation__hero {
	width: 200px;
	aspect-ratio: .6013986014;
}

@media (min-width:768px) and (min-height:800px) {
	.iv-complex-product-animation_padlock .iv-complex-product-animation__hero {
		width: 300px;
	}
}

@media (max-height:799px) {
	.iv-complex-product-animation_padlock .iv-complex-product-animation__hero {
		width: 230px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation_padlock .iv-complex-product-animation__hero {
		width: 430px;
	}
}

.iv-complex-product-animation > .iv-container-wide {
	position: relative;
	height: 100%;
}

.iv-complex-product-animation__header {
	max-width: 1065px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	position: relative;
	z-index: 101;
}

.iv-complex-product-animation__animation-trigger {
	height: 1400px;
}

@media (min-width:1200px) {
	.iv-complex-product-animation__animation-trigger {
		height: 1700px;
	}
}

.iv-complex-product-animation__animation-trigger img {
	position: -webkit-sticky;
	position: sticky;
	transition: top .5s;
}

.iv-complex-product-animation__animation-element {
	position: absolute;
	top: 0;
	width: 100%;
}

.iv-complex-product-animation__animation-trigger img, .iv-complex-product-animation__hero {
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
	z-index: 100;
}

.iv-complex-product-animation__hero {
	top: 0;
}

.iv-complex-product-animation__hero, .iv-complex-product-animation__slider {
	position: -webkit-sticky;
	position: sticky;
}

.iv-complex-product-animation__slider .swiper {
	padding: 0 20px;
	margin: 0 -20px;
}

.iv-complex-product-animation__slider .swiper-pagination {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
}

@media (min-width:768px) {
	.iv-complex-product-animation__slider .swiper-pagination {
		margin-top: 90px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation__slider .swiper-pagination {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 9;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
	}
}

@media (max-width:767px) {
	.iv-complex-product-animation__slider .swiper-pagination {
		justify-content: center;
	}
}

.iv-complex-product-animation__slider .swiper-pagination .swiper-pagination-bullet {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: relative;
	border: 1px solid transparent;
	transition: all .4s;
}

.iv-complex-product-animation__pagination-item:before, .iv-complex-product-animation__slider .swiper-pagination .swiper-pagination-bullet:before, .iv-text-image-slider__pagination-item:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #e5e5e5;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	transition: all .4s;
}

.iv-complex-product-animation__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	border-color: var(--wp--preset--color--yellow);
}

.iv-complex-product-animation__pagination-item.active:before, .iv-complex-product-animation__pagination-item:hover:before, .iv-complex-product-animation__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before, .iv-complex-product-animation__slider .swiper-pagination .swiper-pagination-bullet:hover:before {
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-complex-product-animation__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 38px;
}

@media (min-width:768px) {
	.iv-complex-product-animation__item {
		gap: 68px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation__item {
		flex-direction: row-reverse;
	}
}

.iv-complex-product-animation__item-col {
	flex: 0 0 100%;
	max-width: 100%;
	padding-bottom: 2px;
}

@media (min-width:1200px) {
	.iv-complex-product-animation__item-col {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 400px;
		padding-bottom: 0;
	}
}

.iv-complex-product-animation__item-img {
	flex: 0 0 100%;
	max-width: 100%;
	height: 233px;
}

@media (min-width:768px) {
	.iv-complex-product-animation__item-img {
		height: 374px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation__item-img {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 584px;
		height: 472px;
	}
}

.iv-complex-product-animation__item-img img, .iv-content-tabs__accordion-item-img img, .iv-text-image-slider__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.iv-complex-product-animation__item .iv-eyebrow {
	margin-bottom: 40px;
}

@media (min-width:1200px) {
	.iv-complex-product-animation__item .iv-eyebrow {
		margin-bottom: 36px;
	}
}

.iv-complex-product-animation__item-content {
	margin-bottom: 30px;
	font-size: 1rem;
}

@media (min-width:768px) {
	.iv-complex-product-animation__item-content {
		font-size: 1.125rem;
		line-height: 1.9;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation__item-content {
		margin-bottom: 25px;
		font-size: .9375rem;
		line-height: 1.6;
	}
}

.iv-complex-product-animation__item-content:last-child, .iv-text-image-slider__item-list li:last-child, .iv-text-image-slider__wrap .iv-text-image-slider__item:last-child {
	margin-bottom: 0;
}

.iv-complex-product-animation__pagination {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
}

@media (min-width:768px) {
	.iv-complex-product-animation__pagination {
		margin-top: 90px;
	}
}

@media (min-width:1200px) {
	.iv-complex-product-animation__pagination {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 9;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
	}
}

@media (max-width:767px) {
	.iv-complex-product-animation__pagination {
		justify-content: center;
	}
}

.iv-complex-product-animation__pagination-item {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: relative;
	border: 1px solid transparent;
	transition: all .4s;
	cursor: pointer;
}

.iv-complex-product-animation__pagination-item.active {
	border-color: var(--wp--preset--color--yellow);
}

.iv-text-image-slider {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-text-image-slider {
		padding: 125px 0;
	}
}

.iv-text-image-slider_is-preview .iv-text-image-slider__slider {
	height: auto !important;
}

@media (min-width:1200px) {
	.iv-text-image-slider_image-right .iv-text-image-slider__item {
		flex-direction: row-reverse;
	}
	
	.iv-text-image-slider_image-right .iv-text-image-slider__item-container {
		padding-left: calc(( 100% - var(--wp--style--global--wide-size) ) / 2);
		padding-right: 0;
	}
}

.iv-text-image-slider_image-right .iv-text-image-slider__pagination {
	left: calc(( 100% - var(--wp--style--global--wide-size) ) / 2);
}

.iv-text-image-slider__header {
	max-width: min(100% - clamp(3.125rem, 3.125rem + ((1vw - .36rem) * 46.875), 8.75rem), 870px);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-bottom: 70px;
}

@media (min-width:1200px) {
	.iv-text-image-slider__header {
		padding-bottom: 80px;
	}
}

@media (max-width:1199px) {
	.iv-text-image-slider__slider {
		display: none;
	}
}

.iv-text-image-slider__slider .swiper {
	position: -webkit-sticky;
	position: sticky;
	top: calc(( 100vh - 566px ) / 2);
}

@media (min-width:1200px) {
	.iv-text-image-slider__wrap {
		display: none;
	}
}

.iv-text-image-slider__wrap .iv-text-image-slider__item {
	margin-bottom: 70px;
}

.iv-text-image-slider__item {
	display: flex;
	flex-wrap: wrap;
	gap: 70px;
}

@media (min-width:1200px) {
	.iv-text-image-slider__item {
		gap: 80px;
	}
}

.iv-text-image-slider__item-img {
	flex: 0 0 100%;
	max-width: 100%;
	height: 390px;
}

@media (min-width:768px) {
	.iv-text-image-slider__item-img {
		height: 600px;
	}
}

@media (min-width:1200px) {
	.iv-text-image-slider__item-img {
		flex: 0 0 calc(50% - 40px);
		max-width: calc(50% - 40px);
		height: 650px;
	}
}

.iv-text-image-slider__item-container {
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	padding-right: clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
}

@media (min-width:1200px) {
	.iv-text-image-slider__item-container {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
		align-self: center;
		padding-left: 0;
		padding-right: calc(( 100% - var(--wp--style--global--wide-size) ) / 2);
	}
}

.iv-text-image-slider__item-container .iv-eyebrow {
	margin-bottom: 50px;
}

@media (min-width:1200px) {
	.iv-text-image-slider__item-container .iv-eyebrow {
		margin-bottom: 60px;
	}
}

.iv-content-tabs__header .iv-eyebrow:not(:last-child), .iv-text-image-slider__item-content:not(:last-child) {
	margin-bottom: 30px;
}

.iv-text-image-slider__item-list {
	list-style-type: none;
	padding: 0;
	margin: 0 0 30px;
}

.iv-text-image-slider__item-list li {
	margin-bottom: 25px;
	padding-left: 46px;
	position: relative;
}

.iv-text-image-slider__item-list li:before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	width: 30px;
	height: 30px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/check.svg");
}

.iv-text-image-slider__item-list li .h4 {
	margin-bottom: 16px;
}

.iv-text-image-slider__pagination {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
	position: absolute;
	bottom: 50px;
	left: calc(50% + 40px);
	z-index: 15;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.iv-text-image-slider__pagination-item {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: relative;
	border: 1px solid transparent;
	transition: all .4s;
	cursor: pointer;
}

.iv-text-image-slider__pagination-item.active {
	border-color: var(--wp--preset--color--yellow);
}

.iv-text-image-slider__pagination-item.active:before, .iv-text-image-slider__pagination-item:hover:before {
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-content-tabs {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-content-tabs {
		padding: 60px 0;
	}
}

.iv-content-tabs__inner {
	max-width: 1220px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding-bottom: 35px;
}

.iv-content-tabs_light-gradient {
	background: var(--wp--preset--gradient--light-gradient);
}

.iv-content-tabs_beige {
	background: var(--wp--preset--color--beige);
}

.iv-content-tabs_beige .iv-content-tabs__desktop {
	padding-top: 25px;
}

.iv-content-tabs__header {
	margin-bottom: 15px;
}

.iv-content-tabs__header .h2 {
	max-width: 923px;
	padding: 0;
	text-align: center;
	margin: 0 auto;
}

@media (max-width:767px) {
	.iv-content-tabs__desktop {
		display: none;
	}
}

.iv-content-tabs__desktop > .iv-container-wide {
	position: relative;
}

.iv-content-tabs__desktop > .iv-container-wide .iv-navigation {
	margin-top: 25px;
}

@media (min-width:1200px) {
	.iv-content-tabs__desktop > .iv-container-wide .iv-navigation {
		position: absolute;
		z-index: 9;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		left: 590px;
		bottom: 50px;
	}
}

.iv-content-tabs__desktop-tab {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}

@media (min-width:1200px) {
	.iv-content-tabs__desktop-tab {
		margin-bottom: 70px;
	}
}

.iv-content-tabs__desktop-tab .swiper {
	background: #edeae1;
	border-radius: 50px;
	padding: 8px 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 100%;
	overflow: visible;
}

.iv-content-tabs__desktop-tab .swiper-wrapper {
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
	transform: none !important;
	background: #edeae1;
	padding: 10px;
	border-radius: 50px;
}

.iv-content-tabs__desktop-tab .swiper-slide {
	height: auto;
	width: auto;
	font-weight: 700;
	padding: 12px 24px;
	cursor: pointer;
	border-radius: 50px;
	transition: all .4s;
}

.iv-content-tabs__desktop-tab .swiper-slide.swiper-slide-thumb-active {
	background-color: var(--wp--preset--color--yellow);
}

.iv-content-tabs__desktop-tab .swiper-slide > div {
	opacity: .7;
	transition: all .4s;
	white-space: nowrap;
}

.iv-content-tabs__desktop-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.iv-content-tabs__desktop-item .item-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-moz-column-gap: 5rem;
	column-gap: 5rem;
}

@media (min-width:768px) {
	.iv-content-tabs__desktop-item .item-inner .desktop-item-img {
		flex: 0 0 325px;
		max-width: 325px;
		height: 304px;
	}
}

@media (min-width:1200px) {
	.iv-content-tabs__desktop-item .item-inner .desktop-item-img {
		flex: 0 0 480px;
		max-width: 480px;
		height: 450px;
	}
}

@media (max-width:767px) {
	.iv-content-tabs__desktop-item .item-inner .desktop-item-img {
		flex: 0 0 100%;
		max-width: 340px;
		height: 324px;
		margin-left: auto;
		margin-right: auto;
	}
}

.iv-content-tabs__desktop-item .item-inner .desktop-item-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 300px;
}

.iv-content-tabs__desktop-item .item-inner .desktop-item-wrap .iv-eyebrow {
	font-size: 2rem;
}

.iv-content-tabs__desktop-item .item-inner .desktop-item-wrap p {
	font-size: 1.5rem;
}

@media (min-width:768px) {
	.iv-content-tabs__accordion {
		display: none;
	}
}

.iv-content-tabs__accordion-item {
	margin-bottom: 18px;
}

.iv-content-tabs__accordion-item:last-child {
	margin-bottom: 0;
}

.iv-content-tabs__accordion-item .ui-accordion-header {
	padding: 0 0 15px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	cursor: pointer;
}

.iv-content-tabs__accordion-item .ui-accordion-header-active .ui-accordion-header-icon {
	transform: rotate(180deg);
}

.iv-content-tabs__accordion-item .ui-accordion-header .iv-content-tabs__accordion-item-title {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.iv-content-tabs__accordion-item .ui-accordion-header-icon {
	width: 35px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("https://invue.com/nitropack_static/mNIMkBWOraIUPtcDOfoDaYznSIyuzrFj/assets/images/optimized/rev-e564e1a/invue.com/wp-content/themes/invue/assets/img/accordion-arrow.svg");
	order: 2;
	transition: all .4s;
}

.iv-content-tabs__accordion-item .ui-accordion-header-icon.nitro-lazy {
	background-image: none !important;
}

.iv-content-tabs__accordion-item .ui-accordion-content {
	padding: 40px 0 60px;
}

@media (max-width:767px) {
	.iv-content-tabs__accordion-item-title {
		max-width: calc(100% - 45px);
	}
}

.iv-content-tabs__accordion-item-img {
	width: 100%;
	height: 324px;
	margin-bottom: 40px;
}

.iv-content-tabs .iv-bg-white .iv-content-tabs__inner {
	padding-top: 0 !important;
}

.iv-basic-page-template {
	padding-bottom: 100px;
	padding-top: 130px;
}

@media (min-width:768px) {
	.iv-basic-page-template {
		padding-top: 140px;
	}
}

@media (min-width:1200px) {
	.iv-basic-page-template {
		padding-top: 180px;
		padding-bottom: 125px;
	}
}

.iv-basic-page-template__container {
	max-width: min(100% - clamp(3.125rem, 3.125rem + ((1vw - .36rem) * 46.875), 8.75rem), 867px);
	margin-left: auto;
	margin-right: auto;
}

.iv-basic-page-template__title {
	text-align: center;
	margin-bottom: 70px;
}

@media (min-width:768px) {
	.iv-basic-page-template__title {
		margin-bottom: 80px;
	}
}

@media (min-width:1200px) {
	.iv-basic-page-template__title {
		margin-bottom: 100px;
	}
}

.iv-our-openings {
	padding: 50px 0;
	position: relative;
}

@media (min-width:1200px) {
	.iv-our-openings {
		padding: 125px 0;
	}
}

.iv-our-openings__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	margin-top: 65px;
	margin-bottom: 80px;
}

@media (min-width:768px) {
	.iv-our-openings__filters {
		gap: 44px;
	}
}

@media (min-width:1200px) {
	.iv-our-openings__filters {
		gap: 80px;
	}
}

@media (max-width:991px) {
	.iv-our-openings__filters .iv-btn {
		margin: 0 auto;
	}
}

.iv-our-openings__filters .select2-selection__clear {
	display: inline-block;
}

.iv-our-openings .select2-container, .iv-our-openings__search {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width:768px) {
	.iv-our-openings .select2-container {
		flex: 0 0 calc(50% - 22px);
		max-width: calc(50% - 22px);
	}
}

@media (min-width:1200px) {
	.iv-our-openings .select2-container {
		flex: 0 0 280px;
		max-width: 280px;
	}
}

.iv-our-openings__search {
	position: relative;
}

@media (min-width:1200px) {
	.iv-our-openings__search {
		flex: 0 0 280px;
		max-width: 280px;
	}
}

.iv-our-openings__search input[type=search] {
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--deep-grey);
	font-size: 16px;
	line-height: 1.5;
	padding: 12px 30px 12px 12px;
	width: 100%;
	background-color: var(--wp--preset--color--white);
	border-radius: 0 !important;
}

.iv-our-openings__search svg {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 0;
	z-index: 0;
}

.iv-our-openings__list {
	margin-top: 65px;
}

.iv-our-openings__item {
	display: block;
	border-radius: 20px;
	background-color: var(--wp--preset--color--white);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	text-decoration: none;
	padding: 30px;
	margin-bottom: 30px;
	width: 100%;
}

.iv-our-openings__item:last-child {
	margin-bottom: 0;
}

@media (min-width:768px) {
	.iv-our-openings__item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 20px;
	}
}

.iv-our-openings__item-title {
	margin-bottom: 10px;
}

@media (max-width:767px) {
	.iv-our-openings__item svg {
		display: block;
		margin-left: auto;
	}
}

.iv-comparison-chart {
	padding: 50px 0;
}

@media (min-width:1200px) {
	.iv-comparison-chart {
		padding: 175px 0;
	}
	
	.iv-comparison-chart_is-preview .iv-comparison-chart__table-head {
		position: static;
		top: 0;
	}
}

.iv-comparison-chart__header {
	max-width: min(100% - clamp(3.125rem, 3.125rem + ((1vw - .36rem) * 46.875), 8.75rem), 917px);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 60px;
}

@media (min-width:1200px) {
	.iv-comparison-chart__header {
		margin-bottom: 70px;
	}
}

.iv-comparison-chart__header-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
	gap: 30px;
}

@media (max-width:767px) {
	.iv-comparison-chart__header-btns {
		flex-direction: column;
	}
}

@media (max-width:1199px) {
	.iv-comparison-chart__container {
		overflow: auto;
	}
}

.iv-comparison-chart__table {
	margin-left: auto;
	margin-right: auto;
	width: var(--width-mobile);
}

@media (min-width:768px) {
	.iv-comparison-chart__table {
		width: var(--width-desctop);
	}
}

.iv-comparison-chart__table-head {
	display: flex;
	flex-wrap: wrap;
	padding-left: 137px;
	margin-bottom: 22px;
	background-color: var(--wp--preset--color--white);
}

@media (min-width:1200px) {
	.iv-comparison-chart__table-head {
		position: -webkit-sticky;
		position: sticky;
		z-index: 99;
		top: 84px;
		padding-left: 196px;
	}
}

.iv-comparison-chart__table-head-col {
	flex: 0 0 105px;
	max-width: 105px;
}

@media (min-width:768px) {
	.iv-comparison-chart__table-head-col {
		flex: 0 0 150px;
		max-width: 150px;
	}
}

.iv-comparison-chart__table-head-col img {
	width: 90px;
	height: 90px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.iv-comparison-chart__table-head-title {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
	text-align: center;
	padding: 0 10px;
}

.iv-comparison-chart__table-list-head {
	background-color: var(--wp--preset--color--white);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15);
	padding: 25px 22px;
	position: relative;
	z-index: 10;
}

@media (max-width:767px) {
	.iv-comparison-chart__table-list-head .h3 {
		font-size: 1rem;
		line-height: 1.5;
		font-weight: 300;
		position: -webkit-sticky;
		position: sticky;
		left: 22px;
		display: inline-block;
	}
}

.iv-comparison-chart__table-list-row {
	display: flex;
	flex-wrap: wrap;
	min-height: 92px;
	border-bottom: 1px solid #e5e5e5;
}

.iv-comparison-chart__table-list-attribute {
	flex: 0 0 137px;
	max-width: 137px;
	padding: 14px 14px 14px 22px;
	background-color: var(--wp--preset--color--beige);
	display: flex;
	align-items: center;
}

@media (max-width:991px) {
	.iv-comparison-chart__table-list-attribute {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		left: 0;
	}
}

@media (min-width:768px) {
	.iv-comparison-chart__table-list-attribute {
		flex: 0 0 196px;
		max-width: 196px;
	}
}

.iv-comparison-chart__table-list-value {
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #e5e5e5;
	flex: 0 0 105px;
	max-width: 105px;
}

@media (min-width:768px) {
	.iv-comparison-chart__table-list-value {
		flex: 0 0 150px;
		max-width: 150px;
	}
}

.iv-comparison-chart__table-list-value svg, .iv-product-quiz__header-logo svg {
	display: block;
}

.iv-comparison-chart__table-list-text {
	text-align: center;
	font-size: 1rem;
	line-height: 1.5;
}

.iv-product-quiz-active {
	overflow: hidden;
}

.iv-product-quiz {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000000000000;
	background: var(--wp--preset--gradient--light-gradient);
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
}

.iv-product-quiz.active {
	opacity: 1;
	visibility: visible;
}

.iv-product-quiz__header {
	height: 54px;
	background-color: var(--wp--preset--color--deep-grey);
}

.iv-product-quiz__header > .iv-container-wide {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.iv-product-quiz__header-steps {
	font-size: 18px;
	font-weight: 700;
	line-height: 170%;
	color: var(--wp--preset--color--light-grey);
}

.iv-product-quiz__header-close {
	display: block;
	padding: 0;
	margin: 0;
	border: 0;
	background-color: transparent;
}

.iv-product-quiz__wrap {
	height: calc(100% - 54px);
	overflow: auto;
}

.iv-product-quiz__content {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width:1199px) {
	.iv-product-quiz__content .iv-navigation {
		top: -38px !important;
	}
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_post label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_result label.gfield_label {
	margin: 0;
	display: block;
	padding: 0 clamp(7.5rem, 7.5rem + ((1vw - .36rem) * 23.4375), 10.3125rem) 0 clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	font-weight: 300;
	font-size: 1.75rem;
	line-height: 1.1;
}

@media (min-width:768px) {
	.iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_post label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_result label.gfield_label {
		font-size: 1.875rem;
		line-height: 1.4;
	}
}

@media (min-width:1200px) {
	.iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_post label.gfield_label, .iv-product-quiz__content .gform_wrapper.gravity-theme .gfield--type-iv_product_quiz_result label.gfield_label {
		font-size: 2rem;
		line-height: 1.3;
		text-align: center;
		padding: 0 clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	}
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer {
	margin: 30px 0 0;
	padding: 0 clamp(1.5625rem, 1.5625rem + ((1vw - .36rem) * 23.4375), 4.375rem);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform-theme-button, .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_button {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0;
	font-size: clamp(.9375rem, .9375rem + ((1vw - .36rem) * 1.5625), 1.125rem);
	line-height: 1.7;
	color: var(--wp--preset--color--deep-grey);
	text-decoration: none;
	position: relative;
	font-weight: 700;
	background-color: transparent;
	padding: clamp(.6875rem, .8125rem + ((1vw - .36rem) * -1.0417), .8125rem) 32px;
	border: 1px solid var(--wp--preset--color--yellow);
	border-radius: 27px;
	transition: color .4s, background-color .4s;
}

@media (hover:hover) {
	.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform-theme-button:hover, .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_button:hover {
		color: var(--wp--preset--color--deep-grey);
		background-color: var(--wp--preset--color--yellow);
	}
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform-theme-button:focus, .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_button:focus {
	outline: 0;
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform-theme-button:focus-visible, .iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_button:focus-visible {
	outline: 1px solid var(--wp--preset--color--deep-grey);
	outline-offset: 4px;
	color: var(--wp--preset--color--deep-grey);
	background-color: var(--wp--preset--color--yellow);
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer .gform_next_button {
	opacity: 0;
}

.iv-product-quiz__content .gform_wrapper.gravity-theme .gform_page_footer [type=submit] {
	display: none !important;
}
