/*!
Theme Name: TwoTen Blocks
Theme URI: http://underscores.me/
Author: TwoTen Studio
Author URI: https://twotenstudio.co.uk
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: twoten-blocks
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

TwoTen Blocks is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.bg-cream {
  background: #fcf8ee;
  color: #000;
}
.bg-cream .button.btn-white {
  background: #000;
  color: #fff;
}
.bg-cream .button.btn-white::after {
  content: url(/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg);
}

.bg-black {
  background: #000;
  color: #fff;
}

.bg-blue-grey {
  background: #202124 !important;
  color: #fff;
}

.bg-grey {
  background: #f2f2f2;
  color: #000;
}

.bg-light-grey {
  background: #f8f8f8;
  color: #000;
}

.bg-mint {
  background: rgba(216, 235, 235, 0.4);
  color: #000;
}

.bg-green,
.bg-dark {
  background: rgb(14, 39, 40);
  color: #fff;
}

.bg-blue {
  background: #181e28;
  color: #fff;
}

.bg-brown {
  background: #eae2cf;
  color: #000;
}

.bg-pink {
  background: #ffe1d7;
  color: #000;
}

.bg-white {
  background: #fff;
  color: #000;
}

.bg-off-white {
  background: #f8f8f8;
  color: #000;
}

.bg-green .button,
.bg-dark .button,
.bg-brown .button,
.bg-light-text .button {
  border: 1px solid #fff;
}
.bg-green .button::after,
.bg-dark .button::after,
.bg-brown .button::after,
.bg-light-text .button::after {
  content: url(/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg) !important;
}
.bg-green .button.btn-black,
.bg-dark .button.btn-black,
.bg-brown .button.btn-black,
.bg-light-text .button.btn-black {
  background: #fff !important;
  color: #000 !important;
}
.bg-green .button.btn-black::after,
.bg-dark .button.btn-black::after,
.bg-brown .button.btn-black::after,
.bg-light-text .button.btn-black::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg") !important;
}

.bg-light-text {
  color: #fff !important;
}
.bg-light-text .button {
  color: #fff !important;
}

#page.bg-black header .header-container {
  background: rgba(255, 255, 255, 0.75);
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! 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;
  -webkit-text-size-adjust: 100%;
}

/* 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;
  height: 0;
  overflow: visible;
}

/**
 * 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;
  font-size: 1em;
}

/* 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;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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;
  font-size: 1em;
}

/**
 * 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;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  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;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * 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;
  padding: 0;
}

/**
 * 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;
  outline-offset: -2px;
}

/**
 * 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;
  font: inherit;
}

/* 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;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #000;
  font-family: "Suisse Intl";
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  font-family: "Suisse Intl";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h1 {
  font-size: 70px;
  font-style: normal;
  font-weight: 100;
  line-height: 75px;
  letter-spacing: -2.8px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 50px;
    line-height: 55px;
    letter-spacing: -1.5px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 250;
    letter-spacing: -1.2px;
  }
}
h1.hidden {
  visibility: hidden;
  font-size: 0px;
  line-height: 0px;
}

h2 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: 0;
  padding: 4px 0 0 0;
}
h2.section-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 43px;
  text-transform: none;
  text-align: center;
}

h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 35px;
  margin: 0;
  padding: 0;
}
h4 {
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
h5 {
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: -1.2px;
}
@media (max-width: 620px) {
  h5 {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.5px;
  }
}

h6 {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: 0;
}

body {
  font-size: 16px;
}

p {
  margin-bottom: 1.5em;
  font-size: 1em;
  font-weight: 300;
}

li {
  font-size: 1em;
  font-weight: 300;
  padding-bottom: 12px;
}
li:last-child {
  padding-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Suisse Intl";
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: "Suisse Intl";
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

a {
  color: #2a5adb;
}

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

.no-wrap {
  white-space: nowrap;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 30px 30px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #2a5adb;
  text-decoration: underline;
  font-weight: 500;
}
a:visited {
  color: #2a5adb;
}
a:hover, a:focus, a:active {
  color: #2a5adb;
  opacity: 0.8;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
#gform_submit_button_1::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg");
  display: inline-block;
  margin-left: 40px;
  transition: 0.3s;
}

button,
.button,
input[type=button],
input[type=reset],
input[type=submit],
.components-button {
  color: #000;
  padding: 0px 20px;
  transition: 0.3s;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 30px !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  height: 100%;
  height: 50px;
  align-content: center;
}
button:hover,
.button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.components-button:hover {
  color: inherit;
  filter: brightness(1);
  cursor: pointer;
  opacity: 1;
}
button.arrow,
.button.arrow,
input[type=button].arrow,
input[type=reset].arrow,
input[type=submit].arrow,
.components-button.arrow {
  white-space: nowrap;
}
button.arrow::after,
.button.arrow::after,
input[type=button].arrow::after,
input[type=reset].arrow::after,
input[type=submit].arrow::after,
.components-button.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg");
  display: inline-block;
  margin-left: 40px;
  transition: 0.3s;
}
button.arrow:hover::after,
.button.arrow:hover::after,
input[type=button].arrow:hover::after,
input[type=reset].arrow:hover::after,
input[type=submit].arrow:hover::after,
.components-button.arrow:hover::after {
  transform: translateX(8px);
}
button.gform-button,
.button.gform-button,
input[type=button].gform-button,
input[type=reset].gform-button,
input[type=submit].gform-button,
.components-button.gform-button {
  white-space: nowrap !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: black !important;
}
button.gform-button::after,
.button.gform-button::after,
input[type=button].gform-button::after,
input[type=reset].gform-button::after,
input[type=submit].gform-button::after,
.components-button.gform-button::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg") !important;
  display: inline-block;
  margin-left: 40px;
  transition: 0.3s;
  top: -4px;
  position: relative;
}
button.gform-button:hover::after,
.button.gform-button:hover::after,
input[type=button].gform-button:hover::after,
input[type=reset].gform-button:hover::after,
input[type=submit].gform-button:hover::after,
.components-button.gform-button:hover::after {
  transform: translateX(8px);
}
button.chevron,
.button.chevron,
input[type=button].chevron,
input[type=reset].chevron,
input[type=submit].chevron,
.components-button.chevron {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
button.chevron::after,
.button.chevron::after,
input[type=button].chevron::after,
input[type=reset].chevron::after,
input[type=submit].chevron::after,
.components-button.chevron::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/chevron-right-white.svg");
  display: inline-block;
  margin-left: 40px;
  transition: 0.3s;
}
button.chevron:hover::after,
.button.chevron:hover::after,
input[type=button].chevron:hover::after,
input[type=reset].chevron:hover::after,
input[type=submit].chevron:hover::after,
.components-button.chevron:hover::after {
  transform: translateX(8px);
}
button:active, button:focus, button:visited,
.button:active,
.button:focus,
.button:visited,
input[type=button]:active,
input[type=button]:focus,
input[type=button]:visited,
input[type=reset]:active,
input[type=reset]:focus,
input[type=reset]:visited,
input[type=submit]:active,
input[type=submit]:focus,
input[type=submit]:visited,
.components-button:active,
.components-button:focus,
.components-button:visited {
  color: inherit;
}
button.btn-black,
.button.btn-black,
input[type=button].btn-black,
input[type=reset].btn-black,
input[type=submit].btn-black,
.components-button.btn-black {
  background-color: #000 !important;
  color: #fff;
}
button.btn-black.arrow::after,
.button.btn-black.arrow::after,
input[type=button].btn-black.arrow::after,
input[type=reset].btn-black.arrow::after,
input[type=submit].btn-black.arrow::after,
.components-button.btn-black.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg");
}
button.btn-download,
.button.btn-download,
input[type=button].btn-download,
input[type=reset].btn-download,
input[type=submit].btn-download,
.components-button.btn-download {
  background-color: #000;
  color: #fff;
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
button.btn-download svg.download-system,
.button.btn-download svg.download-system,
input[type=button].btn-download svg.download-system,
input[type=reset].btn-download svg.download-system,
input[type=submit].btn-download svg.download-system,
.components-button.btn-download svg.download-system {
  position: absolute;
  right: 20px;
  top: 16px;
}
button.btn-download svg.download-arrow,
.button.btn-download svg.download-arrow,
input[type=button].btn-download svg.download-arrow,
input[type=reset].btn-download svg.download-arrow,
input[type=submit].btn-download svg.download-arrow,
.components-button.btn-download svg.download-arrow {
  position: absolute;
  right: 20px;
  top: 9px;
  transition: 0.3s;
}
button.btn-download:hover svg.download-arrow,
.button.btn-download:hover svg.download-arrow,
input[type=button].btn-download:hover svg.download-arrow,
input[type=reset].btn-download:hover svg.download-arrow,
input[type=submit].btn-download:hover svg.download-arrow,
.components-button.btn-download:hover svg.download-arrow {
  top: 13px;
  transition: 0.3s;
}
button.btn-download-grey,
.button.btn-download-grey,
input[type=button].btn-download-grey,
input[type=reset].btn-download-grey,
input[type=submit].btn-download-grey,
.components-button.btn-download-grey {
  background-color: #f2f2f2;
  color: #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 0.3s;
  border: none;
}
button.btn-download-grey svg.download-system,
.button.btn-download-grey svg.download-system,
input[type=button].btn-download-grey svg.download-system,
input[type=reset].btn-download-grey svg.download-system,
input[type=submit].btn-download-grey svg.download-system,
.components-button.btn-download-grey svg.download-system {
  position: absolute;
  right: 20px;
  top: 16px;
}
button.btn-download-grey svg.download-system path,
.button.btn-download-grey svg.download-system path,
input[type=button].btn-download-grey svg.download-system path,
input[type=reset].btn-download-grey svg.download-system path,
input[type=submit].btn-download-grey svg.download-system path,
.components-button.btn-download-grey svg.download-system path {
  stroke: #000;
}
button.btn-download-grey svg.download-arrow,
.button.btn-download-grey svg.download-arrow,
input[type=button].btn-download-grey svg.download-arrow,
input[type=reset].btn-download-grey svg.download-arrow,
input[type=submit].btn-download-grey svg.download-arrow,
.components-button.btn-download-grey svg.download-arrow {
  position: absolute;
  right: 20px;
  top: 9px;
  transition: 0.3s;
}
button.btn-download-grey svg.download-arrow path,
.button.btn-download-grey svg.download-arrow path,
input[type=button].btn-download-grey svg.download-arrow path,
input[type=reset].btn-download-grey svg.download-arrow path,
input[type=submit].btn-download-grey svg.download-arrow path,
.components-button.btn-download-grey svg.download-arrow path {
  stroke: #000;
}
button.btn-download-grey:hover svg.download-arrow,
.button.btn-download-grey:hover svg.download-arrow,
input[type=button].btn-download-grey:hover svg.download-arrow,
input[type=reset].btn-download-grey:hover svg.download-arrow,
input[type=submit].btn-download-grey:hover svg.download-arrow,
.components-button.btn-download-grey:hover svg.download-arrow {
  top: 13px;
  transition: 0.3s;
}
button.btn-charcoal,
.button.btn-charcoal,
input[type=button].btn-charcoal,
input[type=reset].btn-charcoal,
input[type=submit].btn-charcoal,
.components-button.btn-charcoal {
  background-color: #505050;
  color: #fff;
}
button.btn-charcoal.active,
.button.btn-charcoal.active,
input[type=button].btn-charcoal.active,
input[type=reset].btn-charcoal.active,
input[type=submit].btn-charcoal.active,
.components-button.btn-charcoal.active {
  background-color: #fff;
  color: #000;
}
button.btn-white, button.gform_button,
.button.btn-white,
.button.gform_button,
input[type=button].btn-white,
input[type=button].gform_button,
input[type=reset].btn-white,
input[type=reset].gform_button,
input[type=submit].btn-white,
input[type=submit].gform_button,
.components-button.btn-white,
.components-button.gform_button {
  background-color: #fff;
  color: #000;
}
button.btn-white::after, button.gform_button::after,
.button.btn-white::after,
.button.gform_button::after,
input[type=button].btn-white::after,
input[type=button].gform_button::after,
input[type=reset].btn-white::after,
input[type=reset].gform_button::after,
input[type=submit].btn-white::after,
input[type=submit].gform_button::after,
.components-button.btn-white::after,
.components-button.gform_button::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg");
}
button.btn-large,
.button.btn-large,
input[type=button].btn-large,
input[type=reset].btn-large,
input[type=submit].btn-large,
.components-button.btn-large {
  text-align: center;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 15px;
  white-space: nowrap;
  background: #ececec;
  height: 75px;
  align-content: center;
  border: none;
}
button.btn-large:hover,
.button.btn-large:hover,
input[type=button].btn-large:hover,
input[type=reset].btn-large:hover,
input[type=submit].btn-large:hover,
.components-button.btn-large:hover {
  background: #babcbe;
}
button.btn-no-border,
.button.btn-no-border,
input[type=button].btn-no-border,
input[type=reset].btn-no-border,
input[type=submit].btn-no-border,
.components-button.btn-no-border {
  border: none !important;
}
button.btn-no-padding,
.button.btn-no-padding,
input[type=button].btn-no-padding,
input[type=reset].btn-no-padding,
input[type=submit].btn-no-padding,
.components-button.btn-no-padding {
  padding: 0 !important;
  font-weight: 500 !important;
}
button.btn-no-padding::after,
.button.btn-no-padding::after,
input[type=button].btn-no-padding::after,
input[type=reset].btn-no-padding::after,
input[type=submit].btn-no-padding::after,
.components-button.btn-no-padding::after {
  margin-left: 12px !important;
}
button.white-border,
.button.white-border,
input[type=button].white-border,
input[type=reset].white-border,
input[type=submit].white-border,
.components-button.white-border {
  border: 1px solid #fff;
  color: #fff;
}
button.white-border.arrow::after,
.button.white-border.arrow::after,
input[type=button].white-border.arrow::after,
input[type=reset].white-border.arrow::after,
input[type=submit].white-border.arrow::after,
.components-button.white-border.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg");
}
button.btn-blue,
.button.btn-blue,
input[type=button].btn-blue,
input[type=reset].btn-blue,
input[type=submit].btn-blue,
.components-button.btn-blue {
  border: 1px solid #181e28;
  color: #fff;
  background-color: #181e28;
}
button.btn-blue.arrow::after,
.button.btn-blue.arrow::after,
input[type=button].btn-blue.arrow::after,
input[type=reset].btn-blue.arrow::after,
input[type=submit].btn-blue.arrow::after,
.components-button.btn-blue.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg");
}
button.btn-blue-grey,
.button.btn-blue-grey,
input[type=button].btn-blue-grey,
input[type=reset].btn-blue-grey,
input[type=submit].btn-blue-grey,
.components-button.btn-blue-grey {
  border: 1px solid #3e495b;
  color: #fff;
  background-color: #3e495b;
  padding: 0.7em 1.2rem 0.7em 1.8rem;
}
button.btn-blue-grey.arrow::after,
.button.btn-blue-grey.arrow::after,
input[type=button].btn-blue-grey.arrow::after,
input[type=reset].btn-blue-grey.arrow::after,
input[type=submit].btn-blue-grey.arrow::after,
.components-button.btn-blue-grey.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg");
}
button.btn-simple,
.button.btn-simple,
input[type=button].btn-simple,
input[type=reset].btn-simple,
input[type=submit].btn-simple,
.components-button.btn-simple {
  padding: 0px;
  border: none;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: 1px;
          text-decoration-skip-ink: 1px;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 400;
}
button.btn-simple.arrow::after,
.button.btn-simple.arrow::after,
input[type=button].btn-simple.arrow::after,
input[type=reset].btn-simple.arrow::after,
input[type=submit].btn-simple.arrow::after,
.components-button.btn-simple.arrow::after {
  margin-left: 20px;
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow-white.svg");
}
button.btn-grey,
.button.btn-grey,
input[type=button].btn-grey,
input[type=reset].btn-grey,
input[type=submit].btn-grey,
.components-button.btn-grey {
  background-color: #f2f2f2;
  color: #000;
  border: 1px solid #f2f2f2;
}
button.btn-grey.arrow::after,
.button.btn-grey.arrow::after,
input[type=button].btn-grey.arrow::after,
input[type=reset].btn-grey.arrow::after,
input[type=submit].btn-grey.arrow::after,
.components-button.btn-grey.arrow::after {
  content: url("/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg");
}
button.fit-content,
.button.fit-content,
input[type=button].fit-content,
input[type=reset].fit-content,
input[type=submit].fit-content,
.components-button.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}
button.no-border,
.button.no-border,
input[type=button].no-border,
input[type=reset].no-border,
input[type=submit].no-border,
.components-button.no-border {
  border: none;
}
button.full-width,
.button.full-width,
input[type=button].full-width,
input[type=reset].full-width,
input[type=submit].full-width,
.components-button.full-width {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-flow: wrap;
}
@media (max-width: 620px) {
  .buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.btn-login a {
  color: #181e28 !important;
  background-color: #fff;
  color: #181e28 !important;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid #fff;
}
.btn-login:hover a {
  color: #fff !important;
  background-color: #181e28 !important;
  color: #fff !important;
}

.dark-header .btn-login a {
  color: #fff !important;
  background-color: #181e28 !important;
  border: 1px solid #181e28 !important;
}
.dark-header .btn-login:hover a {
  color: #181e28 !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

button#gform_submit_button_1 {
  height: 50px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  color: #000;
  border: none;
  border-radius: 15px !important;
  padding: 3px;
  background-color: #f2f2f2;
  padding-right: 0px !important;
  border: 1px solid #babcbe;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  color: #111;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #000;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
}

.gform-theme--foundation .gform_fields {
  row-gap: 20px !important;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.63398 10.5C6.01888 11.1667 6.98113 11.1667 7.36603 10.5L12.1292 2.25C12.5141 1.58333 12.0329 0.75 11.2631 0.75H1.73686C0.967059 0.75 0.485935 1.58333 0.870835 2.25L5.63398 10.5Z' fill='%23181E28'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 13px 11px;
  padding-right: 2rem; /* give room for the arrow */
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px !important;
}

