/* ========================================= 
	Root Variables
========================================= */

:root {
	--vi-primary-color: #1A5A80;
	--vi-secondary-color: #401701;
	--vi-third-color: #4F87B5;
	--vi-four-color: #F4FAFF;
	--vi-black-color: #000;
	--vi-title-color: #434343;
	--vi-white-color: #fff;
	--vi-gray-color: #DDDDDD;
	--vi-text-color: #3D3D3D;
	--vi-text-color-gray: #DDDDDD;

	--vi-accent-color: #88be32;
	--vi-accent-color-hover: #92c73d;

	--vi-border-width-1: 1px;
	--vi-border-solid: solid;
	--vi-border-color: #ddd;
}


/* ========================================= 
	Heading
========================================= */

.vi-heading {
	margin-top: 0;
	margin-bottom: 0;
}

.vi-heading-blockquote__icon {
	display: inline-flex;
	height: 24px;
	width: auto;
	margin-bottom: 1rem;
}

.vi-heading-blockquote__icon>* {
	display: block;
	width: auto;
	height: 100%;
}

.vi-heading-blockquote__author {
	margin-top: 1.5rem;
	font-style: italic;
	font-weight: 300;
}

@media only screen and (min-width:1025px) {
	.vi-heading-blockquote__icon {
		margin-left: -30px;
	}
}

.vi-heading .vi-heading-line-1,
.vi-heading .vi-heading-line-2 {
	display: block;
	overflow: hidden;
}

.vi-anim.vi-anim-hidden {
	visibility: hidden;
}

.vi-anim-line {
	display: block;
	overflow: hidden;
}

.vi-anim-inner {
	display: inline-block;
	will-change: transform, opacity;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.vi-anim-word {
	display: inline-block;
	will-change: transform, opacity;
	backface-visibility: hidden;
	transform: translateZ(0);
}


/* ========================================= 
	Advantages
========================================= */

.vi-advantages {
	width: 100%;
}

.vi-advantages__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	column-gap: 50px;
	row-gap: 50px;
}

.vi-advantages__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.vi-advantages__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 50px;
	margin-bottom: 1rem;
}

.vi-advantages .vi-advantages__icon-image {
	display: block;
	width: auto;
	height: 100%;
}

.vi-advantages .vi-advantages__title {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--vi-title-color);
	font-size: 20px;
	margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.vi-advantages__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 30px;
		row-gap: 30px;
	}
}

@media (min-width: 1025px) {
	.vi-advantages__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 20px;
		row-gap: 50px;
	}

	.vi-advantages__icon {
		height: 80px;
	}

	.vi-advantages .vi-advantages__title {
		font-size: 23px;
	}
}


/* ========================================= 
	Steps
========================================= */

.vi-steps {
	width: 100%;
}

.vi-steps__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	column-gap: 50px;
	row-gap: 50px;
}

.vi-steps__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.vi-steps__media {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.vi-steps__badge {
	position: absolute;
	top: -18px;
	right: 0;
	color: #818a91 !important;
	font-size: 15px;
	padding: 5px 10px;
	background-color: var(--vi-white-color);
	box-shadow: 0 1px 3px -1px #818a91;
	border-radius: 999px;
	white-space: nowrap;
	z-index: 2;
}

.vi-steps__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	box-shadow: 0 2px 6px -2px #c7c7c7;
	border-radius: 50%;
	background-color: var(--vi-white-color);
}

.vi-steps .vi-steps__icon-image {
	display: block;
	width: auto;
	height: 50px;
}

.vi-steps__arrow {
	display: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(150%, -50%);
}

.vi-steps .vi-steps__arrow-image {
	display: block;
	width: auto;
	height: 28px;
}

.vi-steps__title {
	margin-top: 1rem;
	font-size: 20px;
	text-transform: uppercase;
	color: var(--vi-title-color);
	font-weight: 700;
}

.vi-steps__text {
	margin-top: 0.5rem;
}

@media (min-width: 768px) {
	.vi-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 20px;
		row-gap: 20px;
	}
}

@media (min-width: 1025px) {
	.vi-steps__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.vi-steps__icon {
		width: 160px;
		height: 160px;
	}

	.vi-steps .vi-steps__icon-image {
		height: 80px;
	}

	.vi-steps__arrow {
		display: block;
	}

	.vi-steps__title {
		font-size: 23px;
	}
}


