/*
Theme Name: Paradyme SOS WordPress Theme
Theme URI:
Author: Lacewing Agency
Author URI: https://lacewingmedia.com/
Description: Parent theme for the Paradyme SOS website.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
	/* Type */
	--font-sans: "Geist", Arial, sans-serif;

	--font-size-p: 17px;
	--font-size-h1: 53px;
	--font-size-h2: 47px;
	--font-size-h3: 24px;
	--font-size-h4: 21px;
	--font-size-h5: 15px;

	--line-height-tight: 1.1;
	--line-height-heading: 1.15;
	--line-height-body: 1.55;

	--font-weight-light: 200;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;

	/* Core palette */
	--color-bg-950: #0b1b3a;
	--color-bg-900: #10274d;
	--color-bg-850: #173761;
	--color-bg-800: #223f6b;
	--color-surface-dark: rgba(20, 42, 80, 0.72);
	--color-surface-dark-strong: rgba(15, 34, 68, 0.9);
	--color-surface-light: #f7f8fc;

	--color-text: #f6f8fc;
	--color-text-soft: rgba(246, 248, 252, 0.82);
	--color-text-muted: rgba(246, 248, 252, 0.64);
	--color-text-dark: #0e1d3a;
	--color-text-body-dark: #46556f;

	--color-accent-300: #7ad7f5;
	--color-accent-400: #61c8ef;
	--color-accent-500: #43b8e6;
	--color-accent-600: #2396cb;

	--color-border-soft: rgba(110, 205, 241, 0.18);
	--color-border: rgba(110, 205, 241, 0.32);
	--color-border-strong: rgba(110, 205, 241, 0.52);
	
	--highlight-blue: #60C3DD;
	
	/* Backgrounds */
	--gradient-page:
		radial-gradient(
			circle at 12% 50%,
			rgba(92, 176, 225, 0.5) 0%,
			rgba(92, 176, 225, 0.5) 18%,
			transparent 36%
		),
		radial-gradient(
			circle at 86% 62%,
			rgba(73, 154, 214, 0.5) 0%,
			rgba(73, 154, 214, 0.5) 18%,
			transparent 34%
		),
		linear-gradient(
			180deg,
			#0e1d3a 0%,
			#0e1d3a 100%
		);

	--gradient-panel:
		linear-gradient(135deg, rgba(85, 190, 229, 0.92), rgba(72, 165, 208, 0.88));

	--gradient-link:
		linear-gradient(135deg, rgba(99, 200, 239, 0.22), rgba(35, 150, 203, 0.12));

	/* Layout */
	--radius-sm: 0.75rem;
	--radius-md: 1.25rem;
	--radius-lg: 1.75rem;
	--radius-pill: 999px;

	--space-xs: 0.5rem;
	--space-sm: 0.75rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4.5rem;

	--shadow-soft: 0 12px 40px rgba(4, 12, 28, 0.22);
	--shadow-glow: 0 0 0 1px rgba(110, 205, 241, 0.14), 0 10px 30px rgba(20, 72, 120, 0.22);

	--transition-base: 180ms ease;
}

* {font-family: var(--font-sans);}

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	font-family: var(--font-sans);
	color: #fff;
	margin-bottom: 30px;
}

.font-size-p {font-size: var(--font-size-p);}
.font-size-h1 {font-size: var(--font-size-h1);}
.font-size-h2 {font-size: var(--font-size-h2);}
.font-size-h3 {font-size: var(--font-size-h3);}
.font-size-h4 {font-size: var(--font-size-h4);}
.font-size-h5 {font-size: var(--font-size-h5);}

.shadow-glow {box-shadow: var(--shadow-glow);}
.shadow-soft {box-shadow: var(--shadow-soft);}

p {
	font-size: var(--font-size-p);
	font-weight: var(--font-weight-regular);
	line-height: var(--line-height-body);
	color: inherit;
}

html,
body {
	min-height: 100%;
	margin: 0;
	padding: 0;
	background-color: #0e1d3a;
/* 	background-image: var(--gradient-page); */
	background-repeat: repeat-y;
	background-size: 100% 1500px;
	background-position: top center;
	color: #DBEDFD;
}

a {
	color: var(--color-accent-400);
	text-decoration: none;
	transition:
		color var(--transition-base),
		border-color var(--transition-base),
		background-color var(--transition-base),
		transform var(--transition-base),
		box-shadow var(--transition-base);
}

a:hover,
a:focus-visible {
	color: var(--color-accent-300);
}

.img-fluid {
	border-radius: 10px;
}

