@charset "UTF-8";
/*
Theme Name: Thème Groupe RAGNI 🚨
Theme URI: 
Author: B17
Author URI: https://b17.fr
Description: Thème Groupe RAGNI
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: group-ragni
*/
/****************************************************************************/
/* BASE
/****************************************************************************/
@import url("https://use.typekit.net/ggq3boj.css");
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/****************************************************************************/
/* MIXINS
/****************************************************************************/
/****************************************************************************/
/* COULEURS
/****************************************************************************/
.black {
  color: #122830;
}

.white {
  color: #FFFFFF;
}

.yellow {
  color: #F9C113;
}

.green {
  color: #34646A;
}

.green-light {
  color: #94C11A;
}

.blue {
  color: #265298;
}

.red {
  color: #AD0E23;
}

.orange {
  color: #E46222;
}

.bg-main {
  background-color: var(--wp--preset--color--primary);
}

.bg-black {
  background-color: #122830;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-yellow {
  background-color: #F9C113;
}

.bg-green {
  background-color: #34646A;
}

.bg-green-light {
  background-color: #94C11A;
}

.bg-blue {
  background-color: #265298;
}

.bg-red {
  background-color: #AD0E23;
}

.bg-orange {
  background-color: #E46222;
}

/****************************************************************************/
/* POLICES / CUSTOM FONTS
/****************************************************************************/
:root {
  --bs-font-sans-serif: "myriad-pro", sans-serif;
}

h1 {
  font-size: var(--wp--preset--font-size--xxxl);
  font-weight: var(--wp--custom--font-weight--bold);
}

h2 {
  font-size: var(--wp--preset--font-size--xxl);
  font-weight: var(--wp--custom--font-weight--bold);
  text-transform: uppercase;
}

h3 {
  font-size: var(--wp--preset--font-size--xl);
  color: var(--wp--preset--color--accent);
  font-weight: var(--wp--custom--font-weight--semibold);
}

h4 {
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--medium);
}

h5 {
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--medium);
}

h6 {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: var(--wp--custom--font-weight--bold);
}

/*
* WIDTH
*
*/
.max-w-l {
  max-width: 880px;
  margin: 0 auto;
}

.max-w-md {
  max-width: 768px;
  margin: 0 auto;
}

.max-w-sm {
  max-width: 576px;
  margin: 0 auto;
}

body {
  container-type: inline-size;
  font-size: var(--wp--preset--font-size--default);
}

.h-full {
  height: 100%;
}

/****************************************************************************/
/* UTILS
/****************************************************************************/
/****************************************************************************/
/* TEMPLATE PARTS
/****************************************************************************/
/****************************************************************************/
/* HEADER + MENU + BREADCRUMB
/****************************************************************************/
.logo {
  gap: 3rem;
}
.logo .logo-img, .logo .custom-logo {
  height: 100px;
  width: 100%;
}
.logo .baseline {
  position: relative;
  display: inline-block;
  font-family: var(--wp--preset--font-family--primary);
  color: var(--wp--preset--color--white);
  font-size: var(--wp--custom--font-size--baseline);
  font-weight: var(--wp--custom--font-weight--bold);
  margin-top: -1rem;
}

@container (max-width: 992px) {
  .logo {
    gap: 1rem;
  }
}
@container (max-width: 768px) {
  .logo .logo-img, .logo .custom-logo {
    max-width: 110px;
    height: auto;
  }
}
@container (min-width: 1600px) {
  header > .container {
    max-width: 90%;
  }
}
/****************************************************************************/
/* SEARCH TRIGGER
/****************************************************************************/
.search-trigger {
  z-index: 120;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.search-trigger svg {
  display: block;
  transition: opacity 0.2s ease;
}
.search-trigger:hover svg {
  opacity: 0.75;
}

header.active .search-trigger svg * {
  stroke: var(--wp--preset--color--primary);
}

/****************************************************************************/
/* SEARCH OVERLAY
/****************************************************************************/
.overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 299;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  background: rgba(18, 40, 48, 0.2);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-overlay.active {
  transform: translateY(0);
}
.search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 1rem;
  position: relative;
  z-index: 301;
}
.search-overlay__inner form {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 1rem;
}
.search-overlay__inner input[type=search] {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--wp--preset--color--white);
  color: var(--wp--preset--color--white);
  font-size: var(--wp--custom--font-size--baseline);
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.search-overlay__inner input[type=search]::-moz-placeholder {
  color: var(--wp--preset--color--white);
  opacity: 0.9;
}
.search-overlay__inner input[type=search]::placeholder {
  color: var(--wp--preset--color--white);
  opacity: 0.9;
}
.search-overlay__inner input[type=search]:focus {
  border-bottom-color: var(--wp--preset--color--white);
}
.search-overlay__inner button[type=submit] {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.search-overlay__inner button[type=submit]:hover {
  opacity: 1;
}
.search-overlay__close {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.search-overlay__close:hover {
  opacity: 1;
}

.home .header .nav_bar_container, .page-template-page .header .nav_bar_container, .blog .header .nav_bar_container, .single-post .header .nav_bar_container, .page-template-page-contact .header .nav_bar_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/****************************************************************************/
/* FOOTER
/****************************************************************************/
footer p {
  font-size: var(--wp--preset--font-size--xxs);
}
footer p > a {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}

.underlined {
  position: relative;
  padding-bottom: 25px !important;
}
.underlined:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  width: 230px;
  background: #94c11a;
  background: linear-gradient(90deg, #94c11a 0%, #265297 33%, #ad0e23 66%, #e46222 100%);
  content: "";
}

.footer .h2 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 300;
}
.footer .h2 a {
  display: inline-block;
  margin-left: 5px;
}
.footer .list-inline-item a:hover {
  color: var(--wp--preset--color--accent);
}

/****************************************************************************/
/* ELEMENTS
/****************************************************************************/
a {
  color: var(--wp--preset--color--accent);
  text-decoration: underline;
}
a:hover {
  color: var(--wp--preset--color--accent);
}

.is-style-fill a, .wp-block-button a {
  transition: all 0.3s ease-in-out;
}
.is-style-fill a:hover, .wp-block-button a:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}

.is-style-default .is-style-fill a {
  transition: all 0.3s ease-in-out;
}
.is-style-default .is-style-fill a:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}