/* ========================================= 
	Gallery
========================================= */

.vi-gallery {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.vi-gallery__item {
	min-width: 0;
}

.vi-gallery .vi-gallery__image {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: contain;
}


/* ========================================= 
	Feature Columns
========================================= */

.vi-feature-columns {
	width: 100%;
}

.vi-feature-columns__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.vi-feature-columns__col {
	display: flex;
	flex-direction: column;
	gap: 30px;
	min-width: 0;
}

.vi-feature-columns__col--center {
	display: none;
}

.vi-feature-columns__media {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	position: relative;
	height: 100%;
	justify-content: flex-end;
}

.vi-feature-columns__parallax {
	will-change: transform;
	transition: all .3s linear;
	position: relative;
	z-index: 2;
	margin-bottom: 13%;
}

.vi-feature-columns .vi-feature-columns__image {
	display: block;
	width: 100%;
	height: auto;
}

.vi-feature-columns .vi-feature-columns__image--bottom {
	max-width: 75%;
	position: absolute;
	z-index: 1;
}

.vi-feature-columns__item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.vi-feature-columns__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
}

.vi-feature-columns__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 50px;
}

.vi-feature-columns .vi-feature-columns__icon-image {
	display: block;
	width: auto;
	height: 100%;
}

.vi-feature-columns__title {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--vi-title-color);
}

@media (min-width: 1025px) {
	.vi-feature-columns__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vi-feature-columns__col--center {
		display: flex;
	}

	.vi-feature-columns__col {
		gap: 50px;
	}

	.vi-feature-columns__icon {
		height: 60px;
	}

	.vi-feature-columns__title {
		font-size: 23px;
	}
}


/* ========================================= 
	Button
========================================= */

.vi-button-container {
	display: inline-flex;
	position: relative;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	width: 100%;
	height: auto;
	transition: all .2s linear;
	max-width: 320px;
}

.vi-button-container:hover {
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.vi-button-container.content-fit {
	width: fit-content;
}

.vi-button-container .vi-button {
	display: flex;
	min-height: 48px;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 13px 10px;
	position: relative;
	overflow: hidden;
	transition: all .2s linear;
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 1px;
	white-space: normal;
	border: none;
}

@media (min-width: 576px) {
	.vi-button-container .vi-button {
		min-height: 54px;
	}
}

.vi-button-container .vi-button::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 5;
}

.vi-button-container .vi-button__icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	transition: all .2s linear;
}

.vi-button-container .vi-button__icon svg {
	width: 100%;
	height: 100%;
	transition: all .2s linear;
}

.vi-button-container .vi-button span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.vi-button-container .vi-button span.arrow {
	position: relative;
	transition: transform 0.3s ease;
	left: -10px;
}

.vi-button-container .vi-button span.arrow::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #fff;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.vi-button-container .vi-button:hover span.arrow::before {
	opacity: 1;
	transform: translateX(0);
}

.vi-button-container .vi-button:hover span.arrow {
	transform: translateX(10px);
}

@media only screen and (min-width:1025px) {
	.vi-button-container {
		max-width: 360px;
	}

	.vi-button-container .vi-button {
		padding-left: 25px;
		padding-right: 25px;
	}
}

/* ========================================= 
	Button Default Style
========================================= */

.vi-button-container.default .vi-button {
	background: var(--vi-accent-color);
	color: var(--vi-white-color);
}

.vi-button-container.default:not(.vi-button-animation) .vi-button:hover {
	color: var(--vi-white-color);
	background: var(--vi-accent-color);
}

.vi-button-animation.default:hover .vi-button {
	color: var(--vi-white-color);
}

.vi-button-animation.default::before {
	background-color: var(--vi-accent-color-hover);
	opacity: 0.5;
}

.vi-button-container.default .vi-button svg {
	fill: var(--vi-white-color);
}

.vi-button-container.default:not(.vi-button-animation) .vi-button:hover svg {
	fill: var(--vi-white-color);
}

.vi-button-animation.default:hover .vi-button svg {
	fill: var(--vi-white-color);
}

/* ========================================= 
	Button Style 1
========================================= */

