/*
Theme name: Strom
Description: Custom Theme
Version: 1.0.0
*/

/* 
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component 
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  --clr-primary600: #665A7F; /* dark kimberly */
  --clr-primary500: #7C6DA0; /* kimberly */
  --clr-accent1-500: #37454F; /* charcoal */
  --clr-accent2-500: #231F20; /* black */
  --clr-accent3-500: #F0EFEA; /* carrara */
  --clr-text: var(--clr-accent2-500);
  --clr-text-reverse: white;

  /* heights */
  --height-header: 148px;
  /* spacing */
  --b-space: 160px;
  --b-space-sm: 96px;
  --b-space-xsm: 40px;
  /* font family */
  --ff-body: 'Urbanist', sans-serif;
  --ff-heading: 'Urbanist', sans-serif;
  /* font sizes */
  --fs-h1: 100px;
  --fs-h1-post: 80px;
  --fs-h2: 50px;
  --fs-h3: 30px;
  --fs-h4: 28px;
  --fs-h5: 24px;
  --fs-h6: 18px;
  --fs-p: 18px;
  --fs-p-lg: 32px;
  --fs-p-sm: 14px;
}

@media screen and (max-width:1400px) {
  :root {
    --height-header: 120px;
  }
}

@media screen and (max-width:1000px) {
  :root {
    --height-header: 100px;
    --fs-h1: 75px;
    --fs-h1-post: 65px;
    --b-space: 140px;
  }
}

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

  :root {
    --b-space: 120px;
    --b-space-sm: 80px;
  }

}


@media screen and (max-width:600px) {
  :root {
    --height-header: 72px;
    /* font sizes */
    --fs-h1: 44px;
    --fs-h1-post: 36px;
    --fs-h2: 30px;
    --fs-h3: 20px;
    --fs-h4: 20px;
    --fs-h5: 18px;
    --fs-h6: 16px;
    --fs-p: 16px;
    --fs-p-lg: 20px;
    --fs-p-sm: 12px;
    /* spacing */
    --b-space: 68px;
    --b-space-sm: 56px;
  }
} 

/* utilities */

.u-cf:after { 
	content:"";
	display:table;
	clear:both;
}

.u-wc {
	width:100%;
	max-width: 1350px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

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

  .u-wc { 
    padding: 0 40px;
  }

}


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

  .u-wc { 
    padding: 0 25px;
  }

}

.u-wc--full {
  max-width: 100%;
  padding: 0;
}

.u-wc--sm {
  max-width: 1145px;
}

.u-wc--xsm {
  max-width: 930px;
}

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

.u-text-reverse {
  color: var(--clr-text-reverse);
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  line-height: 1.5;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

@media screen and (max-width: 600px) {
  body {
    line-height: 1.4;
  }
}

.page-wrapper {
  overflow-x: hidden;
}

.content-wrap {
  overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: 700;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 54px;
}

h1 u, h2 u{
  text-decoration-color: currentColor;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.1em;
}

h2, .h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  font-weight: 700;
  margin: 32px 0 30px;
}

h2:first-child, .h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.35;
  font-weight: 800;
  margin: 32px 0 12px;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
  margin: 28px 0 16px;
}

h5 {
  font-size: var(--fs-h5);
  font-weight: 600;
  line-height: 1.2;
  margin: 16px 0 16px;
}

h6 {
  font-size: var(--fs-h6);
  font-weight: 700;
  line-height: 1.5;
  margin: 16px 0 22px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.is-style-pill, .is-style-pill-charcoal {
  background: var(--clr-accent1-500);
  padding: 17px 40px;
  border-radius: 40px;
  color: white;
  display: block;
  max-width: max-content; 
}

.is-style-pill.has-text-align-center, .is-style-pill-charcoal.has-text-align-center {
  margin-inline: auto;
}

.is-style-pill-charcoal {
  background: var(--clr-accent2-500);
}

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

  h1 {
    margin-bottom: 24px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin-bottom: 12px;
    line-height: 1.25;
  }

  h4 {
    margin-bottom: 12px;
  }

  h5, h6 {
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .is-style-pill, .is-style-pill-charcoal {
    padding: 15px 28px;
  }
  
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}

p {
  margin-bottom: 16px;
}

.is-style-asterisk{
  display: flex;
  align-items: flex-start;
}

.is-style-asterisk:before {
  content: '';
  width: 33px;
  height: 36px;
  margin-top: 2px;
  flex-shrink: 0;
  margin-right: 20px;
  background: url('imgs/asterisk_light.svg') center center / 33px 36px;
}

.has-primary-500-background-color .is-style-asterisk:before,
.has-accent1-background-color .is-style-asterisk:before,
.has-accent2-background-color .is-style-asterisk:before,
.has-accent3-background-color .is-style-asterisk:before {
  background-image: url('imgs/asterisk_dark.svg');
}

.has-primary-500-background-color .is-style-asterisk-inline:before,
.has-accent1-background-color .is-style-asterisk-inline:before,
.has-accent2-background-color .is-style-asterisk-inline:before,
.has-accent3-background-color .is-style-asterisk-inline:before {
  background-image: url('imgs/asterisk_dark.svg');
}


.is-layout-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 24px;
}

.is-nowrap {
  flex-wrap: nowrap;
}

.is-content-justification-center {
  justify-content: center;
}

.is-style-narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.is-style-xs-narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.is-style-medium {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.has-lg-font-size {
  font-size: var(--fs-p-lg);
  margin-top: 32px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .has-lg-font-size {
     margin-top: 16px;
  }

  .is-style-asterisk:before {
    width: 19px;
    height: 21px;
    background-size: 19px 21px;
    margin-right: 16px;
  }

}

.has-lg-font-size:first-child {
  margin-top: 0;
}

.has-sm-font-size {
  font-size: var(--fs-p-sm);
}


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

  p {
    margin-bottom: 12px;
  }
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 24px;
  margin: 20px 0 16px;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

ul:first-child {
  margin-top: 0;
}

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 20px 0 16px;
}