.btn-main {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-main:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}

.btn[target=_blank] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.btn[target=_blank]:after {
  content: "";
  margin-left: 0.5em;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOS4yOTEiIGhlaWdodD0iMTkuMjkxIiB2aWV3Qm94PSIwIDAgMTkuMjkxIDE5LjI5MSI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1saW5rLW91dCIgZGF0YS1uYW1lPSJJY29uIGFrYXItbGluay1vdXQiIGQ9Ik0xNS4yNTgsOS4wMzJsNC45Mi00LjkyTTE3LjQzNiwyLjVoNC4zNTVWNi44NTVtLTEuNjEzLDYuODM5djQuMzU1YTEuNzQyLDEuNzQyLDAsMCwxLTEuNzQyLDEuNzQySDYuMjQyQTEuNzQyLDEuNzQyLDAsMCwxLDQuNSwxOC4wNDlWNS44NTVBMS43NDIsMS43NDIsMCwwLDEsNi4yNDIsNC4xMTNIMTAuNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMuNSAtMS41KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn[target=_blank]:hover:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOS4yOTEiIGhlaWdodD0iMTkuMjkxIiB2aWV3Qm94PSIwIDAgMTkuMjkxIDE5LjI5MSI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1saW5rLW91dCIgZGF0YS1uYW1lPSJJY29uIGFrYXItbGluay1vdXQiIGQ9Ik0xNS4yNTgsOS4wMzJsNC45Mi00LjkyTTE3LjQzNiwyLjVoNC4zNTVWNi44NTVtLTEuNjEzLDYuODM5djQuMzU1YTEuNzQyLDEuNzQyLDAsMCwxLTEuNzQyLDEuNzQySDYuMjQyQTEuNzQyLDEuNzQyLDAsMCwxLDQuNSwxOC4wNDlWNS44NTVBMS43NDIsMS43NDIsMCwwLDEsNi4yNDIsNC4xMTNIMTAuNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMuNSAtMS41KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMTIyODMwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
}

/****************************************************************************/
/* HAMBURGER MENU
/****************************************************************************/
body.nav-open {
  overflow: hidden;
  height: 100vh;
}

#nav-hamburger {
  width: 42px;
  height: 28px;
  position: relative;
  z-index: 120;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--wp--preset--color--white);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-hamburger span:nth-child(1) {
  top: 0px;
}

#nav-hamburger span:nth-child(2),
#nav-hamburger span:nth-child(3) {
  top: 13px;
}

#nav-hamburger span:nth-child(4) {
  top: 26px;
}

#nav-hamburger.open span {
  background: var(--wp--preset--color--primary);
}

#nav-hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header__nav-container {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}
.header__nav-container .header__nav {
  display: flex;
  align-items: flex-start;
  max-width: 576px;
  padding: 10em 0 2em 4em;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: var(--wp--preset--color--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--wp--preset--font-family--primary);
}
.header__nav-container .header__nav .navbar-nav {
  gap: var(--wp--preset--spacing--l);
  width: 100%;
}
.header__nav-container.active {
  opacity: 1;
  visibility: visible;
}
.header__nav-container.active .header__nav {
  transform: translateX(0);
}
.header__nav-container .nav-item:not(.btn):not(.dropdown) {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--l);
  position: relative;
}
.header__nav-container .nav-item:not(.btn):not(.dropdown):after {
  content: "";
  position: relative;
  right: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  transition: all 0.3s ease-in-out;
}
.header__nav-container .nav-item:not(.btn):not(.dropdown):hover:after {
  width: 100%;
}
.header__nav-container .nav-item-link {
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--semibold);
  color: var(--wp--preset--color--dark);
  text-decoration: none;
  padding: 10px 0;
  flex-shrink: 0;
}
.header__nav-container .nav-item.dropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header__nav-container .has-dropdown-menu {
  width: 100%;
}
.header__nav-container .has-dropdown-menu .nav-item-link {
  font-size: var(--wp--preset--font-size--s);
  font-weight: var(--wp--custom--font-weight--medium);
  color: var(--wp--preset--color--dark);
  text-decoration: none;
  padding: 10px 10px;
  flex-shrink: 0;
}
.header__nav-container .btn {
  width: -moz-max-content;
  width: max-content;
}
.header__nav-container .btn a {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}
.header__nav-container .btn:hover a {
  color: var(--wp--preset--color--primary);
}

/*
*
* Language switcher
*
*/
.lang-switcher {
  z-index: 120;
  padding: 0 var(--wp--preset--spacing--s);
}
.lang-switcher .menu {
  position: relative;
}
.lang-switcher .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  z-index: 100;
}
.lang-switcher a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--bold);
}
.lang-switcher li.wpml-ls-current-language {
  position: relative;
  padding-right: 1.5em;
}
.lang-switcher li.wpml-ls-current-language > a {
  color: var(--wp--preset--color--white);
}
.lang-switcher li.wpml-ls-current-language:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC43NzMiIGhlaWdodD0iOC44NTQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0xLjQxNCAxLjQxNCA2LjA2NiA2LjAyIDUuODc5LTYuMDIiIGRhdGEtbmFtZT0iVHJhY8OpIDMxOTgyIi8+PC9zdmc+");
  background-position: center center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.lang-switcher li.wpml-ls-current-language:hover .sub-menu {
  display: block;
}

.active .lang-switcher li.wpml-ls-current-language:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC43NzMiIGhlaWdodD0iOC44NTQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0xLjQxNCAxLjQxNCA2LjA2NiA2LjAyIDUuODc5LTYuMDIiIGRhdGEtbmFtZT0iVHJhY8OpIDMxOTgyIi8+PC9zdmc+");
}
.active .lang-switcher li.wpml-ls-current-language > a {
  color: var(--wp--preset--color--dark);
}
.active .lang-switcher li.wpml-ls-current-language > a:hover {
  color: var(--wp--preset--color--dark);
  opacity: 0.8;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.wp-block-list, ol.wp-block-list {
  line-height: 1.2;
}
ul.wp-block-list li, ol.wp-block-list li {
  position: relative;
  margin-bottom: 0.625rem;
}

ul.wp-block-list li {
  padding-left: 32px;
}
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  background: var(--wp--preset--color--dark);
  width: 15px;
  height: 2px;
  left: 0px;
  top: 8px;
}

