@charset "UTF-8";

/* ============================================ */
/* ============== Include Styles ============== */
/* ============================================ */

/*
@import '_font.css';
@import '_vars.css';
@import '_base.css';
@import '_skip.css';
@import '_editor.css';
*/
@import '_menu.css';
/*
@import '_actions.css';
@import '_cookies.css';
*/

/* ============================================ */
/* =============== Theme Styles =============== */
/* ============================================ */

/* ============================================ */
/* ============= Define Variables ============= */
/* ============================================ */

:root {

    /* Colors */
    --cl-primary:       var(--cc-primary,       #3a6177);
    --cl-secondary:     var(--cc-secondary,     #84af3a);
    --cl-tertiary:      var(--cc-tertiary,      #506d2d);
    --cl-quaternary:    var(--cc-quaternary,    #9DC655);

    /* Other Colors */
    --cl-text:          var(--cc-text,          #191919);
    --cl-dark:          var(--cc-dark,          #1f2e42);
    --cl-gray:          var(--cc-gray,          #999999);
    --cl-light:         var(--cc-light,         #f4f7f6);
    --cl-black:         var(--cc-black,         #191919);
    --cl-white:         var(--cc-white,         #FFFFFF);

    /* Fonts */
    --ff-primary:       'Outfit', Arial, Helvetica, sans-serif;
    --ff-secondary:       'Poppins', Arial, Helvetica, sans-serif;

    /* Font Sizes */
    --fs-xl:            72px;
    --fs-64:            64px;
    --fs-56:            56px;
    --fs-48:            48px;
    --fs-36:            36px;
    --fs-32:            32px;
    --fs-28:            28px;
    --fs-24:            24px;
    --fs-body-l:        20px;
    --fs-body-m:        18px;
    --fs-body-s:        16px;
    --fs-body-xs:       14px;

    /* Section Spacing */
    --sp-v:             8rem;
    --sp-h:             2.50rem;

    /* Section Spacing */
    --sp-v-1:           calc(var(--sp-v) / 2);     /* 64px */
    --sp-v-2:           calc(var(--sp-v) / 2.66);  /* 48px */
    --sp-v-3:           calc(var(--sp-v) / 3.5);   /* 36px */

    /* Content Width */
    --w-cont-l:         1600px;
    --w-cont-m:         1440px;
    --w-cont-s:         1080px;

    /* Border Radius */
    --br-xl:            2.00rem;
    --br-l:             1.50rem;
    --br-m:             1.00rem;
    --br-s:             0.50rem;
    --br-xs:            0.25rem;
    --br-50:            50%;

    /* Animation Delay */
    --animate-delay:    2s;

}

@media only screen and (max-width: 1199px) {
    :root {
        --fs-xl:            64px;
        --fs-64:            48px;
        --fs-48:            36px;
        --fs-36:            32px;
        --fs-32:            28px;
        --fs-28:            24px;
        --fs-24:            20px;
        --fs-body-l:        18px;
        --fs-body-m:        16px;
        --fs-body-s:        14px;
        --fs-body-xs:       12px;

        /* Section Spacing */
        --sp-v:             6rem;
        --sp-h:             2.50rem;
    }
}
@media only screen and (max-width: 1023px) {
    :root {
        --fs-xl:            56px;
    }
}
@media only screen and (max-width: 767px) {
    :root {
        --fs-xl:            48px;
        --fs-64:            42px;
        --fs-48:            36px;
        --fs-36:            32px;
        --fs-32:            28px;
        --fs-28:            24px;
        --fs-24:            20px;
        --fs-body-l:        18px;
        --fs-body-m:        16px;
        --fs-body-s:        14px;
        --fs-body-xs:       12px;

        /* Section Spacing */
        --sp-v:             4rem;
        --sp-h:             1.50rem;
    }
}

/* ============================================ */
/* ============== General Styles ============== */
/* ============================================ */

::selection {
    background-color: var(--cl-primary);
    color: var(--cl-white);
}
::placeholder {
    opacity: 0.33;
}

/* ============================================ */

html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 8rem;
}
body {
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-m);
    line-height: 1.66;
    color: var(--cl-text);
    letter-spacing: 0.1pt;
}
.no-scroll {
    height: 100vh; 
    overflow: hidden;
}
.website__wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100%;
}
footer {
    margin-top: auto;
}
.container {
    max-width: var(--w-cont-m);
    margin: 0 auto;
}
.container--small {
    max-width: var(--w-cont-s);
    margin: 0 auto;
}
.container--large {
    max-width: var(--w-cont-l);
    margin: 0 auto;
}
.container--fluid {
    max-width: 100%;
    margin: 0 auto;
}

/*/*/

h1, .h1 {
    font-family: var(--ff-primary);
    font-size: var(--fs-64);
    line-height: 1.5625;
    margin: 0;
    font-weight: 600;
}
h2, .h2 {
    font-family: var(--ff-primary);
    font-size: var(--fs-48);
    line-height: 1.5625;
    margin: 0;
    font-weight: 700;
}
h3, .h3 {
    font-family: var(--ff-primary);
    font-size: var(--fs-36);
    line-height: 1.5625;
    margin: 0;
    font-weight: 700;
}
h4, .h4 {
    font-family: var(--ff-primary);
    font-size: var(--fs-32);
    line-height: 1.5625;
    margin: 0;
    font-weight: 700;
}
h5, .h5 {
    font-family: var(--ff-primary);
    font-size: var(--fs-28);
    line-height: 1.5625;
    margin: 0;
    font-weight: 700;
}
h6, .h6 {
    font-family: var(--ff-primary);
    font-size: var(--fs-24);
    line-height: 1.5625;
    margin: 0;
    font-weight: 700;
}
p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.66;
}
p:last-child {
    margin-bottom: 0;
}
strong {
    font-weight: bolder
}
u {
    text-decoration: underline;
}
i {
    font-style: italic;
}

/*/*/

img, svg, video, iframe {
    max-inline-size: unset;
    max-block-size: unset;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
.fill-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/*/*/

.main__header--menu {
    display: none;
}

/*/*/

.action {
    display: inline-flex;
    margin-top: 1rem;
}
.action button {
    font-size: var(--fs-24);
    padding: 0.125rem 0.125rem 0.125rem 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--br-xl);
    cursor: pointer;
}
.action button svg {
    height: 3.25rem;
    width: 3.25rem;
}
.action--primary button {
    background-color: var(--cl-secondary);
    color: var(--cl-white);
    transition: all 300ms ease-in-out;
}
.action--primary button svg {
    transition: all 300ms ease-in-out;
    fill: var(--cl-white);
}
.action--primary button:hover {
    background-color: var(--cl-white);
    color: var(--cl-dark);
}
.action--primary button:hover svg {
    fill: var(--cl-dark);
}

.menu--action.action--primary {
    margin-top: 0;
}
.menu--action.action--primary button {
    font-size: var(--fs-body-m);
    padding-left: 1.5rem;
    gap: 1rem;
}
.menu--action.action--primary button svg {
    height: 2.25rem;
    width: 2.25rem;
}
.menu--action.action--primary button:hover {
    background-color: var(--cl-primary);
    color: var(--cl-white);
}
.menu--action.action--primary button:hover svg {
    fill: var(--cl-white);
}

/*/*/

header {
    padding: 2.125rem var(--sp-h);
    position: sticky;
    top: 0;
    background-color: var(--cl-white);
    z-index: 2;
    filter: drop-shadow(0 0 5px var(--cl-primary));
}
header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*/*/
.navigation {
    display: flex;
    align-items: center;
}
.navigation--main {
    display: flex;
    align-items: center;
}
.navigation--main ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navigation--main ul a {
    font-weight: 500;
    text-decoration: none;
    color: var(--cl-text);
}
.navigation--main ul a:hover {
    color: var(--cl-primary);
}
.navigation .menu--action {
    display: none;
}

/*/*/

.hero--section {
    padding: var(--sp-v) var(--sp-h);
    background-color: var(--cl-primary);
    position: relative;
    overflow: hidden;
}

.hero--section .container {
    display: flex;
}
.hero__section--text {
    width: 50%;
}
.hero__section--text h1 {
    color: var(--cl-white);
    max-width: 545px;
    font-size: var(--fs-64);
    line-height: 1.16;
    margin-bottom: 1.5rem;
}
.hero__section--text .subheading {
    color: var(--cl-quaternary);
    max-width: 610px;
    font-family: var(--ff-primary);
    font-size: var(--fs-36);
    line-height: 1.16;
    margin-bottom: 1.75rem;
    font-weight: 600;
}
.hero__section--text p:not(.subheading) {
    color: var(--cl-white);
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-l);
    line-height: 1.45;
    margin-bottom: 1.5rem;
    font-weight: 500;
} 
.hero__section--graphic {
    position: absolute;
    width: 50vw;
    inset: 0 0 0 50vw;
}
.hero__graphic--wrapper {
    position: absolute;
    inset: 0;
    isolation: isolate;
}
.hero__graphic--wrapper:before {
    content: "";
    width: 204px;
    clip-path: polygon(0 0,100% 0,0 100%);
    background-color: var(--cl-primary);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.hero__graphic--wrapper:after {
    content: "";
    width: 220px;
    clip-path: polygon(0 0,100% 0,0 calc(100% + 56px));
    background-color: var(--cl-secondary);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    border-left: 1rem solid var(--cl-secondary);
    z-index: 0;
}

.hero__graphic--wrapper img {
    height: 100%;
    width: 100%;
    object-position: top center;
    object-fit: cover;
}

/*/*/

.graphic--section {
    padding: calc(var(--sp-v) * 0.75) var(--sp-h);
}
.graphic--section .container {
    display: flex;
}
.graphic__section--graphic {
    width: 50%;
    padding-right: var(--sp-v);
    flex: 1;
}
.graphic__section--text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.graphic__section--text h2 {
    color: var(--cl-dark);
    font-size: var(--fs-48);
    line-height: 1.16;
    margin-bottom: 2rem;
}
.graphic__section--text p {
    margin-bottom: 1.5rem;
    color: var(--cl-text);
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-m);
    line-height: 1.45;
    font-weight: 500; 
}
.graphic__section--text ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.graphic__section--text ul li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 1.5rem;
    font-size: var(--fs-body-l);
    font-weight: 700;
    color: var(--cl-dark);
    max-width: 620px;
}
.graphic__section--text ul li svg {
    fill: var(--cl-secondary);
    height: 1.75rem;
    width: 1.75rem;
    margin-top: 0.165rem;
    flex: 0 0 1.75rem;
}

/*/*/

.image--section {
    padding: var(--sp-v) var(--sp-h);
    background-color: var(--cl-primary);
    position: relative;
    overflow: hidden;
}
.image--section .container {
    display: flex;
}
.image__section--text {
    width: 50%;
	position: relative;
	z-index: 1;
}
.image__section--text h2 {
    color: var(--cl-white);
    max-width: 545px;
    font-size: var(--fs-48);
    line-height: 1.16;
    margin-bottom: 1.5rem;
}
.image__section--text h2 span {
    color: var(--cl-quaternary);
}
.image__section--text p {
    color: var(--cl-white);
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-l);
    line-height: 1.45;
    margin-bottom: 1.5rem;
    font-weight: 500;
} 
.image__section--graphic {
    position: absolute;
    width: 50vw;
    inset: 0 0 0 50vw;
}
.image__section--graphic * {
    box-sizing: border-box;
}
.image__section--wrapper {
    position: absolute;
    inset: 0;
    isolation: isolate;
}
.image__section--wrapper img {
    height: 100%;
    width: 100%;
    object-position: top center;
    object-fit: cover;
}
.image__section--shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 180px;
    fill: var(--cl-primary);
    z-index: 1;
    border-left: 3rem solid var(--cl-primary);
}
.image__section--line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 196px;
    fill: var(--cl-secondary);
    border-left: 4rem solid var(--cl-secondary);
    z-index: 0;
}

.image__section--left .image__section--text {
    margin-left: auto;
}
.image__section--left .image__section--graphic {
    inset: 0 50vw 0 0;
}
.image__section--left .image__section--shape {
    scale: -1 1;
    left: auto;
    right: 0;
}
.image__section--left .image__section--line {
    scale: -1 1;
    left: auto;
    right: 0;
}
.image__section--left .image__section--wrapper img {
    object-position: center;
}

.image__section--right .image__section--text {
    margin-right: auto;
}
.image__section--right .image__section--graphic {
    inset: 0 0 0 50vw;
}
.image__section--right .image__section--shape {
    scale: 1 -1;
    left: 0;
    right: auto;
    border: none
}
.image__section--right .image__section--line {
    scale: 1 -1;
    left: 0;
    right: auto;
    border-width: 1rem;
}
.image__section--right .image__section--wrapper img {
    /*
    object-position: top left;
    scale: -1 1;
    */
    object-position: center;
    scale: 1;
}

.image__section--text ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.image__section--text ul li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 2.5rem;
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--cl-light);
    max-width: 620px;
    position: relative;
}
.image__section--text ul li:before {
    content: "";
    height: 2.25rem;
    width: 0.5rem;
    background-color: var(--cl-secondary);
    position: absolute;
    top: calc(50% - 2px);
    left: 0.5rem;
    translate: 0 -50%;
    rotate: 24deg;
}