ol:first-child {
  margin-top: 0;
}

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: 4px;
  margin-bottom: 4px;
}

li:last-child {
  margin-bottom: 0;
}


ul.is-style-horizontal-checkbox {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  margin-block: 60px;
  display: flex;
  flex-wrap: wrap;

}

ul.is-style-horizontal-checkbox:first-child {
  margin-top: 0;
}

ul.is-style-horizontal-checkbox:last-child {
  margin-bottom: 0;
}

ul.is-style-horizontal-checkbox li {
  width: 25%;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 0 24px;
  border-left: 1px solid #9BA2A7;
  text-align: center;
}

@media screen and (min-width: 1001px) {
  ul.is-style-horizontal-checkbox li:nth-of-type(4n) {
    border-right:  1px solid #9BA2A7;
  }
}

ul.is-style-horizontal-checkbox li:before {
  content: '';
  background: url('imgs/large-checkmark.svg') center center / 62px 62px;
  width: 62px;
  height: 62px;
}



ul.is-style-vertical-connected-checkbox, ul.is-style-vertical-checkbox {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  margin-block: 24px;
}

ul.is-style-vertical-connected-checkbox:first-child, ul.is-style-vertical-checkbox:first-child {
  margin-top: 0;
}

ul.is-style-vertical-connected-checkbox:last-child, ul.is-style-vertical-checkbox:last-child {
  margin-bottom: 0;
}

ul.is-style-vertical-connected-checkbox li, ul.is-style-vertical-checkbox li {
  position: relative;
  padding-left: 52px;
  margin-top: 36px;
}

ul.is-style-vertical-checkbox li {
  padding-left: 40px;
}

ul.is-style-vertical-connected-checkbox li:first-child, ul.is-style-vertical-checkbox li:first-child {
  margin-top: 0;
}

ul.is-style-vertical-connected-checkbox li:before, ul.is-style-vertical-checkbox li:before {
  content: '';
  background: url('imgs/small-checkmark.svg') center center / 24px 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  left:0; 
  top: 2px;
}

ul.is-style-vertical-connected-checkbox li:after {
  content: '';
  position: absolute;
  left: 12px;
  top: 31px;
  bottom: -34px;
  width: 1px;
  background: #36454F;
  opacity: .5;
}

ul.is-style-vertical-connected-checkbox li:last-child:after {
  display: none;
}

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

  ul.is-style-horizontal-checkbox li {
    width: 100%;
    flex-direction: row;
    border: none;
    border-top: 1px solid #9BA2A7;
    padding: 24px 0;
    grid-gap: 16px;
    justify-content: flex-start;
    text-align: left;
  }

  ul.is-style-horizontal-checkbox li:last-child {
    border-bottom: 1px solid #9BA2A7;
  }

  ul.is-style-horizontal-checkbox li br {
    display: none;
  };

}

@media screen and (max-width: 600px) {
  ul.is-style-vertical-connected-checkbox li, ul.is-style-vertical-checkbox li {
    padding-left: 36px;
    margin-top: 24px;
  }

  ul.is-style-vertical-connected-checkbox li:before {
    top: 0;
  }

  ul.is-style-vertical-connected-checkbox li:after {
    top: 29px;
    bottom: -20px;
  }

  ul.is-style-horizontal-checkbox {
    margin-block: 32px;
  }

  ul.is-style-horizontal-checkbox li {
    padding: 16px 0;
  }

  ul.is-style-horizontal-checkbox li::before {
    width: 42px;
    height: 42px;
    background-size: 42px 42px;
  }


}

blockquote {
  display: block;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 4px solid var(--clr-primary500);
}

blockquote p {
  margin: 0 12px 0 0;
  font-size: 22px;
  font-style: italic;
}

blockquote:first-child {
  margin-top: 0;
}

blockquote:last-child {
  margin-bottom: 0;
}

blockquote cite {
  font-style: normal;
  display: block;
  margin: 12px 0 0;
}

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

  blockquote {
    display: block;
    margin: 30px 0;
    padding-left: 25px;
  }  

  blockquote p {
    font-size: 19px;
  }

}

a, a:focus{
   outline: 0;
}

a {
  color: var(--clr-primary500);
	transition: .3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-primary600);
}


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

.wp-block-separator {
  display: block;
  padding: 0;
  height: 1px;
  background: #ACB4B9;
  margin: 70px 0;
  border: none !important;
}

.has-accent-1-background-color .wp-block-separator, .has-accent-2-background-color .wp-block-separator, .has-primary-500-background-color .wp-block-separator, .has-accent1-background-color .wp-block-separator, .has-accent2-background-color .wp-block-separator {
  background: #454446
}

