/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* set core body defaults */
body {
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: #fff;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1.4;
}

/* change focus outline */
:focus {
  outline: 1px dotted #c5c5c5;
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: crisp-edges;
}

/* natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* color of highlight */
::-moz-selection {
  background: var(--yellow);
  color: var(--black);
  text-shadow: none;
}
::selection {
  background: var(--yellow);
  color: var(--black);
  text-shadow: none;
}

/* set variables */
:root {
  --font: 'neue-haas-grotesk-display', sans-serif;
  --icons: 'Font Awesome 5 Pro', sans-serif;
  --black: #1b1b1b;
  --white: #ffffff;
	--yellow: #ffd021;
  --blue: #264a97;
  --lightblue: #42b7e8;
  --fade: all 0.15s ease-out;
}

/* default font styles */
h1 {
  font-family: var(--font);
	font-size: 78px;
  font-weight: 600;
  color: var(--black);
	line-height: 1;
  margin: 0 0 30px;
}
  .black-bg h1 {
    color: var(--white);
  }
  h1.small {
    font-size: 64px;
  }
  h1.smaller {
    font-size: 48px;
  }
  h1.hidden {
    visibility: hidden;
    text-indent: -999px;
    height: 0px;
    margin: 0;
  }
h2 {
  position: relative;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin: 0 0 60px;
}
  img + h2 {
    display: flow-root;
  }
  h2 + h4,
  h2 + h3 {
    position: relative;
    top: -25px;
  }
.figure + h2 {
  margin: 20px 0 60px;
}
  h2:not(.gform_submission_error):after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 90px;
    height: 4px;
    background: var(--yellow);
  }
  h2[style="text-align: center;"]:after,
  .main.centered h2:after,
  h2[style="text-align: center; white-space: pre-wrap;"]:after {
    left: 50%;
    transform: translateX(-50%);
  }
  h2.no-style {
    margin: 0 0 30px;
  }
  h2.no-style:after {
    display: none;
  }
  .black-bg h2 {
    color: var(--white);
  }
  h2.category {
    font-size: 26px;
  }
    h2.category strong {
      color: var(--blue);
    }
h3 {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 25px;
}
  h3 a {
    color: var(--black);
  }
    h3 a:hover {
      color: var(--blue);
    }
  .black-bg h3 {
    color: var(--white);
  }
h4 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0px;
  line-height: 1.1;
  margin: 0 0 25px;
}
  .black-bg h4 {
    color: var(--white);
  }
h5 {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2;
  margin: 0 0 20px;
}
  .black-bg h5 {
    color: var(--yellow);
  }
h6 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 20px;
}
  .black-bg h6 {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
  }

/* default link styles */
a {
  color: var(--blue);
  text-decoration: none;
  text-decoration-skip-ink: auto;
	transition: var(--fade);
}
  a:hover {
    color: var(--lightblue);
    text-decoration: none;
  }
.black-bg a {
  color: var(--yellow);
}
  .black-bg a:hover {
    color: var(--white);
  }

/* default element styles */
.container {
  width: auto;
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto;
}
.main p, .main ul, .main ol,
#single-post p, #single-post ul, #single-post ol {
  margin: 0 0 30px;
}
.main ul,
#single-post ul {
  list-style: outside disc;
  margin: 0 0 20px 20px;
}
  .main ul ul,
  #single-post ul ul {
    list-style: outside circle;
    margin: 25px 0 25px 25px;
  }
  .main .column ul li {
    margin-bottom: 20px;
  }
  .main ul em strong,
  #single-post ul em strong {
    color: #0d9dce;
  }
.main ol,
#single-post ol {
  list-style: outside decimal;
  margin: 0 0 20px 20px;
}
.black-bg p,
.black-bg ul,
.black-bg ol {
  color: var(--white);
}
hr {
  height: 1px;
  color: #e2e2e2;
  background: #e2e2e2;
  border: 0;
  padding: 0;
  margin: 50px 0;
}
.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.aligncenter {
  float: none;
  margin: 0 auto 30px;
}
.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.alignleft,
.aligncenter,
.alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
.embed-container { 
  position: relative; 
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button {
  display: inline-flex;
  align-items: baseline;
  align-self: start;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  background: var(--blue);
  border: 3px solid var(--blue);
  border-radius: 32px;
  padding: 15px 50px;
  transition: var(--fade);
  cursor: pointer;
}
.centered-button {
  display: flex;
  justify-content: center;
}
.button + .button {
  margin-left: 10px !important;
}
  .button:hover {
    color: var(--blue);
    background: transparent;
    border: 3px solid var(--blue);
  }
.button.yellow,
.black-bg .button,
.main .gform_wrapper .gform_footer input[type=submit] {
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--yellow);
}
.main .gform_wrapper .gform_footer input[type=submit] {
  margin-top: 20px;
}
  .button.yellow:hover,
  .black-bg .button:hover,
  .button.yellow.active,
  .main .gform_wrapper .gform_footer input[type=submit]:hover {
    color: var(--yellow);
    background: transparent;
    border: 3px solid var(--yellow);
  }
  .main .gform_wrapper .gform_footer input[type=submit]:hover {
    color: var(--white);
    background: var(--black);
    border: 3px solid var(--black);
  }