@media (min-width: 640px) {
  .gform-theme--foundation .ginput_address_city,
  .gform-theme--foundation .ginput_address_country,
  .gform-theme--foundation .ginput_address_state,
  .gform-theme--foundation .ginput_address_zip {
    inline-size: 100% !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 30px;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
body.admin-bar header {
  margin-top: 32px;
}

.negative-margin-top {
  margin-top: -15px;
}

.error-404 {
  height: 80vh;
}
.error-404 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.animate > * {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s, opacity 0.7s;
  transition-delay: calc(0.5s * var(--stagger, 0));
}

.animate.animate-off > * {
  opacity: 1 !important;
}

.animate > *.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page,
.post {
  margin: 0 !important;
  overflow-x: hidden;
}

.wp-block-columns.is-layout-flex {
  gap: 20px;
}

.video-bg a {
  position: absolute;
  bottom: 40px;
  left: 100px;
  cursor: pointer;
}

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

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.bg-image {
  background-size: cover !important;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.red {
  color: #cc1921;
  margin: 0;
}

.double-col {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 620px) {
  .double-col {
    grid-template-columns: 1fr;
  }
}
.g {
  display: grid;
  gap: 80px;
}
@media (max-width: 1000px) {
  .g {
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .g {
    gap: 80px;
  }
}

.g-2 {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px) {
  .g-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .g-2 {
    grid-template-columns: 1fr;
  }
}

.g-3 {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .g-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .g-3 {
    grid-template-columns: 1fr;
  }
}

.g-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 820px) {
  .g-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .g-4 {
    grid-template-columns: 1fr;
  }
}

.g-5 {
  grid-template-columns: repeat(5, 1fr);
}

.g-6 {
  grid-template-columns: repeat(6, 1fr);
}

.g-7 {
  grid-template-columns: repeat(7, 1fr);
}

.g-8 {
  grid-template-columns: repeat(8, 1fr);
}

.g-auto {
  display: grid;
  grid-template-areas: "media detail detail";
  grid-template-columns: 260px;
  grid-auto-columns: 260px;
  gap: 0;
}

.f {
  display: flex !important;
}

.f-auto {
  flex-wrap: wrap;
}

.fc {
  flex-direction: column;
}

.fr {
  flex-direction: row;
}
@media (max-width: 768px) {
  .fr.fr-mobile {
    flex-direction: column;
  }
}

.gap-1 {
  gap: 30px;
}

.gap-2 {
  gap: 40px;
}

.gap-3 {
  gap: 100px;
}

.gap-4 {
  gap: 120px;
}

.gap-5 {
  gap: 160px;
}

.gap-6 {
  gap: 200px;
}

.c {
  flex-direction: column;
}

.r {
  flex-direction: row;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.jc-sa {
  justify-content: space-around;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-e {
  justify-content: end;
}

.jc-fs {
  justify-content: flex-start;
}

.ai-c {
  align-items: center;
}

.ai-fe {
  align-items: flex-end;
}

.ai-fs {
  align-items: flex-start;
}

.ac-c {
  align-content: center;
}

.ac-fe {
  align-content: flex-end;
}

.ac-fs {
  align-content: flex-start;
}

.ac-sb {
  align-content: space-between;
}

.ac-sa {
  align-content: space-around;
}

.as-c {
  align-self: center;
}

.as-fe {
  align-self: flex-end;
}

.as-fs {
  align-self: flex-start;
}

.as-sb {
  align-self: space-between;
}

.as-sa {
  align-self: space-around;
}

.as-stretch {
  align-self: stretch;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}
@media (max-width: 768px) {
  .w-50.w-mobile {
    width: 100%;
  }
}

.w-66 {
  width: 66%;
}
@media (max-width: 768px) {
  .w-66.w-mobile {
    width: 100%;
  }
}

.w-33 {
  width: 33%;
}
@media (max-width: 768px) {
  .w-33.w-mobile {
    width: 100%;
  }
}

.w-25 {
  width: 25%;
}
@media (max-width: 768px) {
  .w-25.w-mobile {
    width: 100%;
  }
}

.w-20 {
  width: 20%;
}
@media (max-width: 768px) {
  .w-20.w-mobile {
    width: 100%;
  }
}

.w-10 {
  width: 10%;
}
@media (max-width: 768px) {
  .w-10.w-mobile {
    width: 100%;
  }
}

.w-5 {
  width: 5%;
}
@media (max-width: 768px) {
  .w-5.w-mobile {
    width: 100%;
  }
}

.w-1 {
  width: 1%;
}
@media (max-width: 768px) {
  .w-1.w-mobile {
    width: 100%;
  }
}

.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.h-33 {
  height: 33%;
}

.h-25 {
  height: 25%;
}

.h-20 {
  height: 20%;
}

.h-10 {
  height: 10%;
}

.h-5 {
  height: 5%;
}

.h-1 {
  height: 1%;
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 50%;
}

.mw-33 {
  max-width: 33%;
}

.mw-25 {
  max-width: 25%;
}

.mw-20 {
  max-width: 20%;
}

.mw-10 {
  max-width: 10%;
}

.mw-5 {
  max-width: 5%;
}

.mw-1 {
  max-width: 1%;
}

.f-50 {
  flex: 0 50%;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

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

.pt-1 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 60px;
}

.pt-4 {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .pt-4 {
    padding-top: 60px;
  }
}

.pt-5 {
  padding-top: 120px;
}

.pt-6 {
  padding-top: 160px;
}

.pt-7 {
  padding-top: 200px;
}

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

.pb-1 {
  padding-bottom: 30px;
}

.pb-2 {
  padding-bottom: 40px;
}

.pb-3 {
  padding-bottom: 60px;
}

.pb-4 {
  padding-bottom: 100px;
}

.pb-5 {
  padding-bottom: 120px;
}

.pb-6 {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .pb-6 {
    padding-bottom: 100px;
  }
}

.pb-7 {
  padding-bottom: 200px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 30px;
}

.p-2 {
  padding: 40px;
}

.p-3 {
  padding: 60px;
}

.p-4 {
  padding: 100px;
}

.p-5 {
  padding: 120px;
}

.p-6 {
  padding: 6rem;
}
@media (max-width: 767px) {
  .p-6 {
    padding: 3rem;
  }
}

.p-7 {
  padding: 200px;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.pt-l {
  padding-top: 100px;
}

.pb-l {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .mt-6 {
    margin-top: 3rem;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 160px;
}

.mb-7 {
  margin-bottom: 200px;
}

.container,
.wp-block-columns {
  max-width: 1412px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0px 30px !important;
}
@media (max-width: 880px) {
  .container,
  .wp-block-columns {
    padding: 0 20px !important;
  }
}
.container.f.reverse,
.wp-block-columns.f.reverse {
  flex-direction: row-reverse;
}

.inner-container {
  max-width: 1260px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.full-container {
  margin: 0px 30px;
}
@media (max-width: 880px) {
  .full-container {
    margin: 0 20px;
  }
}

@media (min-width: 820.1px) {
  .mobile-only {
    display: none;
  }
}
@media (max-width: 820px) {
  .desktop-only {
    display: none;
  }
}
@media (min-width: 620.1px) {
  .mobile-only-xs {
    display: none !important;
  }
}
@media (max-width: 620px) {
  .desktop-only-xs {
    display: none !important;
  }
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(38, 45, 68, 0.7); /* Black w/ opacity */
}
@media (max-width: 767px) {
  .modal {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: none;
  }
}

/* Modal Content/Box */
.modal-content {
  background-color: none;
  margin: 7% auto;
  width: 80%;
  color: unset;
  padding: 30px;
  max-width: 800px;
  box-shadow: 80px 80px 150px rgba(0, 0, 0, 0.8);
  z-index: 999;
}
@media (max-width: 767px) {
  .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    box-shadow: none;
  }
}
.modal-content .modal-inner {
  padding: 30px;
}
.modal-content .modal-inner p {
  font-size: 0.8rem;
}
.modal-content .modal-inner .editor {
  margin-bottom: 100px;
}
.modal-content .modal-inner .two-col p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.modal-content .modal-inner .wpcf7-acceptance {
  font-size: 0.6rem !important;
}
@media (max-width: 767px) {
  .modal-content {
    padding: 0px;
  }
}

/* The Close Button */
.wc-block-checkout,
.wc-block-cart {
  margin-top: 4rem !important;
}
.wc-block-checkout h2,
.wc-block-cart h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

table.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block {
  border-spacing: 0px !important;
}

.share {
  display: flex;
  flex-direction: column;
}
.share p {
  margin: 0;
  width: 100%;
}
.share .share-content {
  display: flex;
  flex-direction: column;
}
.share .share-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.share .share-buttons a svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 620px) {
  .share .share-buttons a svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .wp-block-columns.is-style-reverse-on-mobile {
    flex-direction: column-reverse !important;
  }
}
.outer-container {
  border-radius: 15px 15px 0 0;
}

.nagative-margin-top {
  margin-top: -15px;
}

.page-numbers {
  background: white;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  border-radius: 50%;
}
.page-numbers.next, .page-numbers.prev {
  background: none;
}

.pagination.text-center.mt-5 {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background: transparent;
  color: #000;
}
header.light-header .header-container {
  border-radius: 0 0 30px 30px;
}
header .main-navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
header .main-navigation .menu {
  display: flex;
  height: 100%;
  align-items: center;
}
header a {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: #000;
  text-decoration: none;
}
header a:visited {
  color: #000;
}
header .header-container {
  padding: 0px 25px;
  height: 85px;
  position: relative;
  z-index: 90;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1412px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 30px 30px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
header .header-container .site-branding {
  display: flex;
  align-items: center;
}
header .header-container .site-branding img {
  width: 124px;
  image-rendering: -webkit-optimize-contrast;
}
header .header-container .global-search {
  width: 24%;
}
@media (max-width: 1260px) {
  header .header-container .global-search {
    display: none;
  }
}
header .header-container nav#site-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .header-container nav#site-navigation-right {
  border-left: 1px solid #f8f8f8;
  padding-left: 30px;
  height: 100%;
  width: 22%;
}
@media (max-width: 1260px) {
  header .header-container nav#site-navigation-right {
    border-left: none;
  }
}
header .header-container nav#site-navigation-right .btn-grey {
  background-color: #ececec;
  padding: 0px 18px;
  height: 40px;
  white-space: nowrap;
  align-content: center;
  border-radius: 30px;
  text-align: center;
}
header .header-container nav#site-navigation-right .btn-white {
  border: 1px solid #ececec;
  padding: 0px 18px;
  height: 40px;
  white-space: nowrap;
  align-content: center;
  border-radius: 30px;
  text-align: center;
}
header .header-container nav#site-navigation-right #right-header {
  gap: 8px;
}
header .header-container nav#site-navigation-right {
  display: flex;
  justify-content: flex-end;
  font-weight: 500;
}
header .header-container nav#site-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}
header .header-container nav#site-navigation div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
header .header-container .desktop-nav ul.sub-menu {
  display: grid;
  grid-template-columns: 1fr;
}
header .header-container .desktop-nav ul.sub-menu li {
  border-bottom: 1px solid #000;
  padding: 12px;
}
header .header-container .desktop-nav ul.sub-menu li:last-child {
  border-bottom: none;
}
header .header-container .desktop-nav li:last-child:hover .sub-menu {
  left: -133px;
}
header .header-container .desktop-nav li .sub-menu li:hover .sub-menu {
  left: 225px;
}
header .header-container .global-search {
  padding: 22px 30px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}
header .dropdown-panel {
  position: absolute;
  top: 0; /* adjust based on your header */
  left: 0;
  right: 0;
  background: #f2f2f2;
  overflow: hidden;
  min-height: 0;
  transition: min-height 0.4s ease, padding 0.4s ease;
  z-index: 80;
}
header .dropdown-panel.open {
  min-height: 100vh;
  z-index: 80;
}
header .dropdown-panel.open .inner-container {
  padding: 120px 0 60px 0;
}
header .dropdown-panel.open .strapline p {
  margin: 0;
  padding: 12px 0px;
}
header .header-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
header .header-news-grid h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: 0.2px;
  margin: 0px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #303030;
  color: #fff;
}
header .header-news-grid h4 a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
header .header-news-grid p {
  margin: 0;
  padding-bottom: 20px;
}
header .header-news-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .header-news-grid ul li {
  padding-bottom: 12px;
}
header .header-news-grid ul li a {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
header .dropdown-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  height: 0vh;
}
header .dropdown-content .header-dropdown-grid {
  padding-top: 200px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
header .dropdown-content .header-dropdown-grid::-webkit-scrollbar {
  display: none;
}
header .dropdown-content .header-dropdown-grid a {
  text-decoration: none;
  width: 100%;
  display: block;
}
header .dropdown-content .header-dropdown-grid a:first-of-type {
  margin-top: 0;
}
header .dropdown-content .header-dropdown-grid .col1 {
  grid-column: span 2;
}
header .dropdown-content .header-dropdown-grid .col2 {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
}
header .dropdown-content .header-dropdown-grid .col2 a {
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid #babcbe;
  margin-top: 12px;
}
header .dropdown-content .header-dropdown-grid .col2 a:first-of-type {
  margin-top: 0;
}
header .dropdown-content .header-dropdown-grid .col3 {
  grid-column: span 1;
  border-right: 1px solid #babcbe;
  margin-right: -15px;
}
header .dropdown-content .header-dropdown-grid .col4 {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
header .dropdown-content .primary-link {
  margin-bottom: 30px;
}
header .dropdown-content .primary-link a {
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .dropdown-content .additional-link img {
  height: 140px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
header .dropdown-content .additional-link p {
  border-top: 1px solid #babcbe;
  padding-top: 12px;
  margin-top: 12px;
}
header .dropdown-content.visible {
  opacity: 1;
  pointer-events: auto;
  height: 100vh;
}
header .switcher-tabs {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
header .switcher-tabs .active-btn {
  background-color: #000;
}
header .switcher-tabs button {
  white-space: nowrap;
}
header .type-switcher {
  display: none;
}
header .type-switcher.is-active-type {
  display: block;
}
header .clinical-area-repeater.type-switcher {
  display: none;
}
header .clinical-area-repeater.type-switcher.is-active-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
header .mobile-menu-panel {
  background: #fff;
  padding-top: 20px;
}
header .mobile-menu-panel button {
  justify-content: center;
}
header .mobile-menu-panel .primary-link {
  display: none;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .switcher-tabs {
  flex-direction: row;
  margin-bottom: 20px;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .type-switcher.is-active-type {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .clinical-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #babcbe;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .clinical-area:first-of-type {
  border-top: none;
  margin-bottom: 12px;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .clinical-area:last-of-type {
  padding-top: 20px;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .type-switcher a {
  border-bottom: 1px solid #babcbe;
  padding-bottom: 8px;
}
header .mobile-menu-panel .product-switcher .header-dropdown-grid .type-switcher a:last-of-type {
  border-bottom: none;
}
header .mobile-menu-panel .col4 {
  display: none;
}
header .mobile-menu-panel #product-type-repeater,
header .mobile-menu-panel .mobile-header-flex {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .mobile-menu-panel #product-type-repeater a,
header .mobile-menu-panel .mobile-header-flex a {
  border-bottom: 1px solid #babcbe;
  padding-bottom: 8px;
}
header .mobile-menu-panel #product-type-repeater a:last-of-type,
header .mobile-menu-panel .mobile-header-flex a:last-of-type {
  border-bottom: none;
}
header input#search-filter-input-text-0 {
  font-size: 16px;
}
header input#search-filter-input-text-0::-moz-placeholder {
  font-size: 16px;
}
header input#search-filter-input-text-0::placeholder {
  font-size: 16px;
}
header .search-filter-icon__svg {
  display: none;
}

@media (min-width: 820.1px) {
  .mobile-nav {
    display: none !important;
  }
  .hamburger {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .desktop-nav {
    display: none !important;
  }
  header .header-container {
    margin: 0;
    position: relative;
    z-index: 999;
  }
  .wc-menu-cart__container.show {
    opacity: 1;
    display: block;
    position: relative;
  }
  .mobile-nav-dropdown {
    display: block !important;
    position: absolute;
    height: 0vh;
    background: #f8f8f8;
    width: 100vw;
    top: -2000px;
    left: 0;
    transition: 0.3s;
    color: #000;
  }
  .mobile-nav-dropdown.is-open {
    top: 0px;
    height: 100vh;
    overflow-x: auto;
    padding-bottom: 160px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-nav-dropdown.is-open::-webkit-scrollbar {
    display: none;
  }
  .mobile-nav-dropdown .btn-grey a {
    background-color: #ececec;
    color: black;
    border: none;
  }
  .mobile-nav-dropdown .btn-white a {
    background-color: transparent;
    color: #000;
    border: 1px solid #babcbe;
  }
  .main-navigation ul {
    display: unset;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: 0.7s;
  }
  .main-navigation ul ul {
    box-shadow: none;
    position: unset;
    z-index: 99999;
    transition: max-height 0s ease-out;
    max-height: 0px;
    overflow: hidden;
  }
  .wc-menu-cart__toggle-button .cart-button-icon[data-counter]:before {
    position: relative !important;
    top: 0px !important;
    max-width: 28px !important;
  }
  li.menu-item.menu-item-type-post_type.menu-item-object-custom.mini-cart {
    margin-top: 30px;
  }
}
.hamburger {
  padding: 15px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: #000;
  border: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  right: 20px;
  height: 40px;
  width: 40px;
  top: 20px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--spring .hamburger-inner {
  top: 15px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 7px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: -3px;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: -3px;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* container */
.solutions-nav {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

/* vertical buttons */
.solutions-nav__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}
.solutions-nav__tabs button {
  background-color: transparent !important;
  border: none !important;
}
.solutions-nav__tabs button.is-active {
  background-color: #3e495b !important;
}

/* panels */
.solutions-nav__panel {
  display: none;
  animation: fade 0.2s ease-in-out;
}

.solutions-nav__panel.is-active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* columns + links */
.solutions-nav__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 920px) {
  .solutions-nav__columns {
    grid-template-columns: 1fr 1fr;
  }
}

.solutions-nav__column-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  border-bottom: 1px solid #303030;
  margin: 0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.solutions-nav__column-title a {
  text-decoration: none !important;
  font-weight: 500 !important;
}

.solutions-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.solutions-nav__links li {
  padding-bottom: 8px;
}
.solutions-nav__links li:last-child {
  padding-bottom: 0;
}

.solutions-nav__links a {
  text-decoration: none;
  font-weight: 400 !important;
}

.mobile-accordion-menu {
  margin-top: 100px;
}
.mobile-accordion-menu .header-product-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-accordion-menu .header-product-grid .header-product-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  color: #fff;
}
.mobile-accordion-menu .header-product-grid .header-product-item div {
  grid-column: span 2;
}
.mobile-accordion-menu .header-product-grid .header-product-item h4 {
  padding: 0;
  color: #fff;
}
.mobile-accordion-menu .header-product-grid .header-product-item .button {
  grid-column: span 3;
}
.mobile-accordion-menu .header-news-grid {
  grid-template-columns: 1fr;
  gap: 40px;
}
.mobile-accordion-menu .header-news-grid .button {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}
.mobile-accordion-menu .solutions-nav {
  flex-direction: column;
  gap: 40px;
}
.mobile-accordion-menu .solutions-nav .solutions-nav__tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}
.mobile-accordion-menu .solutions-nav .solutions-nav__tabs button {
  justify-content: center;
  padding: 8px 12px;
}
.mobile-accordion-menu .solutions-nav .solutions-nav__tabs button::after {
  display: none;
  content: "";
}
.mobile-accordion-menu .solutions-nav .solutions-nav__panels {
  width: 100%;
}
.mobile-accordion-menu .solutions-nav .solutions-nav__columns {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: 100%;
}

.mobile-menu-panel {
  display: none;
  padding: 0 20px 40px 20px;
  color: #fff;
}

.mobile-accordion-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-accordion-section:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #babcbe;
  cursor: pointer;
  padding: 10px 20px 9px 20px;
  color: #000;
}
.mobile-menu-trigger svg path {
  stroke: #000;
}
.mobile-menu-trigger.active {
  border-bottom: 1px solid #babcbe;
}

.mobile-nav-bottom {
  margin-top: 40px;
  padding: 0px 20px;
}
.mobile-nav-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav-bottom ul a {
  border-radius: 30px;
  border: 1px solid #fff;
  width: 100%;
  padding: 8px 20px;
  display: inline-block;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.mobile-nav-bottom .btn-login a {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
}
.mobile-nav-bottom .btn-login a:hover {
  background-color: #3e495b;
  color: #fff;
}

.header-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
}
@media (max-width: 820px) {
  .header-product-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
.header-product-grid .header-product-item h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: 0.2px;
  margin: 0px;
  padding-top: 20px;
  color: #fff;
}
.header-product-grid .header-product-item p {
  margin: 0;
  padding-bottom: 20px;
  color: #fff;
}
.header-product-grid .header-product-item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 15px;
}

.global-search .search-filter-input-text.search-filter-input-text.search-filter-field__input {
  background: #f2f2f2;
  border: 1px solid #babcbe;
  border-radius: 50px;
  height: 40px;
  position: relative;
  padding: 0px 20px;
  color: black;
}
.global-search .search-filter-input-text.search-filter-input-text.search-filter-field__input::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  height: 32px;
  width: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Ccircle cx='17.7129' cy='18.1055' r='17.5' fill='black'/%3E%3Cpath d='M16.6192 20.433C19.3979 20.433 21.6505 18.1491 21.6505 15.3317C21.6505 12.5144 19.3979 10.2305 16.6192 10.2305C13.8405 10.2305 11.588 12.5144 11.588 15.3317C11.588 18.1491 13.8405 20.433 16.6192 20.433Z' stroke='white' stroke-width='1.25' stroke-linecap='round'/%3E%3Cpath d='M21.4579 21.168L24.3279 24.4055' stroke='white' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}

.services-type {
  border-bottom: 1px solid #babcbe;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.services-type h2 {
  padding-bottom: 12px;
}
.services-type a {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

footer {
  position: relative;
  z-index: 2;
  color: #000;
  background-color: #000;
}
footer .outer-container {
  border-radius: 15px 15px 0 0;
  background-color: #fff;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
}
footer .footer-grid .col {
  border-left: 1px solid #babcbe;
  padding-left: 12px;
}
footer .footer-grid .col.col-1 {
  border-left: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  footer .footer-grid {
    display: flex;
    flex-direction: column;
  }
  footer .footer-grid .col {
    border-top: 1px solid #babcbe;
    border-left: none;
    padding-left: 0px;
    padding-top: 20px;
  }
  footer .footer-grid .col.col-1 {
    border-top: none;
  }
}
footer .footer-grid p,
footer .footer-grid ul {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 125% */
  letter-spacing: -0.6px;
  margin: 0;
}
footer .col-1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer img {
  width: 75%;
  max-width: 270px;
}
@media (max-width: 767px) {
  footer img {
    max-width: 180px;
  }
}

.footer-menu {
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  padding-bottom: 14px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.footer-menu li:last-child {
  padding-bottom: 0;
}
.footer-menu a {
  color: #000;
  text-decoration: none;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  transform: translateY(7px);
}
.social-icons img {
  width: 26px;
}

#newsletter-signup {
  color: #fff;
  position: relative;
  height: 800px;
}
#newsletter-signup .outer-container {
  display: flex;
  align-items: center;
  height: 100%;
}
#newsletter-signup .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#newsletter-signup .background-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#newsletter-signup .background-container {
  background-color: #202124;
  border-radius: 15px;
  padding: 20px;
  max-width: 745px;
  margin: 0 auto;
  position: relative;
}
#newsletter-signup .double-col .col {
  align-content: center;
}
#newsletter-signup .double-col .col p {
  margin: 0;
  padding: 0;
}
#newsletter-signup .double-col .col h3 {
  padding: 12px 0;
}
#newsletter-signup form#gform_1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 620px) {
  #newsletter-signup form#gform_1 {
    flex-direction: column;
    gap: 20px;
  }
}
#newsletter-signup form#gform_1 #gform_fields_1 {
  display: flex;
  width: 100%;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
