/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 16px;
	--font-size-h1: 1.875rem;
	--font-size-h2: 1.875rem;
	--font-size-h3: 1.5rem;
	--font-size-h4: 1.5rem;
	--font-size-h5: 1.2rem;
	--font-size-base: 1.125rem;
	--color-body-text: #000;
	--color-primary: #fcf428;
	--color-border: #e5e5e5;
	--color-primary-rgb: 252, 244, 40;
	--color-secondary: #fffdd4;
	--color-alternate: #000;
	--color-gray: #d6d6d6;
	--color-gray-alt: #959595;
	--color-light-gray: #eaeaea;
	--color-white: #fff;
	--color-near-white: #f9fbfd;
	--color-black: #000;
	--color-near-black: #041216;
	--color-warning: #f10f0f;
	--font-family-body: 'Poppins', sans-serif;
	--font-family-icon: 'Font Awesome 6 Pro';
	--font-family-heading: 'Poppins', sans-serif;
	--gutter-size: 20px;
	--width-normal: 1111px;
	--width-narrow: 1064px;
	--width-wide: 1599px;
	--width-medium: 992px;
	--swiper-theme-color: var(--color-primary);
	--swiper-navigation-color: var(--color-alternate);
	--swiper-pagination-bullet-inactive-color: var(--color-body-text);
	--swiper-pagination-bullet-opacity: 1;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bullet-size: 16px;
	--swiper-pagination-bottom: -50px;
}

@media screen and (min-width: 1025px) {
	:root {
		--font-size-base: 1.25rem;
		--font-size-h1: 2.5rem;
		--font-size-h3: 1.625rem;
		--font-size-h4: 1.5rem;
		--font-size-h5: 1.2rem;
	}
}

@media screen and (min-width: 1441px) {
	:root {
		--width-normal: 1364px;
	}
}

#container {
	position: relative;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	background-image: url('../images/watermark.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
}

html {
	box-sizing: border-box;
}