sup {
  font-size: inherit;
  vertical-align: text-top;
}
#topcontrol {
  z-index: 9;
}
.to-top-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: var(--black);
  text-align: center;
  background: var(--yellow);
  border-radius: 50%;
  transition: var(--fade);
}
	.to-top-btn:before {
    position: relative;
    top: 2px;
	}
  .to-top-btn:hover {
	  background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--white);
    transform: scale(1.1);
	}
@media screen and (max-width: 1366px) {
	.container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
	img {
	  max-width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (min-width: 1025px) {
	.slide-up {
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 600ms 1 ease-out forwards;
	}
	@keyframes slideUp {
		0% {
		  top: 90px;
		  opacity: 0;
		}
		30% {
		  top: 20px;
		  opacity: 1;
		}
    100% {
		  top: 0;
		  opacity: 1;
		}
	}
  @keyframes fadeIn {
		0% {
		  opacity: 0;
		}
		100% {
		  opacity: 1;
		}
	}
  @keyframes blurIn {
		0% {
		  filter: blur(6px);
      opacity: 0;
		}
		100% {
		  filter: blur(0px);
      opacity: 1;
		}
	}
}
@media screen and (max-width: 768px) {
	.attachment-post-thumbnail,
	.alignleft,
	.aligncenter,
	.alignright {
	  float: none;
	  display: block;
	  max-width: 100%;
	  margin: 0 auto 30px;
	}
}
@media screen and (max-width: 580px) {
	h2 {
    font-size: 34px;
  }
  .circles-divider img {
    min-height: 100px;
    object-fit: cover;
  }
  #topcontrol {
    display: none;
  }
  .button + .button {
    margin-left: 0 !important;
  }
}

/* announcement bar */

#announcement-bar-wrapper {
	display: none;
}
#announcement-bar {
	position: relative;
	z-index: 99;
	display: flex;
	min-height: 50px;
	padding: 10px 0;
	background: var(--yellow);
}
#announcement-bar .container {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #fff;
}
	#announcement-bar p {
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
		margin: 0;
	}
    #announcement-bar p span {
      display: inline-block;
      padding-left: 30px;
      transition: var(--fade);
    }
      #announcement-bar p span:hover {
        color: var(--blue);
      }
    #announcement-bar p span:before {
      position: relative;
      top: 3px;
      left: -15px;
      display: inline-block;
      content: '';
      width: 2px;
      height: 20px;
      background: var(--black);
    }
	#announcement-bar .close {
		position: absolute;
		top: 0;
		right: 0;
		width: 32px;
		height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
		font-size: 10px;
		font-weight: bold;
		color: var(--black);
		text-align: center;
		cursor: pointer;
		transition: var(--fade);
	}
@media screen and (max-width: 1024px) {
	#announcement-bar {
		padding: 15px 0 25px;
		margin: 0 0 10px;
	}
	#announcement-bar .container {
		flex-direction: column;
		text-align: center;
	}
	#announcement-bar p {
		margin: 0 0 15px;
	}
	#announcement-bar .close {
		position: absolute;
		z-index: 10;
		top: auto;
		bottom: -7px;
		left: 50%;
		right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
		transform: translateX(-50%);
		font-size: 11px;
		line-height: 1;
    color: var(--yellow);
		background: var(--black);
		border: 2px solid var(--green);
	}
  #announcement-bar p span {
    display: block;
    padding: 20px 0 0;
  }
  #announcement-bar p span:before {
    display: none;
  }
}

/* header */

#header {
  position: absolute;
  z-index: 9;
  width: 100%;
	padding: 42px 0;
}
body.page-template-tpl-brochure-download #header {
  position: relative;
  margin-bottom: 100px;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
	#header .logo {
	  display: block;
		max-width: 240px;
	  height: auto;
	}
		#header .logo img {
		  width: 100%;
		}