#newsletter-signup form#gform_1 div#field_1_1 {
  width: 100%;
  background-color: #505050;
  border: none;
  border-radius: 30px;
  position: relative;
}
#newsletter-signup form#gform_1 input#input_1_1 {
  border: none !important;
  border-radius: 30px !important;
  padding: 12px !important;
  height: 50px;
}
#newsletter-signup div#validation_message_1_1 {
  position: absolute;
  top: 26px;
  left: 34px;
}
#newsletter-signup #gform_1_validation_container {
  position: absolute;
  bottom: -131px;
  right: -20px;
}
#newsletter-signup .gform-footer.gform_footer.top_label {
  padding: 0px;
  margin: 0px;
}
#newsletter-signup .gform-body.gform_body {
  width: 100%;
}
@media (max-width: 620px) {
  #newsletter-signup .gform-body.gform_body {
    width: 100%;
  }
}
#newsletter-signup input {
  background: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0px !important;
  padding: 12px 0 !important;
  color: #fff !important;
}
#newsletter-signup input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}
#newsletter-signup input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}
#newsletter-signup .button {
  white-space: nowrap;
}
@media (max-width: 620px) {
  #newsletter-signup .gform-button-wrapper {
    width: 100%;
  }
  #newsletter-signup .gform-button-wrapper .button {
    width: 100%;
  }
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