.blue-text {color: #60C3DD !important;}
.darkblue-text {color: var(--color-text-dark);}
header .active {color: #60C3DD !important;}

.sticky {
	position: -webkit-sticky;
    position: sticky;
    top: 150px;
    z-index: 99;
}

.bl,
.ol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3.5rem;
	padding: 0.9rem 1.5rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-size: var(--font-size-p);
	font-weight: var(--font-weight-regular);
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base),
		transform var(--transition-base),
		box-shadow var(--transition-base);
	margin: 10px;
}

.bl {
	color: var(--color-text);
	background: #60C3DD;
	border: 1px solid var(--color-border-strong);
	box-shadow: var(--shadow-glow);
	backdrop-filter: blur(10px);
}

.bl:hover,
.bl:focus-visible {
	color: var(--color-text);
	border-color: var(--color-accent-300);
	background: linear-gradient(135deg, rgba(99, 200, 239, 0.3), rgba(35, 150, 203, 0.18));
	transform: translateY(-1px);
}

.ol {
	color: var(--color-text);
	background: transparent;
	border: 1px solid #60C3DD;
}

.ol:hover,
.ol:focus-visible {
	color: var(--color-text);
	border-color: var(--color-accent-400);
	background: rgba(99, 200, 239, 0.08);
	transform: translateY(-1px);
}

.bl.ondark,
.ol.ondark {
	color: #fff;
}

.bl.onlight,
.ol.onlight {
	color: #000;
}

.ol.ondark {
	border-color: var(--highlight-blue);
}

.ol.ondark:hover,
.ol.ondark:focus-visible {
	color: #fff;
	border-color: var(--highlight-blue);
	background: rgba(255, 255, 255, 0.12);
}

.ol.onlight {
	border-color: #60C3DD;
}

.ol.onlight:hover,
.ol.onlight:focus-visible {
	color: #000;
	border-color: #2396CB;
	background: rgba(96, 195, 221, 0.1);
}

.bl.ondark:hover,
.bl.ondark:focus-visible {
	color: #fff;
}

.bl.onlight:hover,
.bl.onlight:focus-visible {
	color: #000;
}

.ondark img,
.onlight img {
	display: block;
	max-width: 13px;
}


/* Navigation */

nav {}

.is-sticky {
	position: fixed;
	width: 100%;
	z-index: 999;
}

/* Remove spacing for sections  */
.vc_section {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.bgimg .vc_column-inner {
	height: 100%;
	min-height: 300px;
}

/*  */


.brand {
	width: 250px;
	padding: 0px !important;
}

.brand img {
	width: 100%;
	height: auto;
}

/* Navigation */

header {
	padding: 2% 0 2% 0;
    background-color: #0e1d3a;
    width: 100%;
    position: fixed;
    z-index: 999999;

}

.navbar-toggler {
    color: #fff;
    padding: 20px;
    font-size: 1rem;
    line-height: 1;
    background-color: #60C3DD;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

#navbar-header button i a {
	color: #09478E !important;
}
#menu-header-1 li a {
    position: relative;
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: #DBEDFD;
    text-decoration: none;
    padding: 15px;
    transition: color 0.3s ease;
}

#menu-header-1 li:not(:last-child) a::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 8px;
    width: calc(100% - 30px);
    height: 2px;
    background: #60C3DD;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#menu-header-1 li:not(:last-child) a:hover {
    color: #fff;
}

#menu-header-1 li:not(:last-child) a:hover::after {
    transform: scaleX(1);
}

	#menu-header-1 li:last-child a {
		align-items: center;
		justify-content: center;
		padding: 0.9rem 2.5rem 0.9rem 1.5rem;
		border-radius: var(--radius-pill);
		font-family: var(--font-sans);
		font-size: 18px;
		font-weight: inherit;
		text-decoration: none;
		color: #DBEDFD;
		background: transparent;
		border: 1px solid #60C3DD;
		transition:
			background-color var(--transition-base),
			border-color var(--transition-base),
			color var(--transition-base),
			transform var(--transition-base),
			box-shadow var(--transition-base);
		margin-left: 30px;
		background-image: url(/wp-content/uploads/2026/04/button-arrow-up-white.svg);
		background-position: right 20px center;
		background-repeat: no-repeat;
	}


#menu-wrap ul.menu li.active a {}

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #60C3DD;
    background-clip: padding-box;
    border: none;
    border-radius: 15px;
}

.dropdown-item:focus, .dropdown-item:hover {
}

.dropdown-item.active, .dropdown-item:active {
}

/* Page content */