@media screen and (max-width: 600px) {
  hr, .wp-block-separator {
    margin: 32px 0;
  }
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section:first-child {
  padding-top: calc(var(--b-space) + var(--height-header));
}

.c-section--lg:first-child {
  padding-top: calc(var(--b-space-lg) + var(--height-header));
}

.home .c-section--lg:first-child {
  padding-top: calc(var(--b-space-lg) + var(--height-header) - 30px);
}

.c-section--sm:first-child {
  padding-top: calc(var(--b-space-sm) + var(--height-header));
}

.c-section--sm {
  padding: var(--b-space-sm) 0;
}

.c-section--xsm {
  padding: var(--b-space-xsm) 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section__badge {
  position: absolute;
  left: calc(50% + 340px);
  top: 300px;
  width: 472px;
  height: 472px;
  background: url('imgs/apstrom-watermark-logo.svg') center center / 472px 472px;
  z-index: -1;
}

@media screen and (max-width: 1265px) {
  .c-section__badge {
    left: auto;
    right: -180px;
  }
}

@media screen and (max-width: 1000px) {
  .c-section__badge {
    top: 170px;
    right: -100px;
    width: 350px;
    height: 350px;
    background-size: 350px 350px;
  }
}

@media screen and (max-width: 600px) {
  .c-section__badge {
    top: 100px;
    right: -50px;
    width: 175px;
    height: 175px;
    background-size: 175px 175px;
  }
}

.wp-block-image {
  margin: 35px 0;
}

.wp-block-image:first-child {
  margin-top: 0;
}

.wp-block-image:last-child {
  margin-bottom: 0;
}

.wp-block-image img {
  display: block;
}

.is-vertically-aligned-center .wp-block-image img {
  margin-inline: auto;
}

.u-wc--full > .wp-block-image img {
  width: 100%;
}

.wp-block-image figcaption {
  text-transform: uppercase;
  font-size: 12px;
  color: #656565;
  margin: 0;
  padding: 12px 12px 0 12px;
  letter-spacing: .05em;
}

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

  .wp-block-image {
    margin: 28px 0;
  }
  
}

input{
  outline:none;
}

.wp-block-buttons {
  margin: 36px 0;
  grid-gap: 28px;
  display: flex;
  align-items: center;
}

.wp-block-buttons:first-child {
  margin-top: 0;
}

.wp-block-buttons:last-child {
  margin-bottom: 0;
}

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

  .wp-block-buttons {
    margin: 28px 0;
    grid-gap: 20px;
  }

}

.wp-block-button__link:disabled {
  opacity: .5;
  cursor: wait;
}

.wp-block-button__link {
  font-size: 16px;
  font-family: var(--ff-body);
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  background: var(--clr-primary500);
  border-radius: 0;
  display: inline-flex;
  grid-gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 0;
  color: white;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s border;
}

.wp-block-button__link:hover {
  background: var(--clr-primary600);
  color: white;
}


.is-style-secondary .wp-block-button__link {
  color: var(--clr-primary500);
  border: 2px solid var(--clr-primary500);
  background: transparent;
}

.is-style-secondary .wp-block-button__link:hover {
  background: var(--clr-primary500);
  color: white;
}

.is-style-secondary-alt .wp-block-button__link {
  color: white;
  border: 2px solid white;
  background: transparent;
}

.is-style-secondary-alt .wp-block-button__link:hover {
  background: white;
  color: var(--clr-primary500);
}

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

  .wp-block-buttons {
    grid-gap: 16px;
  }

  .wp-block-buttons {
    flex-direction: column;
  }

  .wp-block-button {
    flex-grow: 1;
    width: 100%;
  }

}

/*header styles*/

.c-mainHeader {
  height: var(--height-header);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background:  rgba(255,255,255,.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0);
  transition: .3s background, .3s height, .3s box-shadow, .3s backdrop-filter;
  backdrop-filter: blur(2px)
}

body:not(.is-scrolled) .c-mainHeader {
  background: transparent;
  backdrop-filter: none;
}

.is-scrolled .c-mainHeader:not(.c-mainHeader--mobileActive) {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

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

  .c-mainHeader--mobileActive {
    background: var(--clr-accent1-500) !important;
  }

}


@media screen and (min-width: 783px) {

  .admin-bar .c-mainHeader {
    top: 32px;
  }

}

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

  .admin-bar .c-mainHeader {
    top: 46px;
  }
  
}

.c-mainHeader > .u-wc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}


.c-mainHeader__logo {
  display: block;
  text-decoration: none;
  width: 258px;
  transition: .3s opacity;
}

.c-mainHeader__logo svg {
  display: block;
  fill: var(--clr-accent2-500);
  transition: .3s fill;
}

body:not(.is-scrolled) .c-mainHeader--dark .c-mainHeader__logo svg {
  fill: white;
}

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

  .c-mainHeader--mobileActive .c-mainHeader__logo svg{ 
    fill: white;
  }

}

.c-mainHeader__logo:hover {
  opacity: .8;
}

.c-mainHeader__menuWrap {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

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

  .c-mainHeader__logo {
    max-width: 180px;
  }
}

.c-mainMenu {
  margin-left: auto;
}

.c-mainMenu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin: 0;
}

.c-mainMenu li {
  margin: 0 40px 0 0;
  padding: 0;
}

.c-mainMenu li:last-child {
  margin-right: 0;
}

.c-mainMenu li a {
  font-size: 16px;
  color: var(--clr-text);
  font-weight: 600;
  position: relative;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  padding: 2px 0;
  transition: .3s border, .3s color;
}

.c-mainMenu li.c-menuBtn a {
  border: 2px solid var(--clr-primary500);
  padding: 11px 20px;
  font-weight: 700;
  color: var(--clr-primary500);
  display: inline-block;
  text-decoration: none;
  transition: .3s color, .3s background, .3s border;
}

.c-mainMenu li.c-menuBtn a:hover {
  border: 2px solid var(--clr-primary500);
  background: var(--clr-primary500);
  color: white;
}

@media screen and (min-width: 1091px) {

  body:not(.is-scrolled) .c-mainHeader--dark .c-mainMenu li a  {
    color: white;
  }

  .c-mainMenu li a:hover, .c-mainMenu li.current-menu-item > a, .c-mainMenu li.current-menu-parent > a {
    border-bottom: 2px solid var(--clr-primary500);
  }

}

.c-mainMenu li.menu-item-has-children {
  position: relative;
}

.c-mainMenu li.menu-item-has-children > a {
  position: relative;
  margin-right: 16px;
}

