/* Root variables
*/
:root {
    --white: #fff;
    --black: #000;
    --text-base-color: #191919;
    --brand-color-accent: #F75709;
    --brand-color-black: #191919;
    --beige: #E4DCCF;
    --light-beige: #EFEEEA;
    --button-hover-color-accent: #EF3B24;
    --base-font: 'inter-variable', Arial, Helvetica, sans-serif;
    --headline-font: 'obviously-variable', Arial, Helvetica, sans-serif;
    --accent-font: 'obviously-condensed', Arial, Helvetica, sans-serif;
    --button-font: 'obviously-variable', Arial, Helvetica, sans-serif;
    --base-font-size: 20px;
    --base-line-height: 1.5;
    --base-font-weight: 300;
    --secondary-font-size: 24px;
    --secondary-line-height: 1.44;


    --container-spacing-sm:24px;
    --container-spacing: 80px;

    --container-width: 1760;
    --container-full-width: 1920px;
}

/*$breakpoints: (
    phone: 375px,
    phone-lg: 440px,
    phone-xl: 640px,
    tablet: 768px,
    desktop: 1024px,
    widescreen: 1200px,
    widescreen-lg: 1400px,
    widescreen-xl: 1920px
);*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --column-gap: 24px;
  --column-width-multiplier: 8.333;
}



/* Mobile layout */

.row-fluid {
  display: flex;
	flex-wrap: nowrap;
  justify-content: space-between;
  gap: var(--column-gap);
}

.row-fluid .span12 {
/* 	flex: 0 0 100%; */
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}


.row-fluid .span1 {
  width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
}

.row-fluid .span2 {
  width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
}

.row-fluid .span3 {
  width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
}

.row-fluid .span4 {
  width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
}

.row-fluid .span5 {
  width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
}

.row-fluid .span6 {
  width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
}

.row-fluid .span7 {
  width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
}

.row-fluid .span8 {
  width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
}

.row-fluid .span9 {
  width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
}

.row-fluid .span10 {
  width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
}

.row-fluid .span11 {
  width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
}


@media (max-width: 960px) {
  .row-fluid {
    flex-wrap: wrap;
    width: 100%;
    gap: var(--column-gap) 0;
    justify-content: flex-start;
  }
  
  
    .row-fluid .span1,
    .row-fluid .span2,
    .row-fluid .span3,
    .row-fluid .span4,
    .row-fluid .span5,
    .row-fluid .span6,
    .row-fluid .span7,
    .row-fluid .span8,
    .row-fluid .span9,
    .row-fluid .span10,
    .row-fluid .span11,
    .row-fluid .span12{
    min-height: 1px;
    width: 100%;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
/*   max-width: var(--container-width); */
}

.widget-type-header {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper {
  max-width: var(--container-full-width);
  margin: 0 auto;
  padding-inline:var(--container-spacing-sm);
}

.container .hs_cos_wrapper .container {
  padding-inline: 0;
}

.row-fluid-wrapper.dnd-section {
  padding-inline: var(--container-spacing-sm);
}

.row-fluid-wrapper.dnd-section .dnd-section,
.container .row-fluid-wrapper.dnd-section {
  padding-inline: 0;
}

.dnd-section .px-unset {
  margin-inline: calc(-1 * var(--container-spacing-sm));
}

.dnd-section .dnd-column .container .px-unset,
.dnd-section .px-unset .px-unset,
.row-fluid-wrapper.dnd-section .dnd-section .px-unset,
.container .row-fluid-wrapper.dnd-section .px-unset{
  margin-inline: 0;
}


@media (min-width: 1400px) {
	.content-wrapper {
		padding-inline:var(--container-spacing);
	}
	
	.row-fluid-wrapper.dnd-section {
		padding-inline: var(--container-spacing);
	}
	
  .dnd-section .px-unset {
		margin-inline: calc(-1 * var(--container-spacing));
	}
}

/*  Base styles and elements
*/
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

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

* {
    max-height: 1000000px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    display: inline-block;
}


iframe {
    max-width: 100%;
}

.resize-active * {
    transition: none !important;
}
body {
    color: var(--text-base-color);
    background: var(--light-beige);
    font:  var(--base-font-size)/var(--base-line-height) var(--base-font);
    font-weight: var(--base-font-weight);
    min-width: 375px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h {
    font-weight: 500;
    margin: 0 0 24px;
    color: var(--black);
    line-height: 1.2;
}

h1, .h1, .headline-accent {
    display: block;
    font-family: var(--accent-font);
    font-size: clamp(80px, 14vw, 220px);
    font-weight: 800;
    line-height: 0.8;
    text-transform: uppercase;
    margin: 0 0 40px;
    
    @media (min-width: 768px) {
        margin: 0 0 60px;
    }
}

.headline-accent {
/*     display: block;
    font-family: var(--accent-font);
    font-size: 46px;
    line-height: 0.8;

    @media (min-width: 1200px) {
        font-size: clamp(80px, 14vw, 160px);
    }

    @media (min-width: 1920px) {
        font-size: 220px;
    } */
}

h2, .h2 {
    font-size: 36px;
/*     line-height: 1.28; */
    line-height: 1.1;
    font-family: var(--headline-font);
    margin: 0 0 24px;

    @media (min-width: 768px) {
        font-size: 52px;
        margin: 0 0 28px;
    }
}


h3, .h3 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.24;

    @media (min-width: 768px) {
        font-size: 48px;
    }
}

.widget-type-rich_text {
    & h3 {
        @media (min-width: 768px) {
            font-size: 40px;
        }
    }
}

h4, .h4 {
    font-size: 26px;
    font-weight: 700;

    @media (min-width: 768px) {
        font-size: 28px;
    }
}

.widget-type-rich_text p + h1,
.widget-type-rich_text p + h2,
.widget-type-rich_text p + h3,
.widget-type-rich_text p + h4,
.widget-type-rich_text p + h5,
.widget-type-rich_text p + h6 {
    margin-top: 30px;
}

h5, .h5,
h6, .h6 {
    font-size: 24px;
    font-weight: 700;

    @media (min-width: 768px) {
        font-size: 24px;
    }
}

p {
    margin: 0 0 12px;
}

strong {
    font-weight: 500;
}

a {
    color: var(--brand-color-accent);
    text-decoration: underline;
    transition: color 0.3s ease-in-out;

    &:hover,
    &:focus {
        text-decoration: none;
    }
}


a[href*="mailto:"] {
    word-wrap: break-word;
}

/*  Layout
*/
#wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
	position: relative;
}

#main {
	flex-grow: 1;
    padding-bottom: 20px;

	@media (min-width: 1200px) {
		padding-bottom: 40px;
	}
}