.is-style-primary-background ul.wp-block-list li::before {
  background: var(--wp--preset--color--white);
}

ol.wp-block-list {
  counter-reset: section;
}
ol.wp-block-list li {
  padding-left: 32px;
}
ol.wp-block-list li:before {
  font-weight: 700;
  position: absolute;
  left: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: section;
  color: var(--wp--preset--color--dark);
  background: var(--wp--preset--color--accent);
  content: counter(section, decimal-leading-zero);
}

.rank-math-breadcrumb {
  padding-top: var(--wp--preset--spacing--l);
  padding-bottom: var(--wp--preset--spacing--s);
}
.rank-math-breadcrumb a {
  text-decoration: none;
}

.breadcrumbs.bg-white a, .breadcrumbs.bg-white p {
  color: var(--wp--preset--color--dark);
}
.breadcrumbs.bg-main a, .breadcrumbs.bg-main p {
  color: var(--wp--preset--color--white);
}

.fluentform {
  background: var(--wp--preset--color--light-gray);
  padding-top: var(--wp--preset--spacing--l);
  padding-bottom: var(--wp--preset--spacing--l);
  padding-left: var(--wp--preset--spacing--l);
  padding-right: var(--wp--preset--spacing--l);
  max-width: var(--wp--custom--container--m);
}
.fluentform form .ff-el-input--label {
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-dropzone {
  margin-top: 24px;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn {
  background: transparent;
  border: 1px solid var(--wp--preset--color--primary);
  padding: 12px 4px;
  border-radius: 0;
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn > span {
  text-decoration: underline;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn span.green {
  color: var(--wp--preset--color--secondary);
  font-weight: var(--wp--custom--font-weight--bold);
}
.fluentform form .ff-dropzone .ff-uploaded-list {
  margin-top: 5px !important;
}
.fluentform form .ff-dropzone + .ff-custom_html {
  margin-top: 0;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone + .ff-custom_html p {
  margin-top: 0;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
}
.fluentform .ff-el-form-control:not(textarea),
.fluentform .frm-fluent-form .choices__inner {
  padding: 12px 0 0 0;
  height: 32px;
  outline: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.fluentform .ff-el-form-control:not(textarea)::-moz-placeholder, .fluentform .frm-fluent-form .choices__inner::-moz-placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea)::placeholder,
.fluentform .frm-fluent-form .choices__inner::placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea):focus,
.fluentform .frm-fluent-form .choices__inner:focus {
  border-color: var(--wp--preset--color--primary);
  outline-color: var(--wp--preset--color--primary);
  background: transparent;
}
.fluentform select,
.fluentform textarea,
.fluentform .ff-el-form-control:not(textarea),
.fluentform .frm-fluent-form .choices__inner {
  border-bottom: 2px solid var(--wp--preset--color--primary);
}
.fluentform textarea.ff-el-form-control {
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 0;
  background: transparent;
  padding: var(--wp--preset--spacing--xxs);
  outline-color: var(--wp--preset--color--primary);
}
.fluentform textarea.ff-el-form-control:focus {
  border-color: var(--wp--preset--color--primary);
  outline-color: var(--wp--preset--color--primary);
  background: transparent;
}
.fluentform .ff-el-group {
  margin-top: 15px;
}
.fluentform .ff-btn-submit {
  position: relative;
  border-radius: var(--wp--custom--radius--m);
  cursor: pointer;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid transparent;
  padding-top: calc(var(--wp--preset--spacing--xs) - 1px);
  padding-right: var(--wp--preset--spacing--xs);
  padding-bottom: calc(var(--wp--preset--spacing--xs) - 1px);
  padding-left: var(--wp--preset--spacing--xs);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) {
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label {
  position: absolute;
  top: 4px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label + .ff-el-input--content {
  position: relative;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label + .ff-el-input--content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active {
  top: -12px;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active label {
  color: var(--wp--preset--color--primary);
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
  font-weight: var(--wp--custom--font-weight--bold);
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active.ff-el-is-required.asterisk-right label:after {
  color: var(--wp--preset--color--primary);
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active + .ff-el-input--content:after {
  width: 100%;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
}
.fluentform .ff-t-container .ff-el-group:not(.ff-dropzone):not(.ff-custom_html):is(.ff-el-is-error) .ff-el-form-control:not(textarea) {
  border-color: var(--fluentform-danger);
}

.wp-rgpd-block {
  font-size: clamp(0.813rem, 0.813rem + 0vw, 0.813rem);
}
.wp-rgpd-block p {
  margin: 0;
}
.wp-rgpd-block .wp-rgpd-block__content {
  height: 50px;
  overflow-y: auto;
}

@media (min-width: 1200px) {
  .frm-fluent-form .ff-t-container {
    gap: var(--wp--preset--spacing--m);
  }
}
hr.gradient {
  margin: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  opacity: 1;
}

/****************************************************************************/
/* TEMPLATE
/****************************************************************************/
/****************************************************************************/
/* HOMEPAGE
/****************************************************************************/
.home h1.wp-block-heading {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--xxxl);
  font-weight: var(--wp--custom--font-weight--light);
}
.home h1.wp-block-heading strong {
  font-weight: var(--wp--custom--font-weight--bold);
}
.home h1.wp-block-heading:before {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 180px;
  background: rgb(148, 193, 26);
  background: linear-gradient(90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  content: "";
}
.home h1.wp-block-heading:after {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 180px;
  background: rgb(148, 193, 26);
  background: linear-gradient(90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  content: "";
}

.video-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-container:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2;
  display: none;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: var(--wp--preset--spacing--l) 0;
}
.blog-filters__btn {
  background: transparent;
  color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--white);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.blog-filters__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.blog-filters__btn.is-active {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}

.blog-posts {
  position: relative;
  min-height: 200px;
  transition: opacity 0.3s ease;
}
.blog-posts.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.blog-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding: var(--wp--preset--spacing--l) 0;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  color: var(--wp--preset--color--white);
  font-weight: var(--wp--custom--font-weight--bold);
  font-size: var(--wp--preset--font-size--default);
  text-decoration: none;
  transition: all 0.25s ease;
}
.blog-pagination .page-numbers:hover {
  color: var(--wp--preset--color--accent);
}
.blog-pagination .page-numbers.current {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}

.no-posts {
  color: var(--wp--preset--color--white);
  text-align: center;
  padding: var(--wp--preset--spacing--xl) 0;
  font-size: var(--wp--preset--font-size--l);
  width: 100%;
}

.post--item {
  margin: 1em 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.post--item .absolute-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post--item .post--meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--xs);
}
.post--item .description {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
}
.post--item .post--title {
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--medium);
}
.post--item .wp-post-image {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.post--meta .post--category, .news-heading .post--category {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--dark);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: 0.2rem 0.4rem;
  display: block;
}
.post--meta .post--date, .news-heading .post--date {
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
}

@media (max-width: 360px) {
  .product--item {
    width: 100%;
  }
}
.product--item {
  position: relative;
}
.product--item .absolute-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product--item .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--wp--preset--color--primary);
  border-bottom-left-radius: var(--wp--custom--radius--xl);
  background-color: var(--wp--preset--color--light-gray);
  overflow: hidden;
}
.product--item h2 {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--medium);
  text-transform: initial;
}
.product--item .image {
  height: 420px;
  overflow: hidden;
}
.product--item .image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  max-height: 260px;
  padding: var(--wp--preset--spacing--m) 0;
  transition: all 0.5s ease-out;
}
.product--item .product--content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--wp--preset--spacing--s);
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--l) 0 var(--wp--preset--spacing--l);
  position: absolute;
  bottom: 0;
  transform: translateY(0%);
  transition: all 0.2s ease-out;
  background: linear-gradient(to bottom, transparent, var(--wp--preset--color--white));
}
.product--item .product--description {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
  font-size: var(--wp--preset--font-size--xxs);
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.product--item .product--description a {
  width: -moz-max-content;
  width: max-content;
}
.product--item .product--brand {
  font-weight: var(--wp--custom--font-weight--bold);
}
.product--item:hover .image img {
  opacity: 0;
  transform: translateY(-100%);
}
.product--item:hover .product--content {
  transform: translateY(0%);
  top: 0;
}
.product--item:hover .product--description {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.products-posts {
  position: relative;
  min-height: 200px;
  transition: opacity 0.3s ease;
  row-gap: var(--wp--preset--spacing--m);
}
.products-posts.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.products-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding: var(--wp--preset--spacing--l) 0;
}
.products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  color: var(--wp--preset--color--primary);
  font-weight: var(--wp--custom--font-weight--bold);
  font-size: var(--wp--preset--font-size--default);
  text-decoration: none;
  transition: all 0.25s ease;
}
.products-pagination .page-numbers:hover {
  color: var(--wp--preset--color--accent);
}
.products-pagination .page-numbers.current {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

.products-layout {
  padding-top: var(--wp--preset--spacing--xl);
  padding-bottom: var(--wp--preset--spacing--xl);
}

.products-filters__mobile-bar {
  padding: var(--wp--preset--spacing--s) 0;
  background: var(--wp--preset--color--primary);
}
@media (min-width: 1200px) {
  .products-filters__mobile-bar {
    display: none;
  }
}
@media (max-width: 992px) {
  .products-filters__mobile-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
  }
}