.c-mainMenu .menu-item-drop-arrow {
  display: block;
  position: absolute;
  left: 100%;
  width: 16px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home:not(.is-scrolled) .c-mainMenu .menu-item-drop-arrow svg {
  fill: white;
}

.c-mainMenu .menu-item-drop-arrow svg {
  width: 9px;
  height: auto;
  max-width: 100%;
  transition: .3s fill;
}


.c-mainMenu .menu-item-has-children:after {
  content: '';
  position: absolute;
  top: 100%;
  height: 12px;
  left: 0;
  right: 0;
  background: transparent;
}

@media screen and (min-width: 1091px) {

  .c-mainMenu .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: 4px;
    background: var(--clr-primary500);
    padding: 10px;
    left: 0;
    top: calc(100% + 12px);
    padding: 20px 24px;
    transform: translateY(-4px);
    transition: .3s opacity, 0s visibility .3s, .3s transform;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transform: none;
  }

  .c-mainMenu .sub-menu a {
    color: white;
    white-space: nowrap;
  }

  .c-mainMenu .sub-menu li {
    margin: 0 0 4px 0;
  }

  .c-mainMenu .sub-menu li:last-child {
    margin-bottom: 0;
  }

  .c-mainMenu .sub-menu {
    display: block !important;
  }

  .c-mainMenu .menu-item-has-children:hover .menu-item-drop-arrow svg {
    transform: scaleY(-1);
  }

}


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

  .c-mainHeader__menuWrap {
    margin-right: 0;
    background: var(--clr-accent1-500);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: var(--height-header);
    left: 0;
    right: 0;
    height: calc(100vh - var(--height-header));
    height: calc(100svh - var(--height-header));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s;
    padding: 30px 40px 30px;
  }

  .c-mainHeader__menuWrap--active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .c-mainMenu {
    width: 100%;
    margin: 0;
    height: 100%;
  }

  .c-mainMenu > ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
  }

  .c-mainMenu li {
    margin: 0;
  }

  .c-mainMenu > ul > li {
    margin: 0;
  }

  .c-mainMenu li a {
    display: block;
    height: auto;
    padding: 12px 0;
    justify-content: center;
    color: white;
    font-size: 24px;
    border: none;
  }

  .c-mainMenu .menu-item-drop-arrow {
    fill: white;
  }

  .c-mainMenu .menu-item-drop-arrow svg {
    width: 13px;
  }

  .c-mainMenu .sub-menu {
    background: white;
    padding: 12px 18px;
    display: none;
  }

  .c-mainMenu .sub-menu a {
    color: var(--clr-primary300);
    font-size: 18px;
    padding: 0;
  }

  .c-mainMenu .sub-menu li {
    margin-bottom: 4px;
  }

  .c-mainMenu .sub-menu li:last-child {
    margin-bottom: 0;
  }

  .menu-item-drop-arrow--active {
    transform: scaleY(-1);
  }

  .c-mainMenu li.c-menuBtn {
    margin-top: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
  }

  .c-mainMenu li.c-menuBtn a {
    width: 100%;
    text-align: center;
  }

}


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

  .c-mainHeader__menuWrap{
    padding: 20px 25px;
  }

}

.c-navIcon {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 10;
  margin-left: auto;
  align-self: center;
  border: none;
  outline: none;
  background: none;
}

.c-navIcon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--clr-primary500);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .3s ease-in-out; 
  border-radius: 2px;
}

body:not(.is-scrolled) .c-mainHeader--dark .c-navIcon span, .c-mainHeader--mobileActive .c-navIcon span {
  background: white;
}
    
.c-navIcon span:nth-child(1) {
  top: 0px;
  transform-origin: left center; 
}

.c-navIcon span:nth-child(2) {
  top: 9px;
  transform-origin: left center;
}

.c-navIcon span:nth-child(3) {
  top: 18px;
  transform-origin: left center; 
}

.c-navIcon--active span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 2px; 
}

.c-navIcon--active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.c-navIcon--active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 2px;
}

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

  .c-navIcon {
    display: block;
  }
}

/* footer styles */

.c-footer {
  position: relative;
  background: var(--clr-accent1-500);
  color: var(--clr-text-reverse);
  margin: 0 auto;
}

.c-footer__top {
  padding: var(--b-space) 0;
  position: relative;
}

.c-footer__top .u-wc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 32px;
}

.c-footer__contact {
  display: flex;
  align-items: center;
  grid-gap: 60px;
  width: calc((100% - 32px) / 2);
}

.c-footer__contact p {
  font-size: var(--fs-h5);
  font-weight: 600;
}

.c-footer__consult {
  width: calc((100% - 32px) / 2);
}

.c-footer__consult .wp-block-buttons {
  margin-left: 52px;
}

.c-footer__bottom {
  color: white;
  padding: 0 0 24px;
}

.c-footer__bottom .u-wc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 24px;
}

.c-footer__bottom p {
  margin: 0;
  width: calc((100% - 32px) / 2);
}


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

  .c-footer__top .u-wc {
    flex-wrap: wrap;
    grid-row-gap: 50px;
    justify-content: flex-start;
  }

  .c-footer__contact, .c-footer__consult {
    width: 100%;
  }


}


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

  .c-footer__top .u-wc {
    grid-row-gap: 24px;
  }

  .c-footer__contact {
    grid-gap: 32px;
  }
  .c-footer__logo {
    width: 108px;
  }

  .c-footer__bottom .u-wc {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 4px;
  }

  .c-footer__bottom p {
    width: 100%;
  }

  .c-footer__consult .wp-block-buttons {
    margin-left: 36px;
  }
  

}


/* gutenberg block / group styling */

.has-primary-500-background-color {
  background-color: var(--clr-primary500);
}

.has-primary-600-background-color {
  background-color: var(--clr-primary600);
}

.has-accent1-background-color, .has-accent-1-background-color {
  background-color: var(--clr-accent1-500);
  color: var(--clr-text-reverse);
}

