/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif, system-ui;
}

body {
  color: var(--text_primary);
  line-height: 1.5;
  margin: 0;
}

a {
  text-decoration: none;
  padding-bottom: 2px;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

a:hover {
  color: var(--link_text_hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif, system-ui;
  line-height: 1;
}

address {
  font-style: italic;
  margin: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: none;
}

p {
  margin: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 14px;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

pre {
  background: none;
  font-family: monospace;
  font-size: 14px;
  margin: 0;
  overflow: auto;
  padding: 0;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite,
blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}

blockquote em,
blockquote i {
  font-style: normal;
  font-weight: 300;
}

blockquote strong,
blockquote b {
  font-weight: 400;
}

small {
  font-size: smaller;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin: 0 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 20px;
}

menu,
ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: square;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: none;
  margin: 0x;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  appearance: button;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  appearance: textfield;
  padding-right: 2px; /* Don't cut off the webkit search cancel button */
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

caption {
  font-size: 16px;
  margin: 20px 0;
}

th {
  font-weight: bold;
  text-transform: uppercase;
}

td {
  border: none;
  padding: 0;
}

ins {
  text-decoration: none;
}

hr {
  background: none;
  border: 1px solid var(--keyline_inactive);
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  src: local("Plus Jakarta Sans"), url("https://fsw.flpdigital.com/wp-content/themes/fsw2025/public/fonts/PlusJakartaSans-VariableFont_wght.woff") format("woff"), url("https://fsw.flpdigital.com/wp-content/themes/fsw2025/public/fonts/PlusJakartaSans-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  src: local("Plus Jakarta Sans"), url("https://fsw.flpdigital.com/wp-content/themes/fsw2025/public/fonts/PlusJakartaSans-Italic-VariableFont_wght.woff") format("woff"), url("https://fsw.flpdigital.com/wp-content/themes/fsw2025/public/fonts/PlusJakartaSans-Italic-VariableFont_wght.woff") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 200;
  font-style: normal;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
body button,
body input,
body select,
body textarea {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1.4;
}
body input::placeholder {
  color: #ccc;
  font-weight: 300 !important;
}
body section.layout h1,
body section.layout h2,
body section.layout h3,
body section.layout h4,
body section.layout h5,
body section.layout h6 {
  font-family: "Plus Jakarta Sans", Georgia, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  padding: 0;
  margin: 1rem 0;
  color: #252020;
}

body.wp-theme-fsw2025 {
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  line-height: 1.4;
}
body.wp-theme-fsw2025 button,
body.wp-theme-fsw2025 input,
body.wp-theme-fsw2025 select,
body.wp-theme-fsw2025 textarea {
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
}
body.wp-theme-fsw2025 section.layout h1 {
  font-size: clamp(34px, 1.165rem + 3.84vw, 58px);
  font-weight: 800;
}
body.wp-theme-fsw2025 section.layout h2 {
  font-size: clamp(28px, 0.87rem + 3.52vw, 50px);
  font-weight: 700;
}
body.wp-theme-fsw2025 section.layout h3 {
  font-size: clamp(24px, 0.62rem + 3.52vw, 46px);
  font-weight: 700;
}
body.wp-theme-fsw2025 section.layout h4 {
  font-size: clamp(22px, 0.815rem + 2.24vw, 36px);
  font-weight: 500;
}
body.wp-theme-fsw2025 section.layout h5 {
  font-size: clamp(18px, 0.725rem + 1.6vw, 28px);
  font-weight: 500;
}
body.wp-theme-fsw2025 section.layout p {
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  font-weight: 400;
  line-height: 1.4;
}
body.wp-theme-fsw2025 section.layout strong {
  font-weight: 700;
}

body.wp-theme-fsw2025.page-id-5402 section.layout,
body.wp-theme-fsw2025.privacy_policy section.layout,
body.wp-theme-fsw2025.privacy_policy_uk section.layout,
body.wp-theme-fsw2025.privacy_policy_eu {
  padding-top: 12rem;
}
body.wp-theme-fsw2025.page-id-5402 section.layout h1,
body.wp-theme-fsw2025.privacy_policy section.layout h1,
body.wp-theme-fsw2025.privacy_policy_uk section.layout h1,
body.wp-theme-fsw2025.privacy_policy_eu h1 {
  font-size: clamp(28px, 0.87rem + 3.52vw, 50px);
  font-weight: 800;
}
body.wp-theme-fsw2025.page-id-5402 section.layout h2,
body.wp-theme-fsw2025.privacy_policy section.layout h2,
body.wp-theme-fsw2025.privacy_policy_uk section.layout h2,
body.wp-theme-fsw2025.privacy_policy_eu h2 {
  font-size: clamp(22px, 0.815rem + 2.24vw, 36px);
  font-weight: 700;
}
body.wp-theme-fsw2025.page-id-5402 section.layout h3,
body.wp-theme-fsw2025.privacy_policy section.layout h3,
body.wp-theme-fsw2025.privacy_policy_uk section.layout h3,
body.wp-theme-fsw2025.privacy_policy_eu h3 {
  font-size: clamp(22px, 0.815rem + 2.24vw, 36px);
  font-weight: 500;
}
body.wp-theme-fsw2025.page-id-5402 section.layout h4,
body.wp-theme-fsw2025.privacy_policy section.layout h4,
body.wp-theme-fsw2025.privacy_policy_uk section.layout h4,
body.wp-theme-fsw2025.privacy_policy_eu h4 {
  font-size: clamp(18px, 0.725rem + 1.6vw, 28px);
  font-weight: 500;
}
body.wp-theme-fsw2025.page-id-5402 section.layout h5,
body.wp-theme-fsw2025.privacy_policy section.layout h5,
body.wp-theme-fsw2025.privacy_policy_uk section.layout h5,
body.wp-theme-fsw2025.privacy_policy_eu h5 {
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
}

.section {
  margin-left: 1rem;
}
.section ::marker {
  font-weight: 700;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes grow {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes timeline-ani {
  from {
    transform: scale(1.5);
    opacity: 0.2;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes button-ani {
  0% {
    transform: scaleX(1);
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(-1);
    opacity: 0.75;
  }
  100% {
    transform: scaleX(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes moveArrow {
  0% {
    left: 0;
    top: 0;
  }
  50% {
    top: -4px;
    left: 4px;
  }
  100% {
    left: 0;
    top: 0;
  }
}
@keyframes ani-img-present {
  0% {
    opacity: var(0.4);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
.header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header header {
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
  height: 70px;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
  transition: height 0.3s ease-in-out;
  width: 1360px;
  max-width: calc(100vw - 3.5rem);
  margin: 0 auto;
}
.header header .logo-type {
  height: fit-content;
  margin: auto 0;
  overflow: hidden;
  width: 100px;
  display: none;
}
.header header .logo-type svg {
  width: 100%;
  margin-left: 0;
  height: auto;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header header a {
  color: #fff;
  font-size: clamp(15px, 0.8975rem + 0.16vw, 16px);
  font-weight: 500;
  font-style: normal;
  outline: 0;
  text-transform: uppercase;
  margin: 0 6px;
  letter-spacing: 0.05em;
  height: 100%;
  display: block;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
  text-decoration: none;
}
.header header a.header-logo {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  margin: 0;
  width: fit-content;
}
.header header .logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  height: 100%;
  max-height: 34px;
  margin-bottom: -9px;
}
.header header svg {
  fill: #fff;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header header .logo svg {
  width: auto;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
  shape-rendering: geometricPrecision;
}
.header header .nav {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: fit-content;
}
.header header ul {
  padding: 0;
  margin: 0;
}
.header header .bstack {
  visibility: hidden;
  position: absolute;
  height: 100px;
  width: 100px;
  right: 0;
  top: 0;
}
.header header .bstack input {
  display: none;
}
.header header .bstack .grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  width: 100px;
  height: 100px;
  position: absolute;
}
.header header .bstack .grid > * {
  position: relative;
}
.header header .bstack label {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.header header .bstack path {
  fill: none;
  stroke: var(--link_text_header);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 34;
  --offset: -28;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header header .bstack circle {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0);
  opacity: 0;
}
.header header .bstack .cross:has(input:checked) label:hover circle {
  opacity: 1;
}
.header header .bstack .cross input:checked + svg .line--1,
.header header .bstack .cross input:checked + svg .line--3 {
  --length: 28.627417;
}
.header header .bstack .cross input:checked + svg .line--2 {
  --length: 0;
}
.header header .bstack .back input:checked + svg .line--1,
.header header .bstack .back input:checked + svg .line--3 {
  --length: 8.602325267;
}
.header header .bstack .menu--2 {
  background-color: #0095f9;
}
.header header .bstack .menu--2 .line--1,
.header header .bstack .menu--2 .line--3 {
  --total-length: 111.22813415527344;
  --offset: -50.22813415527344;
}
.header header .bstack .menu--2 .line--2 {
  --total-length: 99;
}
.header header .bstack .menu--2 input:checked + svg path {
  transform: translateX(30px);
}
.header header .bstack .menu--2 input:checked + svg .line--1,
.header header .bstack .menu--2 input:checked + svg .line--3 {
  --offset: -13.970563;
}
.header header .bstack .menu--2 input:checked + svg .line--2 {
  --offset: -20;
}
.header header nav {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}
.header header nav a {
  font-weight: 400;
  outline: 0;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  height: 100%;
  line-height: 18px;
  display: block;
  padding: 10px 20px;
}
.header header nav a:hover {
  color: #fff;
}
.header.dark {
  backdrop-filter: brightness(1.175) blur(8px);
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header.dark header a {
  color: #000;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header.dark header a svg {
  fill: #000;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header.dark header a svg path {
  fill: #000;
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}
.header.dark header a:hover {
  color: #000;
}

/***************************
Navigation
*/
.menu-header-menu-container {
  width: auto;
}
.menu-header-menu-container ul#menu-header-menu {
  display: flex;
  position: relative;
}
.menu-header-menu-container ul#menu-header-menu > li {
  height: 100%;
  width: 100%;
  margin: 0 4px;
}
.menu-header-menu-container ul#menu-header-menu > li > a {
  position: relative;
  z-index: 10;
}

.header header nav li.current_page_item,
.header header nav li:hover {
  color: #fff;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.34);
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}

.header.dark header nav li.current_page_item,
.header.dark header nav li:hover {
  color: #fff;
  border-radius: 44px;
  background: rgba(150, 150, 150, 0.34);
  transition: all 0.35s cubic-bezier(0.53, 0, 0.54, 1);
}

.header header nav .menu-item {
  position: relative;
}

.nav-menu .current_page_ancestor,
.nav-menu .current-menu-ancestor {
  height: 100%;
}

.nav-menu .current_page_item a,
.nav-menu .current_page_ancestor a,
.nav-menu .current-menu-item a,
.nav-menu .current-menu-ancestor a {
  display: block;
}

.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-ancestor > a {
  color: #fff;
  height: 100%;
  display: block;
}

ul.nav-menu li > ul {
  min-width: fit-content;
  position: absolute;
  display: none;
  top: 38px;
  border: 1px solid #f0f0f0;
  border-top: 0;
  left: 0;
  z-index: 9;
  min-width: 100%;
  padding: 10px 0;
  margin: 0;
}

ul.nav-menu li > ul li {
  min-width: 100%;
  padding: 0;
}

ul.nav-menu li:hover > ul {
  display: flex;
  flex-direction: column;
}

.nav-menu li > a {
  height: 100%;
}

@media (width < 1025px) and (width > 768px) {
  /**
   * Generates a responsive font size using CSS clamp().
   *
   * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
   * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
   * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
   * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
   * @return {String} A CSS clamp() function string.


  // --- Usage Example ---
  .hero-title {
    // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
    font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
  }

  .subtitle {
      // Another example using px values
      font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
  }

  output

  .hero-title {
    font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
  }

  .subtitle {
    font-size: clamp(14px, 5px + 2.5vw, 24px);
  }

   */
}
@media (width < 1025px) and (width > 768px) {
  /* Mobile styles for header.scss */
  .header header {
    width: 1360px;
    max-width: calc(100vw - 3.5rem);
  }
  .header header .bstack {
    visibility: visible;
    position: absolute;
    height: 60px;
    width: 60px;
    right: 0vw;
    top: 7px;
    margin-right: -22px;
  }
  .header header .bstack .menu.cross {
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
  .header header nav a {
    color: #000;
    font-weight: 700;
    font-size: clamp(24px, 0.62rem + 3.52vw, 46px);
    margin-right: 42px;
  }
  .header header nav#primary-navigation ul {
    row-gap: 1rem;
  }
  .header header .logo {
    margin-bottom: -6px;
    max-height: 26px;
  }
  .menu-header-menu-container ul#menu-header-menu > li {
    margin: 0;
  }
  .header.dark .bstack svg path {
    stroke: #000;
  }
  .header.dark header nav li.current_page_item,
  .header.dark header nav li:hover {
    background: transparent;
  }
  .header:has(input:checked) {
    background: #fff;
    transition: background 0.3s cubic-bezier(0.81, 0, 0.33, 0.99);
  }
  .header:has(input:checked) .logo svg path {
    fill: #000;
    stroke: #000;
  }
  .header:has(input:checked) .bstack svg path {
    stroke: #000;
  }
  .header:has(input:checked) nav#primary-navigation ul {
    position: absolute;
    top: 90px;
    right: -100vw;
    z-index: 100;
    transition: right 0.3s cubic-bezier(0.81, 0, 0.33, 0.99);
  }
  .header:has(input:checked) nav#primary-navigation ul li a {
    color: #000;
  }
  .header:has(input:checked) nav#primary-navigation ul li.current-menu-item a {
    color: #fb471f;
  }
  .header:has(input:checked) nav#primary-navigation a {
    color: #000;
  }
  .header:has(input:checked) nav#primary-navigation ul#menu-header-menu {
    right: 0;
    transition: right 0.25s cubic-bezier(0.81, 0, 0.33, 0.99);
  }
  .header:has(input:checked) .menu-header-menu-container {
    width: 100%;
    height: 100%;
  }
  #primary-navigation ul#menu-header-menu {
    flex-direction: column;
    top: 70px;
    position: fixed;
    transition: right 0.5s ease-out;
    right: -100vw;
    width: 100vw;
    background: #fff;
    text-align: right;
    align-content: end;
    align-items: flex-end;
    padding: 0 0 3vh 0;
    transition: all 0.3s ease-in-out;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}
@media (width <= 768px) {
  /**
   * Generates a responsive font size using CSS clamp().
   *
   * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
   * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
   * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
   * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
   * @return {String} A CSS clamp() function string.


  // --- Usage Example ---
  .hero-title {
    // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
    font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
  }

  .subtitle {
      // Another example using px values
      font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
  }

  output

  .hero-title {
    font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
  }

  .subtitle {
    font-size: clamp(14px, 5px + 2.5vw, 24px);
  }

   */
}
@media (width <= 768px) {
  /* Mobile styles for header.scss */
  div#header {
    height: 72px;
    min-height: 72px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  div#header header {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: flex-start;
  }
  div#header header .bstack {
    visibility: visible;
    position: absolute;
    height: 60px;
    width: 60px;
    right: 0;
    top: 7px;
    margin-right: -12px;
  }
  div#header header nav a {
    color: #000;
    font-weight: 700;
    font-size: clamp(24px, 0.62rem + 3.52vw, 46px);
  }
  div#header header nav#primary-navigation ul {
    row-gap: 1rem;
  }
  div#header header a.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  div#header header .logo {
    margin-bottom: -6px;
    max-height: 26px;
  }
  .menu-header-menu-container ul#menu-header-menu > li {
    margin: 0;
  }
  .header.dark .bstack svg path {
    stroke: #000;
  }
  .header.dark header nav li.current_page_item,
  .header.dark header nav li:hover {
    background: transparent;
  }
  .header:has(input:checked) {
    background: #fff;
    transition: background 0.3s cubic-bezier(0.81, 0, 0.33, 0.99);
  }
  .header:has(input:checked) .logo svg path {
    fill: #000;
    stroke: #000;
  }
  .header:has(input:checked) .bstack svg path {
    stroke: #000;
  }
  .header:has(input:checked) nav#primary-navigation ul {
    position: absolute;
    top: 71px;
    right: -100vw;
    z-index: 100;
    transition: right 0.3s cubic-bezier(0.81, 0, 0.33, 0.99);
    border-bottom: 1px solid #1d1d1d;
  }
  .header:has(input:checked) nav#primary-navigation ul li a {
    color: #000;
    text-align: left;
  }
  .header:has(input:checked) nav#primary-navigation ul li.current-menu-item a {
    color: #fb471f;
  }
  .header:has(input:checked) nav#primary-navigation a {
    color: #000;
  }
  .header:has(input:checked) nav#primary-navigation ul#menu-header-menu {
    right: 0;
    transition: right 0.25s cubic-bezier(0.81, 0, 0.33, 0.99);
  }
  .header:has(input:checked) .menu-header-menu-container {
    width: 100%;
    height: 100%;
  }
  #primary-navigation ul#menu-header-menu {
    flex-direction: column;
    top: 70px;
    position: fixed;
    transition: right 0.5s ease-out;
    right: -100vw;
    width: 100vw;
    background: #fff;
    text-align: right;
    align-content: end;
    align-items: flex-end;
    padding: 0 0 3vh 0;
    transition: all 0.3s ease-in-out;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