.products-filters__mobile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--wp--preset--color--white);
  border-radius: 50px;
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.products-filters__mobile-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.products-filters__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1049;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.products-filters__overlay.is-visible {
  display: block;
  opacity: 1;
}

@media (min-width: 1200px) {
  .products-filters__sidebar {
    display: block !important;
    position: static;
  }
}
@media (max-width: 1199.98px) {
  .products-filters__sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    z-index: 1050;
    background: var(--wp--preset--color--primary);
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: var(--wp--preset--spacing--xl) var(--wp--preset--spacing--l);
  }
  .products-filters__sidebar.is-open {
    left: 0;
  }
}

.products-filters__close {
  position: absolute;
  top: var(--wp--preset--spacing--m);
  right: var(--wp--preset--spacing--m);
  background: transparent;
  border: none;
  color: var(--wp--preset--color--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: opacity 0.2s ease;
}
.products-filters__close:hover {
  opacity: 0.7;
}

.products-filters__inner {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--m);
}
@media (max-width: 991.98px) {
  .products-filters__inner {
    padding-top: var(--wp--preset--spacing--l);
  }
}

.products-filters__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.products-filters__select-wrapper {
  position: relative;
  width: 100%;
}
.products-filters__select-wrapper label {
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--xxxs);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--primary);
  opacity: 0.8;
  padding-left: 1rem;
}

.products-filters__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--wp--preset--color--primary);
  border-radius: 50px;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: 0.6rem 2.5rem 0.6rem 1.25rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: background-color 0.2s ease;
}
.products-filters__select:hover, .products-filters__select:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}
.products-filters__select option {
  color: var(--wp--preset--color--primary);
}

.is-open label {
  color: var(--wp--preset--color--white);
}
.is-open .products-filters__select {
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}
.is-open .products-filters__submit {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}
.is-open .products-filters__reset {
  color: var(--wp--preset--color--white);
}

.products-filters__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: var(--wp--preset--spacing--s);
}

.products-filters__submit {
  width: 100%;
  text-align: center;
}

.products-filters__reset {
  background: transparent;
  border: none;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
  padding: 0.25rem 0;
  transition: opacity 0.2s ease;
}
.products-filters__reset:hover {
  opacity: 0.7;
}

@container (min-width: 1920px) {
  .page-content .wp-block-columns.alignfull {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.search-results .page-content {
  padding-top: var(--wp--preset--spacing--l);
  padding-bottom: var(--wp--preset--spacing--l);
}
.search-results__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--s);
  margin-bottom: var(--wp--preset--spacing--l);
}
.search-results__header h1 em {
  font-style: normal;
  color: var(--wp--preset--color--accent);
}
.search-results__count {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--default);
  opacity: 0.7;
  margin: 0;
}
.search-results__count::before {
  content: "–";
  margin-right: 0.4rem;
}

.search-grid {
  margin-top: var(--wp--preset--spacing--m);
}