.has-accent2-background-color, .has-accent-2-background-color  {
  background-color: var(--clr-accent2-500);
  color: var(--clr-text-reverse);
}

.has-accent3-background-color, .has-accent-3-background-color {
  background-color: var(--clr-accent3-500);
}

.has-white-background-color {
  background-color: white;
  color: var(--clr-text);
}

.has-primary-500-color {
  color: var(--clr-primary500);
}

.has-primary-600-color {
  color: var(--clr-primary600);
}

.has-accent1-color {
  color: var(--clr-accent1-500);
}

.has-accent2-color {
  color: var(--clr-accent2-500);
}

.has-accent3-color {
  color: var(--clr-accent3-500);
}

.has-white-color {
  color: white;
}

.wp-block-columns {
  margin: 70px 0;
  grid-gap: 9% !important;
}

.has-background.wp-block-columns {
  padding: 65px 80px;
}

.has-background.wp-block-columns .wp-block-column:first-child:last-child {
  max-width: 1000px;
  margin: 0 auto;
}

.wp-block-columns:first-child {
  margin-top: 0;
}

.wp-block-columns:last-child {
  margin-bottom: 0;
}


.has-background.wp-block-column {
  padding: 65px 60px;
}

.u-tightColSpacing.wp-block-columns  {
  grid-gap: 40px !important;
}

h2 + .u-tightColSpacing.wp-block-columns {
  margin-top: 40px;
}

.u-tightVerticalColSpacing.wp-block-columns {
  margin: 40px 0;
  padding: 40px;
}

.u-tightVerticalColSpacing.wp-block-columns:first-child {
  margin-top: 0;
}


.u-tightVerticalColSpacing.wp-block-columns:last-child {
  margin-bottom: 0;
}

/* .u-tightVerticalColSpacing .wp-block-column  {
  padding: 40px;
} */

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

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    display: flex;
    flex-direction: column;
    grid-gap: 32px !important;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column {
    width: 100% !important;
  }

 
}

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

  .wp-block-columns {
    margin: 40px 0;
  }

  .has-background.wp-block-column {
    padding: 36px 32px;
  }

  .has-background.wp-block-columns {
    padding: 36px 32px;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    grid-gap: 32px !important;
  }

  .wp-block-columns.u-mobileFlowCols:not(.is-not-stacked-on-mobile) {
    grid-gap: 12px !important;
  }

  .u-tightColSpacing.wp-block-columns  {
    grid-gap: 20px !important;
  }

  h2 + .u-tightColSpacing.wp-block-columns {
    margin-top: 24px;
  }

  .u-tightVerticalColSpacing.wp-block-columns {
    margin: 24px 0;
    padding: 32px;
  }
  

}


.wp-block-media-text {
  margin: var(--b-space) auto;
  column-gap: 6%;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text:first-child {
  margin-top: 0;
} 


.wp-block-media-text:last-child {
  margin-bottom: 0;
} 


.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.wp-block-media-text__content :first-child {
  margin-top: 0;
}

.wp-block-media-text:not(.default-img-style) .wp-block-media-text__media img {
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 22px rgba(0,0,0,0.1);
}


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

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right { 
    display: grid;
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    grid-row: 2 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right { 
    padding-left: 0;
    padding-right: 0;
  }

}

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

  .wp-block-media-text  .wp-block-media-text__media { 
    max-width: 100%;
  }

  .wp-block-media-text .wp-block-media-text__media {
    margin-top: 32px;
  }

  .wp-block-media-text {
    margin: 52px auto;
  }

  .wp-block-media-text:first-child {
    margin-top: 0;
  } 

  .wp-block-media-text:last-child {
    margin-bottom: 0;
  } 

}


.c-checkboxes {
  display: flex;
  margin: 20px 0 20px;
}

.c-checkbox input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.c-checkbox {
  margin-left: 8%;
}

.c-checkbox:first-child {
  margin-left: 0;
}

.c-checkbox:last-child {
  margin-right: 0;
}

.c-checkbox label {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.c-checkbox label:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
  border: 1px solid #979797;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;
}

.c-checkbox input:checked + label:before {
  background-image: url('imgs/checkbox.svg');
  background-color: var(--color-tertiary);
}

.wpcf7 {
  margin: 48px auto;
  background: white;
  padding: 60px;
  color: var(--clr-text);
  /* max-width: 760px; */
}

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

  .wpcf7  {
    margin: 32px 0;
    padding: 32px;
  }
}

.wpcf7:first-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-top: 0;
}

.wpcf7:last-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-bottom: 0;
}

.wpcf7-spinner {
  vertical-align: middle;
}

@media screen and (min-width: 601px) {

  .input-cols {
    display: flex;
  }
  
  .input-col {
    width: calc((99.99% - 30px) / 2);
    margin-right: 30px;
  }
  
  
  .input-col:last-child {
    margin-right: 0;
  }
  

}

label {
  display: block;
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 24px;
}

input[type="file"] {
  border: 1px dashed #ccc;
  padding: 18px 20px;
  margin-bottom: 26px;
  display: block;
  background: white;
  width: 100%;
  height: 53px;
  border-radius: 4px;
}

input[type="text"], 
input[type="tel"],
input[type="email"],
input[type="password"],
textarea,
select {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 16px 20px;
  font-weight: 300;
  margin-bottom: 26px;
  font-family: inherit;
  background: white;
  border-radius: 4px;
  border: 1px solid #B9B9B9;
  transition: .3s border, .3s background;
}


input[type="text"]:focus, 
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--clr-primary500);
}

input[type="text"]:placeholder, 
input[type="phone"]:placeholder,
input[type="email"]:placeholder,
input[type="password"]:placeholder {
  color: #747474;
  opacity: 1;
}

input[type="text"].wpcf7-not-valid, 
input[type="phone"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border: 1px solid #FF001F;
}