.container {
	width: 100%;
	max-width: var(--container-full-width);
	margin: 0 auto;
	padding-inline: var(--container-spacing-sm);

	@media (min-width: 1200px) {
		padding-inline: var(--container-spacing);
	}

	&.container-lg {
        padding-inline: var(--container-spacing-sm);
	}

	&.container-md {
		max-width: 1200px;
	}
}

.section {
	padding-block: 20px;
    font-size: var(--base-font-size);
    line-height: var(--secondary-line-height);

	@media (min-width: 768px) {
		padding-block: 40px;
        font-size: var(--secondary-font-size);
	}

	@media (min-width: 1200px) {
		padding-block: 50px;
	}
}

.headline {
    margin: 0 0 40px;

    @media (min-width: 768px) {
        margin: 0 0 56px;
    }
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.base-color,
.base-color *:not(a, .btn){
    color: var(--brand-color-black);
}

.accent-color,
.accent-color *:not(a, .btn) {
    color: var(--brand-color-accent);
}

.pt-0 {
	padding-top: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pt-lg {
	padding-top: 40px !important;

	@media (min-width: 768px) {
		padding-top: 60px !important;
	}

	@media (min-width: 1200px) {
		padding-top: 100px !important;
	}
}

.pb-lg {
	padding-bottom: 40px !important;

	@media (min-width: 768px) {
		padding-bottom: 60px !important;
	}

	@media (min-width: 1200px) {
		padding-bottom: 100px !important;
	}
}

.pt-lg-half {
	padding-top: 20px !important;

	@media (min-width: 768px) {
		padding-top: 30px !important;
	}

	@media (min-width: 1200px) {
		padding-top: 50px !important;
	}
}

.pt-lg-half {
	padding-bottom: 20px !important;

	@media (min-width: 768px) {
		padding-bottom: 30px !important;
	}

	@media (min-width: 1200px) {
		padding-bottom: 50px !important;
	}
}

.pt-md {
	padding-top: 20px !important;

	@media (min-width: 768px) {
		padding-top: 40px !important;
	}

	@media (min-width: 1200px) {
		padding-top: 80px !important;
	}
}

.pb-md {
	padding-bottom: 20px !important;

	@media (min-width: 768px) {
		padding-bottom: 40px !important;
	}

	@media (min-width: 1200px) {
		padding-bottom: 80px !important;
	}
}

.pt-md-half {
	padding-top: 20px !important;

	@media (min-width: 768px) {
		padding-top: 20px !important;
	}

	@media (min-width: 1200px) {
		padding-top: 40px !important;
	}
}

.pb-md-half {
	padding-bottom: 20px !important;

	@media (min-width: 768px) {
		padding-bottom: 20px !important;
	}

	@media (min-width: 1200px) {
		padding-bottom: 40px !important;
	}
}

.pt-sm {
	padding-top: 20px !important;
}

.pb-sm {
	padding-bottom: 20px !important;
}

.js-crossfade-image {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    
    &.active {
        opacity: 1;
    }
}
[id="header"] {
    padding: 20px 0;
    
    @media (min-width: 768px) {
        padding: 45px 0;
    }

    .container {
        display: flex;
        justify-content: space-between;
    }
    
    .header-logo {
        padding: 3px 0 0;
        
        & img {
            max-width: 150px;
            max-height: 48px;
        
            @media (min-width: 768px) {
                max-height: 80px;
                max-width: 100%;
            }
        }
    }
    
    .header-logo--landing {
        display: none;
    }
}

body:has(.section-hero) #header {
    position: absolute;
    top:0;
    left:0;
    right:0;
    z-index: 100;
}

body:has(.body-container--landing-page) .header-logo--landing {
    display: block;
}

body:has(.body-container--landing-page) .header-logo--inner {
    display: none;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.btn {
    height: auto;
    display: inline-flex;
    padding: 6px 20px 6px;
    height: 48px;
    align-items: center;
    gap: 24px;
    color: var(--white);
    font-family: var(--button-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    border-radius: 60px;
    background: var(--black);
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    outline: none;
    text-decoration: none;

    &:hover {
        background: var(--button-hover-color-accent);
        .btn-icon-hover {
            translate: 0 0;
        }

        .btn-icon-default {
            translate: 100% 0;
        }
    }

    @media (min-width: 768px) {
        height: 60px;
    }

    &.disabled,
    &[aria-disabled="true"],
    &[disabled] {
        opacity: 0.8;
        pointer-events: none;
    }

    &:focus-visible {
        box-shadow: 0 0 3px rgba(0,0,0,0.4);
    }

    &.btn-primary-accent {
        color: var(--white);
        background-color: var(--brand-color-accent);
        
        &:hover {
            background: var(--button-hover-color-accent);
        }

        .btn-icon {
            background: var(--black);

            & svg path {
                stroke: var(--brand-color-accent);
            }
        }
    }

    &.btn-primary-black {
        color: var(--white);
        background-color: var(--black);
    }

    .btn-icon,
    .btn-icon-default,
    .btn-icon-hover {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;

        @media (min-width: 768px) {
            width: 48px;
            height: 48px;
        }

        & svg {
            width: 16px;
            max-height: 16px;

            @media (min-width: 768px) {
                width: 20px;
                max-height: 20px;
            }
        }
    }

    .btn-icon {
        position: relative;
        overflow: hidden;
        border-radius: 50%;
        background: var(--white);
        margin-right: -14px;
    }

    .btn-icon-default,
    .btn-icon-hover {
        position: absolute;
        inset: 0;
        translate: 0 0;
        transition: translate 0.6s ease-in-out;
    }

    .btn-icon-hover {
        translate: -100% 0;
        
        & svg path {
            stroke: var(--button-hover-color-accent);
        }
    }
}

.buttons-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;

    &.align-left {
        justify-content: flex-start;
    }

    &.align-center {
        justify-content: center;
    }

    &.align-right {
        justify-content: flex-end;
    }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/*  Layout
*/
[id="footer"] {
    padding: 60px 0;
    color: var(--white);
    background-color: var(--brand-color-black);
    
    @media (min-width: 768px) {
        padding: 120px 0 175px;
    }
    
    & > .container {
        @media (min-width: 1024px) {
            display: flex;
            justify-content: space-between;
            gap: 48px;
        }
    }
    
    & *:not(.btn, .btn *) {
        color: inherit;
    }

    & a:not(.btn) {
        color: var(--white);
        text-decoration: none;

        &:hover {
            color: var(--brand-color-accent);
        }
    }
    
    .headline-accent,
    .subheadline {
        color: var(--beige);
    }
    
    .button-holder {
        padding-bottom: 20px;
    }
    
    .footer-left {
        max-width: 1020px;
        padding: 0 0 20px;
    }

    .footer-right {
        padding: 20px 0;
        flex: 0 0 320px;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.60;
        
        @media (min-width: 768px) {
            font-size: 28px;
        }
        
        @media (min-width: 1024px) {
            text-align: right;
        }
        
        & p {
            margin: 0;
        }

        .hs-menu-wrapper ul {
            justify-content: center;
            gap: 0 10px;
            font-size: 20px;
            margin: 0 0 20px;
            
            @media (min-width: 1024px) {
                justify-content: flex-end;
            }
        }
        
        .section-social-network ul {
            justify-content: center;
            
            @media (min-width: 1024px) {
                justify-content: flex-end;
            }
        }
        
        .widget-type-logo {
            margin: 0 0 40px;
            
            @media (min-width: 1024px) {
                margin: 0 0 72px;
            }
        }
        
        .widget-type-rich_text {
            margin: 0 0 10px;
        }
    }
}