/* ----------------------------------------------------------------
	Custom CSS
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
	Lang Bar Adjustements
-----------------------------------------------------------------*/
.lang-bar .sub-menu-container {
	width: 130px !important;
}

.lang-bar div {
	font-size: 90% !important;
	text-transform: capitalize;
	font-weight: 400;
}

.lang-bar .menu-link, .lang-bar .menu-link:hover {
	padding: calc(var(--cnvs-primary-menu-padding-y) + 13px) 25px;
	color: #212529 !important;
}

.is-expanded-menu .sub-title .menu-container > .lang-bar:hover > .menu-link::after,
.is-expanded-menu .sub-title .menu-container > .lang-bar.current > .menu-link::after {
	background-color: transparent;
}

/* menu aligment */
.menu-link span {
	text-align: center;
}

.menu-container .menu-item .no-subtitle {
	padding-top: calc(var(--cnvs-primary-menu-padding-y) + 13px);
}

.menu-container .menu-item .no-subtitle span {
	padding-top: 0;
	margin-top: 0 !important;
}

.button-orange {
	color: white !important;
	--bs-bg-opacity: 1;
	background-color: rgb(240, 127, 12, var(--bs-bg-opacity)) !important;
}

.button-orange:hover {
	background-color: rgb(81, 81, 81) !important;
}

.button-gray {
	color: rgb(208, 208, 208) !important;
	--bs-bg-opacity: 1;
	background-color: rgba(105,105,105, var(--bs-bg-opacity)) !important;
}

.button-gray:hover {
	color: #fff !important;
	background-color: rgb(71, 71, 71) !important;
}


.orange {
	color: var( --bs-orange) !important;
}

.bg-orange {
	--bs-bg-opacity: 0.8;
	background-color: rgb(240, 127, 12, var(--bs-bg-opacity)) !important;
}

.bg-blue {
	--bs-bg-opacity: 1;
	background-color: rgb(8, 75, 123, var(--bs-bg-opacity)) !important;
}



/* ----------------------------------------------------------------
	Link Hover Animations
-----------------------------------------------------------------*/
/* .d-grid {
	display: grid;
	width: 100%;
	margin: 0 auto;
	padding: 10vh 0;
	max-width: 1050px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	grid-auto-rows: 200px;
	grid-gap: 2rem;
	justify-content: center;
	list-style: none;
}

.d-grid-item {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #FBFBFB;
} */

/* Links */
.link {
	position: relative;
	cursor: pointer;
	white-space: nowrap;
	color: #333;
	font-size: 1.125rem;
	font-family: 'Roboto', sans-serif;
}

.link::before,
.link::after {
	position: absolute;
	width: 100%;
	height: 1px;
	background: currentColor;
	top: 100%;
	left: 0;
	pointer-events: none;
}

.link::before {
	content: '';
	/* show by default */
}

/* Links 1 */
.link-1::before {
	height: 2px;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
}

.link-1:hover::before {
	height: 2px;
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
}