textarea {
  height: 264px;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/select-arrow.svg') no-repeat calc(100% - 20px) center / 12px 12px;
  color: var(--color-text);
}

select:-ms-expand {
  display: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  border: 0;
  text-align: center;
}


button[type="submit"]:focus {
  outline: none;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  font-weight: 600;
  margin-top: -22px;
  margin-bottom: 13px;
  display: block;
  color: #FF001F;
  text-align: left
}


.wpcf7 form .wpcf7-response-output {
  margin: 15px 0 0  0 !important;
  border: 0 !important;
  font-weight: 600;
  padding: 0 !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  color: red;
}

.recaptcha-msg {
  font-size: .8em;
}

@media screen and (min-width: 601px) {
  .wpcf7-submit {
    min-width: 212px;
  }
}

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

  label {
    margin: 0 0 8px 0;
    font-size: 18px;
  }

  input[type="text"], input[type="tel"], input[type="email"], textarea, select {
    margin-bottom: 20px;
    padding: 10px 16px;
  }

  select {
    background-size: 12px 12px;
    background-position: calc(100% - 16px) center;
  }

  textarea {
    height: 200px;
  }

  .wpcf7-not-valid-tip {
    margin-top: -16px;
    margin-bottom: 16px;
  }

}

.wp-block-table {
  padding: 24px 0 32px;
}

.wp-block-table th {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  padding: 0 8px 8px;
}

.wp-block-table td {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ececec;
}

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

  .wp-block-table {
    padding: 18px;
  }

  .wp-block-table th {
    font-size: 0;
  }

  .wp-block-table th:after {
    content: attr(data-label);
    font-size: 17px;
  }
}

.c-modal {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:  rgba(34, 44, 77, .5);
  display: flex;
  visibility: hidden;
  padding: 50px;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;

}

.c-modal--active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-modal--active .c-modal__outerContainer {
  transform: scale(1);
}

.c-modal__outerContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  max-width: 1232px;
  max-height: 100%;
  transform: scale(.9);
  position: relative;
  transition: .3s transform;
}

.c-modal__container {
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

.c-modal__close {
  background: white url('imgs/close-button.svg') center center / 47px 47px;
  width: 47px;
  height: 47px;
  border: none;
  display: block;
  position: absolute;
  z-index: 10;
  right: 20px;
  top: 20px;
  border-radius: 4px;
  transition: .3s background;
}

.c-modal__close:hover {
  background-color: var(--clr-primary100);
}

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

  .c-modal { 
    padding: 28px;
  }

  .c-modal__close {
    top: -19px;
    right: -19px;
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
  }

}


@media screen and (min-width: 601px) {
  .is-style-mobile-only {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .is-style-desktop-only {
    display: none;
  }
}


@media screen and (max-width: 600px) {
  #wpadminbar {
    top: -46px;
  }
}


.c-managementItems {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 48px;
  grid-column-gap: 8%;
  margin: 48px 0 90px
}

.c-managementItems:last-child {
  margin-bottom: 0;
}

.c-managementItems .c-managementItem {
  width: calc((100% - 8%) / 2);
}

@media screen and (max-width: 800px) {
  .c-managementItems .c-managementItem {
    width: 100%;
  }
}

.c-managementItem {
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 48px;
}

@media screen and (max-width: 600px) {
  .c-managementItems {
    grid-row-gap: 24px;
    margin: 24px 0 48px
  }

  .c-managementItem {
    padding-bottom: 24px;
  }

}

.page-template-page-management .c-section:first-child {
  padding-bottom: calc(var(--b-space-sm) + 50px);
}

.c-subtitle {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.c-subtitle__content {
  color: white;
  padding: 60px;
  border-radius: 4px;
  text-align: center;
  background: linear-gradient(to right, var(--clr-primary500), var(--clr-primary300));
}

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

.c-pageTitle__icon {
  display: block;
  flex-shrink: 0;
  margin-right: 20px;
  width: 64px;
}

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

  .page-template-page-management .c-section:first-child {
    padding-bottom: calc(var(--b-space-sm) + 100px);
  }

  .c-subtitle {
    margin-top: -100px;
  }
  .c-subtitle__content {
    padding: 40px;
  }

  .c-pageTitle h1 {
    display: flex;
    flex-direction: column;
  }
  
  .c-pageTitle__icon {
    margin: 0 0 12px 0;
  }
}

.c-singlePagination {
  padding: 80px 0;
  background: var(--clr-accent2-500);
}