@media screen and (max-width: 386px) {
  #header .container {
    align-items: baseline;
  }
  #header .logo {
		max-width: 200px;
	}
}

/* hp banner */

#banner {
  position: relative;
}
#banner.interior {
  position: relative;
  min-height: 800px;
  padding-top: 140px;
}
  #banner.interior:after {
    content: '';
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 60%);
  }
  #banner .scroll-down {
    position: absolute;
    z-index: 9;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    background: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    color: var(--black);
    line-height: 48px;
    text-align: center;
  }
    #banner .scroll-down:hover {
      background: var(--black);
      color: var(--yellow);
      border: 2px solid var(--white);
      transform: translateX(-50%) scale(1.1);
    }
  #banner.short {
    min-height: 420px;
  }
  #banner.shorter {
    min-height: 140px;
  }
  #banner .wrapper {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    padding: 5% 0 0;
  }
  #banner.gradient-small .wrapper:before,
  #banner.gradient-medium .wrapper:before,
  #banner.gradient-large .wrapper:before,
  #banner.gradient-xl .wrapper:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
  }
  #banner.gradient-small .wrapper:before {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);
  }
  #banner.gradient-medium .wrapper:before {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,0) 60%,rgba(255,255,255,0) 100%);
  }
  #banner.gradient-large .wrapper:before {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,0) 70%,rgba(255,255,255,0) 100%);
  }
  #banner.gradient-xl .wrapper:before {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 40%,rgba(255,255,255,0) 90%,rgba(255,255,255,0) 100%);
  }
  #banner .container {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'text .';
    width: 100%;
    height: 100%;
    padding-top: 200px;
  }
  #banner.interior .container {
    grid-template-columns: 2fr 1fr;
    padding-top: 240px;
  }
    #banner.vertically-centered .container {
      padding-top: 0;
      top: 50%;
      height: auto;
      transform: translateY(-80%);
    }
  #banner > img {
    width: 100%;
    min-height: 986px;
    object-fit: cover;
  }
  #banner:not(.interior) > img {
    filter: blur(8px);
    opacity: 0;
    animation: blurIn 1.4s 1 ease-out forwards;
  }
    #banner.interior > img {
      min-height: 800px;
    }
  #banner-text {
    position: relative;
    grid-area: text;
  }
    #banner:not(.interior) #banner-text h1 {
      opacity: 0;
      animation: fadeIn 800ms 400ms 1 ease-out forwards;
    }
    #banner.interior h1 {
      font-size: 62px;
      margin: 0 0 15px;
    }
    #banner.white-shadow #banner-text:before {
      position: absolute;
      z-index: -1;
      top: -14%;
      left: -25%;
      content: '';
      width: 130%;
      height: 60%;
      background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0,rgba(255,255,255,0.8) 45%,rgba(255,255,255,0) 70%);
    }
    #banner-text h2 {
      font-size: 34px;
      margin: 0 0 30px;
    }
    #banner:not(.interior) #banner-text h2 {
      opacity: 0;
      animation: fadeIn 800ms 400ms 1 ease-out forwards;
    }
    #banner-text h2:after {
      display:none;
    }
    #banner-text h2 span {
      position: relative;
      display: inline-flex;
      color: var(--black);
      line-height: 1.4em;
      background: var(--yellow);
      border-radius: 12px;
      padding: 5px 10px;
      margin: 0 0 3px;
    }
    #banner-text p {
      line-height: 1.3;
    }
    #banner.interior #banner-text img {
      margin: 0 0 15px;
    }
    #banner:not(.interior) #banner-text .button {
      opacity: 0;
      animation: fadeIn 400ms 2s 1 ease-out forwards;
    }
  #banner.interior p,
  #banner.interior ul {
    font-size: 28px;
    margin: 0 0 30px;
  }
  #banner.interior ul {
    list-style: outside disc;
    margin: 0 0 30px 30px;
  }
  #banner.interior .button {
    margin: 10px 0 0;
  }
  .page-id-7 #banner .button {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
  }
    .page-id-7 #banner .button:hover {
      background: transparent;
      border-color: var(--black);
    }
  #banner.overlay-dots:before {
    position: absolute;
    top: 200px;
    left: 0;
    content: '';
    width: 230px;
    height: 560px;
    background: url(../images/dots-full.png) no-repeat top left;
    background-size: contain;
  }