section#services {
	color: #DBEDFD;
	background: #0B1F41;
background: linear-gradient(180deg,rgba(11, 31, 65, 1) 76%, rgba(255, 255, 255, 0) 100%);
}

/* Homepage */

#hp--hero-section {
	background: var(--gradient-page);
}


#hp--hero-section .inner {
	background-image: url('/wp-content/uploads/2026/04/hero-bg.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 600px;
	padding-top: 134px;
}

#hp--hero-section h1 {
	font-size: var(--font-size-h1);
	line-height: 1;
	font-weight: 100;
	color: #DBEDFD;
}

#hp--hero-section h2 {
	font-size: 23px;
	margin: 10vh 0 10px 0;
}

#hp--hero-section p {
	font-size: var(--font-size-h4);
	text-transform: uppercase;
	color: #DBEDFD;
	letter-spacing: 3px;
}

.hero-content {
	padding: 20vh 0;
}
#hp--hero-section h1 {
	font-size: var(--font-size-h1);
	line-height: 1;
	font-weight: 300;
	color: #DBEDFD;
	margin: 0;
}

#hp--hero-section .hero-title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15em;
}

#hp--hero-section .hero-title-rotator {
	position: relative;
	display: inline-flex;
	justify-content: center;
	width: 100%;
	min-height: 1.05em;
	font-size: var(--font-size-h1);
	line-height: 1;
	font-weight: 100;
	color: #60C3DD;
	overflow: hidden;
}

#hp--hero-section .hero-title-rotator__viewport {
	position: relative;
	height: 1em;
	overflow: hidden;
}

#hp--hero-section .hero-title-rotator__track {
	display: flex;
	flex-direction: column;
	align-items: center;
	will-change: transform;
}

#hp--hero-section .hero-title-rotator__item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1em;
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: 1;
	font-weight: 300;
	color: inherit;
	white-space: nowrap;
	text-transform: none;
	letter-spacing: 0px;
}


#hp--intro {
	margin: -150px 0 0 0;
	background: #0B1F41;
	background: linear-gradient(0deg,rgba(11, 31, 65, 1) 76%, rgba(255, 255, 255, 0) 100%);
}

#hp--intro h2 {
	font-size: var(--font-size-h2);
	font-weight: 300;
}

.content-block {
	padding: 40px;
	border-radius: 40px;
	color: #000;
}

.content-block.white {
	background-color: #fff;
	color: rgba(66, 75, 91, 1) !important;
}

.content-block.white h1,
.content-block.white h2,
.content-block.white h3,
.content-block.white h4,
.content-block.white h5 {color: #000;}


.green-block,
.blue-block {
	color: #fff;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
}

.green-block .inner,
.blue-block .inner {
	position: relative;
	padding: 60px 15%;
}

.block-content {
	position: relative;
	z-index: 3;
}

.green-block .overlay {
	position: absolute;
    width: 100%;
    height: 100%;
    background-color: #4FACC4;
    opacity: 0.9;
    top: 0;
    left: 0;
    z-index: 2;
}

.blue-block .overlay {
	position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    top: 0;
    left: 0;
    z-index: 2;
	background-color: #5E8AB4;
}

.green-block .bgimg,
.blue-block .bgimg {
	background-size: cover;
	background-position: center center;
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;

}

.green-block {
	background-color: #4FACC4;
}
.blue-block {
	background-color: #5E8AB4;
}

/* Services toggles */

.faq-toggles {
    display: flex;
	gap: 20px;
}

.faq-column {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-toggles .item {
    display: flex;
    flex-direction: column;
    background-color: rgba(12, 33, 69, 0.5);
    border: 1px solid #384764;
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-toggles .item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 118px;
    padding: 22px 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-toggles .item:hover {
	background-color: rgba(12, 33, 69, 0.8);
	transition: background-color 0.3s ease;
}

.faq-toggles .item-header:hover {}

.faq-toggles h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.3;
}

.faq-toggles .s-toggle {
	border: 1px solid #384764;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: #DBEDFD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 100;
}

.faq-toggles .item.active .s-toggle {}

.faq-toggles .accordian-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-toggles .content-pad {
    padding: 0 25px 25px;
}

.faq-toggles .accordian-content p {
    margin: 0 0 15px;
    line-height: 1.6;
}

.faq-toggles .accordian-content a {
    color: #00b6e5;
    font-weight: 600;
    text-decoration: none;
}

.faq-toggles .accordian-content a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .faq-toggles {flex-direction: column;}
	.faq-column {width: 100%;}
}

/* Footer */

footer {
	background: var(--gradient-page);
}

footer .menu {
	padding: 0px;
	margin: 0 0 30px 0;
	list-style-type: none;
}
footer .menu li {
	margin: 0 0 10px 0;
}
footer .menu li a {
	color: #DBEDFD;
	font-size: 18px;
	line-height: 1.4;
	text-decoration: none;
	font-weight: 300;
}

footer .footer-grad {
	background: #0E1D3A;
background: linear-gradient(180deg,rgba(14, 29, 58, 1) 9%, rgba(255, 255, 255, 0) 100%);
	min-height: 10vh;
}

footer #ftr-cta {
	padding: 0 0 10vh 0;
}