.c-singlePagination__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.c-singlePagination__link {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.c-singlePagination__link:after {
  content: '';
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.c-singlePagination__link--prev {
  flex-direction: row-reverse;
}

.c-singlePagination__link--prev, .c-singlePagination__link--next {
  grid-gap: 16px;
}

.c-singlePagination__link--hidden {
  visibility: hidden;
}

.c-singlePagination__link--prev:after, .c-singlePagination__link--next:after {
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
}

.c-singlePagination__link--prev:after {
  background-image: url('imgs/left-arrow.svg');
}

.c-singlePagination__link--next:after {
  background-image: url('imgs/right-arrow.svg');
}

.c-singlePagination__link--all:after {
  background-image: url('imgs/all-icon.svg');
}

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

  .c-singlePagination {
    padding: 40px 0;
  }

  .c-singlePagination__link {
    font-size: 0;
    grid-gap: 6px;
  }

  .c-singlePagination__link:before {
    content: attr(data-label);
    font-size: 18px;
    display: block;
  }

  .c-singlePagination__link span {
    display: none;
  }
}


.c-newsItems {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 48px;
  grid-column-gap: 3%;
  margin: 48px 0 90px
}

.c-newsItems:last-child {
  margin-bottom: 0;
}

.c-newsItems .c-newsItem {
  width: calc((100% - 6%) / 3);
}

@media screen and (max-width: 800px) {
  .c-newsItems .c-newsItem  {
    width: 100%;
  }
}

.c-newsItem {
  display: block;
  color: var(--clr-text);
  text-decoration: none;
}

.c-newsItem:hover {
  color: var(--clr-text);
}

.c-newsItem h5 {
  transition: .3s color;
}

.c-newsItem:hover h5 {
  color: var(--clr-primary600);
}

.c-newsItem img {
  display: block;
  width: 100%;
  aspect-ratio:  24 / 17;
  object-fit: cover;
  margin-bottom: 24px;
}

.c-loadMore .wp-block-button {
  width: 100%;
}

.c-loadMore .wp-block-button__link {
  width: 100%;
  max-width: calc((100% - 8%) / 3);
}

@media screen and (max-width: 800px) {
  .c-loadMore .wp-block-button__link {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-newsItems {
    grid-row-gap: 24px;
    margin: 24px 0 48px
  }

}


.single-post h1 {
  margin-bottom: 32px;
  font-size: var(--fs-h1-post);
  line-height: 1.2;
}

.c-postAuthor {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}

.c-postAuthor img {
  display: block;
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .c-postAuthor img {
    max-width: 66px;
  }
}

.c-post {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.c-post__share{
  position: sticky;
  top: calc(var(--height-header) + 12px);
  width: 128px;
  flex-shrink: 0;
  background: var(--clr-accent3-500);
  padding: 28px 20px 32px;
  margin-left: 8%;
  order: 3;
}

.c-post__content {
  width: calc(100% - 128px - 8%);
  order: 2;
}

.c-post__img {
  width: 100%;
  order: 1;
  margin-bottom: 90px;
  display: block;
}

.c-sharing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-sharing a {
  margin: 0 auto 8px;
  transition: .3s opacity;
}

.c-sharing img {
  display: block;
  margin: 0 auto;
  max-height: 660px;
  object-fit: cover;
}

.c-sharing a:hover {
  opacity: .7;
}

.c-sharing :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 801px) {

  .c-notes__content {
    column-count: 2;
    column-gap: 32px;
  }

}

.c-notes__content * {
  font-size: 12px;
}

.c-notes__content p {
  margin-bottom: 12px;
}

.c-notes__content :last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 800px) {
  .c-post { 
    display: block;
    margin-bottom: 40px;
  }

  .c-post__share {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 28px 20px;
    position: static;
  }

  .c-post__content {
    width: 100%;
  }

  .c-post__img {
    margin-bottom: 32px;
  }

  .c-sharing {
    flex-direction: row;
    justify-content: center;
    grid-gap: 12px;
  }

  .c-sharing a {
    margin: 0;
  }

  .c-sharing h5 {
    margin: 0 4px 0 0;
  }
}

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

  .c-post__share { 
    padding: 18px 20px;
  }

  .c-sharing {
    grid-gap: 8px;
  }

  .c-sharing a {
    width: 30px;
  }
}


.c-newsletter {
  background: var(--clr-accent3-500);
  padding: 65px 60px;
  margin: 20px 0;
  display: flex;
  width: 100%;
  grid-gap: 40px;
  align-items: center;
}

.c-newsletter:last-child {
  margin-bottom: 0;
}

.c-newsletter > :first-child {
  margin: 0;
  width: calc((100% - 40px) / 2);
}

.c-newsletter .mailpoet_form:not(form) {
  width: calc((100% - 40px) / 2) !important;
}

.c-newsletter .mailpoet_form {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  padding: 0 !important;
  width: 100%;
}

.c-newsletter .mailpoet_form .mailpoet_paragraph {
  width: calc(100% - 20px - 128px);
  margin: 0 !important;
  line-height: 1.5 !important;
}

.c-newsletter .mailpoet_form .mailpoet_paragraph.last {
  width: 128px;
}

.c-newsletter .mailpoet_form .mailpoet_message {
  width: 100%;
  display: contents;
}

.c-newsletter .mailpoet_form .mailpoet_text {
  height: 50px;
  border-radius: 4px;
  padding: 0 20px !important;
  border: none;
}

.c-newsletter .mailpoet_form .mailpoet_submit {
  max-width: 128px;
  font-size: 16px;
  font-family: var(--ff-body);
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  background: var(--clr-primary500);
  border-radius: 0;
  display: inline-flex;
  grid-gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px !important;
  margin: 0 !important;
  border-radius: 0;
  color: white;
  line-height: 1.5;
  text-align: center;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s border;
}

.c-newsletter .mailpoet_form .mailpoet_submit:hover {
  background: var(--clr-primary600);
  color: white;
}

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

  .c-newsletter {
    flex-direction: column;
  }

  .c-newsletter > :first-child, .c-newsletter .mailpoet_form:not(form) {
    width: 100% !important;
  }

}

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

  .c-newsletter {
    padding: 32px 25px;
    grid-gap: 24px;
  }

  .c-newsletter .mailpoet_form .mailpoet_paragraph {
    width: 100%;
  }

}

:root {
  --offset: 90px;
}

.u-offsetPrev {
  padding-bottom: calc(var(--offset) + var(--b-space));
}

.u-offset {
  margin-top: -90px;
}

@media screen and (max-width: 1120px) {
  .c-blogBanner {
    text-align: center;
  }
}

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

  .c-blogBanner .wp-block-image img {
    max-width: 116px;
  }
}


@media screen and (max-width: 60px) {
  .page-id-4307  h1 {
    text-align: left;
  }
}

.c-joinNetwork {
  grid-gap: 60px;
}

.c-joinNetwork  p {
  margin: 0;
}

.c-joinNetwork .wp-block-buttons {
  margin: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 800px) {
  .c-joinNetwork { 
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 32px;
  }

  .c-joinNetwork .wp-block-buttons {
    margin-left: 48px;
  }
}

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

  .c-joinNetwork { 
    grid-gap: 24px;
  }

  .c-joinNetwork .wp-block-buttons {
    margin-left: 36px;
  }
}