@media screen and (max-width: 1366px) {
  #banner .container {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  body.single-products #banner.interior #banner-text {
    background: rgba(255,255,255,0.7);
    padding: 5%;
  }
  #banner.vertically-centered .container {
    transform: translateY(-50%);
  }
  #banner .scroll-down {
    display: none;
  }
  #banner .container {
    padding-top: 0;
    align-items: center;
  }
  #banner .container,
  #banner.interior .container {
    grid-template-columns: 1fr;
  }
  #banner > img,
  #banner:not(.interior) > img {
    min-height: 760px;
    opacity: 0.4;
    object-position: 75% 100%;
    filter: blur(0px);
  }
  body.single-products #banner.interior > img {
    opacity: 0.5;
  }
  #banner-text {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  #banner.interior #banner-text:before {
    display: none;
  }
  #banner-text h1,
  #banner:not(.interior) #banner-text h1 {
    opacity: 1;
  }
  #banner-text h2,
  #banner:not(.interior) #banner-text h2 {
    display: block;
    color: var(--black);
    line-height: 1.4em;
    background: var(--yellow);
    border-radius: 12px;
    padding: 5px 10px;
    margin: 0 0 30px;
    opacity: 1;
  }
  #banner-text h2 span {
    display: inline;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  #banner-text h2 span:not(:last-child) {
    margin-right: 8px;
  }
  #banner:not(.interior) #banner-text .button {
    opacity: 1;
  }
}
@media screen and (max-width: 580px) {
  #banner.interior .container {
    padding-top: 0px;
  }
  #banner h1,
  #banner.interior h1 {
    font-size: 44px;
  }
  #banner h2 {
    font-size: 22px;
  }
  #banner .wrapper {
    padding: 12% 0 0;
  }
  #banner > img {
    min-height: 680px;
    object-position: 85% 100%;
  }
  #banner.overlay-dots:before {
    display: none;
  }
}

/* hp intro */

#hp-intro {
  background: var(--black);
}
#hp-intro .container {
  max-width: 800px;
  text-align: center;
}
  #hp-intro h4 {
    font-size: 34px;
    margin: 0;
  }
  #hp-intro h3 {
    font-size: 70px;
  }
@media screen and (max-width: 580px) {
  #hp-intro h4 {
    font-size: 22px;
  }
  #hp-intro h3 {
    font-size: 56px;
  }
}

/* main content */

.main {
  position: relative;
  z-index: 8;
}
  .main.centered {
    text-align: center;
  }
  .main.black-bg {
    background: var(--black);
  }
  .main.grey-bg {
    background: #fafafa;
  }
    .main.grey-bg img {
      mix-blend-mode: multiply;
    }
  .main .blue {
    font-weight: 400;
    color: var(--lightblue);
  }
  .main .grey {
    font-weight: 600;
    color: #a6a8ab;
  }
.main .container {
  display: flex;
  flex-direction: column;
  align-items: normal;
  padding-top: 110px;
  padding-bottom: 110px;
}
.main.vertically-centered .container {
  align-items: center;
}
  .main.dots {
    overflow: hidden;
  }
  .main.dots.bottom {
    padding-bottom: 110px;
  }
  .main.dots img.dots {
    position: absolute;
    z-index: -1;
    max-width: 200px;
    opacity: 0.35;
  }
  .main.black-bg.dots img.dots {
    opacity: 0.15;
  }
    .main.dots img.dots.top-left {
      top: 0;
      left: 0;
    }
    .main.dots img.dots.top-right {
      top: 0;
      right: 0;
      transform: scaleX(-1);
    }
    .main.dots img.dots.bottom-left {
      bottom: -23px;
      left: 0;
      transform: rotate(-90deg);
    }
    .main.dots img.dots.bottom-right {
      bottom: 0;
      right: 0;
      transform: rotate(-180deg);
    }
    .main.dots img.dots.bottom {
      max-width: 100%;
      width: 100%;
      bottom: -60px;
      left: 0;
      opacity: 0.5;
    }
    .main.dots img.dots.large-left {
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }
    .main.dots img.dots.large-right {
      top: 50%;
      right: 0;
      transform: rotate(-180deg) translateY(-50%);
    }