/*/*/

.panel--section {
    padding: calc(var(--sp-v) * 0.75) var(--sp-h);
}
.panel__section--panel {
    padding: calc(var(--sp-v) * 0.75) var(--sp-h);
    position: relative;
    isolation: isolate;
}
.panel__section--panel:after {
    content: "";
    border-radius: var(--br-m);
    background-color: var(--cl-light);
    /*opacity: 0.24;*/
    position: absolute;
    inset: 0;
    z-index: -1;
}
.panel__section--panel h2 {
    color: var(--cl-secondary);
    text-align: center;
    font-size: var(--fs-48);
    line-height: 1.16;
    margin-bottom: 3.5rem;
}
.panel__section--columns {
    display: flex;
    gap: calc(2 * var(--sp-h));
    margin-bottom: 3.5rem;
}
.panel__column--item {
    text-align: center;
    flex: 1;
    position: relative;
}
.panel__column--item:not(:last-child):after {
    content: "";
    height: 2.25rem;
    width: 0.5rem;
    background-color: var(--cl-secondary);
    position: absolute;
    top: 50%;
    left: 100%;
    translate: 2.25rem -50%;
    rotate: 24deg;
}
.panel__column--item span {
    font-family: var(--ff-primary);
    font-size: var(--fs-48);
    color: var(--cl-primary);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.16;
}
.panel__column--item p {
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-l);
    color: var(--cl-text);
    margin-bottom: 0;
}
.panel__section--outro .eyebrow {
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--cl-tertiary);
    line-height: 1.33;
    text-align: center;
    margin: 0;
}
.panel__section--outro p:not(.eyebrow) {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--cl-dark);
    line-height: 1.33;
    text-align: center;
    margin: 0;
}
.panel__section--outro u {
    text-decoration-color: var(--cl-secondary);
    text-decoration-line: underline;
    text-decoration-thickness: 0.25rem;
    text-underline-offset: 0.25rem;
}