.c-teamBlock {
  margin: 40px 0;
}

.c-teamItem {
  display: flex;
  grid-gap: 24px;
}

.c-teamItem:not(:last-child) {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #454446;
}


.c-teamItem__left p {
  margin-bottom: 0;
}

.c-teamItem__left h5 {
  margin-top: 12px;
}

.c-teamItem__left {
  width: 36%;
  margin-right: 5%;
}

.c-teamItem__right {
  width: 59%;
}


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

  .c-teamItem {
    display: block;
  }
  .c-teamItem__left {
   width: 100%;
   margin: 0 0 40px 0;
  }
  
  .c-teamItem__right {
    width: 100%;
  }
}

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

  .c-teamBlock {
    margin: 32px 0;
  }

  .c-teamItem:not(:last-child) {
    margin-bottom: 40px;
    padding-bottom: 40px; 
  }

  .c-teamItem__left {
    width: 100%;
    margin: 0 0 24px 0;
  }

}

.c-toggles {
  background: white;
  padding: 24px 32px;
  color: var(--clr-text);
}

.c-toggles--lg {
  padding: 40px 55px;
}

.c-toggle {
  border-bottom: 1px solid #AFB4B8;
  padding-bottom: 12px;
  padding-top: 12px;
}

.c-toggles--lg .c-toggle {
  padding-bottom: 24px;
  padding-top: 24px;
}

.c-toggle:first-child, .c-toggles--lg .c-toggle:first-child  {
  padding-top: 0;
}

.c-toggle:last-child,  .c-toggles--lg .c-toggle:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.c-toggle__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 12px;
  cursor: pointer;
}

.c-toggle__title:after {
  content: '';
  display: block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid var(--clr-primary500);
  flex-shrink: 0;
  transition: .3s transform;
}

.c-toggle--active .c-toggle__title:after {
  transform: rotate(180deg);
}

.c-toggle__content {
  display: none;
  padding-top: 16px;
}

.c-toggles--lg .c-toggle__content {
  padding-top: 20px;
}

.c-toggle:last-child .c-toggle__content {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .c-toggles {
    padding: 20px 24px;
  }

  .c-toggles--lg {
    padding: 24px;
  }

  .c-toggles--lg .c-toggle {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.c-teamPreview {
  display: flex;
  margin: 40px 0;
  grid-gap: 40px;
  flex-wrap: wrap;
}

.c-teamPreview:first-child {
  margin-top: 0;
}

.c-teamPreview:last-child {
  margin-bottom: 0;
}

.c-teamPreviewItem {
  width: calc((100% - 40px) / 2);
}

.c-teamPreviewItem img {
  display: block;
}

.c-teamPreviewItem p {
  margin-bottom: 0;
}

.c-teamPreviewItem h5 {
  margin-top: 12px;
}

@media screen and (max-width: 800px) {
  .c-teamPreview {
    flex-direction: column;
  }

  .c-teamPreviewItem {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-teamPreview {
    display: flex;
    margin: 32px 0;
  }
}

.c-rules {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  grid-gap: 40px;
  margin: 40px 0;
}

.c-rules:first-child {
  margin-top: 0;
}

.c-rules:last-child {
  margin-bottom: 0;
}

.c-rules .c-toggles {
  width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 800px) {
  .c-rules .c-toggles {
    width: 100%;
    grid-gap: 24px;
  }
}

@media screen and (max-width: 600px) {
  .c-rules {
    grid-gap: 20px;
    margin: 32px 0;
  }
}


.c-hero .has-lg-font-size {
  max-width: max-content;
  margin-right: 20%;
  margin-left: auto;
}

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

  .c-hero .has-lg-font-size { 
    margin-right: 0;
  }
}

.c-planeBox .wp-block-column {
  background-image: url('imgs/clouds-layer.png');
  background-position: 2px calc(100% - 2px);
  background-size:  648px 240px;
  background-repeat: no-repeat;
}

.c-planeBox .wp-block-column * {
  width: 50%;
  margin-left: auto;
}

.c-planeBox .wp-block-column p:last-child {
  padding-left: 56px;
}

.c-planeBox {
  position: relative;
}

.c-planeBox:before {
  content: '';
  background: url('imgs/airplane-illustration.png') center center / 490px 280px;
  width: 490px;
  height: 280px;
  position: absolute;
  bottom: -30px;
  left: 50px;
}

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

  .c-planeBox .wp-block-column {
    padding-bottom: 280px;
    background-size:  307px 109px;
  }

  .c-planeBox .wp-block-column p:last-child {
    padding-left: 36px;
  }

  .c-planeBox .wp-block-column * {
    width: 100%;
  }

}

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

  .c-planeBox .wp-block-column {
    padding-bottom: 171px;
  }

  .c-planeBox:before {
    background-size: 300px 180px;
    width: 300px;
    height: 180px;
    bottom: -20px;
    left: 22px;
  }
}

.c-adrBox {
  position: relative;
}

.c-adrBox:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 230px;
  height: 230px;
  margin-top: -115px;
  left: 60px;
  background: url('imgs/ADR-institute-ontario-seal.png') center center / 230px 230px;
}

.c-adrBox .wp-block-column {
  padding-left: 243px;
}

@media screen and (max-width: 800px) {
  .c-adrBox:after {
    content: '';
    position: absolute;
    top: -16px;
    margin: 0;
    width: 188px;
    height: 188px;
    left: 50%;
    margin-left: -94px;
    background-size: 188px 188px;
  }

  .c-adrBox .wp-block-column {
    padding-left: 0;
    padding-top: 130px;
  }
}

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

  .c-adrBox .wp-block-column {
    padding-top: 154px;
  }


}