.vi-button-container.style-1 .vi-button {
	background: linear-gradient(180deg, rgba(248, 125, 2, 1) 0%, rgba(255, 173, 90, 1) 100%);
	color: var(--vi-white-color);
	border-color: var(--vi-white-color);
	border-width: 2px;
	border-style: solid;
	border-radius: 50px;
}

.vi-button-container.style-1:not(.vi-button-animation) .vi-button:hover {
	color: var(--vi-white-color);
	border-color: var(--vi-white-color);
	background: linear-gradient(180deg, rgba(248, 125, 2, 1) 0%, rgba(255, 173, 90, 1) 100%);
}

.vi-button-animation.style-1:hover .vi-button {
	color: var(--vi-white-color);
}

.vi-button-animation.style-1::before {
	background-color: var(--vi-accent-color-hover);
}

.vi-button-container.style-1 .vi-button svg {
	fill: var(--vi-white-color);
}

.vi-button-container.style-1:not(.vi-button-animation) .vi-button:hover svg {
	fill: var(--vi-white-color);
}

.vi-button-animation.style-1:hover .vi-button svg {
	fill: var(--vi-white-color);
}

/* ========================================= 
	Button Style 2
========================================= */

.vi-button-container.style-2 .vi-button {
	background: var(--vi-white-color);
	color: var(--vi-third-color);
	border-color: var(--vi-third-color);
	border-width: 2px;
	border-style: solid;
	border-radius: 50px;
}

.vi-button-container.style-2:not(.vi-button-animation) .vi-button:hover {
	color: var(--vi-white-color);
	border-color: var(--vi-third-color);
	background: var(--vi-third-color);
}

.vi-button-animation.style-2:hover .vi-button {
	color: var(--vi-white-color);
}

.vi-button-animation.style-2::before {
	background-color: var(--vi-third-color-hover);
}

.vi-button-container.style-2 .vi-button svg {
	fill: var(--vi-white-color);
}

.vi-button-container.style-2:not(.vi-button-animation) .vi-button:hover svg {
	fill: var(--vi-white-color);
}

.vi-button-animation.style-2:hover .vi-button svg {
	fill: var(--vi-white-color);
}

/* ========================================= 
	Button Style 3
========================================= */

.vi-button-container.style-3 {
	border-radius: 25px;
}

.vi-button-container.style-3 .vi-button {
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-primary-color);
	border-width: 2px;
	border-style: solid;
	border-radius: 25px;
}

.vi-button-container.style-3:not(.vi-button-animation) .vi-button:hover {
	color: var(--vi-white-color);
	border-color: var(--vi-accent-color);
	background: var(--vi-accent-color);
}

.vi-button-animation.style-3:hover .vi-button {
	color: var(--vi-white-color);
}

.vi-button-animation.style-3::before {
	background-color: var(--vi-accent-color-hover);
}

.vi-button-container.style-3 .vi-button svg {
	fill: var(--vi-white-color);
}

.vi-button-container.style-3:not(.vi-button-animation) .vi-button:hover svg {
	fill: var(--vi-white-color);
}

.vi-button-animation.style-3:hover .vi-button svg {
	fill: var(--vi-white-color);
}

/* ========================================= 
	Button Style 4
========================================= */

.vi-button-container.style-4 .vi-button {
	background: var(--vi-white-color);
	color: var(--vi-accent-color);
	border-color: var(--vi-accent-color);
	border-width: 2px;
	border-style: solid;
	border-radius: 50px;
}

.vi-button-container.style-4:not(.vi-button-animation) .vi-button:hover {
	color: var(--vi-white-color);
	border-color: var(--vi-accent-color);
	background: var(--vi-accent-color);
}

.vi-button-animation.style-4:hover .vi-button {
	color: var(--vi-white-color);
}

.vi-button-animation.style-4::before {
	background-color: var(--vi-accent-color-hover);
}

.vi-button-container.style-4 .vi-button svg {
	fill: var(--vi-white-color);
}

.vi-button-container.style-4:not(.vi-button-animation) .vi-button:hover svg {
	fill: var(--vi-white-color);
}

.vi-button-animation.style-4:hover .vi-button svg {
	fill: var(--vi-white-color);
}