/* Link 2 */
.link-2::before {
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.link-2:hover::before {
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
	transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

.link-2::after {
	content: '';
	top: calc(100% + 4px);
	transform-origin: 0% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.link-2:hover::after {
	transform-origin: 100% 50%;
	transform: scale3d(1, 1, 1);
	transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

/* Link 3 */
.link-3::before {
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link-3:hover::before {
	transform-origin: 0% 50%;
	transform: scale3d(1, 2, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.link-3::after {
	content: '';
	top: calc(100% + 4px);
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.4s 0.1s cubic-bezier(0.2, 1, 0.8, 1);
}

.link-3:hover::after {
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

/* Link 4 */
.link-4 {
	overflow: hidden;
	line-height: 2;
	font-weight: 700;
}

.link-4::before {
	height: 2px;
	top: calc(100% - 5px);
	transform-origin: 0% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.link-4:hover::before {
	transform: scale3d(1, 1, 1);
}

.link-4::after {
	content: attr(data-text);
	height: 100%;
	top: 0;
	background: none;
	transform-origin: 100% 50%;
	transform: translate3d(150%, 0, 0);
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.link-4:hover::after {
	transform: translate3d(0, 0, 0);
}

.link-4 span {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.link-4:hover span {
	transform: translate3d(-150%, 0, 0);
}

/* Link 5 */
.link-5 {
	padding: 0 10px;
	letter-spacing: 1px;
	text-indent: 1px;
}

.link-5::before {
	top: 50%;
	height: 2px;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}

.link-5:hover::before {
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
}

.link-5 span {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}

.link-5:hover span {
	transform: scale3d(1.1, 1.1, 1.1);
	opacity: .6;
}

/* Link 6 */
.link-6 {
	font-size: 1.3rem;
}

.link-6::before {
	transform-origin: 50% 100%;
	transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
	clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}

.link-6:hover::before {
	transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
	clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.link-6 span {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link-6:hover span {
	transform: translate3d(0, -2px, 0);
}

/* Link 7 */
.link-7 {
	font-weight: 300;
}

.link-7::before,
.link-7::after {
	opacity: 0;
	transform-origin: 50% 0%;
	transform: translate3d(0, 3px, 0);
	transition-property: transform, opacity;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.2, 1, 0.8, 1);
}

.link-7:hover::before,
.link-7:hover::after {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}

.link-7::after {
	content: '';
	top: calc(100% + 4px);
	width: 70%;
	left: 15%;
}

.link-7::before,
.link-7:hover::after {
	transition-delay: 0.1s;
}

.link-7:hover::before {
	transition-delay: 0s;
}

/* Link 8 */
.link-8 {
	font-weight: 600;
	font-size: 1.25rem;
}

.link-8::before {
	height: 10px;
	top: 100%;
	opacity: 0;
}

.link-8:hover::before {
	opacity: 1;
	animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
	0% {
		transform-origin: 50% 100%;
		transform: scale3d(1, 0.045, 1);
	}

	50% {
		transform-origin: 50% 100%;
		transform: scale3d(1, 1, 1);
	}

	51% {
		transform-origin: 50% 0%;
		transform: scale3d(1, 1, 1);
	}

	100% {
		transform-origin: 50% 0%;
		transform: scale3d(1, 0.045, 1);
	}
}

.link-8::after {
	content: '';
	transition: opacity 0.3s;
	opacity: 0;
	transition-delay: 0s;
}

.link-8:hover::after {
	opacity: 1;
	transition-delay: 0.3s;
}

/* Link 9 */
.link-9 {
	font-weight: 700;
}

.link-9::before {
	transform-origin: 0% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
}

.link-9:hover::before {
	transform: scale3d(1, 1, 1);
}

.link-9::after {
	content: '';
	top: calc(100% + 4px);
	transition: transform 0.3s;
	transform-origin: 100% 50%;
}

.link-9:hover::after {
	transform: scale3d(0, 1, 1);
}

/* Link 10 */
.link-10 {
	font-size: 1.25rem;
	font-weight: bold;
}

.link-10:hover span {
	animation: glitchText 0.4s linear;
}

@keyframes glitchText {
	0% {
		opacity: 1;
		transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
		-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
		clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
	}

	10% {
		-webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
		clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
	}

	20% {
		-webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
		clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
	}

	35% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
		clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
	}

	50% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
		clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
	}

	60% {
		-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
		clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
	}

	70% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
		clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
	}

	80% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
		clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
	}

	90% {
		transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
}

.link-10::before {
	height: 2px;
	opacity: 0;
}

.link-10:hover::before {
	opacity: 1;
	animation: glitchLine 0.4s steps(2, start) forwards;
}

@keyframes glitchLine {
	0% {
		transform: scale3d(1, 1, 1);
	}

	10% {
		transform: translate3d(10px, 0, 0);
	}

	20% {
		transform: translate3d(0, 4px, 0);
	}

	30% {
		transform: scale3d(0.1, 1.4, 1) translate3d(0, -25px, 0);
		transform-origin: 100% 0%;
	}

	40% {
		transform: scale3d(1, 0.3, 1) translate3d(0, 25px, 0);
	}

	50% {
		transform: scale3d(0.5, 0.3, 1) translate3d(-100px, -80px, 0);
	}

	60% {
		transform: scale3d(1, 1.25, 1) translate3d(10px, -5px, 0);
	}

	70% {
		transform: scale3d(0.5, 0.5, 1) translate3d(0, 20px, 0);
	}

	80% {
		transform: translate3d(-30, 10px, 0) scale3d(1, 0.4, 1);
		transform-origin: 100% 0%;
	}

	90% {
		transform: scale3d(1, 0.5, 1) translate3d(0, -15px, 0);
		;
		transform-origin: 0% 50%;
	}

	100% {
		opacity: 1;
	}
}

/* Link 11 */
.link-11 {
	font-size: 0.925rem;
	letter-spacing: 1px;
}

.link-11::before {
	height: 100%;
	top: 0;
	opacity: 0;
}

.link-11:hover::before {
	opacity: 1;
	animation: coverUp 0.3s ease forwards;
}

@keyframes coverUp {
	0% {
		transform-origin: 50% 100%;
		transform: scale3d(1, 0.045, 1);
	}

	50% {
		transform-origin: 50% 100%;
		transform: scale3d(1, 1, 1);
	}

	51% {
		transform-origin: 50% 0%;
		transform: scale3d(1, 1, 1);
	}

	100% {
		transform-origin: 50% 0%;
		transform: scale3d(1, 0.045, 1);
	}
}

.link-11::after {
	content: '';
	transition: opacity 0.3s;
}

.link-11:hover::after {
	opacity: 0;
}

/* Link 12 */
.link-12 {
	overflow: hidden;
	padding: 7px 0;
}

.link__graphic {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1px;
}

.link__graphic--slide {
	top: -3px;
	stroke-width: 2px;
	transition: transform 0.7s;
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.link:hover .link__graphic--slide {
	transform: translate3d(-66.6%, 0, 0);
}

/* Link 13 */
.link-13 {
	font-size: 1.25rem;
}

.link-13::before {
	display: none;
}

.link__graphic--stroke path {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
	stroke-dashoffset: 0;
}

/* Trick from https://css-tricks.com/a-trick-that-makes-drawing-svg-lines-way-easier/ */

.link__graphic--arc {
	top: 73%;
	left: -23%;
}

.link__graphic--arc path {
	transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
	transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
	transition-duration: 0.3s;
}

.link-14 {
	font-size: 1.35rem;
}

.link-14::before {
	display: none;
}

.link__graphic--scribble {
	top: 100%;
}

.link__graphic--scribble path {
	transition: stroke-dashoffset 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--scribble path {
	transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
	transition-duration: 0.3s;
}

/* Link 15 */
.link-15 {
	font-weight: bold;
}

.link-15::before {
	height: 7px;
	border-radius: 20px;
	transform: scale3d(1, 1, 1);
	transition: transform 0.2s, opacity 0.2s;
	transition-timing-function: cubic-bezier(0.2, 0.57, 0.67, 1.53);
}

.link-15:hover::before {
	transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
	transition-duration: 0.4s;
	opacity: 1;
	transform: scale3d(1.2, 0.1, 1);
}

.link-15 span {
	transform: translate3d(0, -4px, 0);
	display: inline-block;
	transition: transform 0.2s 0.05s cubic-bezier(0.2, 0.57, 0.67, 1.53);
}

.link-15:hover span {
	transform: translate3d(0, 0, 0);
	transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
	transition-duration: 0.4s;
	transition-delay: 0s;
}


.section-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.36);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}


.hidden {
	display: none;
}

.fbox-icon-transparent i,
.fbox-icon-transparent img {
	Border-radius: 0%;
 	background-color: transparent !important;
}

/* ----- Tab ----- */

.block-tab-2 .nav-tabs {
	--bs-nav-tabs-border-width: 0px;
	--bs-nav-link-color: #111;
	--bs-nav-link-hover-color: var(--cnvs-themecolor);
}

.block-tab-2 .nav-tabs .nav-item .nav-link {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	padding: 0 0 20px 0;
	text-transform: uppercase;
}

.block-tab-2 .nav-tabs .nav-item .nav-link i {
	display: block;
	font-size: 38px;
	margin: 0 0 10px 0;
}

.block-tab-2 .nav-tabs .nav-item .nav-link.active {
	top: 0;
}

.block-tab-2 .nav-tabs .nav-item .nav-link.active i {
	color: var(--cnvs-themecolor);
}

.block-tab-2 .nav-tabs .nav-item .nav-link.active::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
	border-radius: 50%;
	background: var(--cnvs-themecolor);
}

.img-icon-large {
	height: 96px;
	display: block;
	margin: 0 auto;
}

/* ----- Faq ----- */

.grid-filter.style-3 li.activeFilter a {
	color: var(--bs-orange) !important;
	border-color: var(--bs-orange) !important;
}

.grid-filter li a:hover {
	color: var(--bs-orange) !important;
}

/* ----- Sticky Cards ----- */
.block-sticky-cards .content-wrap,
.block-sticky-cards .section { overflow: visible; }

.block-sticky-cards .sticky-section + .sticky-section {
		margin-top: 5vh;
	}

@media (min-width: 992px) {
	.block-sticky-cards .sticky-section {
		--sticky-top-gap: 30px;
		position: -webkit-sticky;
		position: sticky;
		z-index: 2;
		top: calc(80px + var(--sticky-top-gap));
	}

	.block-sticky-cards .sticky-section + .sticky-section {
		margin-top: 20vh;
	}
}

/* ----- form ----- */
:root {
	--cnvs-form-color: #153261;
}
label {
	font-size: 0.925rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #666;
	margin-bottom: 2px;
}


.form-control:active,
.form-control:focus {
	border: 2px solid var(--cnvs-form-color);
	box-shadow: 0px 0px 0px 1px var(--cnvs-form-color);
}


/* ----- list-group-item ----- */
.list-group-item {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff !important;
	color: #212529;
	border: 0;
	width: 100%;
	padding: 40px;
	margin: 0;
}

.list-group-item:nth-child(1) {
	z-index: 1;
}

.list-group-item .text-anim {
	transform: translateY(-20px);
	--text-anim-duration: .3s;
	transition-property: opacity, transform;
	transition-duration: var(--text-anim-duration);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-delay: var(--text-anim-delay , 0s);
}

.list-group-item.active .text-anim {
	opacity: 1;
	transform: translateY(0px);
	background-color: #FFF;
}

.list-group-content > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


/* ----- feature-box-steps ----- */

@media (min-width: 768px) {
	.feature-box-border-horizontal .feature-box { position: relative; }

	.feature-box-border-horizontal .feature-box:not(.noborder) .fbox-icon::before,
	.feature-box-border-horizontal.border-hover-animate .feature-box:not(.noborder) .fbox-icon::after {
		content: "";
		position: absolute;
		top: 31px;
		left: calc(50% + 32px);
		width: calc(100% - 64px);
		height: 2px;
		border: 1px solid #EEE;
		z-index: 0;
	}

	.feature-box-border-horizontal.border-dashed .feature-box:not(.noborder) .fbox-icon::before,
	.feature-box-border-horizontal.border-dashed.border-hover-animate .feature-box:not(.noborder) .fbox-icon::after {
		border-style: dashed;
	}

	.feature-box-border-horizontal.border-hover-animate .feature-box:not(.noborder) .fbox-icon::after {
		display: block;
		border-color: #222;
		width: 0;
		transform-origin: top left;
		transition: width .3s ease-in-out;
	}

	/* .feature-box-border-horizontal .feature-box:not(.noborder):nth-child(1) .fbox-icon::before { background-color: #222; } */

	.feature-box-border-horizontal.border-hover-animate .feature-box:not(.noborder):hover .fbox-icon::after {  width: calc(100% - 64px); }


	.feature-box-border-horizontal .fbox-icon i,
	.feature-box-border-horizontal .fbox-border.fbox-light .fbox-icon i {
		line-height: 60px;
		font-size: 24px;
		z-index: 1;
		text-align: center;
		box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.3);
	}

	.feature-box-border-horizontal .feature-box.flex-column:not(.noborder) .fbox-icon::before,
	.feature-box-border-horizontal.border-hover-animate .feature-box.flex-column:not(.noborder) .fbox-icon::after {
		left: calc(0% + 88px);
	}
}

.dark .feature-box-border-horizontal .feature-box:not(.noborder) .fbox-icon::before,
.dark .feature-box-border-horizontal.border-hover-animate .feature-box:not(.noborder) .fbox-icon::after {
	border-color: rgba(255,255,255,0.1);
}

.dark .feature-box-border-horizontal.border-hover-animate .feature-box:not(.noborder) .fbox-icon::after {
	border-color: rgba(255,255,255,0.6);
}

.dark .feature-box-border-horizontal .fbox-icon i,
.dark .feature-box-border-horizontal .fbox-border.fbox-light .fbox-icon i {
	/* box-shadow: 0 0 0px 8px #0E2A47;
	background-color: #0b1e31; */
	/* box-shadow: 0 0 0px 8px rgba(183, 183, 183, 0.3);
	background-color: rgba(25, 25, 25, 0.5); */
	box-shadow: 0 0 0px 8px #5b5b5b;
	background-color: #262626;
}


/* ----- team ----- */

.team-person {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.person-container {
	border-radius: 50%;
	height: 312px;
	-webkit-tap-highlight-color: transparent;
	transform: scale(0.48);
	transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	width: 400px;
}
.person-container:hover {
	transform: scale(0.54);
}
.person-container-inner {
	position: relative;
	clip-path: path( "M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z" );
	transform-origin: 50%;
	top: -200px;
}
.person-circle {
	border-radius: 50%;
	cursor: pointer;
	height: 380px;
	left: 10px;
	pointer-events: none;
	position: absolute;
	top: 210px;
	width: 380px;
}
.person-img {
	pointer-events: none;
	position: relative;
	transform: translateY(20px) scale(1.16);
	transform-origin: 50% bottom;
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
	width: 380px;
	left: 22px;
	top: 164px;
}
.person-container:hover .person-img {
	transform: translateY(0) scale(1.2);
}
.person-divider {
	height: 1px;
	width: 160px;
}


/* ----- block hero 22 ----- */

.block-hero-22 h1,
.block-hero-22 h2,
.block-hero-22 h3,
.block-hero-22 h4,
.block-hero-22 h5,
.block-hero-22 h6,
.block-hero-22 p,
.block-hero-22 a {
	font-family: 'Inter', sans-serif;
}

/* ------ TRANSPARENT MENU ------ */

.is-expanded-menu .menu-container > .menu-item:not(.mega-menu) .sub-menu-container:not([class*="col-"]):not([class="col"]) {
	min-width: 210px;
	width: auto !important;
}

#header {
	--cnvs-primary-menu-font-weight: 500;
	--cnvs-primary-menu-font-size:	1rem;
	--cnvs-primary-menu-submenu-font-weight:	400;
	--cnvs-primary-menu-submenu-hover-font-weight: 500;
}


@media (min-width: 1200px) {

	#header {
		--cnvs-primary-menu-tt: uppercase;
		--cnvs-primary-menu-ls: 1px;
		--cnvs-primary-menu-submenu-tt: uppercase;
		--cnvs-contrast-bg: #212529;
		--cnvs-contrast-bg-offset: #343a40;
		--cnvs-contrast-0: #000;
		--cnvs-contrast-100: #212529;
		--cnvs-contrast-200: #343a40;
		--cnvs-contrast-300: #495057;
		--cnvs-contrast-400: #6c757d;
		--cnvs-contrast-500: #adb5bd;
		--cnvs-contrast-600: #ced4da;
		--cnvs-contrast-700: #dee2e6;
		--cnvs-contrast-800: #e9ecef;
		--cnvs-contrast-900: #f8f9fa;
		--cnvs-contrast-1000: #fff;
		--bs-link-color: var(--cnvs-contrast-900);
		--cnvs-invert-contrast-0: #fff;
		--cnvs-invert-contrast-100: #f8f9fa;
		--cnvs-invert-contrast-200: #e9ecef;
		--cnvs-invert-contrast-300: #dee2e6;
		--cnvs-invert-contrast-400: #ced4da;
		--cnvs-invert-contrast-500: #adb5bd;
		--cnvs-invert-contrast-600: #6c757d;
		--cnvs-invert-contrast-700: #495057;
		--cnvs-invert-contrast-800: #343a40;
		--cnvs-invert-contrast-900: #212529;
		--cnvs-invert-contrast-1000: #000;
		--cnvs-contrast-rgb: 255, 255, 255;
		--cnvs-invert-contrast-rgb: 0, 0, 0;
		--cnvs-heading-color: var(--cnvs-contrast-900);
		--cnvs-topbar-bg: var(--cnvs-contrast-bg-offset);
		--cnvs-header-bg: var(--cnvs-contrast-bg);
		--cnvs-header-sticky-bg: var(--cnvs-contrast-bg);
		--cnvs-side-header-bg: var(--cnvs-contrast-bg);
		--cnvs-header-floating-bg: var(--cnvs-contrast-bg);
		--cnvs-primary-menu-submenu-bg: var(--cnvs-contrast-bg);
		--cnvs-section-bg: var(--cnvs-contrast-bg-offset);
		--cnvs-footer-bg: var(--cnvs-contrast-bg-offset);
		color: var(--cnvs-contrast-800);
		
		--cnvs-primary-menu-color: var(--cnvs-contrast-500) !important;
		--cnvs-primary-menu-active-color:var(--cnvs-contrast-800) !important;
		--cnvs-primary-menu-hover-color: var(--cnvs-contrast-900) !important;
	}

	#header.header-size-md + .include-header.include-topbar {
		margin-top: calc( -80px - 2px - 46px );
	}

	#top-bar.transparent-topbar {
		background: transparent;
		z-index: 399;
	}

	.top-links-container > .top-links-item { border: 0; }

	.top-links-container > .top-links-item > a {
		padding-left: 17px;
		padding-right: 17px;
		color: #EEE;
		font-weight: normal;
		text-transform: capitalize;
		font-size: 0.875rem;
	}

	.top-links-container > .top-links-item:hover { background-color: transparent; }

	.top-links-container > .top-links-item.top-bar-highlight > a {
		margin-top: 7px;
		margin-bottom: 7px;
		padding-top: 5px;
		padding-bottom: 5px;
		border: 1px solid #EEE;
		border-radius: 16px;
		-webkit-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
	}

	.top-links-container > .top-links-item.top-bar-highlight:hover > a {
		background-color: #FFF;
		color: #222;
	}

	.top-links-item a { font-family: var(--cnvs-primary-font); }

}

.dark #header:not(.transparent-header),
#header.dark:not(.transparent-header) { border-bottom: 1px solid rgba(255,255,255,0.1); }

.menu-link {
	padding-left: 13px;
	padding-right: 13px;
	font-weight: 400;
	font-size: 13px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

:root,
.not-dark,
.is-expanded-menu #header {
	--cnvs-primary-menu-submenu-hover-bg: rgba(255, 255, 255, 0.20);
	--cnvs-primary-menu-submenu-bg: rgba(35, 34, 34, 0.80);
	--cnvs-primary-menu-submenu-hover-color: var(--cnvs-contrast-900);
	--cnvs-primary-menu-submenu-border: 1px solid rgba(var(--cnvs-contrast-rgb), 0.15);
	--cnvs-primary-menu-submenu-blur: 16px;
} 

.is-expanded-menu .sub-menu-container,
.is-expanded-menu .mega-menu-content {
	border-top: var(--cnvs-primary-menu-submenu-border);
	transition: margin 0.25s ease !important;
}


.is-expanded-menu .sub-menu-container::before,
.is-expanded-menu .mega-menu-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	 -webkit-backdrop-filter: blur(var(--cnvs-primary-menu-submenu-blur));
	backdrop-filter: blur(var(--cnvs-primary-menu-submenu-blur));
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link,
.is-expanded-menu .sub-menu-container .menu-item:hover > .menu-link {
	font-weight: 400;
}

.is-expanded-menu .sub-menu-container .sub-menu-container,
.is-expanded-menu .sub-menu-container .mega-menu-content {
	top: -1px !important;
}
@media (max-width: 1199px) {
.header-button-lg { display: none;}
}

@media (min-width: 1200px) {
	.header-button-sm {display: none; }
}

@media (max-width: 768px) {
	#logo img {
		width: 80% !important;
		height: 80% !important;
		transition: width 0.4s ease, padding 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
		transition: height 0.4s ease, padding 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
	}
}


/* ------ SLIDER BUTTON ------ */
		
.btn_main_container {
	width: 350px;
	height: 250px;
	position: absolute;
	left: 50%;
	bottom: 15%;
	transform: translate(-50%, 50%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
  }
  .flex-grid-center {
	display: flex;
	justify-content: center;
	margin: 5em 0;
  }
  
  .fuller-button {
	color: white;
	background: none;
	border-radius: 0;
	padding: .5em 1.5em;
	letter-spacing: 0.1em;
	font-size: 20px;
	transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
	text-transform: uppercase;
  }
  .fuller-button.blue {
	box-shadow: inset 0 0 1em rgba(0, 170, 170, 0.5), 0 0 1em rgba(0, 170, 170, 0.5);
	border: #0dd solid 2px;
  }
  .fuller-button.blue:hover {
	background-color: #0dd;
	box-shadow: inset 0 0 0 rgba(0, 170, 170, 0.5), 0 0 1.5em rgba(0, 170, 170, 0.7);
  }
  .fuller-button.red {
	box-shadow: inset 0 0 1em rgba(251, 81, 81, 0.4), 0 0 1em rgba(251, 81, 81, 0.4);
	border: #fb5454 solid 2px;
  }
  .fuller-button.red:hover {
	background-color: #fb5454;
	box-shadow: inset 0 0 0 rgba(251, 81, 81, 0.4), 0 0 1.5em rgba(251, 81, 81, 0.6);
  }
  .fuller-button.white {
	box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.3), 0 0 0.8em rgba(255, 255, 255, 0.3);
	border: #fff solid 2px;
  }
  .fuller-button.white:hover {
	color: rgba(0, 0, 0, 0.8);
	background-color: #fff;
	box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.5);
  }
  
  .pure-control-group {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 0 1em 2.6em 1em;
  }
  
  .pure-form .pure-control-group label {
	text-align: left;
	position: absolute;
	left: 0;
	top: 15%;
	z-index: 0;
	letter-spacing: 0;
	margin: 0 1em;
  }
  
  .pure-form .pure-control-group input {
	background: none;
	box-shadow: none;
	padding-left: 0;
	border-radius: 0;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.4);
	position: relative;
	z-index: 1;
	color: #fff;
  }
  
  .pure-form .pure-control-group input:focus {
	border-bottom: 2px solid white;
  }
  
  .pure-form .pure-control-group textarea {
	background: none;
	box-shadow: none;
	border-radius: 0;
	border: none;
	border-left: 2px solid rgba(255, 255, 255, 0.4);
	resize: none;
	height: 8em;
	color: #fff;
  }
  
  .pure-form .pure-control-group textarea:focus {
	border-left: 2px solid white;
  }
  
  .pure-form .pure-control-group input[type=email]:focus:invalid {
	color: #fff;
  }
  
  .pure-form .pure-control-group input[type=email]:invalid {
	color: #fb5454;
  }
  
  .pure-form button {
	margin: 0.5em 1em;
  }