footer {
  background-color: var(--footer_bg);
  background-color: rgb(1, 52, 75);
  width: 100%;
  padding: 40px 0;
  color: var(--text_footer);
  font-weight: 300;
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  position: relative;
  z-index: 1;
}

footer ul {
  list-style: none;
}

footer:not(.btn) a {
  color: var(--link_text_footer);
  position: relative;
  padding-bottom: 4px;
}

footer:not(.btn) a:hover {
  color: var(--link_text_footer);
}

footer:not(.btn) a::after {
  content: " ";
  width: 0%;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-bottom: 1px solid var(--link_text_footer);
  transition: all 0.2s ease-in-out;
}

footer:not(.btn) a:hover:after {
  left: 5%;
  width: 90%;
}

footer > div.inner {
  width: 100%;
  flex-direction: column;
  display: flex;
  row-gap: 1rem;
  width: 1360px;
  max-width: calc(100vw - 3.5rem);
  margin: 2.5% auto;
}
footer > div.inner div.logo {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  padding: 0.75rem 0;
}
footer > div.inner div.menus {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding: 2rem 0;
}
footer > div.inner div.cright {
  font-size: 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
footer > div.inner div.cright > div {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
footer > div.inner div.cright {
  row-gap: 2rem;
  padding-top: 1rem;
}
footer > div.inner div.cright a {
  color: var(--link_text_footer);
}
footer > div.inner div.cright div.detail {
  font-size: 0.65rem;
}
footer > div.inner ul.legal-menu {
  text-align: right;
}
footer > div.inner ul.legal-menu li {
  padding: 0.15rem 0;
}
footer > div.inner div.flp a {
  font-size: 0.65rem;
}
footer > div.inner div.address-cont {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  width: 50%;
}
footer > div.inner div.address-cont div.tel a,
footer > div.inner div.address-cont div.tel_gen a,
footer > div.inner div.address-cont div.tel_direct a {
  padding: 0;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  column-gap: 0.5rem;
  width: fit-content;
}
footer > div.inner div.address-cont div.tel a > div,
footer > div.inner div.address-cont div.tel_gen a > div,
footer > div.inner div.address-cont div.tel_direct a > div {
  width: fit-content;
}
footer > div.inner div.address-cont div.loc {
  display: flex;
  align-content: center;
  align-items: center;
  column-gap: 0.5rem;
  align-items: flex-start;
}
footer > div.inner div.address-cont > div.email > a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  column-gap: 0.5rem;
  width: fit-content;
}
footer > div.inner div.address-cont div.icon {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  display: flex;
  column-gap: 0.5rem;
}
footer > div.inner div.address-cont div.icon svg {
  width: 24px;
}
footer > div.inner div.right-cont {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  text-align: right;
  align-items: flex-end;
  flex-wrap: wrap;
}
footer > div.inner div.right-cont div.social-cont {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
footer > div.inner div.social {
  display: flex;
  column-gap: 1rem;
}
footer > div.inner div.social a > div {
  margin-bottom: 4px;
}
footer > div.inner div.social a:after {
  display: none;
}
footer > div.inner div.social svg {
  max-width: 36px;
  max-height: 36px;
}
footer > div.inner .searchform {
  width: 100%;
  max-width: 280px;
  margin: 0 0 3vh 0;
}
footer > div.inner .searchform input {
  padding: 12px 26px;
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  border: none;
  outline: none;
  text-align: left;
  background-color: transparent;
  color: var(--link_text_footer);
  width: fit-content;
}
footer > div.inner .searchform input::placeholder {
  opacity: 0.6;
  font-weight: 200;
}
footer > div.inner .searchform label {
  display: none;
}
footer > div.inner .searchform .search-icon {
  margin: auto 0 auto -30px;
  display: flex;
  flex-direction: column;
}
footer > div.inner .searchform .search-icon svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
footer > div.inner .searchform > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 27px;
  border: 1px solid #fff;
}

body #searchwp_live_search_results_68d8242841431,
body div.searchwp-live-search-results.searchwp-live-search-results-showing {
  margin-top: -4px;
}

div.searchwp-live-search-results {
  min-width: 275px !important;
  min-height: auto !important;
  scrollbar-width: thin;
}
div.searchwp-live-search-results p.searchwp-live-search-no-results {
  padding: 0;
}

body div.searchwp-live-search-no-results {
  padding: 1rem 0;
}

div.searchwp-live-search-results {
  scrollbar-width: thin;
}
div.searchwp-live-search-results p.searchwp-live-search-no-results {
  padding: 0;
}

div.searchwp-live-search-no-min-chars:after {
  padding: 1rem 0;
}

div.searchwp-live-search-results-container {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 1rem 0;
}

div.searchwp-live-search-result--info {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 0 0.75rem;
}

div.searchwp-live-search-results.searchwp-live-search-results-showing {
  background-color: var(--footer_bg);
  background-color: rgb(1, 52, 75);
  filter: brightness(1.1);
  color: #fff;
  margin-top: -6px;
}
div.searchwp-live-search-results.searchwp-live-search-results-showing h1,
div.searchwp-live-search-results.searchwp-live-search-results-showing h2,
div.searchwp-live-search-results.searchwp-live-search-results-showing h3,
div.searchwp-live-search-results.searchwp-live-search-results-showing h4,
div.searchwp-live-search-results.searchwp-live-search-results-showing h5,
div.searchwp-live-search-results.searchwp-live-search-results-showing h6 {
  margin: 0;
}
div.searchwp-live-search-results.searchwp-live-search-results-showing div.searchwp-live-search-result {
  padding: 0;
}
div.searchwp-live-search-results.searchwp-live-search-results-showing a {
  color: var(--link_text_footer);
  position: relative;
  padding-bottom: 6px;
  font-weight: 400;
  display: inline-block;
  box-sizing: border-box;
  line-height: 1.3;
}
div.searchwp-live-search-results.searchwp-live-search-results-showing a:hover {
  color: var(--link_text_footer);
}
div.searchwp-live-search-results.searchwp-live-search-results-showing a::after {
  content: " ";
  width: 0%;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-bottom: 1px solid var(--link_text_footer);
  transition: all 0.2s ease-in-out;
}
div.searchwp-live-search-results.searchwp-live-search-results-showing a:hover::after {
  left: 5%;
  width: 90%;
}

@media (width <= 768px) {
  /**
   * Generates a responsive font size using CSS clamp().
   *
   * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
   * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
   * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
   * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
   * @return {String} A CSS clamp() function string.


  // --- Usage Example ---
  .hero-title {
    // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
    font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
  }

  .subtitle {
      // Another example using px values
      font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
  }

  output

  .hero-title {
    font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
  }

  .subtitle {
    font-size: clamp(14px, 5px + 2.5vw, 24px);
  }

   */
}
@media (width <= 768px) {
  /* Mobile styles for footer.scss */
  footer {
    padding: 30px 0;
  }
  footer > div.inner {
    width: 1360px;
    max-width: calc(100vw - 3.5rem);
    margin: 0 auto;
    font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  }
  footer > div.inner .menus {
    column-gap: 1rem;
  }
  footer > div.inner .menus div.logo {
    border: none;
  }
  footer > div.inner .menus div.address-cont {
    row-gap: 2rem;
  }
  footer > div.inner .menus div.address-cont div.tel a,
  footer > div.inner .menus div.address-cont div.tel_gen a,
  footer > div.inner .menus div.address-cont div.tel_direct a {
    padding: 0;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    column-gap: 0.5rem;
    width: fit-content;
  }
  footer > div.inner .menus div.address-cont div.tel a > div,
  footer > div.inner .menus div.address-cont div.tel_gen a > div,
  footer > div.inner .menus div.address-cont div.tel_direct a > div {
    width: fit-content;
  }
  footer > div.inner .menus div.address-cont div.tel a div.detail,
  footer > div.inner .menus div.address-cont div.tel_gen a div.detail,
  footer > div.inner .menus div.address-cont div.tel_direct a div.detail {
    margin-left: 22px;
  }
  footer > div.inner .menus div.address-cont > div.email > a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    column-gap: 0.5rem;
    width: fit-content;
  }
  footer > div.inner .menus div.address-cont > div.email > a div.detail {
    margin-left: 22px;
  }
  footer > div.inner .menus div.address-cont div.loc {
    column-gap: 0.5rem;
  }
  footer > div.inner .menus div.address-cont div.icon {
    column-gap: 0.5rem;
  }
  footer > div.inner .menus div.address-cont div.icon svg {
    width: 12px;
  }
  footer > div.inner div.social,
  footer > div.inner div.social-cont {
    flex-wrap: wrap;
    row-gap: 0rem;
    line-height: 1.4;
    column-gap: 0.5rem;
  }
  footer > div.inner div.social svg,
  footer > div.inner div.social-cont svg {
    max-width: 23px;
    max-height: 23px;
  }
  footer > div.inner .searchform {
    margin: 0;
    width: 84%;
  }
  footer > div.inner .searchform > div {
    justify-content: space-between;
  }
  footer > div.inner .searchform > div input {
    width: 75%;
    padding: 0.5rem 0.75rem;
    font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  }
  footer > div.inner .searchform > div input::placeholder {
    font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  }
  footer > div.inner .searchform > div .search-icon {
    margin: 0;
    width: 25px;
  }
  footer > div.inner .searchform > div .search-icon svg {
    width: 12x;
    height: 12px;
  }
  footer > div.inner div.right-cont {
    row-gap: 1.7rem;
  }
  footer > div.inner div.right-cont div.social-cont {
    row-gap: 0.75rem;
  }
  footer > div.inner ul.legal-menu {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
  }
  footer > div.inner ul.legal-menu li {
    padding: 0;
  }
  footer > div.inner ul.legal-menu li a {
    font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  }
  footer > div.inner div.cright {
    font-size: 0.75rem;
    column-gap: 1rem;
  }
  footer > div.inner div.cright > div {
    row-gap: 1rem;
    width: 50%;
  }
  footer > div.inner div.cright a {
    font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  }
  body div.searchwp-live-search-results {
    min-width: 55%;
    max-width: 55%;
    min-height: auto;
    left: auto !important;
    right: calc(1.75rem + 12px);
    margin-left: 0;
    text-align: right;
    scrollbar-width: none;
  }
  body div.searchwp-live-search-results ::-webkit-scrollbar-track,
  body div.searchwp-live-search-results ::-webkit-scrollbar-thumb {
    display: none;
  }
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
.social.top {
  position: absolute;
  z-index: 20;
  top: 30vh;
  margin-top: -85px;
  left: 10px;
  transition: top 0.3s ease-in-out;
}
.social.top a > div {
  margin-bottom: 4px;
}
.social.top svg {
  max-width: 1.75vw;
  max-height: 1.75vw;
  min-width: 30px;
  min-height: 30px;
}
.social.top svg > g > path {
  fill: #ffffff !important;
  background: #ffffff;
}

.social.top.sd {
  top: 50vh;
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
article {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

a {
  text-decoration: none;
}

.displayNone {
  display: none !important;
}

.hide,
.mobile_only.hide,
.mobile_only {
  display: none;
}

body #poststuff section.layout.white-bg[data-layout],
body section.layout.white-bg {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  shape-rendering: geometricPrecision;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #fff;
  font-weight: 430;
}
body #poststuff section.layout.white-bg[data-layout] p,
body section.layout.white-bg p {
  font-weight: 430;
}

#poststuff section.layout[data-layout],
section.layout {
  width: 100%;
  background-color: var(--primary_bg);
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
}
#poststuff section.layout[data-layout] > div:first-child,
section.layout > div:first-child {
  width: 1360px;
  max-width: calc(100vw - 3.5rem);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
#poststuff section.layout[data-layout] ul,
section.layout ul {
  list-style: none;
}
#poststuff section.layout[data-layout] p,
section.layout p {
  margin: 0 0 2vh 0;
}
#poststuff section.layout[data-layout] a,
section.layout a {
  color: var(--accent);
  position: relative;
}
#poststuff section.layout[data-layout] a:hover::after,
section.layout a:hover::after {
  left: 5%;
  width: 90%;
}

body section:nth-child(2):is(.layout.layout_title_introduction-main.white-bg):has(.title_header) {
  padding-top: 10rem;
}

.title_header {
  color: #ffffff;
}
.title_header > span {
  background: rgb(40, 40, 44);
  display: inline-block;
  border-radius: 22px;
  padding: 0.5rem 1.25rem;
  line-height: 1.4;
  font-size: clamp(12px, 0.59rem + 0.64vw, 16px);
}

.title_header.light {
  color: #000000;
}
.title_header.light > span {
  background: #ffffff;
}

.searchwp-live-search-result--title a {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.error404 .content div.searchwp-live-search-results.searchwp-live-search-results-showing {
  background: #ccc;
  filter: brightness(1.1);
  color: var(--text_one);
}
.error404 .content div.searchwp-live-search-results.searchwp-live-search-results-showing a {
  color: var(--text_one);
}
.error404 .content div.searchwp-live-search-results.searchwp-live-search-results-showing a:hover {
  color: var(--text_one);
}
.error404 .content div.searchwp-live-search-results.searchwp-live-search-results-showing a:after {
  border-bottom: 1px solid var(--link_text_footer);
}

/************************************************/
.vaa_toolbar {
  display: none;
}

@media (width >= 1025px) {
  .layout.general {
    margin: 0 auto;
  }
  .layout.general ul li {
    margin: 0 0 1rem 1rem;
  }
  .layout.general p {
    margin: 1rem 0;
  }
}
@media (width < 1025px) and (width > 768px) {
  section.layout .btn span.link_text,
  section.layout .btn footer .btn span.link_text,
  footer .btn span.link_text,
  footer .btn footer .btn span.link_text {
    padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  }
}
@media (width <= 768px) {
  /**
   * Generates a responsive font size using CSS clamp().
   *
   * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
   * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
   * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
   * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
   * @return {String} A CSS clamp() function string.


  // --- Usage Example ---
  .hero-title {
    // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
    font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
  }

  .subtitle {
      // Another example using px values
      font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
  }

  output

  .hero-title {
    font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
  }

  .subtitle {
    font-size: clamp(14px, 5px + 2.5vw, 24px);
  }

   */
  body section.layout.white-bg {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  body section.layout.white-bg:nth-child(2) {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  body section.layout.white-bg:last-of-type {
    padding-bottom: 2rem;
  }
  body #poststuff section.layout.services-main,
  body section.layout.services-main {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  body section.layout {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body section.layout .btn:has(.icon) a,
  body section.layout footer .btn:has(.icon) a {
    padding: 0.35rem;
  }
  body section.layout .btn:has(.icon) a span.link_text,
  body section.layout footer .btn:has(.icon) a span.link_text {
    padding: 0.75rem 0.5rem 0.75rem 1.2rem;
  }
  body section.layout .btn span.link_text,
  body section.layout footer .btn span.link_text {
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  }
  body section.layout > div:first-child {
    width: 1360px;
    max-width: calc(100vw - 3.5rem);
  }
  body.wp-theme-fsw2025 section.layout:nth-last-child(3):not(.layout.cta-main, .layout.contact) {
    padding-bottom: 5rem;
  }
  body section:nth-child(2):is(.layout.layout_title_introduction-main.white-bg):has(.title_header) {
    padding-top: 6rem;
  }
  .mobile_only {
    display: block;
  }
  section.layout > div:first-child .head {
    width: 100%;
    margin: 0 auto;
  }
  section.layout > div:first-child .head h2 {
    font-size: clamp(28px, 0.87rem + 3.52vw, 50px);
  }
  section.layout > div:first-child .head .cols {
    flex-direction: column;
    row-gap: 2rem;
  }
  section.layout > div:first-child .head .cols > div:first-child,
  section.layout > div:first-child .head .cols > div:last-child {
    flex: 1 100%;
  }
  section.layout > div:first-child .head .cols div.col {
    row-gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  section.layout > div:first-child .head .cols div.col.left {
    text-align: left;
  }
}
/**
 * Generates a responsive font size using CSS clamp().
 *
 * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
 * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
 * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
 * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
 * @return {String} A CSS clamp() function string.


// --- Usage Example ---
.hero-title {
  // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
  font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
}

.subtitle {
    // Another example using px values
    font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
}

output

.hero-title {
  font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
}

.subtitle {
  font-size: clamp(14px, 5px + 2.5vw, 24px);
}

 */
@media print {
  body {
    font-size: 12pt;
  }
}
:root {
  interpolate-size: allow-keywords;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scrollbar-color: var(--scrollbar_active) var(--scrollbar_track);
}

body {
  height: 100%;
  background-color: var(--primary_bg);
  color: var(--text_one);
  font-weight: 300;
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  shape-rendering: geometricPrecision;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body a {
  text-decoration: none;
  color: var(--text_one);
}

a {
  text-decoration: none;
  color: var(--text_one);
}

a:hover {
  color: var(--text_one);
}

::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--scrollbar_track);
  border-radius: 2px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--scrollbar_active);
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar_active);
}

#main {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  min-height: 100vh;
}

div.gsap-marker-end,
div.gsap-marker-start,
div.gsap-marker-scroller-end,
div.gsap-marker-scroller-start {
  z-index: 100000 !important;
}

section.layout .btn,
footer .btn {
  width: fit-content;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
section.layout .btn a,
footer .btn a {
  border-radius: 2rem;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 0.715rem + 0.64vw, 18px);
  font-weight: 320;
  transition: all 0.3s ease-in-out;
  color: rgb(16, 16, 20);
  font-weight: 400;
  line-height: 1.2;
  overflow: clip;
  column-gap: 0.5rem;
  padding: 0.5rem;
  text-decoration: none;
}
section.layout .btn a .icon.arrow,
section.layout .btn a .icon svg,
section.layout .btn a .icon.arrow svg,
footer .btn a .icon.arrow,
footer .btn a .icon svg,
footer .btn a .icon.arrow svg {
  width: 34px;
  height: 34px;
}
section.layout .btn a .icon.back svg,
section.layout .btn a .icon.forward svg,
footer .btn a .icon.back svg,
footer .btn a .icon.forward svg {
  width: 30px;
  height: 30px;
}
section.layout .btn a .icon.download svg,
footer .btn a .icon.download svg {
  width: 30px;
  height: 30px;
}
section.layout .btn a .icon.plus svg,
footer .btn a .icon.plus svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 1;
}
section.layout .btn a span.link_text,
footer .btn a span.link_text {
  padding-left: 0.5rem;
  padding-left: 1rem;
  padding-right: 0.5rem;
}
section.layout .btn a:focus,
footer .btn a:focus {
  outline: none;
}
section.layout .btn a::after,
footer .btn a::after {
  display: none;
}
section.layout .btn.icon_left a,
footer .btn.icon_left a {
  flex-direction: row-reverse;
}
section.layout .btn.icon_left a .link_text,
footer .btn.icon_left a .link_text {
  margin-right: 16px;
  padding-right: 0;
}
section.layout .btn span,
footer .btn span {
  display: block;
}
section.layout .btn span.icon,
footer .btn span.icon {
  display: flex;
  background-color: #000;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: static;
  align-items: center;
  justify-content: center;
}
section.layout .btn span.icon:after,
footer .btn span.icon:after {
  display: none;
}
section.layout .btn .icon svg,
footer .btn .icon svg {
  stroke: #fff;
}
section.layout .btn .icon.forward svg, section.layout .btn .icon.back svg,
footer .btn .icon.forward svg,
footer .btn .icon.back svg {
  width: 24px;
  height: 24px;
}
section.layout .btn .icon.forward svg path, section.layout .btn .icon.back svg path,
footer .btn .icon.forward svg path,
footer .btn .icon.back svg path {
  stroke: #fff;
  fill: #fff;
}
section.layout .btn a .arrow.back svg,
section.layout .btn a .arrow.forward svg,
footer .btn a .arrow.back svg,
footer .btn a .arrow.forward svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 1;
}
section.layout .btn a .arrow.back svg path,
section.layout .btn a .arrow.forward svg path,
footer .btn a .arrow.back svg path,
footer .btn a .arrow.forward svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
section.layout .btn.icon_white a .icon,
section.layout .btn.icon_white a .icon.plus,
section.layout .btn.icon_white a .icon.arrow.back,
section.layout .btn.icon_white a .icon.arrow.forward,
footer .btn.icon_white a .icon,
footer .btn.icon_white a .icon.plus,
footer .btn.icon_white a .icon.arrow.back,
footer .btn.icon_white a .icon.arrow.forward {
  background-color: #fff;
}
section.layout .btn.icon_white a .icon svg,
section.layout .btn.icon_white a .icon.plus svg,
section.layout .btn.icon_white a .icon.arrow.back svg,
section.layout .btn.icon_white a .icon.arrow.forward svg,
footer .btn.icon_white a .icon svg,
footer .btn.icon_white a .icon.plus svg,
footer .btn.icon_white a .icon.arrow.back svg,
footer .btn.icon_white a .icon.arrow.forward svg {
  width: 26px;
  height: 26px;
  fill: #000;
  stroke: #000;
  stroke-width: 24px;
  opacity: 1;
}
section.layout .btn.icon_white a .icon svg path,
section.layout .btn.icon_white a .icon.plus svg path,
section.layout .btn.icon_white a .icon.arrow.back svg path,
section.layout .btn.icon_white a .icon.arrow.forward svg path,
footer .btn.icon_white a .icon svg path,
footer .btn.icon_white a .icon.plus svg path,
footer .btn.icon_white a .icon.arrow.back svg path,
footer .btn.icon_white a .icon.arrow.forward svg path {
  fill: #000;
  stroke: #000;
}
section.layout .btn.icon_black a .icon,
section.layout .btn.icon_black a .icon.plus,
section.layout .btn.icon_black a .icon.arrow.back,
section.layout .btn.icon_black a .icon.arrow.forward,
footer .btn.icon_black a .icon,
footer .btn.icon_black a .icon.plus,
footer .btn.icon_black a .icon.arrow.back,
footer .btn.icon_black a .icon.arrow.forward {
  background-color: #000;
}
section.layout .btn.icon_black a .icon svg,
section.layout .btn.icon_black a .icon.plus svg,
section.layout .btn.icon_black a .icon.arrow.back svg,
section.layout .btn.icon_black a .icon.arrow.forward svg,
footer .btn.icon_black a .icon svg,
footer .btn.icon_black a .icon.plus svg,
footer .btn.icon_black a .icon.arrow.back svg,
footer .btn.icon_black a .icon.arrow.forward svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 24px;
  opacity: 1;
}
section.layout .btn.icon_black a .icon svg path,
section.layout .btn.icon_black a .icon.plus svg path,
section.layout .btn.icon_black a .icon.arrow.back svg path,
section.layout .btn.icon_black a .icon.arrow.forward svg path,
footer .btn.icon_black a .icon svg path,
footer .btn.icon_black a .icon.plus svg path,
footer .btn.icon_black a .icon.arrow.back svg path,
footer .btn.icon_black a .icon.arrow.forward svg path {
  fill: #fff;
  stroke: #fff;
}
section.layout .btn.white span.link_text,
footer .btn.white span.link_text {
  color: #fff;
}
section.layout .btn.white:hover,
footer .btn.white:hover {
  color: #000;
}
section.layout .btn.white:hover span,
footer .btn.white:hover span {
  color: #000;
}
section.layout .btn.brd_white a,
footer .btn.brd_white a {
  outline: 1px solid rgb(245, 245, 245);
  box-shadow: 0 0 1px 0px white inset, 0 0 1px 0px white;
}
section.layout .btn.bg_grey a,
footer .btn.bg_grey a {
  background: rgba(16, 16, 20, 0.1);
}
section.layout .link_red a,
footer .link_red a {
  background: #fb471f;
  color: #000;
  font-weight: 400;
}
section.layout .link_red a span.link_text,
footer .link_red a span.link_text {
  color: #000;
}
section.layout .link_red a span.icon,
footer .link_red a span.icon {
  background-color: #000;
}
section.layout .link_red a svg,
footer .link_red a svg {
  stroke: #fff;
}
section.layout .link_red a:hover,
footer .link_red a:hover {
  color: #000;
  font-weight: 400;
}
section.layout .link_red a:hover span,
footer .link_red a:hover span {
  color: #000;
}
section.layout .link_red a.brd_white a:hover,
footer .link_red a.brd_white a:hover {
  outline: 1px solid #fff;
  box-shadow: 0 0 1px 0px #fff inset, 0 0 1px 0px #fff;
}
section.layout .link_red a::before,
footer .link_red a::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0%;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99);
}
section.layout .link_red a:after,
footer .link_red a:after {
  display: none;
}
section.layout .link_red a:hover,
footer .link_red a:hover {
  transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
  -webkit-transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
}
section.layout .link_red a:hover::before,
footer .link_red a:hover::before {
  left: 0;
  width: 100%;
  opacity: 1;
  z-index: 0;
}
section.layout .link_red a:hover span,
footer .link_red a:hover span {
  z-index: 1;
}
section.layout .link_red.brdr_white a:hover,
footer .link_red.brdr_white a:hover {
  transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
  -webkit-transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
}
section.layout .link_white a,
footer .link_white a {
  background: rgba(16, 16, 20, 0.1);
  color: #000;
}
section.layout .link_white a span,
footer .link_white a span {
  color: #000;
}
section.layout .link_white a span.icon,
footer .link_white a span.icon {
  background-color: #000;
}
section.layout .link_white a svg,
footer .link_white a svg {
  stroke: #fff;
}
section.layout .link_white a:hover,
footer .link_white a:hover {
  color: #fff;
}
section.layout .link_white a:hover span.link_text,
footer .link_white a:hover span.link_text {
  color: #fff;
}
section.layout .link_white a::before,
footer .link_white a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fb471f;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99);
}
section.layout .link_white a:after,
footer .link_white a:after {
  display: none;
}
section.layout .link_white a:hover::before,
footer .link_white a:hover::before {
  height: 100%;
  width: 100%;
  bottom: 0;
  opacity: 1;
}
section.layout .link_white.brdr_white a,
footer .link_white.brdr_white a {
  outline: 1px solid #fff;
}
section.layout .link_white.brdr_white a:hover,
footer .link_white.brdr_white a:hover {
  outline: 1px solid #fb471f;
  box-shadow: 0 0 1px 0px #fb471f inset, 0 0 1px 0px #fb471f;
  transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
  -webkit-transition: all 0.5s cubic-bezier(0.81, 0, 0.33, 0.99) 0.2s;
}
section.layout .hover_blue:hover a,
footer .hover_blue:hover a {
  color: #fff;
  font-weight: 400;
}
section.layout .hover_blue:hover a:hover,
footer .hover_blue:hover a:hover {
  color: #fff;
}
section.layout .hover_blue:hover a:hover span,
footer .hover_blue:hover a:hover span {
  color: #fff;
}
section.layout .hover_blue:hover a:hover::before,
footer .hover_blue:hover a:hover::before {
  background: #01344b;
}
section.layout.bg_grey,
footer.bg_grey {
  background-color: #212124;
}
section.layout.icon_left a span.link_text,
footer.icon_left a span.link_text {
  margin-right: 16px;
}