footer #ftr-links {
	padding: 50px 0 20px 0;
	background-color: #182E53;
}

footer #ftr-links .brand {
	max-width: 250px;
	display: inline-block;
	margin-bottom: 20px;
}

a.linkedin {
	display: inline-flex;
	align-items: center;
	background-color: #fff;
	padding: 10px 25px 10px 10px;
	border-radius: 35px;
	gap: 20px;
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	transform: translateY(0);
}

a.linkedin span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	background-color: #007EBB;
	font-size: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

a.linkedin svg,
a.linkedin i {
	display: block;
	line-height: 1;
}

a.linkedin:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 14px 30px rgba(0,0,0,0.14);
	color: #007EBB;
}

a.linkedin:hover span {
	transform: rotate(8deg) scale(1.08);
	background-color: #005f8d;
}

a.linkedin:active {
	transform: translateY(-1px) scale(0.99);
}

#values {
	padding: 0 0 3% 0;
	background-color: #0B1F41;
}


/* About - team slider */
#team {
	background: #0B1F41;
	ackground: linear-gradient(180deg,rgba(11, 31, 65, 1) 61%, rgba(11, 31, 65, 0) 100%);
}

.team-member-wrap {
	text-align: center;
	background-color: #fff;
	border-radius: 20px;
	padding: 40px;
	color: #000;
	min-height: 100%;
	transition: background-color ease 0.5s;
	border: 3px solid transparent;
}

.team-member-wrap:hover {
	border: 3px solid #60C3DD;
}

a.member-profile {
	display: inline-block;
	height: 150px;
	width: 150px;
	background: #DBEDFD;
	border-radius: 50%;
	margin: 0px auto 20px auto;
	overflow: hidden;
	position: relative;
}

a.member-profile div.profile-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	scale: 1;
	background-position: center center;
	transition: scale ease 0.5s;
}

.team-member-wrap:hover a.member-profile div.profile-image {
	scale: 1.2;
	transition: scale ease 0.5s;
}

.team-member-wrap a.profile-name {
	color: #424B5B;
	display: block;
}

a.tm-linkedin {
	display: inline-block;
	padding: 5px 10px 5px 5px;
	color: #000;
	font-size: 13px;
	border: 1px solid #ccc;
	border-radius: 35px;
	background-color: transparent;
	transition: background-color ease 0.5s, color ease 0.5s;
}

a.tm-linkedin:hover {
	background-color: #5E8AB4;
	color: #fff;
}

a.tm-linkedin:hover span {
	display: inline-block;
	background-color: #fff;
	color: #000;
	border: 1px solid transparent;
	transition: background-color ease 0.5s, color ease 0.5s;
}


a.tm-linkedin span {
	display: inline-block;
	background-color: #5E8AB4;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	margin-right: 5px;
}

a.tm-linkedin span svg,
a.tm-linkedin span i {}



/*  */
.team-slider-wrap {
    position: relative;
    padding: 0 70px;
    margin-top: 40px;
}

.team-slider {
    display: none;
}

.team-slider.slick-initialized {
    display: block;
}

.team-slider.slick-initialized .slick-track {
	display: flex;
}

.team-slider.slick-initialized .slick-slide {
	height: auto;
	display: flex;
}

.team-slider.slick-initialized .slick-slide > div {
	width: 100%;
	display: flex;
}

.tm-slide {
    padding: 0 15px;
	display: flex;
	width: 100%;
}