/*/*/

.columns--section {
    padding: 0 var(--sp-h) calc(var(--sp-v) * 0.75) var(--sp-h);
}
.columns__section--text h2 {
    color: var(--cl-dark);
    font-size: var(--fs-48);
    line-height: 1.16;
    margin-bottom: 3.5rem;
    text-align: center;
}
.columns__section--text h2 span {
    color: var(--cl-quaternary);
}
.columns__section--columns {
    padding: 0 var(--sp-h);
    position: relative;
    isolation: isolate;
    display: flex;
    gap: calc(2 * var(--sp-h));
}
.columns__section--item {
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}
.columns__section--item:not(:last-child):after {
    content: "";
    height: 2.25rem;
    width: 0.5rem;
    background-color: var(--cl-secondary);
    position: absolute;
    top: 50%;
    left: 100%;
    translate: 2.25rem -50%;
    rotate: 24deg;
}
.columns__item--graphic {
    margin-bottom: 1.5rem;
}
.columns__item--graphic img {
    height: 8rem;
    width: 8rem;
    filter: invert(12%) sepia(37%) saturate(860%) hue-rotate(174deg) brightness(96%) contrast(87%);
}
.columns__item--title {
    margin-bottom: 0.5rem;
}
.columns__item--title h3 {
    color: var(--cl-secondary);
    font-size: var(--fs-28);
    line-height: 1.16;
    margin-bottom: 0;
    text-align: center;
}
.columns__item--text p {
    font-family: var(--ff-secondary);
    font-size: var(--fs-body-l);
    color: var(--cl-text);
    margin-bottom: 0;
}