body {
	margin: 0;
	display: block !important;
	font-family: var(--font-family-body);
	font-size: var(--font-size-base);
	line-height: 1.75;
	color: var(--color-body-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
	outline: auto;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.show-for-pdf,
.mega-menu .sub-menu,
.gfield--type-captcha,
.grecaptcha-badge {
	display: none !important;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0 0 20px;
	font-family: var(--font-family-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-body-text);
}

h1,
.h1 {
	font-size: var(--font-size-h1);
}

h2,
.h2 {
	font-size: var(--font-size-h2);
}

h3,
.h3 {
	font-size: var(--font-size-h3);
}

h4,
.h4 {
	font-size: var(--font-size-h4);
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

h5,
h6,
.h5,
.h6 {
	font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	font-size: 50%;
	color: var(--color-secondary);
}

p {
	margin: 0 0 25px;
}

p:last-child {
	margin-bottom: 0;
}

ul {
	list-style: none;
}

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

/* CORE > Links and Buttons */
a {
	position: relative;
	text-decoration: none;
	color: var(--color-body-text);
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

.content > p a,
.breadcrumbs-single {
	position: relative;
	font-weight: 600;
	z-index: 1;
	/* border-bottom: 5px solid var(--color-primary); */
}

.content > p a:not(.button)::before,
.content > p a:not(.button)::after,
.breadcrumbs-single::before,
.breadcrumbs-single::after {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 0;
	height: calc(100% + 5px);
	background: var(--color-primary);
	transition: all 200ms ease-out;
	z-index: -1;
}

.content > p a:not(.button)::after,
.breadcrumbs-single::after {
	top: auto;
	bottom: -5px;
	width: 100%;
	height: 5px;
}

.content > p a:not(.button):hover::before,
.content > p a:not(.button):focus::before,
.breadcrumbs-single:hover::before,
.breadcrumbs-single:focus::before {
	width: 100%;
}

a,
button,
.button,
.wp-element-button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
	margin: 0;
	padding: 18px 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-body), sans-serif;
	font-size: 1.063rem;
	font-weight: 600;
	line-height: 1.18;
	text-align: center;
	text-decoration: none;
	color: var(--color-white);
	border: 2px solid transparent;
	border-radius: 100px;
	background-color: var(--color-black);
	cursor: pointer;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	color: var(--color-black);
	background-color: var(--color-primary);
}

button.alt-01,
.button.alt-01 {
	background-color: var(--color-secondary);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	color: var(--color-white);
	background-color: var(--color-primary);
}

button.alt-02,
.button.alt-02 {
	background-color: var(--color-near-black);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	color: var(--color-white);
	background-color: var(--color-alternate);
}

button.outline,
.button.outline {
	color: var(--color-black);
	border: 2px solid var(--color-black);
	background: none;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	color: var(--color-white);
	background: var(--color-black);
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	color: var(--color-white);
	border-color: var(--color-white);
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	color: var(--color-primary);
	background: var(--color-near-white);
}

button.no-button,
.button.no-button {
	padding: 0;
	text-transform: none;
	color: var(--color-secondary);
	background: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	text-decoration: underline;
	color: var(--color-near-black);
}

/* CORE > Page Structure */
main {
	padding: 60px 0;
	display: block;
	flex: 1;
	width: 100%;
	min-height: 450px;
	overflow: clip;
}

/* .no-banner main {
	padding-top: 180px;
} */

.content.full-width {
	float: none;
}

.content section:not(:last-of-type) {
	margin-bottom: 60px;
}

.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-medium,
.row-narrow {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(var(--width-normal) + var(--gutter-size) * 2);
}

.row-narrow {
	max-width: calc(var(--width-narrow) + var(--gutter-size) * 2);
}

.row-wide {
	max-width: calc(var(--width-wide) + var(--gutter-size) * 2);
}

.row-medium {
	max-width: calc(var(--width-medium) + var(--gutter-size) * 2);
}

.row::after {
	clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
	display: table;
	content: ' ';
	flex-basis: 0;
	order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
	display: none;
}

.section.bg-light-green {
	background: var(--color-secondary);
	padding-top: 50px;
	padding-bottom: 50px;
}

.section {
	margin-bottom: 45px;
}

.section:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
	.section.bg-light-green {
		background: var(--color-secondary);
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.section {
		margin-bottom: 80px;
	}
}

@media screen and (min-width: 768px) {
	main {
		padding: 80px 0;
	}

	.main-inner {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
	}

	.content {
		margin-bottom: 0;
		padding-right: var(--gutter-size);
		width: calc(100% - calc(312px + var(--gutter-size)));
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}

	.sidebar {
		padding-left: 0;
		width: calc(312px + var(--gutter-size));
	}
}

@media screen and (min-width: 1441px) {
	.content {
		padding-right: 65px;
		width: calc(100% - calc(412px + var(--gutter-size)));
	}

	.sidebar {
		width: calc(412px + var(--gutter-size));
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}
}

/* CORE > Priority Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

img.alignright {
	margin: 0 0 30px 30px;
	float: right;
}

img.alignleft {
	margin: 0 30px 30px 0;
	float: left;
}

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

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.position-absolute,
.absolute {
	position: absolute;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.uppercase {
	text-transform: uppercase;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

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

.font-semibold {
	font-weight: 600;
}

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

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

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

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pt80 {
	padding-top: 80px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.pb80 {
	padding-bottom: 80px;
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 22;
	transition: border-color 200ms ease-out;
}

.header-inner {
	transition: padding 200ms ease-out;
}

.header > .row {
	height: 100%;
	max-width: 1920px;
}

.header a {
	text-decoration: none;
}

.header .fa-phone:before {
	display: block;
	transform: rotate(45deg);
}

.header-desktop {
	display: none;
}

.header-logo {
	display: block;
	line-height: 1;
	width: 195px;
	transition: all 0.3s;
}

.header-logo img {
	width: 100%;
	display: block;
	max-width: 170px;
}

body.scrolled .header {
	background-color: var(--color-white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

body.scrolled .header-inner {
	padding-bottom: 15px;
	padding-top: 20px;
}

body.scrolled .header-logo {
	width: 195px;
}

.header-right {
	display: none;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.header-right-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 5px;
	line-height: 1.2;
}

.header-right-top span {
	font-weight: 600;
}

.header-phone-icon,
.mobile-menu-toggle {
	width: 45px;
	min-width: 45px;
	padding: 0;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: var(--color-black);
	color: var(--color-primary);
	font-size: 1.063rem;
	margin-left: 8px;
}

.header-phone {
	font-weight: 600;
	align-items: center;
	display: inline-flex;
	color: var(--color-secondary);
}
.header-phone:after {
	content: '';
	position: absolute;
	top: -3px;
	left: -7px;
	width: 0;
	height: calc(100% + 6px);
	z-index: -1;
	transition: all 0.3s;
	background: url('../images/hover-bg.svg') left center no-repeat;
	background-size: 100% 100%;
}

.header-phone:focus:after,
.header-phone:hover:after {
	width: calc(100% + 14px);
}
.header-right-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.header-phone-icon {
	display: inline-flex;
}

.header-mail i,
.header-phone i {
	display: flex;
	align-items: center;
	width: 18px;
	height: 18px;
	border-radius: 5px;
	justify-content: center;
	font-size: 0.625rem;
	margin-right: 5px;
	color: var(--color-primary);
	background: var(--color-black);
}

.header-mail {
	width: 60%;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

.header-mail,
.header-phone {
	color: var(--color-black);
	align-items: center;
	display: inline-flex;
}

.header-mobile-inner {
	display: flex;
	min-height: 130px;
	padding: 55px var(--gutter-size) 20px;
	align-items: flex-start;
}

.header-mobile-buttons {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	width: calc(100% - 196px);
}

.header-mobile-top {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
	height: 35px;
	background: var(--color-primary);
}

.header-mobile-top-inner {
	width: 40%;
	height: 100%;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

.header-mobile-top-inner:after {
	width: 2px;
	height: 100%;
	content: '';
	background: var(--color-white);
	position: absolute;
	right: -1px;
	top: 0;
}

@media screen and (min-width: 768px) {
	.header .tel-link {
		font-weight: bold;
	}

	.header-mail {
		width: auto;
		height: auto;
	}

	.header-phone {
		height: auto;
		margin-left: 12px;
	}

	.header-phone-icon {
		display: none;
	}

	.header-mobile-inner {
		padding: 20px var(--gutter-size);
	}

	.header-mobile-top {
		white-space: nowrap;
		height: auto;
		flex-wrap: wrap;
		line-height: 1.2;
		justify-content: flex-end;
		color: var(--color-black);
		position: static;
		background: transparent;
		font-size: 1.125rem;
	}

	.header-mobile-top-inner {
		display: flex;
		width: 100%;
		margin-bottom: 5px;
		justify-content: flex-end;
	}

	.header-mobile-top-inner > span {
		font-size: 1rem;
	}

	.header-mobile-top-inner:after {
		display: none;
	}

	.header-logo img {
		max-width: none;
	}
}

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-logo {
		padding: 0;
	}

	.header-right {
		display: flex;
		flex: 1;
	}

	.header-inner {
		padding: 30px var(--gutter-size);
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		align-content: flex-start;
		height: 100%;
		position: relative;
	}

	.header-logo {
		width: 262px;
	}

	.header-phone i {
		width: 22px;
		height: 22px;
		font-size: 0.75rem;
	}
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu > li:last-child:after {
	display: none;
}

.main-navigation-menu > li:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -12px;
	width: 2px;
	height: 17px;
	transform: translateY(-50%);
	background: var(--color-gray-alt);
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
	margin-right: 20px;
}

.main-navigation-menu > li {
	padding: 10px 0;
}

.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 327px;
	margin: 0;
	padding: 15px 0 15px;
	background: var(--color-white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: var(--color-black);
	text-decoration: none;
}

.main-navigation-menu > li > a:after {
	content: '';
	position: absolute;
	top: -3px;
	left: -7px;
	width: 0;
	height: calc(100% + 6px);
	z-index: -1;
	transition: all 0.3s;
	background: url('../images/hover-bg.svg') left center no-repeat;
	background-size: 100% 100%;
}

.main-navigation-menu a:focus:after,
.main-navigation-menu a:hover:after,
.main-navigation-menu li:hover > a:after {
	width: calc(100% + 14px);
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	color: var(--color-black);
	line-height: 1;
	font-weight: 600;
	font-size: var(--font-size-base);
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
	margin-right: 0;
	transition: all 0.3s ease-in-out;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
	color: var(--color-black);
	font-size: 1.063rem;
	font-weight: 500;
	font-family: var(--font-family-body), sans-serif;
	display: block;
	padding: 7px 20px;
	line-height: 1.2;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: var(--color-primary);
}

.mega-menu li.active a,
#desktop-navigation .sub-menu li.active a {
	font-weight: 600;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
	content: '\f101';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	right: 10px;
	color: var(--color-secondary);
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a::after {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/
.banner {
	position: relative;
	padding-bottom: 30px;
}

body.home .banner {
	padding-bottom: 0;
}

.banner,
.banner-xl {
	margin-top: 200px;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	float: none;
	height: 100%;
	text-align: center;
}

.banner-title {
	margin-bottom: 10px;
	font-size: 2.813rem;
	font-weight: 600;
	text-align: center;
	font-family: var(--font-family-heading), sans-serif;
}

.banner-title strong {
	position: relative;
	font-weight: 600;
	display: inline-block;
}

.banner-title strong:after {
	position: absolute;
	top: 5px;
	content: '';
	z-index: -1;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% - 10px);
	background: url('../images/hover-bg.svg') left center no-repeat;
	background-size: 100% 100%;
}

body.home .banner-title strong:after {
	animation-delay: 2.25s;
}

.banner-text {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.banner-text h3 {
	margin-top: 20px;
}

.banner-text h3 strong {
	font-weight: 600;
}

.banner-text p strong,
.banner-text h3 strong {
	position: relative;
}

.banner-text.animated p strong:after,
.banner-text.animated h3 strong:after {
	width: 100%;
}

.banner-text p strong:after,
.banner-text h3 strong:after {
	content: '';
	width: 0;
	height: 5px;
	position: absolute;
	bottom: 3px;
	left: 0;
	z-index: -1;
	transition: all 2s ease-in-out;
	background: var(--color-primary);
}

@keyframes title-reveal {
	0% {
		width: 0;
	}

	100% {
		width: calc(100% + 20px);
	}
}

.banner-button {
	text-align: center;
	animation-delay: 0.4s;
}

.home .banner-title {
	font-size: 2.813rem;
	line-height: 1;
	font-weight: 600;
}

.home-banner-bottom-tagline {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.3;
	animation-delay: 0.2s;
}

.home-banner-tagline {
	display: inline-block;
	max-width: 360px;
	margin: 0 auto;
}

.tagline-container {
	overflow: clip;
	margin-bottom: 25px;
	margin-top: 15px;
}

.tagline-container > span {
	display: inline-block;
}

.home-banner-bottom-tagline span {
	padding: 0 10px;
}

@media screen and (min-width: 768px) {
	.banner-title {
		font-size: 3.375rem;
	}
}

@media screen and (min-width: 1025px) {
	.banner-title {
		font-size: 4.375rem;
		margin-bottom: 20px;
	}

	.home-banner-bottom-tagline {
		font-size: 2rem;
	}

	.banner,
	.banner-xl {
		margin-top: 220px;
		padding-bottom: 50px;
	}

	.banner-text h3 {
		margin-top: 40px;
	}

	.tagline-container > span {
		display: inline-block;
		transform: translateY(100%);
		transition: transform 1s ease-out;
	}

	.tagline-container > span.active {
		transform: translateY(0);
	}

	.banner-title strong:after {
		width: 0;
		animation: title-reveal 1000ms ease-out forwards;
		animation-delay: 1.5s;
	}
}

@media screen and (min-width: 1280px) {
	.home .banner-title {
		line-height: 1.1;
	}

	.home .banner-title span {
		line-height: 1.15;
	}

	.banner-text h3 {
		margin-top: 50px;
	}
}

@media screen and (min-width: 1441px) {
	.home .banner-title {
		font-size: 5rem;
	}

	.home-banner-tagline {
		max-width: 650px;
	}
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/
.accordion-item-title {
	background: none;
}

.swiper {
	visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
	background: none !important;
	padding: 0;
}

/* WATERMARK */
.watermark {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	pointer-events: none;
	height: 500px;
	background: url('../images/watermark.svg') center top no-repeat;
	background-size: 500px auto;
}

.watermark:after {
	width: 100%;
	height: 50%;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

@media screen and (min-width: 1025px) {
	.watermark:after {
		width: 100%;
		height: 426px;
	}

	.watermark {
		height: 980px;
		background-size: 1280px auto;
	}
}

#ada-menu-toggle:hover svg,
#ada-menu-toggle:focus svg {
	filter: brightness(0);
}