@media screen and (max-width: 1440px) {
  .main.dots img.dots {
    max-width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .main.dots img.dots.bottom {
    bottom: 0;
    opacity: 1;
  }
  .main.dots.bottom {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .main.dots img.dots {
    max-width: 100px;
  }
}
.showcase-block {
  padding: 30px 0;
}
  .showcase-block.black-bg {
    background: radial-gradient(circle at center right, rgb(49, 49, 49) 0%,rgba(27,27,27,1) 80%);
  }
.showcase-block .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
  align-items: center;
}
.main.showcase-block.sub-footer .container {
  padding: 80px 0 60px;
}
  .showcase-block h2:after {
    background: var(--blue);
  }
    .showcase-block.black-bg h2:after {
      background: var(--yellow);
    }
  .showcase-block h2 {
    font-size: 72px;
  }
  .showcase-block h3 {
    font-size: 52px;
    font-weight: 600;
    color: var(--black);
  }
    .showcase-block.black-bg h3 {
      color: var(--yellow);
    }
  .showcase-block h4 {
    font-size: 44px;
    color: var(--black);
    margin: 0 0 30px;
  }
    .showcase-block.black-bg h4 {
      color: var(--white);
    }
    .showcase-block h4 em {
      text-decoration: underline;
    }
  .showcase-block .button {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    margin: 20px 0 40px;
  }
  .showcase-block.black-bg .button {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
  }
    .showcase-block .button:hover {
      background: transparent;
      color: var(--blue);
    }
    .showcase-block.black-bg .button:hover {
      color: var(--black);
    }
    .showcase-block.black-bg .button:hover {
      color: var(--yellow);
    }
@media screen and (max-width: 1024px) {
  .showcase-block .container {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-items: center;
    text-align: center;
  }
  .showcase-block h2 {
    font-size: 52px;
    margin: 0 0 40px;
  }
  .showcase-block h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 580px) {
  .showcase-block h2 {
    font-size: 36px;
  }
  .showcase-block h3 {
    font-size: 44px;
  }
  .showcase-block h4 {
    font-size: 32px;
  }
  .showcase-block h4 em {
    display: inline-block;
  }
}

/* news section */

#news h2 {
  font-size: 76px;
}
  #news .news-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
  }
  .news-blocks article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
    .news-blocks article .article-date {
      font-size: 16px;
      font-weight: 600;
      color: var(--yellow);
      margin: 0 0 10px;
    }
    .news-blocks article .article-title {
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
    }
      .news-blocks article .article-title a {
        color: var(--white);
      }
      .news-blocks article .article-title a:hover {
        color: var(--yellow);
      }
    .news-blocks article p {
      flex: 1;
    }
    .news-blocks article .button {
      background: var(--yellow);
      font-weight: 600;
      color: var(--black);
      border-color: var(--yellow);
      margin-top: 20px;
    }
      .news-blocks article .button:hover {
        background: transparent;
        color: var(--yellow);
      }
@media screen and (max-width: 768px) {
  #news .news-blocks {
    grid-template-columns: 1fr;
    grid-gap: 80px;
  }
  .news-blocks article {
    padding: 20px;
  }
}

/* footer */

#footer {
  background: var(--black);
}
#footer .container:first-of-type {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 80px;
}
#footer .button {
  background: var(--yellow);
  font-weight: 600;
  color: var(--black);
  border-color: var(--yellow);
  margin: 0 0 30px;
}
  #footer .button:hover {
    background: transparent;
    color: var(--yellow);
  }
#footer h4 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: var(--yellow);
}
  #footer nav h4:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 90px;
    height: 2px;
    background: var(--yellow);
    opacity: 0;
    transition: var(--fade);
  }
  #footer nav:hover h4:after {
    bottom: -8px;
    opacity: 1;
  }
#footer aside {
  justify-self: end;
}
#footer ul {
  list-style: none;
  margin: 0;
}
  #footer ul a {
    font-size: 18px;
    color: var(--white);
  }
  #footer ul a:hover,
  #footer ul li.current-menu-item a {
    color: var(--yellow);
  }
#footer .social {
  display: flex;
  justify-content: flex-end;
}
  #footer .social a {
    font-size: 26px;
    color: var(--white);
  }
    #footer .social a:hover {
      color: var(--yellow);
    }
  #footer .social a:not(:last-child) {
    margin-right: 20px;
  }