.search-card {
  margin-bottom: var(--wp--preset--spacing--l);
}
.search-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--wp--preset--color--primary);
  border-bottom-left-radius: var(--wp--custom--radius--xl);
  background-color: var(--wp--preset--color--light-gray);
  overflow: hidden;
}
.search-card__image {
  height: 220px;
  overflow: hidden;
}
.search-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.search-card:hover .search-card__image img {
  transform: scale(1.04);
}
.search-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--wp--preset--spacing--xs);
  padding: var(--wp--preset--spacing--l);
}
.search-card__type {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-card__title {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--medium);
  text-transform: initial;
  margin: 0;
}
.search-card__excerpt {
  font-size: var(--wp--preset--font-size--default);
  color: var(--wp--preset--color--primary);
  opacity: 0.75;
  margin: 0;
  flex: 1;
}
.search-card__action {
  margin-top: var(--wp--preset--spacing--s);
}
.search-card__action .btn {
  width: -moz-max-content;
  width: max-content;
}

.search-pagination {
  display: flex;
  justify-content: flex-end;
  padding: var(--wp--preset--spacing--l) 0;
}
.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  color: var(--wp--preset--color--primary);
  font-weight: var(--wp--custom--font-weight--bold);
  font-size: var(--wp--preset--font-size--default);
  text-decoration: none;
  transition: all 0.25s ease;
}
.search-pagination .page-numbers:hover {
  color: var(--wp--preset--color--accent);
}
.search-pagination .page-numbers.current {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

.search-no-results {
  padding: var(--wp--preset--spacing--xl) 0;
  color: var(--wp--preset--color--primary);
  opacity: 0.7;
}

/****************************************************************************/
/* PATTERNS
/****************************************************************************/
@container (max-width: 576px) {
  .is-section-newsletter > .wp-block-group {
    justify-content: center;
  }
}

/****************************************************************************/
/* BLOCKS
/****************************************************************************/
.wp-block-query .category {
  padding: 0.2rem 0.4rem;
}
.wp-block-query .wp-block-post-date {
  font-weight: var(--wp--custom--font-weight--bold);
  letter-spacing: 0.05em;
}

@container (max-width: 600px) {
  .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (max-width: 480px) {
  .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--wp--preset--color--white);
  padding-bottom: 1em;
}
.wp-block-accordion-heading {
  position: relative;
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--white);
}
.wp-block-accordion .is-open .wp-block-accordion-heading:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--white);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
}
.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

main.has-hero {
  overflow: hidden;
}