/* ========================================= 
	Button Animation
========================================= */

.vi-button-animation {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 0.3s;
}

.vi-button-animation span {
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.vi-button-animation::before {
	content: '';
	position: absolute;
	z-index: 2;
	transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* ========================================= 
	Button Diagonal Swipe
========================================= */

.vi-button-animation-diagonal-swipe::before {
	height: 110%;
	left: -45%;
	top: 0;
	transform: skew(50deg);
	transition-duration: 0.6s;
	transform-origin: top left;
	width: 0;
}

.vi-button-animation-diagonal-swipe:hover:before {
	height: 105%;
	width: 150%;
}

/* ========================================= 
	Button Swipe Left To Right
========================================= */

.vi-button-animation-swipe-left-to-right::before {
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}

.vi-button-animation-swipe-left-to-right:hover::before {
	width: 100%;
}

/* ========================================= 
	Button Skew Curtain
========================================= */

.vi-button-animation-skew-curtain::before {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
	width: 25rem;
	height: 0;
	transform-origin: center;
}

.vi-button-animation-skew-curtain:hover::before {
	height: 25rem;
}

/* ========================================= 
	Button Circle
========================================= */

.vi-button-animation-circle::before {
	width: 0;
	height: 0;
	border-radius: 9999px;
}

.vi-button-animation-circle:hover::before {
	width: 30rem;
	height: 30rem;
}

@media only screen and (min-width:576px) {
	.vi-button-container .vi-button {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* ========================================= 
	Image
========================================= */

.vi-image {
	display: flex;
	transition: all .3s linear;
}

.vi-image__link {
	position: relative;
	display: block;
}

.vi-image__picture {
	display: block;
	transition: all .3s linear;
}

.vi-image__link:hover .vi-image__picture {
	filter: brightness(0.9);
}

.vi-image__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100%;
	z-index: 2;
}

.vi-image__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--vi-white-color);
	transition: all .3s linear;
}

.vi-image__link:hover .vi-image__icon svg {
	fill: var(--vi-accent-color);
}

/* ========================================= 
	Accordion
========================================= */

.vi-accordion-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vi-accordion-item {
	transition: background-color .2s linear, border-color .2s linear, box-shadow .2s linear;
}

.vi-accordion-heading {
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--vi-white-color);
	padding: 20px 30px;
	cursor: pointer;
	transition: all .3s linear;
	border-radius: 50px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
}

.vi-accordion-heading:hover,
.vi-accordion-item.active .vi-accordion-heading {
	background-color: var(--vi-white-color);
}

.vi-accordion-title {
	color: var(--vi-title-color);
	font-weight: 700;
	font-size: 21px;
	padding-right: 64px;
	text-transform: uppercase;
	transition: all .3s linear;
}

.vi-accordion-title__icon {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	color: var(--vi-title-color);
	transition: all .3s linear;
}

.vi-accordion-title__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--vi-title-color);
	transition: all .3s linear;
}

.vi-accordion-title__icon i {
	font-size: 21px;
	line-height: 1;
}

.vi-accordion-heading:hover .vi-accordion-title {
	color: var(--vi-accent-color);
}

.vi-accordion-heading:hover .vi-accordion-title__icon svg {
	fill: var(--vi-accent-color);
}

.vi-accordion-item.active .vi-accordion-title {
	color: var(--vi-accent-color);
}

.vi-accordion-item.active .vi-accordion-title__icon svg {
	fill: var(--vi-accent-color);
}

.vi-accordion-item:not(.active) .vi-expanded-icon {
	display: none;
}

.vi-accordion-item.active .vi-expanded-icon {
	display: block;
}

.vi-accordion-item.active .vi-collapsed-icon {
	display: none;
}

.vi-accordion-text {
	display: none;
	padding: 1.5rem 2rem;
	background-color: var(--vi-white-color);
	border-radius: 0 0 20px 20px;
}

.vi-accordion-item.active .vi-accordion-text {
	display: block;
}

.vi-accordion-text__desc> :where(h1, h2, h3, h4, h5, p, ul, ol) {
	margin-bottom: 1rem;
}

.vi-accordion-text__desc>*:last-child {
	margin-bottom: 0;
}

.vi-accordion-text__desc :where(ul, ol) {
	list-style: none;
	padding-left: 0;
}