#footer .container:last-of-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
#footer .logo {
  border-right: 1px solid var(--yellow);
  padding: 0 20px 10px;
  margin: 0 20px 0 0;
}
#footer p {
  font-size: 14px;
  color: #cecece;
  letter-spacing: 1.5px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  #footer .container:first-of-type {
    grid-template-columns: repeat(2, auto);
    grid-template-areas: 'nav1 nav2'
    'nav3 nav4'
    'aside aside';
    grid-gap: 60px;
  }
  #footer nav:nth-of-type(1) {
    grid-area: nav1;
  }
  #footer nav:nth-of-type(2) {
    grid-area: nav2;
  }
  #footer nav:nth-of-type(3) {
    grid-area: nav3;
  }
  #footer nav:nth-of-type(4) {
    grid-area: nav4;
  }
  #footer nav {
    text-align: center;
  }
  #footer aside {
    grid-area: aside;
    justify-self: center;
  }
  #footer .social {
    justify-content: center;
  }
  #footer nav h4:after {
    display: none;
  }
  #footer .container:last-of-type {
    padding-top: 0;
    padding-bottom: 90px;
    justify-content: center;
  }
}
@media screen and (max-width: 580px) {
  #footer .container:first-of-type {
    grid-template-columns: 1fr;
    grid-template-areas: 'nav1'
    'nav2'
    'nav3'
    'nav4'
    'aside';
  }
  #footer .container:last-of-type {
    display: grid;
  }
  #footer .logo {
    border-right: 0px solid var(--yellow);
    padding: 0;
    margin: 0 0 20px;
  }
  #footer p {
    text-align: center;
  }
}

/* about page */

#board-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 80px;
}
  #board-members h2 {
    font-size: 70px;
    grid-column: 1 / -1;
  }
  #board-members aside {
    display: flex;
    flex-direction: column;
  }
    #board-members aside {
      display: flex;
      flex-direction: column;
    }
    #board-members aside img {
      width: 170px;
      height: 170px;
      object-fit: cover;
      border: 6px solid var(--yellow);
      border-radius: 50%;
      margin: 0 auto 25px;
    }
    #board-members aside .titles-wrap {
      min-height: 300px;
    }
    #board-members aside h3 {
      font-size: 30px;
      font-weight: 600;
      color: var(--white);
      text-align: center;
      margin: 0 0 5px;
    }
    #board-members aside .member-title {
      display: block;
      font-size: 16px;
      color: var(--yellow);
      text-transform: uppercase;
      text-align: center;
    }
    #board-members aside p {
      flex: 1;
      padding-top: 25px;
    }
    #board-members aside .additional-bio-info {
      display: none;
    }
@media screen and (max-width: 1200px) {
  #board-members aside .titles-wrap {
    min-height: 325px;
  }
}
@media screen and (max-width: 1024px) {
  #board-members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #board-members aside .titles-wrap {
    min-height: 300px;
  }
}
@media screen and (max-width: 580px) {
  #board-members {
    grid-template-columns: 1fr;
  }
  #board-members h2 {
    font-size: 46px;
  }
  #board-members aside .titles-wrap {
    min-height: auto;
  }
}

/* partners page */

.partner-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px 280px;
}
  .partner-blocks aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-blocks img {
    width: 350px;
    height: 240px;
    object-fit: scale-down;
    align-self: center;
    margin: 0 0 30px;
  }
  .partner-blocks .partner-text {
    flex: 1;
  }
@media screen and (max-width: 1024px) {
  .partner-blocks {
    grid-gap: 110px;
  }
}
@media screen and (max-width: 768px) {
  .partner-blocks {
    grid-template-columns: 1fr;
  }
}

/* resources / blog / news */


.resource-title {
  padding: 90px 0 0;
}
  .resource-title + .main .container {
    padding-top: 0px;
  }
.resource-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}
.resource-blocks:not(:last-child) {
  margin: 0 0 110px;
}
  .resource-blocks .block {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);
    border-radius: 40px;
  }
  .resource-blocks .block .img-wrap {
    position: relative;
    width: 100%;
    height: 325px;
    border-radius: 40px 40px 0 0;
  }
  .resource-blocks.news-blocks .block .img-wrap {
    height: 280px;
  }
    .resource-blocks .block .img-wrap .category {
      position: absolute;
      z-index: 8;
      top: 25px;
      left: 20px;
    }
      .resource-blocks .block .img-wrap .category a {
        padding: 2px 10px;
        background: var(--yellow);
        border-radius: 12px;
        color: var(--black);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: uppercase;
        transition: var(--fade);
      }
      .resource-blocks .block .img-wrap .category a:not(:first-of-type) {
        margin-left: 4px;
      }
      .resource-blocks .block .img-wrap .category a:hover {
        background: var(--black);
        color: var(--yellow);
      }
  .resource-blocks .block img {
    position: relative;
    z-index: 7;
    width: 100%;
    height: 325px;
    margin: 0 0 10px;
    border-radius: 40px 40px 0 0;
    object-fit: cover;
  }
  .resource-blocks.news-blocks .block img {
    height: 280px;
    object-position: 100% 40%;
  }
  .resource-blocks .block aside {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 30px 40px;
  }
  .resource-blocks .block h3 {
    display: table;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
  }
  .resource-blocks.news-blocks .block h3 {
    letter-spacing: 0px;
    margin: 0;
  }
  .resource-blocks .block p {
    flex: 1;
  }