/********************************************************* 
  Single Posts / News Single
**********************************************************/
body.pt-post section.layout:first-child:not(.layout.hero-main) {
  padding-top: 12rem;
  padding-bottom: 2rem;
}
body.pt-post #poststuff section.layout:first-child:not(.layout.hero-main) {
  padding-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
body.pt-post #poststuff section.layout:first-child:not(.layout.hero-main) + section.layout.white-bg,
body.pt-post section.layout:first-child:not(.layout.hero-main) + section.layout.white-bg {
  padding-top: 4rem;
}

@media (width >= 1025px) {
  /**
   * Generates a responsive font size using CSS clamp().
   *
   * @param {Number} $minFontSize - The minimum font size (e.g., 1rem or 16px).
   * @param {Number} $maxFontSize - The maximum font size (e.g., 3.5rem or 56px).
   * @param {Number} $minDeviceWidth - The minimum viewport width (e.g., 20rem or 320px).
   * @param {Number} $maxDeviceWidth - The maximum viewport width (e.g., 80rem or 1280px).
   * @return {String} A CSS clamp() function string.


  // --- Usage Example ---
  .hero-title {
    // Example: 1rem (16px) at 320px screen width up to 3.5rem (56px) at 1280px
    font-size: responsiveFontSize(1rem, 3.5rem, 20rem, 80rem);
  }

  .subtitle {
      // Another example using px values
      font-size: responsiveFontSize(14px, 24px, 400px, 1000px);
  }

  output

  .hero-title {
    font-size: clamp(1rem, -0.875rem + 8.33333vw, 3.5rem);
  }

  .subtitle {
    font-size: clamp(14px, 5px + 2.5vw, 24px);
  }

   */
  #poststuff .layout[data-layout],
  .layout[data-layout] {
    width: 100%;
    padding: 0;
  }
  #poststuff .layout[data-layout] section.layout[data-component],
  .layout[data-layout] section.layout[data-component] {
    width: 100%;
    max-width: 100%;
    border: none;
  }
  #poststuff .layout[data-layout] section.layout[data-component] > div:first-child,
  .layout[data-layout] section.layout[data-component] > div:first-child {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  #poststuff .layout[data-layout] section.layout[data-component] > div:first-child.full,
  .layout[data-layout] section.layout[data-component] > div:first-child.full {
    max-width: 100%;
  }
  #poststuff .layout[data-layout] section.layout[data-component=hero] > div:first-child,
  .layout[data-layout] section.layout[data-component=hero] > div:first-child {
    max-width: 100%;
  }
  #poststuff .layout[data-layout] section.layout[data-component=hero] > div:first-child > .content > .head,
  .layout[data-layout] section.layout[data-component=hero] > div:first-child > .content > .head {
    max-width: 90%;
    margin: 0 auto;
  }
}