.vi-accordion-text__desc ul {
	margin-left: 42px;
}

.vi-accordion-text__desc ol {
	margin-left: 4rem;
	counter-reset: point;
}

.vi-accordion-text__desc ol li {
	position: relative;
}

.vi-accordion-text__desc :where(ol, ul) li:not(:last-child) {
	margin-bottom: 1rem;
}

.vi-accordion-text__desc ol li::before {
	content: counter(point);
	counter-increment: point 1;
	position: absolute;
	top: 0;
	left: -45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	text-align: center;
	border: 1px solid var(--vi-accent-color);
	border-radius: 50%;
}

.vi-accordion-text__desc a {
	color: var(--vi-accent-color);
	text-decoration: underline;
}

.vi-accordion-text__desc a:hover {
	color: var(--vi-accent-color-hover);
	text-decoration: none;
}

@media only screen and (min-width:1025px) {

	.vi-accordion-heading {
		padding: 16px 30px;
	}

	.vi-accordion-title {
		font-size: 21px;
	}
}

/* ========================================= 
	Simple Nav
========================================= */

.vi-simple-nav {
	display: block;
}

.vi-simple-nav__heading {
	display: block;
	font-weight: 400;
	color: #a4a7ae;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.vi-simple-nav__list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-items: start;
}

.vi-simple-nav__list-item {
	display: block;
	font-weight: 600;
	color: var(--vi-white-color);
}

.vi-simple-nav .vi-simple-nav__list-item a {
	display: inline-flex;
	position: relative;
	color: var(--vi-white-color);
	text-decoration: none;
}

.vi-simple-nav .vi-simple-nav__list-item a::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: var(--vi-accent-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s linear;
}

.vi-simple-nav .vi-simple-nav__list-item a:hover::before {
	width: 75%;
	opacity: 1;
	visibility: visible;
}


/* ========================================= 
	Navigation
========================================= */

.vi-header-sticky {
	background-color: rgba(255, 255, 255, 0.97);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

div[data-elementor-type="header"] .elementor-element,
div[data-elementor-type="header"] .e-con-inner,
div[data-elementor-type="header"] .elementor-widget-container {
	position: static !important;
}

.vi-nav__toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.2em;
	cursor: pointer;
}

.vi-nav__container {
	display: flex;
}

.vi-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	--depth: 0;
}

.vi-nav__item {
	position: relative;
}

.vi-nav__list .vi-nav__link {
	display: flex;
	height: 100%;
	align-items: center;
	text-decoration: none;
	color: var(--vi-primary-color);
	font-size: clamp(16px, 1.5vw, 19px);
}

.vi-nav__list .current-menu-item>a,
.vi-nav__list .vi-nav__link:hover {
	color: var(--vi-accent-color);
}

.vi-nav__sublist {
	position: absolute;
	left: 0;
	top: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(10px);
	--depth: calc(var(--depth) + 1);
}