.resource-blocks:not(.news-blocks) .button {
  padding: 15px 20px;
}
.resource-blocks .date {
  font-size: 16px;
  color: var(--blue);
  letter-spacing: 0px;
}
.resource-blocks p {
  font-size: 16px;
}
.resource-blocks.news-blocks p {
  margin: 20px 0 30px;
}
  .resource-blocks.news-blocks p:last-of-type {
    flex: 1;
  }
.resource-table {
  display: grid;
  margin: 0 0 40px;
}
#regulatory-table-wrap {
  position: relative;
}
#regulatory-table-wrap p.small {
  font-size: 15px;
  font-style: italic;
  text-align: center;
}
.scroll-table-left,
.scroll-table-right {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: var(--black);
  transition: var(--fade);
  cursor: pointer;
}
  .scroll-table-left:hover,
  .scroll-table-right:hover {
    color: var(--yellow);
  }
.scroll-table-left {
  left: -15px;
}
.scroll-table-right {
  right: -35px;
}
.resource-table.regulatory {
  position: relative;
  display: grid;
  grid-template-columns: repeat(13, 276px);
  transform: rotateX(180deg);
  overflow-x: scroll;
  background: var(--white);
  border: 1px solid #cecece;
  width: calc(100% - 1px);
}
.resource-table.regulatory aside {
  transform: rotateX(180deg);
}
  .resource-table.certification {
    grid-template-columns: repeat(4, auto);
  }
  .resource-table.regulatory .row {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    align-items: center;
    padding: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .resource-table.regulatory .row:first-of-type {
    position: sticky;
    z-index: 9;
    left: 0;
    background: var(--black);
    color: var(--white);
    border-right: 1px solid #cecece;
  }
    .resource-table.regulatory .row div {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      font-size: 16px;
      padding: 20px;
      text-align: center;
    }
    .resource-table.regulatory .row:not(:first-of-type) div:nth-child(even) {
      background: #e8e8e8;
    }
    .resource-table.regulatory .row:not(:first-of-type):nth-child(odd) {
      border-left: 1px solid #cecece;
      border-right: 1px solid #cecece;
    }
    .resource-table.regulatory .row:first-of-type,
    .resource-table.regulatory .row div:first-of-type {
      font-weight: 700;
    }
    .resource-table.regulatory .row div:first-of-type {
      background: #cecece;
    }
    .resource-table.regulatory .row:first-of-type div:first-of-type {
      background: #cecece;
    }
    .resource-table.regulatory .row div em {
      font-weight: 400;
    }
    .resource-table.regulatory .row div span {
      font-weight: 700 !important;
      color: var(--black) !important;
    }
  .resource-table aside {
    padding: 20px 40px;
  }
    .resource-table:not(.regulatory) aside:not(:first-child) {
      border-left: 2px solid #cecece;
    }
  .resource-table strong {
    display: block;
  }
#category-select {
  align-self: flex-end;
  margin: 0 0 40px;
}
#category-select select {
  appearance: none;
  min-width: 300px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--white);
  padding: 8px 10px;
  color: #223c52;
  font-family: var(--font);
  font-size: 16px;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23264a97%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.category-list {
  display: flex;
  margin: 0 0 30px;
  padding: 20px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
  #single-post .category-list p {
    font-size: 16px;
    margin: 0;
  }