.hero {
  position: relative;
  height: 40vh;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.is-style-primary-background.alignfull,
.wp-block-group.alignfull.is-style-primary-background {
  overflow: hidden;
}

@media (min-width: 576px) {
  .is-wrapper {
    margin-left: calc((100vw - 540px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 768px) {
  .is-wrapper {
    margin-left: calc((100vw - 720px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 992px) {
  .is-wrapper {
    margin-left: calc((100vw - 960px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 1200px) {
  .is-wrapper {
    margin-left: calc((100vw - 1140px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 1400px) {
  .is-wrapper {
    margin-left: calc((100vw - 1320px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}

.is-style-heading-group {
  display: flex !important;
  align-items: flex-end;
  overflow: visible;
  margin-left: 0px !important;
}
@media (min-width: 576px) {
  .is-style-heading-group {
    margin-left: calc((100vw - 540px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 768px) {
  .is-style-heading-group {
    margin-left: calc((100vw - 720px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 992px) {
  .is-style-heading-group {
    margin-left: calc((100vw - 960px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 1200px) {
  .is-style-heading-group {
    margin-left: calc((100vw - 1140px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
@media (min-width: 1400px) {
  .is-style-heading-group {
    margin-left: calc((100vw - 1320px) / 2 - var(--wp--style--root--padding-left)) !important;
  }
}
.is-style-heading-group h1 {
  max-width: 70%;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--xxxl);
}
.is-style-heading-group h1 strong {
  font-weight: 400;
  font-size: var(--wp--preset--font-size--xxl);
}
.is-style-heading-group::after {
  content: "";
  position: relative;
  bottom: 30px;
  flex: 1;
  width: 100vw;
  height: 2px;
  margin-bottom: 0.45em;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
}

h2.is-style-heading-border {
  position: relative;
  margin-bottom: 0.5em;
}
h2.is-style-heading-border:after {
  position: absolute;
  bottom: -0.2em;
  left: 0;
  height: 2px;
  width: 120px;
  background: rgb(148, 193, 26);
  background: linear-gradient(90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
  content: "";
}

.is-style-gradient-background h2.is-style-heading-border:after {
  background: var(--wp--preset--color--white);
}

.heading h1 {
  color: var(--wp--preset--color--white);
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--l);
}
.heading h1::after {
  content: "";
  position: relative;
  flex: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(-90deg, rgb(148, 193, 26) 0%, rgb(38, 82, 151) 33%, rgb(173, 14, 35) 66%, rgb(228, 98, 34) 100%);
}

.heading-bottom h1 {
  color: var(--wp--preset--color--white);
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--l);
}

.news-heading {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
  color: var(--wp--preset--color--white);
}

.is-card {
  border: 1px solid var(--wp--preset--color--white);
  border-bottom-left-radius: var(--wp--custom--radius--xl);
}

.block-bento {
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--xs);
  background-color: var(--wp--preset--color--primary);
}

.bento-test {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 1920px;
  margin: 0 auto;
}
.bento-test .bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--wp--preset--color--white);
  background-color: rgba(18, 40, 48, 0.8);
  background-color: color-mix(in srgb, var(--wp--preset--color--primary, #122830) 80%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bento-test .bento-overlay .inner {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.bento-test .bento-overlay__location {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  padding: 0.2rem 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.bento-test .bento-overlay__excerpt {
  margin: 0;
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--medium);
}
.bento-test .bento-overlay__link {
  color: var(--wp--preset--color--white);
}
.bento-test .bento-overlay__link span.label {
  text-decoration: underline;
}
.bento-test .bento-overlay__link span.icon {
  margin-left: 0.5em;
}
.bento-test figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bento-test figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bento-test figure:hover .bento-overlay {
  opacity: 1;
  pointer-events: auto;
}
.bento-test figure:hover .bento-overlay .inner {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .bento-test {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .bento-test {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(var(--bento-rows, 6), minmax(120px, 1fr));
  }
  .bento-test .bento-overlay__excerpt {
    font-size: var(--wp--preset--font-size--l);
  }
  .bento-test figure {
    aspect-ratio: auto;
    min-height: 0;
  }
  .bento-test figure:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(2) {
    grid-column: 1;
    grid-row: 4/span 3;
  }
  .bento-test figure:nth-child(3) {
    grid-column: 2;
    grid-row: 4/span 3;
  }
  .bento-test figure:nth-child(4) {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .bento-test figure:nth-child(5) {
    grid-column: 3;
    grid-row: 3/span 2;
  }
  .bento-test figure:nth-child(6) {
    grid-column: 3;
    grid-row: 5/span 2;
  }
  .bento-test figure:nth-child(7) {
    grid-column: 1/span 2;
    grid-row: 7/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(8) {
    grid-column: 1;
    grid-row: 10/span 3;
  }
  .bento-test figure:nth-child(9) {
    grid-column: 2;
    grid-row: 10/span 3;
  }
  .bento-test figure:nth-child(10) {
    grid-column: 3;
    grid-row: 7/span 2;
  }
  .bento-test figure:nth-child(11) {
    grid-column: 3;
    grid-row: 9/span 2;
  }
  .bento-test figure:nth-child(12) {
    grid-column: 3;
    grid-row: 11/span 2;
  }
  .bento-test figure:nth-child(13) {
    grid-column: 1/span 2;
    grid-row: 13/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(14) {
    grid-column: 1;
    grid-row: 16/span 3;
  }
  .bento-test figure:nth-child(15) {
    grid-column: 2;
    grid-row: 16/span 3;
  }
  .bento-test figure:nth-child(16) {
    grid-column: 3;
    grid-row: 13/span 2;
  }
  .bento-test figure:nth-child(17) {
    grid-column: 3;
    grid-row: 15/span 2;
  }
  .bento-test figure:nth-child(18) {
    grid-column: 3;
    grid-row: 17/span 2;
  }
  .bento-test figure:nth-child(19) {
    grid-column: 1/span 2;
    grid-row: 19/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(20) {
    grid-column: 1;
    grid-row: 22/span 3;
  }
  .bento-test figure:nth-child(21) {
    grid-column: 2;
    grid-row: 22/span 3;
  }
  .bento-test figure:nth-child(22) {
    grid-column: 3;
    grid-row: 19/span 2;
  }
  .bento-test figure:nth-child(23) {
    grid-column: 3;
    grid-row: 21/span 2;
  }
  .bento-test figure:nth-child(24) {
    grid-column: 3;
    grid-row: 23/span 2;
  }
  .bento-test figure:nth-child(25) {
    grid-column: 1/span 2;
    grid-row: 25/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(26) {
    grid-column: 1;
    grid-row: 28/span 3;
  }
  .bento-test figure:nth-child(27) {
    grid-column: 2;
    grid-row: 28/span 3;
  }
  .bento-test figure:nth-child(28) {
    grid-column: 3;
    grid-row: 25/span 2;
  }
  .bento-test figure:nth-child(29) {
    grid-column: 3;
    grid-row: 27/span 2;
  }
  .bento-test figure:nth-child(30) {
    grid-column: 3;
    grid-row: 29/span 2;
  }
  .bento-test figure:nth-child(31) {
    grid-column: 1/span 2;
    grid-row: 31/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(32) {
    grid-column: 1;
    grid-row: 34/span 3;
  }
  .bento-test figure:nth-child(33) {
    grid-column: 2;
    grid-row: 34/span 3;
  }
  .bento-test figure:nth-child(34) {
    grid-column: 3;
    grid-row: 31/span 2;
  }
  .bento-test figure:nth-child(35) {
    grid-column: 3;
    grid-row: 33/span 2;
  }
  .bento-test figure:nth-child(36) {
    grid-column: 3;
    grid-row: 35/span 2;
  }
  .bento-test figure:nth-child(37) {
    grid-column: 1/span 2;
    grid-row: 37/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(38) {
    grid-column: 1;
    grid-row: 40/span 3;
  }
  .bento-test figure:nth-child(39) {
    grid-column: 2;
    grid-row: 40/span 3;
  }
  .bento-test figure:nth-child(40) {
    grid-column: 3;
    grid-row: 37/span 2;
  }
  .bento-test figure:nth-child(41) {
    grid-column: 3;
    grid-row: 39/span 2;
  }
  .bento-test figure:nth-child(42) {
    grid-column: 3;
    grid-row: 41/span 2;
  }
  .bento-test figure:nth-child(43) {
    grid-column: 1/span 2;
    grid-row: 43/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(44) {
    grid-column: 1;
    grid-row: 46/span 3;
  }
  .bento-test figure:nth-child(45) {
    grid-column: 2;
    grid-row: 46/span 3;
  }
  .bento-test figure:nth-child(46) {
    grid-column: 3;
    grid-row: 43/span 2;
  }
  .bento-test figure:nth-child(47) {
    grid-column: 3;
    grid-row: 45/span 2;
  }
  .bento-test figure:nth-child(48) {
    grid-column: 3;
    grid-row: 47/span 2;
  }
  .bento-test figure:nth-child(49) {
    grid-column: 1/span 2;
    grid-row: 49/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(50) {
    grid-column: 1;
    grid-row: 52/span 3;
  }
  .bento-test figure:nth-child(51) {
    grid-column: 2;
    grid-row: 52/span 3;
  }
  .bento-test figure:nth-child(52) {
    grid-column: 3;
    grid-row: 49/span 2;
  }
  .bento-test figure:nth-child(53) {
    grid-column: 3;
    grid-row: 51/span 2;
  }
  .bento-test figure:nth-child(54) {
    grid-column: 3;
    grid-row: 53/span 2;
  }
  .bento-test figure:nth-child(55) {
    grid-column: 1/span 2;
    grid-row: 55/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(56) {
    grid-column: 1;
    grid-row: 58/span 3;
  }
  .bento-test figure:nth-child(57) {
    grid-column: 2;
    grid-row: 58/span 3;
  }
  .bento-test figure:nth-child(58) {
    grid-column: 3;
    grid-row: 55/span 2;
  }
  .bento-test figure:nth-child(59) {
    grid-column: 3;
    grid-row: 57/span 2;
  }
  .bento-test figure:nth-child(60) {
    grid-column: 3;
    grid-row: 59/span 2;
  }
  .bento-test figure:nth-child(61) {
    grid-column: 1/span 2;
    grid-row: 61/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(62) {
    grid-column: 1;
    grid-row: 64/span 3;
  }
  .bento-test figure:nth-child(63) {
    grid-column: 2;
    grid-row: 64/span 3;
  }
  .bento-test figure:nth-child(64) {
    grid-column: 3;
    grid-row: 61/span 2;
  }
  .bento-test figure:nth-child(65) {
    grid-column: 3;
    grid-row: 63/span 2;
  }
  .bento-test figure:nth-child(66) {
    grid-column: 3;
    grid-row: 65/span 2;
  }
  .bento-test figure:nth-child(67) {
    grid-column: 1/span 2;
    grid-row: 67/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(68) {
    grid-column: 1;
    grid-row: 70/span 3;
  }
  .bento-test figure:nth-child(69) {
    grid-column: 2;
    grid-row: 70/span 3;
  }
  .bento-test figure:nth-child(70) {
    grid-column: 3;
    grid-row: 67/span 2;
  }
  .bento-test figure:nth-child(71) {
    grid-column: 3;
    grid-row: 69/span 2;
  }
  .bento-test figure:nth-child(72) {
    grid-column: 3;
    grid-row: 71/span 2;
  }
  .bento-test figure:nth-child(73) {
    grid-column: 1/span 2;
    grid-row: 73/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(74) {
    grid-column: 1;
    grid-row: 76/span 3;
  }
  .bento-test figure:nth-child(75) {
    grid-column: 2;
    grid-row: 76/span 3;
  }
  .bento-test figure:nth-child(76) {
    grid-column: 3;
    grid-row: 73/span 2;
  }
  .bento-test figure:nth-child(77) {
    grid-column: 3;
    grid-row: 75/span 2;
  }
  .bento-test figure:nth-child(78) {
    grid-column: 3;
    grid-row: 77/span 2;
  }
  .bento-test figure:nth-child(79) {
    grid-column: 1/span 2;
    grid-row: 79/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(80) {
    grid-column: 1;
    grid-row: 82/span 3;
  }
  .bento-test figure:nth-child(81) {
    grid-column: 2;
    grid-row: 82/span 3;
  }
  .bento-test figure:nth-child(82) {
    grid-column: 3;
    grid-row: 79/span 2;
  }
  .bento-test figure:nth-child(83) {
    grid-column: 3;
    grid-row: 81/span 2;
  }
  .bento-test figure:nth-child(84) {
    grid-column: 3;
    grid-row: 83/span 2;
  }
  .bento-test figure:nth-child(85) {
    grid-column: 1/span 2;
    grid-row: 85/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(86) {
    grid-column: 1;
    grid-row: 88/span 3;
  }
  .bento-test figure:nth-child(87) {
    grid-column: 2;
    grid-row: 88/span 3;
  }
  .bento-test figure:nth-child(88) {
    grid-column: 3;
    grid-row: 85/span 2;
  }
  .bento-test figure:nth-child(89) {
    grid-column: 3;
    grid-row: 87/span 2;
  }
  .bento-test figure:nth-child(90) {
    grid-column: 3;
    grid-row: 89/span 2;
  }
  .bento-test figure:nth-child(91) {
    grid-column: 1/span 2;
    grid-row: 91/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(92) {
    grid-column: 1;
    grid-row: 94/span 3;
  }
  .bento-test figure:nth-child(93) {
    grid-column: 2;
    grid-row: 94/span 3;
  }
  .bento-test figure:nth-child(94) {
    grid-column: 3;
    grid-row: 91/span 2;
  }
  .bento-test figure:nth-child(95) {
    grid-column: 3;
    grid-row: 93/span 2;
  }
  .bento-test figure:nth-child(96) {
    grid-column: 3;
    grid-row: 95/span 2;
  }
  .bento-test figure:nth-child(97) {
    grid-column: 1/span 2;
    grid-row: 97/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(98) {
    grid-column: 1;
    grid-row: 100/span 3;
  }
  .bento-test figure:nth-child(99) {
    grid-column: 2;
    grid-row: 100/span 3;
  }
  .bento-test figure:nth-child(100) {
    grid-column: 3;
    grid-row: 97/span 2;
  }
  .bento-test figure:nth-child(101) {
    grid-column: 3;
    grid-row: 99/span 2;
  }
  .bento-test figure:nth-child(102) {
    grid-column: 3;
    grid-row: 101/span 2;
  }
  .bento-test figure:nth-child(103) {
    grid-column: 1/span 2;
    grid-row: 103/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(104) {
    grid-column: 1;
    grid-row: 106/span 3;
  }
  .bento-test figure:nth-child(105) {
    grid-column: 2;
    grid-row: 106/span 3;
  }
  .bento-test figure:nth-child(106) {
    grid-column: 3;
    grid-row: 103/span 2;
  }
  .bento-test figure:nth-child(107) {
    grid-column: 3;
    grid-row: 105/span 2;
  }
  .bento-test figure:nth-child(108) {
    grid-column: 3;
    grid-row: 107/span 2;
  }
  .bento-test figure:nth-child(109) {
    grid-column: 1/span 2;
    grid-row: 109/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(110) {
    grid-column: 1;
    grid-row: 112/span 3;
  }
  .bento-test figure:nth-child(111) {
    grid-column: 2;
    grid-row: 112/span 3;
  }
  .bento-test figure:nth-child(112) {
    grid-column: 3;
    grid-row: 109/span 2;
  }
  .bento-test figure:nth-child(113) {
    grid-column: 3;
    grid-row: 111/span 2;
  }
  .bento-test figure:nth-child(114) {
    grid-column: 3;
    grid-row: 113/span 2;
  }
  .bento-test figure:nth-child(115) {
    grid-column: 1/span 2;
    grid-row: 115/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(116) {
    grid-column: 1;
    grid-row: 118/span 3;
  }
  .bento-test figure:nth-child(117) {
    grid-column: 2;
    grid-row: 118/span 3;
  }
  .bento-test figure:nth-child(118) {
    grid-column: 3;
    grid-row: 115/span 2;
  }
  .bento-test figure:nth-child(119) {
    grid-column: 3;
    grid-row: 117/span 2;
  }
  .bento-test figure:nth-child(120) {
    grid-column: 3;
    grid-row: 119/span 2;
  }
  .bento-test figure:nth-child(121) {
    grid-column: 1/span 2;
    grid-row: 121/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(122) {
    grid-column: 1;
    grid-row: 124/span 3;
  }
  .bento-test figure:nth-child(123) {
    grid-column: 2;
    grid-row: 124/span 3;
  }
  .bento-test figure:nth-child(124) {
    grid-column: 3;
    grid-row: 121/span 2;
  }
  .bento-test figure:nth-child(125) {
    grid-column: 3;
    grid-row: 123/span 2;
  }
  .bento-test figure:nth-child(126) {
    grid-column: 3;
    grid-row: 125/span 2;
  }
  .bento-test figure:nth-child(127) {
    grid-column: 1/span 2;
    grid-row: 127/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(128) {
    grid-column: 1;
    grid-row: 130/span 3;
  }
  .bento-test figure:nth-child(129) {
    grid-column: 2;
    grid-row: 130/span 3;
  }
  .bento-test figure:nth-child(130) {
    grid-column: 3;
    grid-row: 127/span 2;
  }
  .bento-test figure:nth-child(131) {
    grid-column: 3;
    grid-row: 129/span 2;
  }
  .bento-test figure:nth-child(132) {
    grid-column: 3;
    grid-row: 131/span 2;
  }
  .bento-test figure:nth-child(133) {
    grid-column: 1/span 2;
    grid-row: 133/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(134) {
    grid-column: 1;
    grid-row: 136/span 3;
  }
  .bento-test figure:nth-child(135) {
    grid-column: 2;
    grid-row: 136/span 3;
  }
  .bento-test figure:nth-child(136) {
    grid-column: 3;
    grid-row: 133/span 2;
  }
  .bento-test figure:nth-child(137) {
    grid-column: 3;
    grid-row: 135/span 2;
  }
  .bento-test figure:nth-child(138) {
    grid-column: 3;
    grid-row: 137/span 2;
  }
  .bento-test figure:nth-child(139) {
    grid-column: 1/span 2;
    grid-row: 139/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(140) {
    grid-column: 1;
    grid-row: 142/span 3;
  }
  .bento-test figure:nth-child(141) {
    grid-column: 2;
    grid-row: 142/span 3;
  }
  .bento-test figure:nth-child(142) {
    grid-column: 3;
    grid-row: 139/span 2;
  }
  .bento-test figure:nth-child(143) {
    grid-column: 3;
    grid-row: 141/span 2;
  }
  .bento-test figure:nth-child(144) {
    grid-column: 3;
    grid-row: 143/span 2;
  }
  .bento-test figure:nth-child(145) {
    grid-column: 1/span 2;
    grid-row: 145/span 3;
    aspect-ratio: auto;
  }
  .bento-test figure:nth-child(146) {
    grid-column: 1;
    grid-row: 148/span 3;
  }
  .bento-test figure:nth-child(147) {
    grid-column: 2;
    grid-row: 148/span 3;
  }
  .bento-test figure:nth-child(148) {
    grid-column: 3;
    grid-row: 145/span 2;
  }
  .bento-test figure:nth-child(149) {
    grid-column: 3;
    grid-row: 147/span 2;
  }
  .bento-test figure:nth-child(150) {
    grid-column: 3;
    grid-row: 149/span 2;
  }
}

/****************************************************************************/
/* CONTACT MODAL (side drawer)
/****************************************************************************/
body.modal-open {
  overflow: hidden;
}

.modal__trigger {
  position: fixed;
  top: 235px;
  right: 0;
  height: 72px;
  width: 72px;
  background-color: var(--wp--preset--color--accent);
  transition: all 0.2s ease;
  z-index: 11;
}
.modal__trigger .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.63' height='23.63' viewBox='0 0 23.63 23.63'%3E%3Cpath id='Icon_awesome-envelope-open' data-name='Icon awesome-envelope-open' d='M23.63,21.414a2.215,2.215,0,0,1-2.215,2.215H2.215A2.215,2.215,0,0,1,0,21.414V9.264A2.215,2.215,0,0,1,.849,7.52c1.15-.9,2.1-1.632,7.578-5.608C9.2,1.346,10.744-.016,11.815,0c1.071-.016,2.612,1.346,3.388,1.912,5.478,3.975,6.429,4.707,7.578,5.608a2.215,2.215,0,0,1,.849,1.743ZM20.6,12.341a.369.369,0,0,0-.523-.088c-1.054.779-2.56,1.879-4.873,3.557-.777.566-2.317,1.928-3.388,1.912-1.071.016-2.61-1.345-3.388-1.912-2.313-1.679-3.818-2.779-4.873-3.557a.369.369,0,0,0-.523.088l-.419.609a.369.369,0,0,0,.085.506c1.056.78,2.559,1.878,4.86,3.548.936.682,2.609,2.207,4.258,2.2,1.649.011,3.321-1.512,4.258-2.2,2.3-1.67,3.8-2.768,4.86-3.548a.369.369,0,0,0,.085-.506l-.419-.609Z' transform='translate(0 0)' fill='%23122830'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}

.modal__block {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(18, 40, 48, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal__block.active {
  opacity: 1;
  visibility: visible;
}
.modal__block.active .modal__dialog {
  transform: translateX(0);
}

.modal__dialog {
  width: 100%;
  max-width: 512px;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal__content {
  background-color: var(--wp--preset--color--white, #fff);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 0;
}

.modal__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wp--preset--color--primary, #122830);
}
.modal__title.underlined {
  padding-bottom: 18px !important;
}
.modal__title.underlined:after {
  left: 0;
  transform: none;
  width: 80px;
  height: 4px;
}

.btn-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--wp--preset--color--primary, #122830);
  opacity: 0.6;
  transition: opacity 0.2s ease;
  position: relative;
}
.btn-close:hover {
  opacity: 1;
}
.btn-close:before, .btn-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
}
.btn-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.modal__footer {
  padding: 0 32px 24px;
}

@media (max-width: 576px) {
  .modal__dialog {
    max-width: 100%;
  }
  .modal__header {
    padding: 20px 20px 0;
  }
  .modal__body {
    padding: 16px 20px;
  }
  .modal__footer {
    padding: 0 20px 20px;
  }
}
.imp-tooltips-container a {
  text-decoration: none;
}