.vi-nav__toggle .line {
	width: 27px;
	height: 3px;
	background-color: var(--vi-third-color);
	display: block;
	margin-top: 3px;
	margin-bottom: 3px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.vi-nav__toggle .line:first-child {
	width: 44px;
}

.vi-nav__arrow.menu-arrow {
	display: inline-flex;
	width: 14px;
	height: 100%;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 192'%3E%3Cpath fill='%23075061' d='M176,192c-4.24,0-8.32-1.68-11.31-4.69L4.69,27.31C-1.56,21.06-1.56,10.94,4.69,4.69s16.38-6.25,22.62,0l148.69,148.69L324.69,4.69c6.25-6.25,16.38-6.25,22.62,0s6.25,16.38,0,22.62l-160,160c-3,3.01-7.07,4.69-11.31,4.69Z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.3s ease;
}

.vi-nav__list .vi-nav__item--open>*>.vi-nav__arrow.menu-arrow {
	transform: rotate(180deg);
}

.vi-nav__list .vi-button-wrapper {
	padding-top: 7px;
	padding-bottom: 7px;
	margin-left: 20px;
	margin-right: 20px;
}

.vi-nav__list .vi-button-wrapper .vi-button-container {
	width: auto;
	min-width: 200px;
}

.vi-nav__list .vi-button-container .vi-button {
	padding-top: 10px;
	padding-bottom: 10px;
}

.fix-header-spacing {
	padding-top: 80px;
	padding-bottom: 80px;
}

.fix-header-spacing-small {
	padding-top: 80px !important;
}

.vi-nav__list>li:last-child.vi-nav__item-button .vi-button-wrapper {
	margin-right: 0;
	margin-left: 0;
}

@media (min-width: 1025px) {
	.fix-header-spacing {
		padding-top: 150px;
		padding-bottom: 80px;
	}

	.fix-header-spacing-small {
		padding-top: 100px !important;
	}

	.vi-nav {
		font-size: 20px;
	}

	.vi-nav__list .vi-nav__link {
		padding: 0.5vw 1vw;
		white-space: nowrap;
		color: var(--vi-four-color);
	}

	.vi-nav__list .menu-item-has-children:hover>a {
		color: var(--vi-accent-color);
	}

	.vi-nav__list .vi-nav__item>a>.vi-nav__link-text {
		position: relative;
	}

	.vi-nav__list>.vi-nav__item>a>.vi-nav__link-text::before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: -4px;
		width: 0;
		height: 2px;
		background-color: var(--vi-accent-color);
		opacity: 0;
		visibility: hidden;
		transition: all .2s linear;
	}

	.vi-nav__list>.vi-nav__item>a:hover>.vi-nav__link-text::before,
	.vi-nav__list>.vi-nav__item.current-menu-item:hover>a>.vi-nav__link-text::before {
		width: 75%;
		opacity: 1;
		visibility: visible;
	}

	.vi-nav__list>.vi-nav__item.current-menu-item>a {
		color: var(--vi-four-color);
	}

	.vi-nav__sublist {
		background-color: var(--vi-white-color);
		box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.05);
		z-index: -1;
		visibility: hidden;
	}

	.vi-nav__item:hover>.vi-nav__sublist {
		display: block;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		z-index: 1000;
	}

	.vi-nav__sublist .vi-nav__sublist {
		left: 100%;
		top: 0;
		transform: translateX(10px);
	}

	.vi-nav__item:hover>.vi-nav__sublist .vi-nav__sublist {
		transform: translateX(0);
	}

	.vi-nav__link:hover .vi-nav__arrow.menu-arrow {
		transform: rotate(180deg);
	}

	.vi-nav__list .menu-item-has-children:hover>.vi-nav__link>.vi-nav__arrow.menu-arrow {
		transform: rotate(180deg);
	}

	.vi-nav__arrow.menu-arrow {
		margin-left: 10px;
	}
}

@media (max-width: 1024px) {

	.vi-nav ul[data-depth="0"] {
		--depth: 0;
	}

	.vi-nav ul[data-depth="1"] {
		--depth: 1;
	}

	.vi-nav ul[data-depth="2"] {
		--depth: 2;
	}

	.vi-nav ul[data-depth="3"] {
		--depth: 3;
	}

	.vi-nav ul[data-depth="4"] {
		--depth: 4;
	}

	.vi-nav ul[data-depth="5"] {
		--depth: 5;
	}

	.vi-nav {
		display: flex;
		height: 100%;
	}

	.vi-nav__container {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		z-index: 100;
		padding-left: 20px;
		padding-right: 20px;
		background-color: var(--vi-white-color);
	}

	.vi-nav__list {
		flex-direction: column;
		background-color: var(--vi-white-color);
		padding-top: 10px;
		padding-bottom: 20px;
	}

	.vi-nav__item {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.vi-nav__list .vi-nav__link {
		height: auto;
		width: 100%;
	}

	.vi-nav__link-text {
		flex: 1 0 0;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: calc(20px * var(--depth));
		padding-right: 20px;
	}

	.vi-nav__list[data-depth="0"]>li>a>.vi-nav__link-text {
		padding-left: 0;
	}

	.vi-nav__sublist {
		width: 100%;
		position: relative;
		left: 0;
		top: 0;
		display: none;
		transform: none;
		opacity: 1;
	}

	.vi-nav__item.vi-nav__item--open>.vi-nav__sublist {
		display: block;
	}

	.vi-nav__arrow.menu-arrow {
		width: 50px;
		background-size: 16px;
	}

	.vi-nav__toggle {
		display: flex;
		padding: 0;
		flex-direction: column;
		align-items: flex-end;
	}
}

@media only screen and (max-width:1024px) {
	.vi-nav__list .vi-nav__item-button {
		margin-top: 10px;
	}
}

@media only screen and (max-width:575px) {
	.vi-nav__list .vi-button-wrapper .vi-button-container {
		width: 100%;
		min-width: 100%;
	}
}


/* ========================================= 
	Hero
========================================= */

.vi-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 100px 20px 60px 20px;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	--vi-hero-x: -446px;
}