.cc-window {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
  max-width: 400px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 9999;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}
.cc-window .cc-message {
  margin-bottom: 1em;
}
.cc-window .cc-link {
  color: #2c7cbf;
  text-decoration: underline;
}
.cc-window .cc-compliance {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cc-window .cc-compliance .cc-btn {
  padding: 8px 14px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.cc-window .cc-compliance .cc-btn.cc-allow {
  background-color: #2c7cbf;
  color: #fff;
}
.cc-window .cc-compliance .cc-btn.cc-allow:hover {
  background-color: #1d66a6;
}
.cc-window .cc-compliance .cc-btn.cc-deny {
  background-color: #e0e0e0;
  color: #333;
}
.cc-window .cc-compliance .cc-btn.cc-deny:hover {
  background-color: #d2d2d2;
}

/*--------------------------------------------------------------
# Utilitiespto
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 30px;
  overflow-x: hidden;
}

.video-bg a {
  position: absolute;
  bottom: 40px;
  left: 100px;
  cursor: pointer;
}

.bg-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.red {
  color: #cc1921;
  margin: 0;
}

.f {
  display: flex;
}

.c {
  flex-direction: column;
}

.r {
  flex-direction: row;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.jc-sa {
  justify-content: space-around;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-fs {
  justify-content: flex-start;
}

.ai-c {
  align-items: center;
}

.ai-fe {
  align-items: flex-end;
}

.ai-fs {
  align-items: flex-start;
}

.ac-c {
  align-content: center;
}

.ac-fe {
  align-content: flex-end;
}

.ac-fs {
  align-content: flex-start;
}

.ac-sb {
  align-content: space-between;
}

.ac-sa {
  align-content: space-around;
}

.as-c {
  align-self: center;
}

.as-fe {
  align-self: flex-end;
}

.as-fs {
  align-self: flex-start;
}

.as-sb {
  align-self: space-between;
}

.as-sa {
  align-self: space-around;
}

.as-stretch {
  align-self: stretch;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-33 {
  width: 33%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.w-5 {
  width: 5%;
}

.w-1 {
  width: 1%;
}

.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.h-33 {
  height: 33%;
}

.h-25 {
  height: 25%;
}

.h-20 {
  height: 20%;
}

.h-10 {
  height: 10%;
}

.h-5 {
  height: 5%;
}

.h-1 {
  height: 1%;
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 50%;
}

.mw-33 {
  max-width: 33%;
}

.mw-25 {
  max-width: 25%;
}

.mw-20 {
  max-width: 20%;
}

.mw-10 {
  max-width: 10%;
}

.mw-5 {
  max-width: 5%;
}

.mw-1 {
  max-width: 1%;
}

.f-50 {
  flex: 0 50%;
}

.container {
  padding: 20px;
  max-width: 1340px;
  margin: 0 auto;
}

.single {
  padding-top: 120px;
}
.single .post-featured-image {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single .post-featured-image {
    margin-bottom: 40px;
  }
}
.single .post-featured-image img {
  width: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 820px) {
  .single .post-featured-image img {
    max-height: 500px;
  }
}
.single .date {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 125% */
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}
@media (max-width: 620px) {
  .single .date {
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
}
.single .intro-text-author {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}
@media (max-width: 767px) {
  .single .intro-text-author {
    display: flex;
    flex-direction: column;
  }
}
.single .intro-text-author .col1 {
  grid-column: span 2;
}
@media (max-width: 1000px) {
  .single .intro-text-author .col1 {
    display: none;
  }
}
.single .intro-text-author .intro-text {
  grid-column: span 6;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 45px;
  margin: 0;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  .single .intro-text-author .intro-text {
    grid-column: span 7;
  }
}
@media (max-width: 820px) {
  .single .intro-text-author .intro-text {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 40px;
  }
}
.single .intro-text-author .col4 {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1000px) {
  .single .intro-text-author .col4 {
    grid-column: span 4;
  }
}
@media (max-width: 767px) {
  .single .intro-text-author .col4 {
    margin-bottom: 40px;
  }
}
.single .intro-text-author .col4 .button {
  border-radius: 15px !important;
  width: 100%;
}
.single .intro-text-author .col4 .button svg path {
  stroke: black;
}
.single .text-editor {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1412px !important;
}
@media (max-width: 880px) {
  .single .text-editor {
    padding: 0 20px;
  }
}
.single .text-editor .inner-container {
  grid-column: span 6;
}
@media (max-width: 1000px) {
  .single .text-editor .inner-container {
    grid-column: span 7;
  }
}
@media (max-width: 1000px) {
  .single .text-editor .inner-container {
    grid-column: span 10;
  }
}
@media (max-width: 767px) {
  .single .text-editor .inner-container {
    grid-column: span 12;
  }
}
.single .text-editor .col-first {
  grid-column: span 2;
}
@media (max-width: 1000px) {
  .single .text-editor .col-first {
    display: none;
  }
}
.single .text-editor h2 {
  margin: 0;
  padding-bottom: 60px;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 45px; /* 112.5% */
  letter-spacing: -1.2px;
}
@media (max-width: 768px) {
  .single .text-editor h2 {
    padding-bottom: 30px;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
  }
}
.single .text-editor h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.6px;
  margin: 0px;
  padding-top: 12px;
}
.single .text-editor h4 + p {
  padding-top: 0;
  margin-top: 0;
}
.single .text-editor p:last-of-type {
  margin-bottom: 80px;
}
.single .text-editor p:first-of-type {
  margin-top: 0;
}
.single .article-header {
  text-align: center;
  max-width: 930px;
  margin: 0 auto;
}
.single .article-header h1 {
  margin: 0;
  font-size: 60px;
  font-style: normal;
  font-weight: 250;
  line-height: 65px; /* 108.333% */
  letter-spacing: -1.8px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .single .article-header h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 250;
    line-height: 47px;
    letter-spacing: 1px;
    padding-bottom: 80px;
  }
}
@media (max-width: 620px) {
  .single .article-header h1 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 300;
    padding-bottom: 60px;
  }
}