.team-member-wrap {
    text-align: center;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.member-profile {
    display: block;
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.profile-name {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.role {
    margin-bottom: 15px;
}

.tm-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
	margin-top: auto;
	align-self: center;
}

.team-prev,
.team-next {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #60C3DD;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

.team-prev { left: 0; }
.team-next { right: 0; }

.team-prev:hover,
.team-next:hover {
    background: #60C3DD;
    color: #ffffff;
}

.team-slider .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 35px;
}

.team-slider .slick-dots li {
    margin: 0 4px;
}

.team-slider .slick-dots li button:before {
    font-size: 12px;
    opacity: 1;
    color: #ffffff;
}

.team-slider .slick-dots li.slick-active button:before {
    color: #60C3DD;
    opacity: 1;
}

@media (max-width: 991px) {

    .team-slider-wrap {
        padding: 0 20px;
    }

    .team-prev,
    .team-next {
        display: none !important;
    }

    .tm-slide {
        padding: 0 10px;
    }

}

/*  */

#contact-intro,
#solutions-intro,
#about-intro {
	padding: 5% 0;
}



.form-wrapper {
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
}

label {
	color: var(--color-text-dark);
	font-weight: 500;
	font-size: 16px;
}

input[type='text'],
input[type='tel'],
input[type='email'] {
	width: 100%;
	padding: 15px 0;
	background: #fff;
	border: none;
	border-bottom: 1px solid #ccc;
	transition: background ease 0.5s;
}

input[type='checkbox'] {
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #ccc;
	transition: background ease 0.5s;
}


textarea {
	width: 100%;
	padding: 15px;
	background: #fff;
	border: 1px solid #ccc;
	transition: background ease 0.5s;
	border-radius: 5px;
}

input[type='text']:hover,
input[type='tel']:hover,
input[type='email']:hover,
textarea:hover {
	background: #f9f9f9;
	transition: background ease 0.5s;
}

.wpcf7-list-item:first-child {
	margin: 0px;
	padding: 0px;
}

.contact-block {
	background-color: #182E53;
	padding: 30px;
	border-radius: 10px;
	height: 100%;
	margin: 0px;
	color: #fff;
}

@media (min-width: 991px) {
	.contact-block {
		margin: -10px -10px -10px 0px;
	}
}

.contact-info {
	margin: 0 0 30px 0;
	padding: 0px;
	list-style-type: none;
}
.contact-info li {
	display: flex;
	gap: 20px;
	margin: 0 0 20px 0;
}
.contact-info li a {
	font-weight: 600;
	color: #fff;
}
.contact-info .contact-icon {
	width: 24px;
	text-align: center;
}

body.mobile-menu-open {
	overflow: hidden;
}

body.mobile-menu-open header {
	padding-right: var(--mobile-menu-scrollbar-offset, 0px);
}

@media (max-width: 991px) {
	header {
		padding: 18px 0;
	}

	header .navbar,
	header .navbar > .container,
	#menu-wrap {
		position: relative;
	}

	header .navbar > .container {
		align-items: center;
	}

	.brand,
	.navbar-toggler {
		position: relative;
		z-index: 1000001;
	}

	.brand {
		width: min(320px, 68vw);
	}

	.navbar-toggler {
		margin-left: auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	#main-menu.navbar-collapse {
		position: fixed;
		inset: 0;
		z-index: 1000000;
		width: 100vw;
		height: 100vh;
		min-height: 100dvh;
		padding: 132px 28px 32px;
		background: #0e1d3a;
		overflow-y: auto;
		display: block;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateX(-100%);
		transition:
			transform 280ms ease,
			opacity 220ms ease,
			visibility 0s linear 280ms;
	}

	#main-menu.navbar-collapse.collapse:not(.show) {
		display: block;
	}

	#main-menu.navbar-collapse.show,
	#main-menu.navbar-collapse.collapsing {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
		transition:
			transform 280ms ease,
			opacity 220ms ease;
	}

	#main-menu.navbar-collapse.collapsing {
		height: 100vh !important;
		min-height: 100dvh;
		overflow: hidden;
	}

	#main-menu .navbar-nav {
		align-items: flex-start;
		gap: 20px;
		margin: 0 !important;
		padding: 0;
	}

	#main-menu .menu-item {
		width: 100%;
	}

	#menu-header-1 li a,
	#menu-header-1 li:last-child a {
		display: block;
		padding: 0;
		margin-left: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		background-image: none;
		font-family: var(--font-sans);
		font-size: 40px;
		font-weight: 300;
		line-height: 1.05;
		color: #fff;
		text-align: left;
	}

	#menu-header-1 {
		margin-top: 40px;
	}

	#menu-header-1 li:not(:last-child) a::after {
		display: none;
	}

	#main-menu .dropdown-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 12px 0 0 18px;
		margin: 0;
		background: transparent;
		border-radius: 0;
	}

	#main-menu .dropdown-item {
		padding: 0 0 12px;
		font-size: 22px;
		color: rgba(255, 255, 255, 0.82);
	}
}