.vi-hero--full {
	height: auto;
	min-height: 70vh;
}

.vi-hero__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}

.vi-hero__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: auto;
	height: auto;
}

.vi-hero__content {
	display: inline-flex;
	flex-direction: column;
	position: relative;
	margin-left: auto;
	text-align: left;
	z-index: 2;
}

.vi-hero .vi-hero__title {
	margin: 0 0 1rem 0;
	color: var(--vi-white-color);
	font-size: clamp(40px, 11vw, 100px);
	line-height: 1.1;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.vi-hero .vi-hero__subtitle {
	margin: 0 0 1.25rem 0;
	color: var(--vi-accent-color);
	font-size: clamp(20px, 5vw, 40px);
	line-height: 1.1;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 576px) {
	.vi-hero .vi-hero__subtitle {
		margin: 0 0 2rem 0;
	}
}

.vi-hero__actions {
	display: flex;
	gap: 1rem;
}

.vi-hero__actions .vi-button {
	padding-left: 2rem;
	padding-right: 2rem;
}

.vi-hero__visual {
	position: absolute;
	left: -50%;
	bottom: 0;
	transform: none;
	will-change: transform;
	z-index: 1;
	pointer-events: none;
}

.vi-hero__visual-image {
	width: 120vw;
	max-width: 1600px;
}

.vi-hero .vi-hero__visual-img {
	display: block;
	width: 100%;
	height: auto;
}

@media (min-width: 1025px) {
	.vi-hero__content {
		margin-right: 100px;
	}

	.vi-hero {
		--vi-hero-x: -700px;
	}

	.vi-hero__visual {
		left: 0;
		bottom: var(--vi-hero-bottom, 100px);
		transform: translate3d(var(--vi-hero-x, -700px), 0, 0);
	}

	.vi-hero--full {
		height: 100vh;
	}

	.vi-hero__inner {
		position: relative;
		width: 100%;
		height: 100%;
	}
}

/* ========================================= 
	Header
========================================= */

.vi-header {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
	color: var(--vi-white-color);
}

.vi-header--scrolled {
	background-color: var(--vi-white-color);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	color: var(--vi-text-color);
}

.vi-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 10px 1.25rem;
}

.vi-header__left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.vi-header__logo {
	display: flex;
	align-items: center;
}

.vi-header .vi-header__logo-img {
	display: block;
	max-height: 40px;
	width: auto;
}

.vi-header__nav {
	display: none;
	align-items: center;
	justify-content: center;
}

.vi-header__menu {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vi-header__menu li {
	margin: 0;
	padding: 0;
}

.vi-header .vi-header__menu a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.2;
	color: var(--vi-white-color);
	transition: color 0.2s ease, opacity 0.2s ease;
}

.vi-header--scrolled .vi-header__menu a {
	color: var(--vi-text-color);
}

.vi-header__actions {
	display: flex;
	flex-direction: column;
	gap: 7px;
	align-items: flex-end;
}

.vi-header__phone {
	display: flex;
	order: 2;
	margin-left: auto;
}

.vi-header .vi-header__phone-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
	color: var(--vi-white-color);
	font-weight: 600;
}

.vi-header .vi-header__phone-link:hover {
	color: var(--vi-accent-color);
}

.vi-header .vi-header__phone-link:hover .vi-header__phone-icon svg {
	fill: var(--vi-accent-color);
}

.vi-header--scrolled .vi-header__phone-link {
	color: var(--vi-black-color);
}

body:not(.home) .vi-header .vi-header__phone-link {
	color: var(--vi-text-color);
}

body:not(.home) .vi-header .vi-header__phone-link:hover {
	color: var(--vi-accent-color);
}