@media screen and (max-width: 1024px) {
  .resource-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .resource-table.certification {
    grid-template-columns: repeat(2, auto);
  }
  .resource-table:not(.regulatory) aside:nth-child(3) {
    border-left: 0px solid #cecece;
  }
  #category-select {
    align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .resource-blocks .button {
    font-size: 16px;
  }
}
@media screen and (max-width: 580px) {
  .resource-blocks {
    grid-template-columns: 1fr;
  }
  .resource-blocks .block h3 {
    display: block;
  }
  .resource-table.certification {
    grid-template-columns: 1fr;
  }
  .resource-table:not(.regulatory) aside,
  .resource-table:not(.regulatory) aside:not(:first-child),
  .resource-table:not(.regulatory) aside:nth-child(3) {
    border-left: 0px solid #cecece;
  }
  .resource-table.certification aside {
    padding: 20px 0;
  }
  .resource-table.regulatory {
    width: 280px;
    margin: 0 auto;
    grid-template-columns: repeat(13, 140px);
}
  .resource-table.regulatory .row {
    width: 140px;
  }
  .resource-table.regulatory .row div {
    flex-direction: column;
  }
  .resource-table.regulatory sup {
    display: contents;
  }
  #category-select {
    align-self: auto;
  }
  #category-select select {
    min-width: 100%;
  }
}

/* single blog post page */

#single-post .container {
  padding-top: 110px;
  padding-bottom: 110px;
}
  #single-post.with-featured-img .container {
    display: grid;
    grid-template-columns: 2fr 5fr;
    grid-gap: 80px;
  }
  #single-post.with-featured-img .container > img:first-child {
    float: left;
    max-width: 500px;
    margin: 0 80px 80px 0;
  }
  #single-post h1.post-title {
    font-size: 52px;
    letter-spacing: 0px;
    margin: 0 0 10px;
  }
  #single-post hr {
    clear: both;
  }
  #single-post .date {
    font-size: 20px;
    color: var(--blue);
    letter-spacing: 0px;
  }
  #single-post .social-share {
    display: flex;
    align-items: center;
    padding: 25px 0 30px;
  }
    #single-post .social-share a {
      font-size: 26px;
    }
    #single-post .social-share a:not(:first-child) {
      padding: 0 5px;
    }
    #single-post .social-share a:first-child {
      padding: 0 5px 0 0;
    }
  #single-post blockquote {
    font-style: italic;
    color: #444;
    border-left: 2px solid var(--yellow);
    padding: 30px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin: 0 0 30px;
  }
    #single-post blockquote p:last-child {
      margin: 0;
    }
  #single-post .wp-caption-text {
    font-size: 16px;
    padding: 30px 0 15px;
    margin: 0;
  }
  .wp-caption {
    width: auto !important;
  }
@media screen and (max-width: 1024px) {
  #single-post.with-featured-img .container {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 768px) {
  #single-post.with-featured-img .container aside > img:first-child {
    position: sticky;
    top: 30px;
  }
  body.admin-bar #single-post.with-featured-img .container aside > img:first-child {
    top: 62px;
  }
}
@media screen and (max-width: 768px) {
  #single-post.with-featured-img .container {
    grid-template-columns: 1fr;
  }
  #single-post.with-featured-img .container > img:first-child {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  #single-post h1.post-title {
    font-size: 38px;
  }
}

/* webinars */

.webinars-blocks .block {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 80px;
}
.webinars-blocks .img-wrap {
  grid-column: 1 / -1;
}
.webinars-blocks .date-block {
  display: grid;
  grid-gap: 10px;
  align-content: start;
  text-align: center;
}
  .webinars-blocks .date-block span {
    display: block;
  }
  .webinars-blocks .date-block .month {
    font-size: 30px;
  }
  .webinars-blocks .date-block .day {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin: 0 0 15px;
  }
    .webinars-blocks .date-block .day:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      width: 70px;
      height: 4px;
      background: var(--yellow);
      transform: translateX(-50%);
    }
  .webinars-blocks .date-block .year {
    font-size: 24px;
  }
  .webinars-blocks .date-block .time {
    font-size: 20px;
    padding-top: 30px;
  }
.webinars-blocks main h3 {
  font-weight: 600;
}
.webinars-blocks main .meta {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 60px;
  font-size: 18px;
  color: var(--blue);
  padding-bottom: 25px;
}
.webinar-content {
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  .webinars-blocks main .meta {
    grid-gap: 5px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .webinars-blocks .block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .webinars-blocks .date-block {
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
  }
  .webinars-blocks .date-block .day {
    font-size: 30px;
    padding: 15px 0 0;
  }
  .webinars-blocks .date-block .day:after {
    display: none;
  }
  .webinars-blocks .date-block .year:before {
    content: ', ';
  }
  .webinars-blocks .date-block .year {
    font-size: 30px;
  }
  .webinars-blocks .date-block .time {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}