/*/*/

footer {
    padding: 2.5rem var(--sp-h) 2.5rem var(--sp-h);
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .copyright p {
    font-size: var(--fs-body-l);
    font-weight: 500;
    line-height: 1.16;
    margin: 0;
    opacity: 0.5;
}
footer .copyright p small {
    font-size: var(--fs-body-s);
    font-weight: 500;
}

/*/*/

.popup {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.popup.show {
  display: grid;
}

.popup-box {
  position: relative;
  max-width: min(960px, 90%);
  width: 100%;
  padding: 3rem 4rem;
  background: var(--cl-white);
  border-radius: var(--br-m)
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/*/*/

.popup h2 {
    color: var(--cl-dark);
    font-size: var(--fs-36);
    line-height: 1.16;
    margin-bottom: 2rem;
    text-align: center;
}


.popup .wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.popup .wpcf7-form br {
    display: none;
}
.contact__form--input {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    order: 1;
}
.contact__form--input label {
    font-size: var(--fs-body-xs);
    display: inline-block;
    line-height: 16px;
    margin-bottom: 5px;
}
.contact__form--input p {
    width: 100%;
}
.contact__form--input span:not(.wpcf7-form-control-wrap) {
    font-size: var(--fs-body-xs);
    margin-left: auto;
    display: inline-block;
    line-height: 16px;
    margin-bottom: 5px;
    color: var(--cl-gray);
}
.contact__form--input .wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.contact__form--input input {
    width: 100%;
    background-color: var(--cl-light);
    border-bottom: 1px solid var(--cl-secondary);
    display: block;
    padding: 16px 15px 14px 25px;
}
.contact__form--input input:focus {
    border-bottom: 1px solid var(--cl-primary);
    outline: none;
}
.contact__form--input input.wpcf7-not-valid {
    border-color: var(--cl-primary);
}
.contact__form--input textarea {
    width: 100%;
    background-color: var(--cl-light);
    border-bottom: 1px solid var(--cl-secondary);
    display: block;
    padding: 16px 15px 14px 25px;
    resize: vertical;
}
.contact__form--input textarea:focus {
    border-bottom: 1px solid var(--cl-primary);
    outline: none;
}
.contact__form--input textarea.wpcf7-not-valid {
    border-color: var(--cl-primary);
}
.contact__form--input .wpcf7-not-valid-tip {
    margin-bottom: 0px;
    margin-top: 2px;
    width: 100%;
    font-size: var(--fs-body-xs);
    color: var(--cl-primary) !important;
    text-align: right;
    position: absolute;
    top: 100%;
}
.contact__form--half {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.contact__form--full {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.contact__form--submit {
    order: 3;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    width: 100%;
}
.contact__form--submit input {
    display: inline-block;
    font-size: var(--fs-body-s);
    font-weight: bold;
    color: var(--cl-white);
    padding: 15px 35px 14px;
    text-align: center;
    min-width: 200px;
    border: 2px solid var(--cl-primary);
    border-radius: 35px;
    text-decoration: none;
    background-color: var(--cl-primary);
    margin-left: auto;
    order: 2;
    cursor: pointer;
}
.contact__form--submit .wpcf7-spinner {
    order: 1;
}
.wpcf7-response-output {
    order: 2;
    margin-top: 0px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: calc(100% - 30px);
    border: 1px solid var(--cl-secondary) !important;
    background-color: var(--cl-light);
    color: var(--cl-primary);
    font-size: var(--fs-body-s) !important;
    text-align: center;
    padding: 15px 25px !important;
}

/* ============================================ */
/* =============== Media Queries ============== */
/* ============================================ */

@media only screen and (max-width: 1919px) {

}
@media only screen and (max-width: 1599px) {

}
@media only screen and (max-width: 1439px) {
    :root {
        /* Font Sizes */
        --fs-xl:            64px;
        --fs-64:            56px;
        --fs-56:            48px;
        --fs-48:            36px;
        --fs-36:            32px;
        --fs-32:            28px;
        --fs-28:            24px;
        --fs-24:            20px;
        --fs-body-l:        18px;
        --fs-body-m:        16px;
        --fs-body-s:        14px;
        --fs-body-xs:       12px;

        /* Section Spacing */
        --sp-v:             6rem;
        --sp-h:             2.50rem;
    }
    .image__section--text ul li::before {
        height: 2rem;
        width: 0.33rem;
        top: calc(50% - 1px);
    }

}
@media only screen and (max-width: 1199px) {
    :root {
        /* Font Sizes */
        --fs-xl:            56px;
        --fs-64:            48px;
        --fs-56:            36px;
        --fs-48:            32px;
        --fs-36:            28px;
        --fs-32:            24px;
        --fs-28:            20px;
        --fs-24:            18px;
        --fs-body-l:        16px;
        --fs-body-m:        16px;
        --fs-body-s:        14px;
        --fs-body-xs:       12px;
    }
}
@media only screen and (max-width: 1023px) {

    .main__header--menu {
        display: block;
    }

    header {
        padding: 1.5rem var(--sp-h);
    }
    header .logo {
        max-width: 200px;
    }

    header > .container > .menu--action {
        display: none;
    }

    .navigation > .menu--action {
        display: block;
    }

    .navigation {
        position: fixed;
        inset: 91px 0 0 0;
        height: calc(var(--vh) - 91px);
        width: var(--vw);
        z-index: 1;
        background-color: var(--cl-light);
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
    }
    .header__navigation--active {
        display: flex;
    }
    .navigation--main ul {
        flex-direction: column;
    }
    .navigation--main ul a {
        font-size: var(--fs-28);
    }
    .menu--action.action--primary button {
        font-size: var(--fs-24);
        padding-left: 1.5rem;
        padding: 0.125rem 0.125rem 0.125rem 2.5rem;
        gap: 2rem;
    }
    .menu--action.action--primary button svg {
        height: 3.25rem;
        width: 3.25rem;
    }

    section {
        scroll-margin-top: 3.75rem;
    }

    .hero--section .container {
        flex-direction: column;
    }
    .hero__section--text {
        order: 2;
        width: 100%;
        padding-top: calc(var(--sp-v) / 2);
    }
    .hero__section--graphic {
        order: 1;
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        inset: 0;
    }
    .hero__graphic--wrapper {
        inset: calc(-1 * var(--sp-v)) calc(-1 * var(--sp-h)) 0 calc(-1 * var(--sp-h));
    }
    .hero__graphic--wrapper:before {
        content: "";
        width: 100%;
        clip-path: polygon(0 100%,0 0,100% 100%);
        background-color: var(--cl-primary);
        display: block;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        height: 4rem;
    }
    .hero__graphic--wrapper:after {
        content: "";
        width: 100%;
        clip-path: polygon(0 100%,0 0,125% 100%);
        background-color: var(--cl-secondary);
        display: block;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5rem;
        border-left: none;
        border-bottom: 1rem solid var(--cl-secondary);
        z-index: 0;
    }
    .hero__section--text .subheading {
        width: 100%;
        max-width: unset;
    }
    .graphic--section .container {
        flex-direction: column;
    }
    .graphic__section--graphic {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .graphic__section--graphic img {
        max-width: 320px;
    }
    .graphic__section--text {
        width: 100%;
        padding-top: calc(var(--sp-v) / 2);
    }
    .image--section .container {
        flex-direction: column;
    }
    .image__section--graphic {
        order: 1;
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        inset: 0 !important;
    }
    .image__section--wrapper {
        inset: calc(-1 * var(--sp-v)) calc(-1 * var(--sp-h)) 0 calc(-1 * var(--sp-h));
    }
    .image__section--text {
        order: 2;
        width: 100%;
        padding-top: calc(var(--sp-v) / 2);
    }
    .image__section--shape {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4rem;
        width: 100%;
        fill: var(--cl-primary);
        z-index: 1;
        border-left: none;
    }
    .image__section--left .image__section--shape {
        scale: 1 1;
        left: 0;
        right: 0;
    }
    .image__section--right .image__section--shape {
        scale: 1 1;
        left: 0;
        right: 0;
    }
    .image__section--line {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 5rem;
        width: 100%;
        fill: var(--cl-secondary);
        border-left: none;
        z-index: 0;
        border-bottom: 1rem solid var(--cl-secondary);
    }
    .image__section--left .image__section--line {
        scale: 1 1;
        left: 0;
        right: 0;
    }
    .image__section--right .image__section--line {
        scale: 1 1;
        left: 0;
        right: 0;
    }
    .panel--section {
        padding: calc(var(--sp-v) * 0.75) calc(var(--sp-h) * 0.5);
    }
    .panel__section--panel {
        padding: calc(var(--sp-v) * 0.75) calc(var(--sp-h) * 0.5);
    }
    .panel__section--columns {
        flex-direction: column;
    }
    .panel__column--item {
        max-width: 320px;
        margin: 0 auto;
    }
    .panel__column--item:not(:last-child)::after {
        content: "";
        height: 2.25rem;
        width: 0.5rem;
        background-color: var(--cl-secondary);
        position: absolute;
        top: 100%;
        left: auto;
        right: auto;
        translate: -50% 1.25rem;
        rotate: 24deg;
    }
    .panel__section--outro {
        max-width: 360px;
        margin: 0 auto;
    }
    .columns--section {
        padding: 0 calc(var(--sp-h) * 0.5) calc(var(--sp-v) * 0.75) calc(var(--sp-h) * 0.5);
    }
    .columns__section--columns {
        padding: 0 calc(var(--sp-h) * 0.5);
        flex-direction: column;
    }
    .columns__section--item {
        max-width: 320px;
        margin: 0 auto;
    }
    .columns__section--item:not(:last-child)::after {
        content: "";
        height: 2.25rem;
        width: 0.5rem;
        background-color: var(--cl-secondary);
        position: absolute;
        top: 100%;
        left: 50%;
        translate: -50% 1.25rem;
        rotate: 24deg;
    }
}
@media only screen and (max-width: 782px) {

}
@media only screen and (max-width: 767px) {
        :root {
        /* Font Sizes */
        --fs-xl:            48px;
        --fs-64:            48px;
        --fs-56:            36px;
        --fs-48:            36px;
        --fs-36:            32px;
        --fs-32:            28px;
        --fs-28:            24px;
        --fs-24:            20px;
        --fs-body-l:        18px;
        --fs-body-m:        16px;
        --fs-body-s:        14px;
        --fs-body-xs:       12px;

        /* Section Spacing */
        --sp-v:             4rem;
        --sp-h:             1.50rem;
    }
    .graphic__section--text ul li {
        line-height: 1.33;
        padding-left: 0;
    }
    .action {
        width: 100%;
    }
    .action--primary button {
        margin: 0 auto;
    }
    .panel__column--item:not(:last-child)::after {
        translate: -50% 1rem;
        height: 1.25rem;
        width: 0.25rem;
    }
    .columns__section--item:not(:last-child)::after {
        translate: -50% 1rem;
        height: 1.25rem;
        width: 0.25rem;
    }
    footer .container {
        flex-direction: column;
    }
    footer .copyright p {
        text-align: center;
        font-size: var(--fs-body-m);
    }
    footer .copyright p small {
        font-size: var(--fs-body-xs);
    }
    .t2b {
        margin-top: 2rem;
    }

    .popup-box {
        padding: 2rem 1.5rem;
    }
    .contact__form--half {
        width: 100%;
    }
    .contact__form--input {
        margin-bottom: 1rem;
    }
    .contact__form--input input {
        padding: 10px 12px 8px 20px;
    }
    .contact__form--input textarea {
        padding: 16px 15px 14px 25px;
    }
    .contact__form--submit input {
        padding: 10px 35px 10px;
    }
    .popup h2 {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 599px) {

}

/* ============================================ */
/* =============== Extra Styles =============== */
/* ============================================ */

.grecaptcha-badge {
    opacity: 0 !important;
    visibility: hidden !important;
}