body:not(.home) .vi-header--scrolled .vi-header__phone-link {
	color: var(--vi-text-color);
}

.vi-header__phone-icon {
	width: 16px;
	height: 16px;
	position: relative;
	top: -1px;
}

.vi-header__phone-icon svg {
	fill: var(--vi-white-color);
	transition: all .3s linear;
}

.vi-header__phone-icon-svg {
	width: 18px;
	height: 18px;
	fill: var(--vi-white-color);
	color: var(--vi-white-color);
	transition: all 0.3s linear;
}

.vi-header__phone-text {
	font-size: 16px;
}

.vi-header--scrolled .vi-header__phone-icon svg {
	fill: var(--vi-black-color);
}

.vi-header__cta {
	display: flex;
	order: 3;
}

.vi-header .vi-button-container .vi-button {
	padding: 5px 10px;
	min-height: unset;
	font-size: 14px;
}

.vi-header__burger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.vi-header__burger-bar {
	display: block;
	width: 22px;
	height: 2px;
	margin: 2px 0;
	background: var(--vi-white-color);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.vi-header--scrolled .vi-header__burger-bar {
	background: var(--vi-black-color);
}

body:not(.home) .vi-header__burger-bar {
	background: var(--vi-text-color);
}

body:not(.home) .vi-header--scrolled .vi-header__burger-bar {
	background: var(--vi-text-color);
}

.vi-header__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vi-header--menu-open .vi-header__overlay {
	opacity: 1;
	visibility: visible;
}

.vi-header__mobile {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 84vw;
	max-width: 420px;
	background: var(--vi-white-color);
	color: var(--vi-text-color);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	z-index: 999;
}

.vi-header--menu-open .vi-header__mobile {
	transform: translateX(0);
}

.vi-header__mobile-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.25rem 1rem 2rem 1rem;
	overflow-y: auto;
}

.vi-header__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.vi-header__close-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	background: currentColor;
}

.vi-header__close-bar:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.vi-header__close-bar:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.vi-header__mobile-nav .vi-header__menu {
	flex-direction: column;
	gap: 1rem;
}

.vi-header .vi-header__mobile-nav .vi-header__menu a {
	color: var(--vi-text-color);
	font-size: 1.125rem;
}

.vi-header .vi-header__mobile-nav .vi-header__menu a:hover {
	color: var(--vi-accent-color);
}

.vi-header__mobile-phone {
	text-decoration: none;
	color: var(--vi-text-color);
	font-weight: 600;
}

html.vi-lock,
body.vi-lock {
	overflow: hidden;
}

@media (min-width: 768px) {
	.vi-header__phone {
		display: flex;
	}

	.vi-header__cta {
		display: flex;
	}
}

@media (min-width: 1025px) {
	.vi-header .vi-header__menu a {
		position: relative;
	}

	.vi-header .vi-header__menu a::after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: -8px;
		height: 1px;
		width: 0;
		background-color: var(--vi-accent-color);
		transition: all .3s linear;
	}

	.vi-header .vi-header__menu a:hover::after {
		width: 75%;
	}

	.vi-header .vi-header__menu a:hover {
		color: var(--vi-accent-color);
	}

	.vi-header__phone-icon {
		width: 24px;
		height: 24px;
	}

	.vi-header__phone-text {
		font-size: 22px;
	}

	.vi-header__inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		gap: 1rem;
	}

	.vi-header__actions {
		display: flex;
		flex-direction: column;
		gap: 3px;
		margin-left: 0;
		align-items: flex-end;
	}

	.vi-header__phone,
	.vi-header__cta,
	.vi-header__burger {
		order: 0;
		margin-left: 0;
	}

	.vi-header__nav {
		display: flex;
	}

	.vi-header__burger {
		display: none;
	}

	.vi-header__inner {
		padding: 1rem 1.25rem;
	}

	.vi-header .vi-button-container .vi-button {
		padding: 8px 15px;
		font-size: 16px;
	}
}

@media only screen and (min-width:1300px) {
	.vi-header__actions {
		flex-direction: row;
		gap: 1rem;
	}
}

@media only screen and (min-width:1600px) {
	.vi-header__menu {
		gap: 2rem;
	}
}