blockquote {
  border-left: 1px solid #000;
  margin: 10px 0 0 -80px;
  position: relative;
  padding-top: 0px;
  padding-left: 8px;
}
@media (max-width: 1000px) {
  blockquote {
    margin: 10px 0 0 0px;
  }
}
blockquote p {
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 120% */
}
@media (max-width: 767px) {
  blockquote p {
    font-size: 22px;
    line-height: 28px;
  }
}
blockquote h3 {
  padding-left: 8px;
}

blockquote::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M8.1,27H.9v-7.5l3.9-7.1h3.7l-3.5,7.6h3.2v6.9ZM17.6,27h-7.3v-7.5l3.9-7.1h3.7l-3.5,7.6h3.2v6.9Z'/><path d='M22.4,12.5h7.3v7.5l-3.8,7.4h-3.7l3.5-8h-3.2v-7ZM31.9,12.5h7.3v7.5l-3.8,7.4h-3.7l3.5-8h-3.2v-7Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 12px;
  transform: translateX(10px);
  top: -13px;
  position: relative;
}

figure.wp-block-image.size-large {
  display: flex;
  justify-content: center;
}

.archive h1 {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  padding-top: 160px;
}
.archive h3 {
  margin: 0;
  padding-top: 20px;
  padding-bottom: 140px;
  max-width: 800px;
}
@media (max-width: 620px) {
  .archive h3 {
    padding-bottom: 60px;
  }
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
}
.archive-grid h5 {
  margin: 0;
}
.archive-grid p {
  font-weight: 400;
  margin: 0;
}
.archive-grid .blog-loop {
  position: relative;
  overflow: auto;
}
@media (min-width: 620px) {
  .archive-grid .blog-loop:first-child {
    grid-column: 1/-1;
    background-color: transparent;
  }
  .archive-grid .blog-loop:first-child img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 15px;
    width: 100%;
    display: block;
    max-height: 500px;
  }
  .archive-grid .blog-loop:first-child .blog-loop-content {
    position: absolute;
    top: calc(50% + 5px);
    left: 0px;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
    height: 99%;
    margin: 0;
  }
  .archive-grid .blog-loop:first-child .blog-loop-content .blog-loop-content-inner {
    height: 100%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    padding: 20px;
  }
}
@media (min-width: 620px) and (max-width: 820px) {
  .archive-grid .blog-loop:first-child .blog-loop-content .blog-loop-content-inner {
    justify-content: flex-start;
  }
}
@media (min-width: 620px) {
  .archive-grid .blog-loop:first-child .blog-loop-content .blog-loop-content-inner h5 {
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 52px; /* 108.333% */
    letter-spacing: -1.92px;
    margin-bottom: 20px;
  }
}
@media (min-width: 620px) and (max-width: 820px) {
  .archive-grid .blog-loop:first-child .blog-loop-content .blog-loop-content-inner h5 {
    font-size: 32px;
    line-height: 36px; /* 112.5% */
    letter-spacing: -1.28px;
  }
}
@media (min-width: 620px) {
  .archive-grid .blog-loop:first-child .blog-loop-content .blog-loop-content-inner .read-more {
    background-color: #fff;
    border-radius: 30px;
    width: 200px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
  }
}
.archive-grid .blog-loop .blog-loop-content {
  height: 230px;
}
.archive-grid .case-study-card-large {
  min-width: unset;
  height: unset;
}
.archive-grid .post-excerpt {
  padding: 12px 0;
}
.archive-grid .searchandfilter {
  margin-bottom: 20px;
}
.archive-grid .searchandfilter ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 620px) {
  .archive-grid .searchandfilter ul {
    grid-template-columns: 1fr 1fr;
  }
}
.archive-grid .searchandfilter ul li ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.archive-grid .searchandfilter ul li.sf-field-search {
  grid-column: span 4;
  width: 100%;
}
@media (max-width: 620px) {
  .archive-grid .searchandfilter ul li.sf-field-search {
    grid-column: span 2;
  }
}
.archive-grid .searchandfilter ul input,
.archive-grid .searchandfilter ul label {
  width: 100% !important;
}
.archive-grid .searchandfilter ul input,
.archive-grid .searchandfilter ul select {
  width: 100%;
  padding: 16px !important;
  border-radius: 30px;
  border: none !important;
  background-color: #ececec !important;
}
.archive-grid .sf-input-checkbox {
  display: none;
}
.archive-grid .sf-label-checkbox {
  display: inline-block;
  padding: 20px !important;
  margin: 0.25em;
  background-color: #ececec;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.archive-grid .sf-input-checkbox:checked + .sf-label-checkbox {
  background-color: #0014dc;
  color: #fff;
  border-color: #0014dc;
}
.archive-grid .sf-label-checkbox .sf-count {
  font-size: 0.85em;
  margin-left: 0.4em;
  color: #888;
}
.archive-grid .pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.archive-grid .pagination .page-numbers {
  height: 35px;
  width: 35px;
  text-align: center;
  background-color: #e9effc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}
.archive-grid .pagination .page-numbers.current {
  background-color: #000;
  color: #fff;
}
.archive-grid .pagination a.next,
.archive-grid .pagination a.prev {
  background: none !important;
}
.archive-grid .pagination a.next svg path,
.archive-grid .pagination a.prev svg path {
  stroke: #000;
}

.wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

a.insights-card-link {
  text-decoration: none;
  color: inherit;
}

.insights-card {
  display: flex;
  flex-direction: column;
  height: 450px;
  background-color: #f2f2f2;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
  text-decoration: none;
}
.insights-card h4 {
  padding: 24px 12px 12px 12px;
  margin: 0;
}
.insights-card .insights-card-bottom {
  padding: 12px;
}

.insights-tax {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding: 12px;
}

.product-type-card {
  border-radius: 15px;
  border: 1px solid #f2f2f2;
}
.product-type-card .product-card-content {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-type-card .product-card-content .product-card-content-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.product-type-card .product-card-content .product-card-content-inner h4 {
  margin: 0;
}
@media (max-width: 620px) {
  .product-type-card .product-card-content .product-card-content-inner p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
  }
}
@media (max-width: 620px) {
  .product-type-card .product-card-content .product-card-content-inner .button {
    font-size: 14px;
  }
}
.product-type-card .product-card-content .product-card-content-inner .product-featured-image {
  height: 100%;
  width: 100%;
}
.product-type-card .product-card-content .product-card-content-inner .product-featured-image img {
  padding: 30px 0;
  height: 100%;
  width: 100%;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card {
  border: 1px solid #f2f2f2;
  border-radius: 15px;
}
.product-card .product-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.product-card .product-card-content img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 326px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .product-card-content .product-card-content-inner {
  padding: 12px;
}
.product-card .product-card-content .product-card-content-inner h4 {
  margin: 0;
}
.product-card .product-card-content .product-card-content-inner .button {
  height: 40px;
}

.people-card {
  border-radius: 15px;
  border: 1px solid #babcbe;
  border-radius: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.people-card .people-card-image {
  border-radius: 15px 15px 0 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 425px;
}
@media (max-width: 820px) {
  .people-card .people-card-image {
    height: 300px;
  }
}
@media (max-width: 620px) {
  .people-card .people-card-image {
    height: 225px;
  }
}
.people-card .people-card-image img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.people-card .people-card-content {
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.people-card .people-card-content h4 {
  margin: 0;
}
@media (max-width: 620px) {
  .people-card .people-card-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
  }
}
@media (max-width: 620px) {
  .people-card .people-card-content .button {
    font-size: 14px;
  }
}
.people-card:last-child {
  margin-right: 30px;
}

.inline-slider .people-card .people-card-image {
  width: 454px;
}
@media (max-width: 820px) {
  .inline-slider .people-card .people-card-image {
    width: 300px;
  }
}
@media (max-width: 820px) {
  .inline-slider .people-card .people-card-image {
    width: 225px;
  }
}
.inline-slider .people-card a.button.arrow.btn-grey.no-border.full-width {
  background-color: #fff;
}

.datasheet-card {
  border: 1px solid #babcbe;
  border-radius: 20px;
}
.datasheet-card h4 {
  padding: 20px;
  margin: 0;
  border-bottom: 1px solid #babcbe;
  display: flex;
  align-items: center;
  gap: 20px;
}
.datasheet-card .datasheet-content {
  padding: 20px;
}
.datasheet-card .datasheet-content p {
  margin: 0;
  padding-bottom: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-radius: 15px;
  padding: 20px;
}
@media (max-width: 620px) {
  .grid-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.grid-container .col p:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.grid-container .col p:last-of-type {
  margin-bottom: 50px;
}
.grid-container .col h3 {
  margin: 40px 0;
}
.grid-container .col1 {
  grid-column: span 4;
}
.grid-container .col1 h2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.grid-container .col2 {
  grid-column: span 1;
}
.grid-container .col3 {
  grid-column: span 7;
  display: flex;
}
.grid-container .col3 img {
  border-radius: 15px;
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-container.switch-cols .col1 {
  order: 3;
}
.grid-container.switch-cols .col2 {
  order: 2;
}
.grid-container.switch-cols .col3 {
  order: 1;
}
.grid-container.bg-white, .grid-container.bg-blue-grey, .grid-container.bg-light-grey {
  padding: 20px;
  border-radius: 15px;
}
.grid-container.bg-blue-grey a.button.btn-black.arrow.no-border {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
}
.grid-container.bg-blue-grey a.button.btn-black.arrow.no-border::after {
  content: url(/wp-content/themes/twoten-blocks/assets/icons/button-arrow.svg);
}
.grid-container.brochure-card {
  margin-bottom: 30px;
}

.event-card,
.insight-card-with-image {
  background-color: #fff;
  width: 100%;
  position: relative;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-card:hover,
.insight-card-with-image:hover {
  text-decoration: none;
  color: #000;
}
.event-card:visited,
.insight-card-with-image:visited {
  text-decoration: none;
  color: #000;
}
.event-card .event-top .insights-tax,
.event-card .insight-top .insights-tax,
.insight-card-with-image .event-top .insights-tax,
.insight-card-with-image .insight-top .insights-tax {
  border-bottom: 1px solid #babcbe;
  width: 100%;
  padding: 12px;
}
.event-card h6,
.insight-card-with-image h6 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-card h3,
.insight-card-with-image h3 {
  padding: 12px 12px 60px 12px;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 120% */
}
.event-card .event-image,
.event-card .insight-image,
.insight-card-with-image .event-image,
.insight-card-with-image .insight-image {
  width: 100%;
  height: 225px;
}
.event-card .event-image img,
.event-card .insight-image img,
.insight-card-with-image .event-image img,
.insight-card-with-image .insight-image img {
  border-radius: 0 0 15px 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-card .event-link,
.event-card .insight-link,
.insight-card-with-image .event-link,
.insight-card-with-image .insight-link {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 24px);
  left: 12px;
  height: 35px;
}
.event-card .event-link .button,
.event-card .insight-link .button,
.insight-card-with-image .event-link .button,
.insight-card-with-image .insight-link .button {
  height: 40px;
}
.event-card .excerpt,
.insight-card-with-image .excerpt {
  display: none;
}

.brochure-card-small {
  width: 100%;
}
.brochure-card-small .brochure-card-image {
  width: 100%;
}
.brochure-card-small .brochure-card-image img {
  width: 100%;
  border-radius: 15px 15px 0 0 !important;
}
.brochure-card-small .brochure-card-content {
  background-color: #babcbe;
  padding: 12px;
  border-radius: 0 0 15px 15px;
  margin-top: -8px;
  z-index: 9;
  position: relative;
}
.brochure-card-small .brochure-card-content h4 {
  margin: 0;
  height: 70px;
}
@media (max-width: 620px) {
  .brochure-card-small .brochure-card-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
  }
}
@media (max-width: 620px) {
  .brochure-card-small .brochure-card-content .button {
    font-size: 14px;
  }
}
.brochure-card-small .brochure-card-content .button {
  height: 40px;
  background-color: white;
  color: #000;
  border: none;
}
.brochure-card-small .brochure-card-content .button svg path {
  stroke: black;
}

.people-card-mini {
  display: flex;
  padding: 12px;
  background-color: #f2f2f2;
  border-radius: 15px;
  gap: 12px;
}
.people-card-mini img {
  max-width: 86px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: grid;
}
.people-card-mini h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.people-card-mini p {
  margin: 0;
}

body {
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */