:root {
  --dark: #30364d;
  --midnight-blue: #1d2c4e;
  --sandy-brown: #e5a753;
  --grey-1: #798099;
  --main-color: #9165f7;
  --ghost-white: #f8faff;
  --grey-3: #e6e8f0;
  --gradient-3-dark: #5c71d9;
  --medium-slate-blue: #8778f8;
  --gradient-3-light: #62d1f8;
  --gradient-4-light: #84f796;
  --gradient-4-dark: #11aeaf;
  --white: white;
  --haze: ghostwhite;
  --grade-1-light: #b87df9;
  --grade-1-dark: #6a4ee1;
  --haze-dark: #ededff;
  --slate-grey: #5f6a90;
  --color-2: #f92468;
  --slate-grey-2: #797f92;
  --grey-2: #a9aec3;
  --color-3: #ffb543;
  --color-4: #4ee484;
  --gradient-2-light: #f8bb4b;
  --gradient-2-dark: #f85252;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  color: var(--dark);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Fira Sans, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Fira Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Fira Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Fira Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

h5 {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Fira Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Fira Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--sandy-brown);
  text-decoration: none;
}

ul, ol {
  margin-top: 16px;
  margin-bottom: 24px;
  padding-left: 40px;
}

label {
  color: var(--grey-1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  display: block;
}

blockquote {
  border-left: 3px solid var(--main-color);
  margin-bottom: 24px;
  padding: 16px 32px;
  font-size: 20px;
  line-height: 28px;
}

figure {
  margin-bottom: 24px;
}

figcaption {
  color: var(--grey-1);
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
  position: relative;
}

.section.dark {
  background-color: var(--dark);
  color: #fff;
}

.section.haze {
  background-color: #f8faff;
  background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white));
}

.section.haze.no-padding-vertical {
  background-color: var(--ghost-white);
}

.section.haze.no-padding {
  padding-top: 75px;
}

.section.haze.no-padding-top-bottom {
  padding-top: 0;
  padding-bottom: 70px;
}

.section.haze.case-section {
  padding-top: 29px;
}

.section.haze.dark-blue {
  background-color: var(--midnight-blue);
  background-image: none;
}

.section.border-top {
  border-top: 1px solid var(--grey-3);
}

.section.gradient {
  background-color: var(--midnight-blue);
  color: #fff;
  background-image: none;
  overflow: hidden;
}

.section.grade-3 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--gradient-3-light), var(--gradient-3-dark));
  color: #fff;
}

.section.grade-4 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--gradient-4-light), var(--gradient-4-dark));
  color: #fff;
}

.section.no-padding {
  padding-top: 128px;
  padding-bottom: 128px;
}

.section.top-section {
  background-color: var(--midnight-blue);
  color: var(--white);
  margin-top: -88px;
  padding-top: 192px;
  padding-bottom: 144px;
  overflow: hidden;
}

.section.top-section.grade-1 {
  background-color: var(--midnight-blue);
  background-image: none;
}

.section.mask {
  overflow: hidden;
}

.section.footer-section {
  border-top: 1px solid var(--grey-3);
  padding-top: 75px;
  padding-bottom: 0;
}

.section.haze-gradient {
  background-image: linear-gradient(to bottom, var(--white), var(--haze));
}

.section.intro-hero {
  background-color: var(--main-color);
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  color: var(--white);
  margin-top: -88px;
  padding-top: 216px;
  padding-bottom: 224px;
  overflow: hidden;
}

.section.hero-v3 {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  color: #fff;
  margin-top: -88px;
  padding-top: 200px;
  padding-bottom: 0;
  overflow: hidden;
}

.section.hero-v4 {
  background-color: var(--haze);
  color: #fff;
  margin-top: -88px;
  padding-top: 176px;
  padding-bottom: 12px;
  overflow: hidden;
}

.section.hero-v1 {
  background-image: linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  color: #fff;
  margin-top: -88px;
  padding-top: 200px;
  padding-bottom: 168px;
  overflow: hidden;
}

.section.billing-tabs-section {
  background-color: var(--haze);
  color: #fff;
  margin-top: -88px;
  padding-top: 176px;
  overflow: hidden;
}

.section.hero-v2 {
  background-color: var(--haze);
  margin-top: -88px;
  padding-top: 200px;
  overflow: hidden;
}

.section.hero-v5, .section.light-hero {
  background-color: var(--haze);
  margin-top: -88px;
  padding-top: 176px;
  overflow: hidden;
}

.section.post-top-section {
  background-color: var(--white);
  margin-top: -88px;
  padding-top: 176px;
  overflow: hidden;
}

.section.haze {
  background-color: #f8f8ff;
}

.section.grey-gradient {
  background-color: var(--haze);
}

.section.hero-v2 {
  background-color: #1d2c4e;
  height: 85vh;
  margin-top: -88px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.section.section-less-padding-top {
  padding-top: 64px;
}

.section.haze1 {
  background-color: #f8faff;
}

.section.haze1.hide-section, .section.hide-section {
  display: none;
}

.section.section-blue {
  background-color: var(--midnight-blue);
}

.section.extra {
  background-color: var(--haze);
}

.wrapper {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  position: static;
}

.wrapper.nav-bar-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.wrapper.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.button {
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--sandy-brown), var(--sandy-brown));
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 1px #0000;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  height: 48px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: border-color .4s, transform .4s, box-shadow .4s;
  display: inline-block;
}

.button:hover {
  transform: translate(0, -3px);
}

.button.small {
  background-image: linear-gradient(to bottom, var(--sandy-brown), var(--sandy-brown));
  height: 40px;
  padding: 8px 20px;
  font-size: 13px;
  line-height: 20px;
}

.button.small:hover {
  box-shadow: none;
}

.button.small.white {
  background-color: var(--sandy-brown);
  color: #fff;
  width: 100%;
}

.button.white {
  box-shadow: none;
  color: var(--midnight-blue);
  background-color: #fff;
  background-image: none;
}

.button.white:hover {
  box-shadow: 0 4px 16px #00000029;
}

.button.ghost {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: #0000;
  background-image: none;
}

.button.ghost:hover {
  box-shadow: none;
}

.button.ghost-bg {
  border-style: solid;
  border-color: var(--white);
  color: #fff;
  background-color: #0000;
  background-image: none;
}

.button.big {
  height: 56px;
  padding: 16px 28px;
  font-size: 17px;
  line-height: 24px;
}

.button.side-margins {
  margin-left: 6px;
  margin-right: 6px;
}

.button.margin-left {
  margin-left: 16px;
}

.button.tiny {
  height: 32px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
}

.button.smal-button {
  padding-left: 45px;
  padding-right: 45px;
  display: inline-block;
}

.button.margin-top {
  margin-top: 20px;
}

.button.fixed-width {
  margin: 25px 100px 0;
  display: inline-block;
}

.button.fixed-width.prijsbtn {
  margin-bottom: 25px;
  margin-left: 20px;
}

.button.margin-10-top {
  margin-top: 20px;
}

.style-block {
  text-align: left;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.text-small {
  font-size: 13px;
  line-height: 20px;
}

.sg-buttons {
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  padding-bottom: 105px;
  display: flex;
}

.sg-button-wrapper {
  border: 1px solid var(--grey-3);
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 60px 16%;
  display: flex;
}

.sg-button-wrapper.dark-bg {
  background-color: var(--main-color);
  color: var(--haze-dark);
}

.nav-bar {
  z-index: 100;
  background-color: #0000;
  justify-content: center;
  height: 88px;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.nav-bar.sticky {
  position: static;
  top: 0;
}

.nav-link {
  color: var(--white);
  border-radius: 4px;
  padding: 8px 16px;
  transition: color .25s;
}

.nav-link:hover {
  color: #8b94b4;
  background-color: #30364d1a;
  font-weight: 400;
}

.nav-link.w--current {
  color: var(--white);
  font-weight: 700;
}

.nav-link.white-bg {
  color: #fff;
  background-color: #0000;
}

.nav-link.white-bg:hover {
  color: #b0b5c9;
  background-color: #0000;
}

.text-white {
  color: #fff;
}

.text-link {
  color: var(--main-color);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.utility-page-wrapper {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue));
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.utility-page-wrapper.grade-1 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--gradient-3-dark), var(--medium-slate-blue));
}

.utility-page-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 470px;
  display: flex;
  position: relative;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 8px;
  display: flex;
}

.tooltip {
  z-index: 5;
  border: 1px solid var(--grey-3);
  width: 200px;
  max-width: 200px;
  color: var(--grey-1);
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  position: absolute;
  bottom: 50%;
  box-shadow: 0 2px 6px #5962731a;
}

.tooltip.sidebar-author-name {
  width: auto;
  color: var(--grey-1);
  margin-bottom: 36px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 20px;
  display: block;
}

.tooltip-arrow {
  border-right: 1px solid var(--grey-3);
  border-bottom: 1px solid var(--grey-3);
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  transform: rotate(45deg);
}

.haze {
  background-color: var(--haze);
}

.haze._50padding-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-grey {
  color: var(--grey-1);
  font-size: 15px;
}

.text-grey.no-margin-bottom {
  font-family: Fira Sans, sans-serif;
}

.text-grey.no-margin-bottom.case-text {
  color: #99a0bb;
}

.text-grey.margin-bottom {
  margin-bottom: 20px;
}

.text-grey.margin-bottom2 {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 27px;
}

.no-margin {
  margin: 0;
}

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

.intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.intro.no-margin-bottom {
  margin-bottom: 0;
}

.intro.no-margin-bottom.left-align {
  flex-direction: row;
  align-items: center;
}

.intro.no-margin-bottom.contact-section {
  flex-direction: row;
  max-width: none;
}

.intro.wide {
  max-width: 800px;
}

.intro.left {
  color: #4d4d4d;
  text-align: left;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.intro.left.margin-bottom {
  margin-bottom: 48px;
}

.intro.left.sticky {
  position: sticky;
  top: 160px;
}

.intro.left._80 {
  width: auto;
  padding-right: 50px;
}

.intro.left.card {
  background-color: var(--midnight-blue);
  border-radius: 10px;
}

.intro.margin-bottom {
  margin-bottom: 80px;
}

.intro.full {
  max-width: 100%;
}

.intro.margin-top-and-bottom {
  margin-top: 80px;
}

.intro.less-margin-bottom {
  margin-bottom: 50px;
}

.dark {
  background-color: var(--dark);
}

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

.title {
  background-color: var(--sandy-brown);
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 4px 7px 4px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
}

.title.dark-bg {
  background-color: var(--sandy-brown);
  color: var(--white);
}

.title.gradient {
  background-image: linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  color: var(--white);
}

.title.white-background {
  background-color: var(--ghost-white);
  color: var(--midnight-blue);
}

.title.right-corner {
  text-align: center;
  min-width: 220px;
  padding: 10px 18px;
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.title.right-corner.conversieratio {
  background-color: var(--slate-grey);
  text-align: center;
  min-width: 220px;
  margin-top: 42px;
}

.title.kosten-lead-case {
  text-align: center;
  margin-right: 20px;
  padding: 10px 18px;
}

.title.kosten-lead-case.blauw-case {
  background-color: var(--slate-grey);
  margin-left: 0;
  display: block;
}

.no-padding-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-v3 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 32px;
  display: flex;
}

.footer-v3-menu {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.link-white {
  color: #fff;
  text-decoration: none;
}

.link-white:hover {
  text-decoration: underline;
}

.footer-link {
  color: var(--grey-1);
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.dark-bg {
  color: #ffffffb3;
}

.footer-bottom {
  border-top: 1px solid var(--haze-dark);
  width: 100%;
  color: var(--grey-1);
  justify-content: space-between;
  margin-top: 64px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.footer-bottom.dark-bg {
  border-top-color: #fff3;
}

.brand {
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-left: 14px;
  padding-right: 14px;
  display: flex;
}

.brand.footer-v1-brand {
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.brand.footer-v3-brand {
  flex: none;
  padding-left: 0;
  padding-right: 24px;
}

.brand.footer-v4-brand {
  flex: none;
}

.brand.white-bg {
  color: var(--dark);
}

.changelog {
  flex-direction: column;
  width: 66.66%;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.change {
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  box-shadow: 0 6px 12px #5962731a;
}

.change-icon {
  background-color: var(--dark);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.change-icon.release {
  background-color: var(--main-color);
}

.change-icon.fix {
  background-color: var(--color-2);
}

.change-text {
  color: var(--grey-1);
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 24px;
}

.changelog-contact-text {
  max-width: 400px;
  color: var(--grey-1);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.nav-menu {
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.hidden {
  margin-left: 0;
  display: none;
}

.no-padding {
  padding: 0;
}

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

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

.full-width {
  width: 100%;
}

.page-wrapper {
  position: relative;
}

.page-wrapper.sg-wrapper {
  margin-left: 300px;
}

.page-wrapper.overflow-visible {
  overflow: visible;
}

.navigation {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.text-big {
  font-size: 17px;
  line-height: 28px;
}

.text-big.text-grey {
  color: var(--slate-grey-2);
  font-size: 17px;
}

.text-big.text-white {
  opacity: .8;
  padding-left: 20px;
}

.text-big.text-white-landing {
  color: #fff;
}

.logo-icon {
  height: 40px;
  margin-right: 12px;
}

.text-dark-grey {
  color: var(--grey-1);
}

.bg-elements {
  z-index: 0;
  justify-content: center;
  align-items: center;
  max-width: 2000px;
  height: 100%;
  min-height: 640px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.preloader {
  z-index: 10000;
  background-color: #fff;
  background-image: none;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.loading-icon {
  width: 28px;
  margin-right: 10px;
}

.sg-sidebar {
  background-color: var(--dark);
  color: #fff;
  width: 300px;
  padding-bottom: 104px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.sg-sidebar-heading {
  border-bottom: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.sg-sidebar-menu {
  flex-direction: column;
  align-items: stretch;
  padding: 32px 24px;
  display: flex;
}

.sg-sidebar-link {
  color: #fff;
  border-radius: 4px;
  width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
}

.sg-sidebar-link:hover {
  background-color: #ffffff0a;
}

.sg-sidebar-link.w--current {
  background-color: var(--main-color);
  background-image: url('../images/right-white.svg'), linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  background-position: 94%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 20px, auto;
}

.pricing-v1-card {
  color: var(--dark);
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex: 1;
  padding: 48px;
  position: relative;
  box-shadow: 0 6px 12px #30364d1f;
}

.pricing-v1-billing {
  color: var(--grey-2);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: 11px;
}

.pricing-v1-tag {
  justify-content: center;
  align-items: flex-start;
  margin-top: -4px;
  margin-bottom: 4px;
  font-family: Fira Sans, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.pricing-v1-feature {
  color: var(--grey-1);
  cursor: help;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
}

.pricing-v1-feature:hover {
  background-color: var(--haze);
  color: var(--dark);
}

.info {
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: border .3s;
  display: flex;
  position: relative;
}

.info:hover {
  border-color: red;
}

.tabs-menu-v2 {
  border: 1px solid var(--grey-3);
  background-color: #0000;
  border-radius: 40px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  display: flex;
}

.tabs-menu-v2.dark-bg {
  background-color: #0000001a;
  border-style: none;
}

.tabs {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-link-v2 {
  background-color: #0000;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 500;
}

.tab-link-v2.w--current {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  color: #fff;
}

.tab-link-v2.white {
  color: #fff;
}

.tab-link-v2.white.w--current {
  color: var(--main-color);
  background-color: #fff;
  background-image: linear-gradient(#0000, #0000);
  border-radius: 40px;
  box-shadow: inset 0 0 0 1px #fff;
}

.color-1 {
  background-color: var(--main-color);
}

.sidebar {
  flex: 0 auto;
  width: 100%;
}

.sidebar.sticky {
  position: sticky;
  top: 128px;
}

.form-error {
  color: var(--color-2);
  text-align: center;
  background-color: #0000;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
}

.form-error.text-left {
  text-align: left;
  padding-left: 0;
}

.form-error.dark-bg {
  color: #fff;
}

.input {
  border: 1px solid var(--grey-3);
  background-color: var(--white);
  border-radius: 5px;
  min-width: 228px;
  height: 48px;
  margin-bottom: 0;
  padding: 7px 24px 8px;
  transition: color .4s, background-color .4s, border-color .4s;
}

.input:focus {
  border-color: var(--grey-3);
}

.input::placeholder {
  color: var(--grey-2);
}

.input.icon-input {
  z-index: 1;
  text-align: left;
  border-radius: 0 5px 5px 0;
  flex: 1;
  margin: 0;
  position: relative;
}

.input.icon-input-bg {
  z-index: 1;
  background-color: #ffffff1a;
  border: 1px solid #fff9;
  border-radius: 0 5px 5px 0;
  flex: 1;
  margin: 0;
  transition: border-color .2s, background-color .2s;
  position: relative;
}

.input.icon-input-bg:focus {
  background-color: #ffffff0d;
  border-color: #fff;
}

.input.icon-input-bg::placeholder {
  color: #ffffffb3;
}

.input.dark-bg {
  background-color: #ffffff14;
  border-color: #fff9;
}

.input.dark-bg:hover {
  border-color: var(--white);
}

.input.dark-bg:focus {
  background-color: var(--white);
  color: var(--dark);
}

.input.dark-bg::placeholder {
  color: #ffffffb3;
}

.input.subscribe-v1-input {
  width: 240px;
  margin-bottom: 0;
}

.input.text-area {
  height: auto;
  min-height: 224px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.input.password-input {
  text-align: center;
  margin-bottom: 16px;
}

.form-success {
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 16px;
}

.simple-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 100%;
  grid-auto-columns: 1fr;
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
}

.sidebar-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.sidebar-block.sticky {
  position: sticky;
  top: 128px;
}

.post-card-bottom {
  color: var(--grey-1);
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.post-card-avatar {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  margin-right: 8px;
}

.sidebar-icon {
  width: 24px;
  margin-right: 12px;
}

.sidebar-post-card {
  color: var(--dark);
  border-radius: 8px;
  align-items: flex-start;
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px;
  text-decoration: none;
  transition: transform .4s, box-shadow .4s, background-color .4s;
  display: flex;
}

.sidebar-post-card:hover {
  z-index: 1;
  background-color: var(--white);
  position: relative;
  transform: translate(0, -4px);
  box-shadow: 0 16px 30px #30364d1a;
}

.sidebar-post-image {
  background-color: red;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 88px;
  height: 68px;
  margin-right: 20px;
}

.sidebar-post-info {
  flex: 1;
}

.sidebar-author {
  z-index: 1;
  border: 4px solid var(--haze);
  width: 64px;
  height: 64px;
  color: var(--dark);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: -12px;
  text-decoration: none;
  display: flex;
}

.sidebar-tags {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -4px;
  margin-right: -4px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.sidebar-tag-link {
  color: var(--main-color);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #9165f71a;
  border-radius: 4px;
  margin: 4px;
  padding: 6px 7px 6px 8px;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  text-decoration: none;
  transition: color .4s, background-color .4s;
  display: block;
}

.sidebar-tag-link:hover {
  background-color: var(--main-color);
  color: var(--white);
}

.arrow-link {
  color: var(--sandy-brown);
  text-align: left;
  align-items: center;
  margin-top: -8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.link-arrow-icon {
  width: 21px;
  margin-top: 1px;
  margin-left: 4px;
}

.post-card {
  width: 100%;
  height: 100%;
  color: var(--dark);
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  padding: 28px;
  text-decoration: none;
  transition: background-color .4s, box-shadow .4s, transform .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.post-card:hover {
  background-color: var(--white);
  transform: translate(0, -6px);
  box-shadow: 0 12px 24px -6px #30364d29;
}

.post-card.big {
  padding: 56px 56px 40px;
}

.post-card-info {
  text-align: center;
  flex-direction: column;
  flex: 1;
  padding-top: 24px;
  display: flex;
}

.post-card-image-big {
  background-color: var(--haze);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 280px;
  margin-bottom: 8px;
  transition: filter .2s;
}

.post-card-description {
  color: var(--grey-1);
  margin-bottom: 16px;
}

.post-card-author {
  color: var(--grey-1);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.post-card-image {
  background-color: var(--haze);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 216px;
  transition: filter .2s;
}

.nav-dropdown-icon {
  display: none;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 4px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-left: -4px;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
  box-shadow: 0 6px 24px #30364d38;
}

.dropdown-list.v2.w--open {
  width: 420px;
  margin-left: -48px;
  padding: 12px;
  display: flex;
}

.nav-dropdown-link {
  color: var(--dark);
  padding: 9px 20px 11px;
  font-size: 14px;
  transition: color .1s, background-color .1s;
}

.nav-dropdown-link:hover {
  background-color: var(--haze-dark);
  color: var(--main-color);
}

.nav-dropdown-link.w--current {
  color: var(--dark);
  font-weight: 700;
}

.nav-dropdown-link.w--current:hover {
  color: var(--main-color);
}

.dropdown-corner {
  z-index: 1;
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: -4px;
  left: 33px;
  transform: rotate(45deg);
}

.dropdown-corner.padding {
  left: 89px;
}

.dropdown-bridge {
  height: 12px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
}

.circle-icon {
  background-color: #253f6f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
}

.circle-icon.color-1-ghost {
  padding: 20px;
}

.sg-color {
  background-color: var(--main-color);
  width: 100%;
  height: 160px;
  box-shadow: none;
  border-radius: 8px;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-basis: 25%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sg-color.red {
  background-color: var(--color-2);
}

.sg-color.yellow {
  background-color: var(--color-3);
}

.sg-color.green {
  background-color: var(--color-4);
}

.sg-color.gradient-1 {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
}

.sg-color.gradient-2 {
  background-image: linear-gradient(to right, var(--gradient-2-light), var(--gradient-2-dark));
}

.sg-color.gradient-3 {
  background-image: linear-gradient(to right, var(--gradient-3-light), var(--gradient-3-dark));
}

.sg-color.gradient-4 {
  background-image: linear-gradient(to right, var(--gradient-4-light), var(--gradient-4-dark));
}

.sg-color-name {
  height: 32px;
  color: var(--dark);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 16px;
  padding: 10px 21px;
  font-size: 11px;
  font-weight: 500;
  line-height: 12px;
  position: absolute;
  box-shadow: 0 1px 3px #5962731f;
}

.color-1-ghost {
  background-color: #2583fd1f;
}

.color-2-ghost {
  background-color: #fc37621f;
}

.color-3-ghost {
  background-color: #ff93201f;
}

.color-4-ghost {
  background-color: #46ce1f1f;
}

.color-5-ghost {
  background-color: #8e2af01f;
}

.color-6-ghost {
  background-color: #00d5bb1f;
}

.cta-card {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  color: #fff;
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 10% 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-card-info {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.subscribe-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.store-button {
  background-color: #253f6f;
  border-radius: 5px;
}

.store-button.white {
  background-color: #fff;
  transition: box-shadow .2s;
}

.store-button.white:hover {
  box-shadow: 0 4px 16px #00000029;
}

.store-button.side-margins {
  margin-left: 6px;
  margin-right: 6px;
}

.store-button.ghost-bg {
  background-color: #0000;
  transition: box-shadow .2s;
  box-shadow: inset 0 0 0 1px #ffffff40;
}

.store-button.ghost-bg:hover {
  box-shadow: inset 0 0 0 1px #ffffff80;
}

.store-button.ghost {
  box-shadow: inset 0 0 0 1px var(--haze-dark);
  background-color: #0000;
  transition: box-shadow .2s;
}

.store-button.ghost:hover {
  box-shadow: inset 0 0 0 1px var(--grey-3);
}

.store-badge-link {
  transition: transform .4s;
  position: relative;
}

.store-badge-link:hover {
  transform: translate(0, -3px);
}

.store-badge-link.small {
  height: 40px;
}

.breadcrumbs {
  color: var(--grey-2);
  text-transform: capitalize;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 32px;
  font-size: 13px;
  line-height: 16px;
  display: flex;
}

.link-grey {
  color: var(--grey-1);
  text-decoration: none;
}

.link-grey:hover {
  text-decoration: underline;
}

.text-light-grey {
  color: var(--grey-2);
}

.features-v8 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 83.33%;
  margin: -8px auto 60px;
  display: flex;
}

.feature-v8 {
  color: var(--white);
  background-color: #30364d29;
  border-radius: 24px;
  align-items: center;
  margin: 8px 6px;
  padding: 6px 16px 6px 6px;
  display: flex;
}

.feature-v8-icon {
  background-image: url('../images/check-color.svg'), linear-gradient(to bottom, var(--white), var(--haze-dark));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 18px, auto;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  box-shadow: 0 1px 3px #30364d4d;
}

.review-v7 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.achievements {
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.achievement {
  box-shadow: 1px 0 0 0 var(--grey-3);
  color: var(--grey-1);
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 24px 15px;
  display: flex;
}

.achievement.dark-bg {
  color: var(--white);
  box-shadow: 1px 0 #ffffff4d;
}

.achievement.last {
  box-shadow: none;
}

.achievement-text {
  color: var(--dark);
  margin-bottom: 12px;
  font-family: Fira Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.achievement-text.text-white {
  color: var(--white);
}

.achievement-text.small {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 36px;
}

.review-v9 {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: relative;
}

.icon-box {
  background-image: linear-gradient(to bottom, var(--white), var(--haze-dark));
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  padding: 12px;
  display: flex;
  box-shadow: 0 1px 2px #30364d4d;
}

.icon-box.gradient {
  background-image: linear-gradient(to bottom, var(--grade-1-light), var(--grade-1-dark));
}

.icon-box.big {
  background-image: none;
  width: 35px;
  height: 35px;
  padding: 7px;
}

.icon-box.gradient-2 {
  background-image: linear-gradient(to bottom, var(--grade-1-light), var(--grade-1-dark));
  background-image: linear-gradient(to bottom, var(--gradient-2-light), var(--gradient-2-dark));
}

.icon-box.gradient-3 {
  background-image: linear-gradient(to bottom, var(--gradient-3-light), var(--gradient-3-dark));
}

.icon-box.gradient-4 {
  background-image: linear-gradient(to bottom, var(--gradient-4-light), var(--gradient-4-dark));
}

.pricing-v2-card {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px #30364d1a;
}

.pricing-v2-tag {
  margin-bottom: 8px;
  font-family: Fira Sans, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.text-white-faded {
  color: #ffffffb3;
}

.pricing-v2-card-info {
  flex-direction: column;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px;
  display: flex;
}

.pricing-features {
  text-align: left;
  padding-top: 16px;
  padding-bottom: 32px;
}

.pricing-feature {
  border-top: 1px solid var(--grey-3);
  border-bottom: 1px solid var(--grey-3);
  color: var(--dark);
  align-items: center;
  margin-bottom: -1px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.pricing-feature.no {
  color: var(--grey-2);
}

.pricing-feature-icon {
  background-image: url('../images/check-color.svg');
  background-position: 50%;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.pricing-feature-icon.no {
  opacity: .33;
  background-image: url('../images/x-dark.svg');
}

.pricing-small-info {
  color: var(--grey-1);
  text-align: center;
  font-size: 13px;
  line-height: 20px;
}

.video-link {
  border: 1px solid var(--grey-3);
  height: 34px;
  color: var(--dark);
  border-radius: 17px;
  align-items: center;
  margin-top: 24px;
  padding-left: 4px;
  padding-right: 13px;
  text-decoration: none;
  display: flex;
}

.video-link.dark-bg {
  color: var(--white);
  border-color: #ffffff54;
}

.video-link.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

.video-link-icon-box {
  background-image: linear-gradient(to bottom, var(--white), var(--haze-dark));
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding: 6px;
  display: flex;
  box-shadow: 0 1px 2px #30364d40;
}

.video-link-icon {
  width: 16px;
}

.input-wrapper {
  align-items: center;
  margin-bottom: 24px;
  display: flex;
  overflow: hidden;
}

.input-wrapper.no-margin {
  margin: 0;
}

.input-icon-box {
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: var(--grey-3);
  background-color: var(--haze);
  background-image: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 11px;
  display: flex;
}

.input-icon-box.dark-bg {
  background-color: #ffffff1a;
  background-image: none;
  border-color: #fff9;
  border-right-style: none;
}

.input-icon-box.text-white-faded {
  background-color: var(--white);
}

.subscribe-v1 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 48px 15px;
  display: flex;
}

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

.social-icons.subscribe-v1-icons {
  flex-wrap: wrap;
  margin-right: -4px;
}

.social-circle-link {
  border: 1px solid var(--grey-3);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 4px;
  transition: border-color .2s;
  display: flex;
}

.social-circle-link:hover {
  border-color: var(--grey-2);
}

.social-circle-link.dark-bg {
  border-color: #ffffff40;
}

.social-circle-link.dark-bg:hover {
  border-color: #ffffff80;
}

.social-icon {
  width: 16px;
}

.subscribe-1-form-wrapper {
  flex: 1;
  align-items: center;
  display: flex;
}

.subscribe-v1-heading {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
}

.subscribe-v1-icon {
  width: 24px;
  margin-right: 8px;
}

.subscribe-v1-form {
  margin-bottom: 0;
}

.side-media {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.feature {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
}

.feature.left {
  text-align: left;
  align-items: flex-start;
  padding-left: 0%;
}

.footer-columns {
  z-index: 1;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 64px;
  display: flex;
  position: relative;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-v1-info {
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.social-icons-small {
  justify-content: center;
  align-items: center;
  margin-left: -3px;
  margin-right: -3px;
  display: flex;
}

.social-icons-small.footer-v4-icons {
  margin-left: 13px;
}

.social-link-small {
  border: 1px solid var(--grey-3);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin: 3px;
  padding: 6px;
  transition: border-color .4s;
  display: flex;
}

.social-link-small:hover {
  border-color: var(--grey-2);
}

.social-link-small.dark-bg {
  border-color: #ffffff40;
}

.social-link-small.dark-bg:hover {
  border-color: #ffffff80;
}

.social-icon-small {
  opacity: .6;
  width: 16px;
}

.footer-v2 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 64px;
  display: flex;
}

.footer-v2-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-v3-link {
  color: var(--grey-1);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
  transition: color .2s;
}

.footer-v3-link:hover {
  background-color: var(--haze);
  color: var(--dark);
}

.footer-v3-link.dark-bg {
  color: #fff;
}

.footer-v3-link.dark-bg:hover {
  background-color: #ffffff0d;
}

.footer-v3-left {
  align-items: center;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-v3-right {
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-v3-bottom {
  border-top: 1px solid var(--haze-dark);
  width: 100%;
  color: var(--grey-3);
  justify-content: space-between;
  margin-top: 32px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.footer-v3-bottom.dark-bg {
  border-top-color: #fff3;
}

.footer-v3-bottom-info {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.vertical-divider {
  background-color: var(--grey-3);
  width: 1px;
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
}

.vertical-divider.dark-bg {
  background-color: #fff3;
}

.feature-blocks {
  border-top: 1px solid var(--grey-3);
  border-bottom: 1px solid var(--grey-3);
  justify-content: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.feature-block {
  box-shadow: 0 0 0 1px var(--haze-dark);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 5vw;
  display: flex;
  overflow: hidden;
}

.top-message {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  width: auto;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 8px 48px;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-message-text {
  margin-right: 12px;
}

.text-emoji-1 {
  color: #0000;
  background-image: url('../images/emoji-point-right-icon_1emoji-point-right-icon.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 20px;
  display: inline-block;
}

.text-emoji-1.big {
  background-size: 24px;
  width: 28px;
}

.text-emoji-2 {
  color: #0000;
  background-image: url('../images/emoji-hi-icon_1emoji-hi-icon.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 20px;
  display: inline-block;
}

.text-emoji-4 {
  color: #0000;
  background-image: url('../images/emoji-boom-icon_1emoji-boom-icon.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 20px;
  display: inline-block;
}

.side-tabs {
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  display: flex;
}

.side-tab {
  background-color: #0000;
  border-radius: 8px;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 32px;
  transition: box-shadow .4s, background-color .4s;
  display: flex;
}

.side-tab:hover {
  background-color: #9165f70f;
}

.side-tab.w--current {
  background-color: var(--white);
  box-shadow: 0 6px 12px #30364d1f;
}

.message {
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  display: flex;
}

.message.gradient {
  background-image: linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  color: #fff;
}

.message-text {
  margin-right: 20px;
  font-size: 16px;
  line-height: 24px;
}

.post-info {
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 18px;
}

.post-info-top {
  color: var(--grey-2);
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 23px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.post-image {
  z-index: 2;
  background-color: var(--grey-3);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 9px;
  align-items: flex-end;
  width: 98%;
  max-width: 1270px;
  height: 680px;
  max-height: 56vw;
  margin: -48px auto 128px;
  display: flex;
  position: relative;
  box-shadow: 0 20px 40px -10px #30364d54;
}

.post {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.post p {
  color: var(--grey-1);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 28px;
}

.post a {
  color: var(--main-color);
  text-decoration: none;
}

.post a:hover {
  text-decoration: underline;
}

.footer-v2-bottom-menu {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-v2-bottom-menu-link {
  color: var(--grey-1);
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 10px;
  line-height: 16px;
  text-decoration: none;
}

.footer-v2-bottom-menu-link:hover {
  text-decoration: underline;
}

.footer-v2-bottom-menu-link.white {
  color: #fff;
}

.footer-v2-bottom-info {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-v1-bottom {
  border-top: 1px solid var(--grey-3);
  color: var(--grey-1);
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.footer-v1-bottom.dark-bg {
  border-top-color: #fff3;
}

.footer-app-link {
  width: 100%;
  color: var(--dark);
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.footer-app-link:hover {
  text-decoration: underline;
}

.footer-app-link.dark-bg {
  color: #fff;
}

.footer-app-icon {
  border: 1px solid var(--haze-dark);
  background-color: #0000;
  border-radius: 10px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  padding: 10px;
  transition: border-color .2s;
  display: flex;
}

.footer-app-icon:hover {
  border-color: red;
}

.footer-app-icon.dark-bg {
  border-color: #ffffff40;
}

.footer-app-icon.dark-bg:hover {
  border-color: #ffffff80;
}

.review-v4-text {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
}

.text-highlighted {
  color: var(--color-3);
  background-color: #ffb5431a;
  border-radius: 3px;
  padding-left: 6px;
  padding-right: 6px;
  display: inline-block;
}

.testimonials-v5 {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-top: -20px;
  margin-bottom: -40px;
  padding-bottom: 80px;
}

.testimonials-v5-slide {
  width: 33.33%;
  padding-left: 4%;
  padding-right: 4%;
}

.slider-nav {
  opacity: 1;
  height: 30px;
  font-size: 8px;
  line-height: 16px;
}

.review-v5 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.review-v5-logo {
  height: 32px;
  margin-bottom: 16px;
}

.feature-icon-left {
  flex-direction: row;
  align-items: flex-start;
  padding-right: 4%;
  display: flex;
}

.feature-info-right {
  flex: 1;
  padding-left: 24px;
}

.feature-info-right.align-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.logotypes {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.logotypes.v2 {
  justify-content: space-between;
}

.logo-link {
  flex: none;
  margin: 20px 12px;
  padding-left: 8px;
  padding-right: 8px;
}

.logo-link.faded {
  opacity: .3;
  transition: opacity .4s;
}

.logo-link.faded:hover {
  opacity: 1;
}

.logo-link.white-faded {
  opacity: .6;
  transition: opacity .4s;
}

.logo-link.white-faded:hover {
  opacity: 1;
}

.logo {
  opacity: .6;
  height: 32px;
  max-height: 100%;
  transition: opacity .4s;
}

.logo:hover {
  opacity: 1;
}

.logo._45px {
  opacity: .6;
  height: auto;
  transition: opacity .4s;
}

.logo._45px:hover {
  opacity: 1;
}

.layouts {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--grey-3);
  perspective: 1000px;
  border-radius: 8px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 64px;
  margin-left: 15px;
  margin-right: 15px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.layout-box {
  background-color: var(--haze);
  box-shadow: -1px -1px 0 0 var(--grey-3);
  flex-direction: column;
  align-items: center;
  margin-bottom: -1px;
  margin-right: -1px;
  padding: 14%;
  display: flex;
}

.layout {
  border: 1px solid var(--grey-3);
  background-color: var(--haze);
  border-radius: 4px;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  transition: box-shadow .4s, transform .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.layout:hover {
  transform: translate(0, -6px);
  box-shadow: 0 15px 30px #30364d1a;
}

.post-author {
  background-color: var(--white);
  border-radius: 8px;
  align-items: flex-start;
  margin-top: -188px;
  margin-bottom: 80px;
  padding: 28px 28px 80px;
  display: flex;
  position: relative;
  box-shadow: 0 6px 12px #30364d1f;
}

.post-author-avatar {
  border-radius: 50%;
  flex: none;
  width: 72px;
  height: 72px;
}

.post-author-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-left: 24px;
  display: flex;
}

.sidebar-promo {
  background-color: var(--midnight-blue);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 20px -6px #1d2c4e82;
}

.sidebar-promo-info {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.big-message {
  justify-content: center;
  align-items: center;
  padding: 48px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.big-message.grade-1 {
  background-image: linear-gradient(to right, var(--grade-1-dark), var(--grade-1-light));
  color: #fff;
}

.big-message-text {
  margin-right: 24px;
  font-size: 22px;
  line-height: 28px;
}

.sg-button-block {
  flex-direction: column;
  width: 33.33%;
  padding: 15px;
  display: flex;
}

.button-icon {
  float: left;
  width: 20px;
  margin-right: 10px;
}

.button-icon.big {
  width: 24px;
}

.button-icon.small {
  width: 16px;
  margin-right: 6px;
}

.sg-back-link {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #00000026;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sg-back-link:hover {
  border-top-color: var(--main-color);
  background-color: var(--main-color);
}

.sg-logo {
  float: left;
  flex: none;
  width: 40px;
  margin-right: 12px;
}

.faq-question {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 8px;
  display: flex;
}

.licence-item {
  background-color: #fff;
  border-radius: 8px;
  align-items: center;
  margin-bottom: 32px;
  padding: 32px;
  display: flex;
  box-shadow: 0 15px 30px #30364d1a;
}

.licence-item-info {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
}

.licence-link-divider {
  background-color: #dce0e9;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-bottom: 4px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

.play-button {
  background-image: url('../images/play-color.svg'), linear-gradient(to bottom, var(--white), var(--haze-dark));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 24px, auto;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  padding: 18px;
  transition: transform .4s;
  display: flex;
  position: relative;
  box-shadow: 0 4px 12px #30364d33;
}

.play-button:hover {
  transform: scale(1.1);
}

.components {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -30px;
  margin-left: 8.33%;
  margin-right: 8.33%;
  padding-top: 4px;
  display: flex;
}

.components-link {
  color: #fff;
  text-align: center;
  background-color: #ffffff0d;
  border: 1px solid #fff6;
  border-radius: 10px;
  flex-grow: 1;
  flex-basis: 40%;
  width: 25%;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-decoration: none;
  transition: box-shadow .2s, background-color .2s, color .2s;
}

.components-link:hover {
  color: var(--main-color);
  background-color: #fff;
  box-shadow: 0 15px 30px #59627329;
}

.password-card {
  z-index: 1;
  width: 100%;
  max-width: 370px;
  color: var(--dark);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 56px;
  display: flex;
  position: relative;
  box-shadow: 0 15px 30px #2c334029;
}

.heading-margin-big {
  margin-bottom: 28px;
}

.heading-margin-big.white {
  color: #fff;
}

.scroll-icon-link {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 60px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.scroll-mouse {
  background-image: linear-gradient(to bottom, white, var(--haze-dark));
  border-radius: 13px;
  flex-direction: column;
  align-items: center;
  width: 26px;
  height: 44px;
  display: flex;
  box-shadow: 0 1px 2px #30364d33;
}

.scroll-mouse-wheel {
  background-color: var(--main-color);
  border-radius: 2px;
  width: 4px;
  height: 9px;
  margin-top: 10px;
}

.faq-nav-link {
  z-index: 1;
  color: var(--white);
  border-radius: 4px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  transition: padding .4s;
  display: block;
  position: relative;
}

.faq-nav-link:hover {
  background-color: #0000001a;
}

.faq-nav-link.w--current {
  background-image: url('../images/right-white.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 36px;
}

.faq-block {
  margin-top: -88px;
  padding-top: 128px;
}

.faq-top-link {
  color: var(--grey-3);
  font-size: 12px;
  text-decoration: underline;
  display: inline-block;
}

.faq-top-link:hover {
  color: var(--dark);
  text-decoration: underline;
}

.footer-v4 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 32px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-v4-nav {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-left: 15px;
  display: flex;
}

.footer-v4-link {
  color: var(--grey-1);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  transition: color .2s;
}

.footer-v4-link:hover {
  background-color: var(--haze);
  color: var(--dark);
}

.footer-v4-link.dark-bg {
  color: #fff;
}

.footer-v4-link.dark-bg:hover {
  background-color: #ffffff0d;
}

.footer-v4-bottom {
  border-top: 1px solid var(--haze-dark);
  width: 100%;
  color: var(--grey-1);
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.footer-v4-bottom.dark-bg {
  border-top-color: #fff3;
}

.help-form {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
  display: flex;
  position: relative;
}

.help-input {
  border: 1px solid var(--grey-3);
  background-image: url('../images/search-color.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 8px;
  width: 100%;
  height: 56px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 19px 24px 20px 52px;
  font-size: 16px;
  line-height: 24px;
  transition: border-color .4s;
}

.help-input:hover, .help-input:focus {
  border-color: var(--main-color);
}

.help-input::placeholder {
  color: var(--grey-2);
}

.help-button {
  background-color: #0000;
  background-image: url('../images/arrow-right-white.svg'), linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 24px, auto;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  transition: width .4s;
  position: absolute;
  top: 4px;
  right: 4px;
}

.help-button:hover {
  opacity: 1;
  background-color: #2583fd1f;
  width: 56px;
}

.search-result-url {
  color: var(--grey-2);
  margin-top: -8px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 16px;
}

.search-result {
  color: var(--dark);
  background-color: #fff;
  border-radius: 10px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 32px;
  transition: transform .4s;
  display: flex;
  box-shadow: 11px 11px 30px #5962731f;
}

.search-result:hover {
  z-index: 1;
  position: relative;
  transform: translate(0, -4px);
}

.feature-card-hover {
  color: var(--dark);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  flex: 270px;
  align-items: center;
  padding: 48px 12%;
  transition: transform .4s, background-color .4s, box-shadow .4s;
  display: flex;
}

.feature-card-hover:hover {
  background-color: var(--white);
  transform: translate(0, -4px);
  box-shadow: 0 15px 30px #30364d1a;
}

.article-list {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.article-link {
  border: 1px solid var(--grey-3);
  color: var(--dark);
  text-transform: capitalize;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 32px;
  text-decoration: none;
  transition: box-shadow .4s, transform .4s, border-color .4s, background-color .4s;
  display: flex;
}

.article-link:hover {
  background-color: var(--white);
  border-color: #0000;
  transform: translate(0, -4px);
  box-shadow: 0 6px 12px #30364d1f;
}

.capitalized {
  text-transform: capitalize;
}

.help-categories {
  grid-column-gap: 30px;
  grid-row-gap: 32px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.help-mini-form {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 24px;
  display: flex;
  position: relative;
}

.help-mini-input {
  border: 1px solid var(--grey-3);
  background-color: var(--haze);
  background-image: url('../images/search-color.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 5px;
  max-width: 320px;
  height: 48px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 16px 10px 48px;
  transition: border-color .4s, background-color .4s;
}

.help-mini-input:hover {
  background-color: #fff;
}

.help-mini-input:focus {
  border-color: var(--main-color);
  background-color: #fff;
}

.help-mini-input::placeholder {
  color: var(--grey-2);
}

.help-mini-button {
  display: none;
}

.help-article {
  flex: 1;
}

.related-article-link {
  border: 1px solid var(--grey-3);
  color: var(--dark);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: transform .4s, box-shadow .4s, border-color .4s, background-color .4s;
  display: flex;
}

.related-article-link:hover {
  background-color: var(--white);
  border-color: #0000;
  transform: translate(0, -2px);
  box-shadow: 3px 3px 10px #30364d29;
}

.sg-logo-text {
  text-transform: uppercase;
  border: 1px solid #ffffff1a;
  border-radius: 3px;
  flex: none;
  margin-top: 2px;
  padding: 5px 8px;
  font-size: 9px;
  line-height: 12px;
}

.sg-logo-link {
  color: #fff;
  align-items: center;
  padding-right: 12px;
  text-decoration: none;
  display: flex;
}

.float-button-wrapper {
  z-index: 10;
  background-color: #fff;
  border-radius: 32px;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 64px;
  min-height: 64px;
  padding: 20px 16px 32px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px #2c33401f;
}

.float-button {
  z-index: 10;
  border: 2px solid var(--haze-dark);
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: border-color .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.float-button:hover {
  border-color: var(--grey-3);
}

.float-button-list {
  width: auto;
  height: auto;
  padding-bottom: 28px;
}

.float-link {
  height: 40px;
  color: var(--grey-1);
  border-radius: 8px;
  align-items: center;
  padding-left: 12px;
  padding-right: 32px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.float-link:hover {
  background-color: var(--haze);
}

.float-link-icon {
  width: 24px;
  margin-right: 10px;
}

.float-button-icon {
  width: 24px;
  height: 24px;
}

.float-button-close-icon {
  opacity: 0;
  width: 32px;
  height: 32px;
  position: absolute;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row;
  max-width: 770px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 88px;
  display: flex;
  box-shadow: 0 15px 30px #30364d1a;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  display: grid;
}

.loading-info {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.about-photo {
  border-radius: 10px;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
}

.promo-card {
  z-index: 10;
  max-width: 500px;
  box-shadow: 0 4px 16px 0 #2c33401f, inset 0 0 0 1px var(--haze-dark);
  background-color: #fff;
  border-radius: 48px;
  align-items: center;
  padding: 9px 32px 9px 9px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.promo-card-info {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}

.promo-card-close {
  z-index: 1;
  background-color: #2c334080;
  background-image: url('../images/stop-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: transform .2s, background-color .2s;
  position: absolute;
  top: 0;
  right: -3px;
}

.promo-card-close:hover {
  background-color: var(--grey-2);
  transform: scale(1.2);
}

.promo-image {
  background-image: url('../images/avatar-08.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.promo-card-text {
  margin-bottom: 4px;
}

.nav-dropdown-link-v2 {
  width: 50%;
  color: var(--dark);
  background-color: #0000;
  border-radius: 4px;
  align-items: center;
  padding: 12px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.nav-dropdown-link-v2:hover {
  background-color: var(--haze);
}

.nav-dropdown-link-v2.w--current {
  color: var(--dark);
  font-weight: 700;
}

.nav-dropdown-circle {
  border: 1px solid var(--grey-3);
  width: 40px;
  height: 40px;
  color: var(--main-color);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.nav-dropdown-circle.color-2-ghost {
  background-color: #fc37621f;
}

.nav-dropdown-circle.color-3-ghost {
  background-color: #ff93201f;
}

.nav-dropdown-circle.color-4-ghost {
  background-color: #46ce1f1f;
}

.nav-dropdown-circle.color-5-ghost {
  background-color: #8e2af01f;
}

.nav-dropdown-circle.color-6-ghost {
  background-color: #00d5bb1f;
}

.nav-dropdown-link-info {
  flex: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
}

.nav-dropdown-link-text {
  color: var(--grey-2);
  font-size: 12px;
  line-height: 16px;
}

.counter-number {
  color: var(--dark);
  margin-bottom: 4px;
  font-family: Fira Sans, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
}

.pricing-v3 {
  background-color: #fff;
  border-radius: 10px;
  min-height: 400px;
  margin-left: 15px;
  margin-right: 15px;
  top: 0;
  box-shadow: 0 5px 15px #30364d1a;
}

.pricing-v3-plans {
  z-index: 3;
  border-bottom: 1px solid var(--haze-dark);
  background-color: #fff;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
}

.pricing-v3-plans.mobile-sticky {
  display: none;
}

.pricing-v3-plans.bottom {
  border-top: 1px solid var(--grey-3);
}

.pricing-plan-cell {
  width: 25%;
  box-shadow: -1px 0 0 0 var(--haze-dark);
  text-align: center;
  padding: 24px;
}

.pricing-plan-cell.no-divider {
  box-shadow: none;
}

.pricing-v3-billing {
  color: var(--grey-2);
  font-size: 11px;
  line-height: 16px;
}

.pricing-v3-currency {
  color: var(--grey-2);
  margin-left: -12px;
  margin-right: 3px;
  line-height: 20px;
}

.pricing-v3-tag {
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 32px;
  line-height: 32px;
  display: flex;
}

.pricing-v3-category-header {
  z-index: 2;
  border-top: 1px solid var(--haze-dark);
  border-bottom: 1px solid var(--haze-dark);
  background-color: var(--haze);
  width: 100%;
  color: var(--grey-1);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: -1px;
  margin-bottom: -1px;
  padding: 8px 32px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  position: sticky;
  top: 132px;
}

.pricing-v3-header {
  z-index: 2;
  border-bottom: 1px solid var(--haze-dark);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  top: 260px;
}

.pricing-v3-row {
  border-top: 1px solid var(--haze-dark);
  width: 100%;
  display: flex;
}

.pricing-v3-row-header {
  align-items: center;
  width: 25%;
  min-height: 56px;
  padding: 9px 24px 9px 32px;
  display: flex;
}

.pricing-v3-cells {
  flex: 1;
}

.pricing-v3-cell {
  height: 100%;
  min-height: 56px;
  box-shadow: -1px 0 0 0 var(--haze-dark);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  font-weight: 500;
  display: flex;
}

.pricing-cell-icon {
  background-image: url('../images/check-color.svg');
  background-position: 50%;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
}

.pricing-v3-category {
  width: 100%;
}

.pricing-v3-plan-name, .pricing-v3-plan-mobile {
  margin-top: -4px;
}

.pricing-v3-cell-description {
  width: 100%;
  color: var(--grey-2);
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.menu-icon-line-top, .menu-icon-line-bottom {
  background-color: var(--white);
  border-radius: 1px;
  height: 2px;
}

.menu-icon {
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-dropdown-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-icon-line-middle {
  background-color: var(--white);
  border-radius: 1px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.testimonials-v1 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 15px;
  margin-right: 15px;
}

.review-v1 {
  background-color: var(--white);
  border-radius: 8px;
  flex-direction: column;
  display: flex;
  box-shadow: 0 15px 30px #30364d1a;
}

.review-v1-text {
  color: var(--grey-1);
  margin: 32px;
}

.review-v1-bottom {
  border-top: 1px solid var(--grey-3);
  align-items: center;
  padding: 24px 32px;
  display: flex;
}

.review-v1-bottom.review-vertical {
  flex-direction: column;
}

.testimonials-v1-column {
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 100%;
  grid-auto-columns: 1fr;
  display: grid;
}

.review-v1-avatar {
  border-radius: 50%;
  flex: none;
  width: 44px;
  height: 44px;
}

.review-v1-info {
  flex: 1;
  padding-left: 16px;
  padding-right: 16px;
}

.review-v1-info.review-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.review-v1-name {
  font-weight: 500;
  line-height: 20px;
}

.review-v1-company {
  color: var(--grey-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
}

.review-v1-rating {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

.review-v1-star {
  width: 16px;
  margin-left: 1px;
  margin-right: 1px;
}

.logo-text {
  color: #fff;
  font-family: Fira Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.logo-text.text-dark {
  color: var(--midnight-blue);
}

.testimonials-v2 {
  background-color: var(--main-color);
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  border-radius: 12px;
  max-width: 970px;
  height: 440px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 24px -4px #9165f7b3;
}

.slider-arrow {
  background-color: var(--white);
  background-image: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 14px;
  transition: box-shadow .4s, transform .4s;
  display: flex;
  left: -28px;
  box-shadow: 0 2px 5px #00000029;
}

.slider-arrow:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px #0000001f;
}

.slider-arrow.right {
  background-image: none;
  left: auto;
  right: -28px;
  box-shadow: 0 2px 5px #00000029;
}

.slider-arrow.right:hover {
  transform: scale(1.05);
}

.slider-arrow.posts-arrow-left {
  left: -56px;
}

.slider-arrow.posts-arrow-right {
  left: auto;
  right: -56px;
}

.slider-arrow-icon {
  opacity: 1;
  width: 100%;
}

.review-v2 {
  height: 100%;
  color: var(--white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 8px;
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
  position: relative;
}

.review-v2-avatar {
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.review-v2-star {
  width: 16px;
  margin-left: 1px;
  margin-right: 1px;
}

.review-v2-text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 28px;
}

.review-v2-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.review-v2-quote {
  width: 60px;
  position: absolute;
}

.review-v2-quote.left {
  inset: 64px auto auto 64px;
}

.review-v2-quote.right {
  inset: auto 64px 64px auto;
}

.review-v2-author {
  height: 32px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #ffffff1a;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
}

.review-v2-author:hover {
  background-color: #30364d29;
}

.review-v2-icon {
  width: 16px;
  margin-left: 8px;
  margin-right: -1px;
}

.testimonials-v2-bg {
  position: absolute;
  inset: 0%;
}

.review-v2-add-button {
  z-index: 3;
  background-color: var(--white);
  height: 40px;
  color: var(--main-color);
  text-transform: uppercase;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: letter-spacing .4s, box-shadow .4s;
  display: flex;
  position: absolute;
  inset: auto 12% -20px auto;
  box-shadow: 3px 3px 12px #9165f733;
}

.review-v2-add-button:hover {
  letter-spacing: 1.5px;
  box-shadow: 6px 6px 20px -4px #9165f766;
}

.review-v2-add-icon {
  background-image: url('../images/plus-color.svg'), linear-gradient(to bottom, var(--white), var(--haze-dark));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 20px, auto;
  border-radius: 50%;
  flex: none;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  margin-right: 4px;
  box-shadow: 0 1px 3px #30364d4d;
}

.testimonials-v3 {
  z-index: 1;
  background-color: var(--white);
  border-radius: 1%;
  justify-content: center;
  align-items: center;
  width: 520px;
  max-width: 970px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  box-shadow: 0 16px 30px #30364d1a;
}

.review-v3-quote {
  opacity: .2;
  width: 56px;
  position: absolute;
}

.review-v3-quote.left {
  inset: 18% auto auto 18%;
}

.review-v3-quote.right {
  inset: auto 18% 18% auto;
}

.review-v3 {
  height: 100%;
  color: var(--white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 72px;
  display: flex;
  position: relative;
}

.review-v3.align-vertical {
  flex-direction: column;
}

.review-v3-avatar {
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.review-v3-rating {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

.review-v3-star {
  width: 16px;
  margin-left: 1px;
  margin-right: 1px;
}

.review-v3-content {
  z-index: 1;
  color: var(--midnight-blue);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.review-v3-text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 28px;
}

.review-v3-author {
  background-color: var(--ghost-white);
  height: 32px;
  color: var(--slate-grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
}

.review-v3-author:hover {
  background-color: #30364d29;
}

.review-v3-icon {
  width: 16px;
  margin-left: 8px;
  margin-right: -1px;
}

.logotypes-small {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.logo-link-small {
  padding: 8px 10px;
}

.logo-link-small.faded {
  opacity: .3;
  transition: opacity .4s;
}

.logo-link-small.faded:hover {
  opacity: 1;
}

.logo-small {
  height: 24px;
}

.logo-small.margin-bottom {
  margin-bottom: 10px;
}

.main-grid {
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  position: relative;
}

.main-grid.services {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.main-grid.grid-services {
  grid-column-gap: 14px;
  padding-left: 0;
  padding-right: 0;
}

.review-v2-rating {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

.review-v2-dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-white.svg');
  background-position: 0 0;
  background-size: 12px;
  width: 129px;
  height: 140px;
  position: absolute;
  inset: auto auto -3% 15%;
}

.reviiew-v2-circle-big {
  opacity: .08;
  width: 205px;
  position: absolute;
  inset: auto 17% -24% auto;
}

.reviiew-v2-circle-small {
  opacity: .08;
  width: 100px;
  position: absolute;
  inset: -7% 4% auto auto;
}

.review-v3-dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-color.svg');
  background-position: 0 0;
  background-size: 12px;
  width: 285px;
  height: 95px;
  position: absolute;
  inset: 12% auto auto -20%;
}

.testimonials-v3-wrapper {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.testimonials-v3-circle-big {
  opacity: .08;
  filter: saturate(12%);
  width: 220px;
  position: absolute;
  inset: -4% -4% auto auto;
}

.testimonials-v3-circle-small {
  opacity: .08;
  filter: saturate(10%);
  width: 120px;
  position: absolute;
  inset: auto auto -5% -13%;
}

.dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-white.svg');
  background-position: 0 0;
  background-size: 12px;
  width: 297px;
  height: 118px;
  position: absolute;
  inset: 25% auto auto 3%;
}

.circle-big {
  opacity: .08;
  width: 26vw;
  max-width: 480px;
  position: absolute;
  inset: auto 24% -25% auto;
}

.circle-small {
  opacity: .08;
  filter: brightness(200%) saturate(0%);
  width: 8vw;
  position: absolute;
  inset: 12% 7% auto auto;
}

._2-buttons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.footer-brand {
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding: 0;
  display: flex;
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.footer-heading {
  margin-bottom: 20px;
}

.footer-v2-logo {
  height: 56px;
  margin-bottom: 12px;
}

.footer-info {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
  padding-right: 16%;
  display: flex;
}

.store-badge {
  height: 48px;
}

.store-badge.small {
  height: 40px;
}

.breadcrumbs-arrow {
  opacity: .3;
  background-image: url('../images/right-dark.svg');
  background-position: 50%;
  background-size: 16px;
  width: 17px;
  height: 17px;
  margin: 10px 4px 9px;
}

.pricing-v2-header {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  color: var(--white);
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-v2-header.gradient-2 {
  background-image: linear-gradient(to right, var(--gradient-2-light), var(--gradient-2-dark));
}

.pricing-v2-header.gradient-3 {
  background-image: linear-gradient(to right, var(--gradient-3-light), var(--gradient-3-dark));
}

.pricing-v2-header.gradient-4 {
  background-image: linear-gradient(to right, var(--gradient-4-light), var(--gradient-4-dark));
}

.info-icon {
  opacity: .33;
  background-image: url('../images/help-circle-dark.svg');
  background-position: 50%;
  background-size: 100%;
  width: 100%;
  height: 100%;
  transition: opacity .4s;
}

.info-icon:hover {
  opacity: 1;
}

.pricing-v2-wave {
  width: 100%;
  max-width: none;
  height: 48px;
  display: block;
  position: absolute;
  top: auto;
  bottom: 0%;
}

.wave-bottom {
  z-index: 1;
  width: 100%;
  height: 4vw;
  position: absolute;
  inset: auto 0% -1px;
}

.wave-top {
  z-index: 1;
  width: 100%;
  height: 4vw;
  position: absolute;
  inset: 0% 0% auto;
}

.pricing-card-dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-white.svg');
  background-position: 100% 0;
  background-size: 12px;
  width: 99px;
  height: 45px;
  position: absolute;
  inset: auto auto 26% -1%;
}

.pricing-card-circle {
  opacity: .08;
  width: 160px;
  position: absolute;
  inset: -37% -11% auto auto;
}

.pricing-v2-billing {
  font-size: 13px;
  line-height: 20px;
}

.icon-full-width {
  width: 80%;
}

.pricing-v1-gradient {
  background-image: linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  height: 62%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.pricing-side-features {
  grid-column-gap: 30px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
}

.main-questions {
  grid-column-gap: 30px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  width: 83.33%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.sidebar-grid {
  grid-column-gap: 64px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 320px 1fr 320px;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.posts-2-cols {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -24px;
  display: grid;
}

.posts-2-cols.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.sidebar-heading {
  color: var(--grey-1);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.post-card-heading {
  text-transform: capitalize;
  margin-bottom: 8px;
}

.post-card-category {
  color: var(--sandy-brown);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.sidebar-post-heading {
  text-transform: capitalize;
  margin-bottom: 0;
}

.sidear-post-category {
  color: var(--main-color);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
}

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

.sidebar-author-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.sidebar-authors {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.post-top {
  background-image: linear-gradient(to right, var(--gradient-3-dark), var(--medium-slate-blue));
  height: 560px;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.card-button {
  border-top: 1px solid var(--grey-3);
  height: 56px;
  color: var(--grey-1);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-bottom: 1px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color .4s;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.card-button:hover {
  color: var(--main-color);
}

.post-tags {
  border-top: 1px solid var(--grey-3);
  align-items: flex-start;
  margin-top: 16px;
  padding-top: 32px;
  padding-bottom: 8px;
  display: flex;
}

.tags {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -6px;
  margin-left: 11px;
  margin-right: -4px;
  display: flex;
}

.heading {
  flex: none;
}

.posts-3-cols {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -24px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.tab-info-right {
  flex: 1;
  padding-left: 24px;
}

.help-category-card {
  border: 1px solid var(--grey-3);
  color: var(--dark);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
  transition: transform .4s, box-shadow .4s, border-color .4s, background-color .4s;
  display: flex;
}

.help-category-card:hover {
  background-color: var(--white);
  border-color: #0000;
  transform: translate(0, -6px);
  box-shadow: 0 6px 12px #30364d1f;
}

.article-link-text {
  flex: 1;
  margin-right: 7px;
  font-size: 17px;
  line-height: 28px;
}

.sidebar-promo-dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-white.svg');
  background-position: 100% 0;
  background-size: 12px;
  width: 100px;
  height: 59px;
  position: absolute;
  inset: 32% auto auto -2%;
}

.sidebar-promo-circle {
  opacity: .08;
  width: 41%;
  position: absolute;
  inset: -15% -16% auto auto;
}

.sidebar-video {
  background-image: url('../images/balazs-ketyi-9VzoRKfBsMM-unsplash-thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 216px;
  margin-bottom: 12px;
  transition: filter .4s;
  display: flex;
}

.sidebar-video:hover {
  filter: brightness(96%);
}

.sidebar-video-header {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.sidebar-video-time {
  background-color: var(--grey-3);
  color: var(--grey-1);
  border-radius: 3px;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 11px;
  line-height: 16px;
}

.accordion-header {
  color: #222;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  min-height: 60px;
  padding: 20px 28px;
  display: flex;
}

.accordion-info {
  margin-left: 16px;
  margin-right: 16px;
}

.accordion-card {
  border: 1px solid var(--grey-3);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: background-color .4s;
  overflow: hidden;
}

.accordion-card:hover {
  background-color: var(--white);
}

.accordion-arrow {
  opacity: .5;
  background-image: url('../images/right-dark.svg');
  background-position: 50%;
  background-size: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
}

.accordion-text {
  color: #888;
  margin-left: 16px;
  margin-right: 16px;
  padding-bottom: 32px;
}

.accordion-heading {
  flex: 1;
  margin: 4px 16px 4px 15px;
}

.team-card {
  border: 1px solid var(--grey-3);
  background-color: var(--white);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 48px 40px;
  display: flex;
  position: relative;
}

.team-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.team-photo.big {
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
}

.team-photo-hover {
  z-index: 2;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: none;
  position: absolute;
  inset: 0;
}

.team-links {
  z-index: 3;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: -4px;
  padding: 8px;
  display: flex;
}

.team-social-link {
  opacity: .5;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 5px;
  transition: opacity .4s;
  display: flex;
}

.team-social-link:hover {
  opacity: 1;
}

.team-role {
  color: var(--grey-1);
  margin-top: -4px;
}

.team-cards {
  grid-column-gap: 30px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  position: relative;
}

.team-posts-link {
  border: 1px solid var(--grey-3);
  height: 23px;
  color: var(--grey-1);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 3px 7px 3px 8px;
  font-size: 9px;
  line-height: 16px;
  transition: border-color .4s, color .4s, background-color .4s;
  position: absolute;
  inset: auto auto -1px;
}

.team-posts-link:hover {
  background-color: var(--main-color);
  color: var(--white);
  border-color: #0000;
}

.article-text-icon {
  background-image: url('../images/file-text-dark.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0%;
}

.article-icon {
  width: 24px;
  height: 24px;
  margin-left: -4px;
  margin-right: 16px;
  position: relative;
  overflow: hidden;
}

.article-icon.sidebar-icon {
  opacity: .5;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.article-video-icon {
  background-image: url('../images/play-dark.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0%;
}

.breadcrumbs-link {
  color: var(--grey-1);
  text-decoration: none;
}

.breadcrumbs-link:hover {
  text-decoration: underline;
}

.sidebar-articles {
  margin-bottom: -8px;
}

.hero-macbook-v1 {
  width: 100%;
  max-width: none;
  margin-left: -2%;
  display: block;
}

.hero-subscribe {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-form-text {
  margin-top: 16px;
  font-size: 13px;
  line-height: 20px;
}

.hero-form {
  width: 400px;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 8px;
}

.text-huge {
  font-size: 28px;
  line-height: 40px;
}

.side-accordion {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 16px;
}

.accordion-icon {
  width: 24px;
  margin-right: 0;
}

.iphone-v1-image {
  width: 100%;
  margin-top: 50px;
  position: sticky;
  top: 120px;
}

.person {
  flex-direction: row;
  align-items: center;
  padding-right: 4%;
  display: flex;
}

.person-avatar {
  border-radius: 50%;
  flex: none;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.person-info {
  flex-direction: row;
  flex: 1;
  align-items: center;
}

.person-text {
  color: var(--grey-1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: -8px;
  font-size: 10px;
  line-height: 16px;
}

.counters {
  border: 1px solid var(--grey-3);
  border-radius: 8px;
  justify-content: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.counter {
  box-shadow: 1px 0 0 0 var(--grey-3);
  color: var(--grey-1);
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 40px;
  display: flex;
}

.question-v1 {
  flex-direction: row;
  align-items: flex-start;
  padding-right: 4%;
  display: flex;
}

.questions-list {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: -24px;
  display: grid;
}

.hero-circle-big {
  opacity: .08;
  filter: brightness(200%) saturate(0%);
  width: 23vw;
  max-width: 480px;
  position: absolute;
  inset: -36% auto auto 23%;
}

.hero-dots {
  opacity: .12;
  filter: brightness(200%) saturate(0%);
  background-image: url('../images/circle-pattern-color.svg');
  background-position: 0 0;
  background-size: 12px;
  width: 297px;
  height: 118px;
  position: absolute;
  inset: auto auto 20% -13%;
}

.testimonials-v1-gradient {
  background-color: var(--midnight-blue);
  background-image: none;
  height: 48%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.post-slider {
  background-color: #0000;
  height: auto;
}

.post-slide {
  width: 50%;
  height: 100%;
  padding-left: 4px;
  padding-right: 4px;
}

.post-slider-intro {
  z-index: 1;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.post-slider-mask {
  padding: 20px 12px;
}

.empty-state {
  border: 1px solid var(--grey-3);
  color: var(--grey-1);
  text-align: center;
  background-color: #0000;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 16px;
}

.promo-video {
  border: 8px solid var(--white);
  background-image: url('../images/balazs-ketyi-9VzoRKfBsMM-unsplash-thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
}

.logotypes-hero-header {
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin: 65px 15px -8px;
  display: flex;
  position: relative;
}

.header-line {
  background-color: var(--grey-1);
  opacity: .33;
  flex: 1;
  height: 1px;
}

.logotypes-hero-heading {
  color: var(--grey-1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex: none;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 13px;
  line-height: 20px;
}

.mini-gallery {
  border-radius: 0;
  grid-template-rows: 80px 80px 80px 80px 80px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.gallery-photo._1 {
  cursor: default;
  background-image: url('../images/_DSC1061.jpg');
  border-top-left-radius: 5px;
}

.gallery-photo._2 {
  cursor: default;
  background-image: url('../images/Vikingleads-office7.jpg');
  border-top-right-radius: 5px;
}

.gallery-photo._4 {
  cursor: default;
  background-image: url('../images/_DSC0746.jpg');
  border-bottom-left-radius: 5px;
}

.gallery-photo._3 {
  cursor: default;
  background-image: url('../images/_DSC1075.jpg');
  border-bottom-right-radius: 5px;
}

.gallery-hover {
  height: 24px;
  color: var(--white);
  background-color: #30364db3;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 4px 10px 4px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
  position: absolute;
  inset: auto 16px 16px auto;
}

.gallery-zoom-icon {
  width: 16px;
  margin-right: 4px;
}

.feature-block-image {
  margin-top: 2vw;
}

.tab-link {
  color: var(--grey-1);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-bottom: -1px;
  padding: 32px 24px;
  text-decoration: none;
  transition: color .4s;
  display: flex;
}

.tab-link:hover {
  color: var(--slate-grey);
}

.tab-link.w--current {
  box-shadow: inset 0 -2px 0 0 var(--midnight-blue);
  color: var(--midnight-blue);
  background-color: #0000;
}

.tabs-menu {
  border-bottom: 1px solid var(--grey-3);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -32px 15px 80px;
  display: flex;
}

.tabs-menu.blog-categories {
  margin-top: -48px;
}

.feature-image-big {
  height: 300px;
  margin-bottom: 32px;
}

.feature-card {
  background-color: var(--white);
  color: var(--dark);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  flex: 270px;
  align-items: center;
  padding: 20px;
  display: flex;
  box-shadow: 0 15px 30px #30364d1a;
}

.feature-image-medium {
  height: 200px;
  margin-bottom: 24px;
}

.feature-image-small {
  height: 144px;
  margin-bottom: 24px;
}

.dynamic-column {
  grid-row-gap: 80px;
  grid-template-columns: 100%;
}

.dynamic-column.margin-top {
  margin-top: 0;
}

.dynamic-column.grid-margin-top {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr;
}

.dynamic-column.grid-margin-top.margin-top {
  margin-top: 160px;
}

.hero-form-v2 {
  width: 470px;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 8px;
}

.hero-macbook-v2 {
  width: 1200px;
  margin-left: -5%;
  padding-top: 8px;
  display: block;
  position: relative;
}

.hero-devices {
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-bg-gradient {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  height: 84%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.hero-iphone {
  z-index: 1;
  width: 23%;
  margin-bottom: -8px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.browser-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  margin-bottom: -40px;
  display: flex;
}

.browser-bg {
  width: 92%;
}

.hero-browser {
  z-index: 1;
  background-color: var(--white);
  border-radius: 8px;
  width: 770px;
  max-width: 100%;
  position: absolute;
  box-shadow: 0 16px 30px #9165f74d;
}

.browser-top {
  align-items: center;
  padding: 12px;
  display: flex;
}

.browser-button {
  background-color: var(--grey-2);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

.browser-button.red {
  background-color: var(--color-2);
}

.browser-button.yellow {
  background-color: var(--color-3);
}

.browser-button.green {
  background-color: var(--color-4);
}

.browser-content {
  background-color: var(--haze-dark);
  border-radius: 4px;
  min-height: 400px;
  margin-bottom: 12px;
  margin-left: 12px;
  margin-right: 12px;
}

.browser-image {
  width: 100%;
}

.ipads-promo {
  width: 92%;
}

.image-block {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
  border-radius: 8px;
  height: 447px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px #9165f754;
}

.image-block-macbook {
  z-index: 1;
  max-width: none;
  height: 76%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% -12%;
}

.image-block-iphone {
  z-index: 1;
  width: 56%;
  max-width: none;
  margin: auto;
  position: absolute;
  inset: 12% 0% auto;
}

.search-result-info {
  flex: 1;
  padding-top: 4px;
  padding-left: 24px;
}

.search-result-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  flex: none;
  width: 200px;
  height: 152px;
}

.text-block-2 {
  margin-top: 12px;
}

.search-result-heading {
  margin-bottom: 8px;
}

._404 {
  font-size: 152px;
  line-height: 128px;
}

.pagination-arrow {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

.pagination {
  margin-top: 40px;
}

.pricing-tab-content {
  padding-bottom: 32px;
}

.sidebar-faq-links {
  background-color: var(--midnight-blue);
  color: var(--white);
  text-align: left;
  border-radius: 10px;
  padding: 32px;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 20px -6px #1d2c4e61;
}

.post-card-heading-big {
  text-transform: capitalize;
  margin-top: 4px;
  margin-bottom: 12px;
}

.review-v4-avatar {
  border-radius: 50%;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
}

.nav-right {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.layout-name {
  margin-bottom: 32px;
}

.text-2-cols {
  color: var(--grey-1);
  column-count: 2;
  column-gap: 35px;
  font-size: 17px;
  line-height: 28px;
}

.intro-macbook {
  width: 118%;
  max-width: none;
}

.testimonials-v3-nav {
  font-size: 8px;
  line-height: 16px;
  display: none;
}

.testimonials-v2-nav {
  font-size: 8px;
  line-height: 16px;
}

.billing-bonus {
  z-index: 1;
  color: var(--white);
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  display: block;
  position: relative;
  bottom: -80px;
}

.ipad-image {
  z-index: 1;
  margin-top: 4%;
  position: relative;
}

.circle-v1 {
  background-color: var(--main-color);
  opacity: .12;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 35% 0% 0%;
}

.info-block {
  border: 1px solid var(--grey-3);
  background-color: var(--white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 11px 20px;
  font-size: 15px;
  line-height: 24px;
  display: flex;
}

.info-block.haze {
  background-color: var(--haze);
}

.info-block.color-1 {
  background-color: #9165f714;
  border-color: #9165f766;
}

.bar-close-button {
  cursor: pointer;
  background-color: #ffffff26;
  background-image: url('../images/x-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transition: background-color .4s;
  position: absolute;
  right: 12px;
}

.bar-close-button:hover {
  background-color: #30364d40;
}

.top-message-text {
  margin-right: 12px;
}

.small-message {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 8px 20px;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-message.gradient {
  background-image: linear-gradient(to right, var(--grade-1-light), var(--main-color));
  color: #fff;
}

.home-button {
  background-color: var(--haze-dark);
  width: 78px;
  height: 32px;
  color: var(--midnight-blue);
  background-image: url('../images/home-dark.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 16px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-button-text {
  margin-left: 31px;
}

.coming-soon {
  background-color: var(--haze);
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.coming-soon-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.coming-soon-image {
  width: 100%;
  max-width: 430px;
  margin-top: -12px;
  margin-bottom: 32px;
}

.nav-buttons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-list {
  color: var(--grey-1);
  margin-top: 0;
  padding-left: 16px;
  list-style-type: decimal;
}

.question-v2 {
  border-bottom: 1px solid var(--grey-3);
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 48px;
  padding-right: 4%;
  display: flex;
}

.footer-v4-links {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 16px;
  display: flex;
}

.dropdown-header {
  border-bottom: 1px solid var(--grey-3);
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 12px 12px;
}

.dropdown-decription {
  color: var(--grey-1);
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
}

.text-block-3 {
  padding-left: 1px;
}

.back-to-top, .top {
  height: 0;
}

.top-button {
  z-index: 100;
  background-color: var(--sandy-brown);
  cursor: pointer;
  background-image: url('../images/up-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: background-color .2s;
  position: fixed;
  inset: auto 16px 16px auto;
  box-shadow: 0 1px 2px #30364d4d;
}

.macbook {
  width: 120%;
  max-width: none;
  margin-left: -2%;
  display: block;
}

.arrow-link-2 {
  color: #9165f7;
  text-align: left;
  align-items: center;
  margin-top: -8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.icon-box-2 {
  background-image: linear-gradient(#fff, #ededff);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  padding: 12px;
  display: flex;
  box-shadow: 0 1px 2px #30364d4d;
}

.icon-box-2.big {
  width: 60px;
  height: 60px;
  padding: 16px;
}

.icon-box-2.big.gradient-2 {
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px;
  display: none;
}

.text-grey-2 {
  color: #798099;
}

.button-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/youtube-white.svg'), linear-gradient(#e7a64f, #e7a64f);
  background-position: 9%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 30px 50px, auto;
  border: 1px #0000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 24px 12px 60px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: border-color .4s, transform .4s, box-shadow .4s;
  display: flex;
}

.button-2:hover {
  transform: translate(0, -3px);
}

.button-2.margin-top {
  margin-top: 25px;
}

.button-2.play-circle {
  background-image: url('../images/youtube-white.svg');
  background-position: 50%;
  background-size: 75px;
  border-radius: 100px;
  width: 75px;
  height: 75px;
  padding: 0;
}

.button-2.card {
  margin-bottom: 20px;
  margin-left: 20px;
}

.main-grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  position: relative;
}

.video-link-2 {
  color: #30364d;
  border: 1px solid #e6e8f0;
  border-radius: 17px;
  align-items: center;
  height: 34px;
  margin-top: 24px;
  padding-left: 4px;
  padding-right: 13px;
  text-decoration: none;
  display: flex;
}

.video-link-2.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
  display: none;
}

.video-link-icon-box-2 {
  background-image: linear-gradient(#fff, #ededff);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding: 6px;
  display: flex;
  box-shadow: 0 1px 2px #30364d40;
}

.title-2 {
  color: #9165f7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #ededff;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 4px 7px 4px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
}

.image.hide-dekstop, .image-2 {
  display: none;
}

.text-block-4 {
  margin-left: 0;
}

.achievement-2 {
  color: #798099;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 24px 40px;
  display: flex;
  box-shadow: 1px 0 #e6e8f0;
}

.achievement-text-2 {
  color: #30364d;
  margin-bottom: 12px;
  font-family: Fira Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.achievement-text-2.small {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 36px;
}

.success-message {
  background-color: #dddddd36;
  border-radius: 6px;
}

.error-message {
  border-radius: 4px;
}

.heading-2 {
  margin-bottom: 20px;
}

.heading-2.no-margin-bottom {
  margin-bottom: 0;
}

.heading-2.small-heading-2 {
  margin-bottom: 0;
  font-size: 15px;
}

.heading-2.small-heading-2.white-heading {
  color: var(--ghost-white);
}

.heading-2.small-heading-2.margin-bottom {
  color: var(--slate-grey-2);
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.heading-2.small-heading-2.margin-bottom.left {
  text-align: left;
}

.image-3 {
  opacity: .85;
  margin: 5px 10px;
  transition: opacity .4s;
}

.image-3:hover {
  opacity: 1;
}

.image-4 {
  opacity: .6;
  height: auto;
  max-height: 100%;
  margin: 5px 10px;
  transition: opacity .4s;
}

.image-4:hover {
  opacity: 1;
}

.image-5 {
  opacity: .85;
  max-height: 100%;
  margin: 5px 10px;
  transition: opacity .4s;
}

.image-5:hover {
  opacity: 1;
}

.image-6 {
  opacity: .6;
  max-height: 100%;
  transition: opacity .4s;
}

.image-6:hover {
  opacity: 1;
}

.image-6._10margin {
  opacity: .85;
  margin-left: 10px;
  margin-right: 10px;
}

.image-7 {
  opacity: .85;
  max-height: 100%;
  margin: 5px 10px;
  transition: opacity .4s;
}

.image-7:hover {
  opacity: 1;
}

.image-8 {
  opacity: .85;
  margin: 5px 10px;
  transition: opacity .4s;
}

.image-8:hover {
  opacity: 1;
}

.text-block-5 {
  color: var(--grey-2);
  font-size: 17px;
  line-height: 28px;
}

.menu-vertical-grid {
  grid-row-gap: 12px;
  grid-template-columns: 1fr;
  justify-items: center;
}

.menu-vertical-grid.right-align {
  grid-row-gap: 0px;
  justify-items: end;
}

.link-icon {
  margin-right: 14px;
}

.hover-link {
  opacity: .58;
  transition: opacity .2s;
}

.hover-link:hover {
  opacity: 1;
}

.hover-link.icon-link {
  align-items: center;
  display: flex;
}

.title-line {
  background-color: #29335c1a;
  flex: 1;
  height: 2px;
  margin-left: 28px;
}

.display-heading-2 {
  color: #29335c;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  font-size: 54px;
  font-weight: 600;
  line-height: 54px;
}

.text-uppercase {
  letter-spacing: normal;
  text-transform: none;
  font-family: Fira Sans, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.container {
  text-align: center;
  direction: ltr;
  width: 100%;
  max-width: 497px;
}

.container.right {
  max-width: none;
}

.horizontal-title {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.heading-3 {
  color: #5f6a90;
}

.heading-header {
  color: #fff;
}

.text-block-6 {
  color: var(--midnight-blue);
}

.text-block-7 {
  color: #fff;
}

.text-block-8 {
  color: var(--slate-grey);
}

.text-block-8.yellow, .text-block-9 {
  color: var(--sandy-brown);
}

.text-block-10 {
  color: var(--midnight-blue);
}

.text-block-11, .text-block-12 {
  color: var(--sandy-brown);
}

.div-block {
  background-image: url('../images/_DSC1055.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  height: 300px;
}

.div-block.div-block2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/_DSC1055.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block.div-block-over-ons {
  background-image: url('../images/_DSC1182.jpg');
  height: 350px;
}

.html-embed {
  width: auto;
}

.div-block-13 {
  background-image: url('../images/Vikingleads-Excelsior-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.div-block-13._1 {
  background-image: url('../images/ErasmustTalent-Vikingleads.jpg');
  background-position: 70%;
}

.div-block-13._2 {
  background-image: url('../images/Deity-Vikingleads.jpg');
  background-position: 50% 0;
}

.div-block-13._3 {
  background-image: url('../images/Veguard-Vikingleads.jpg');
}

.div-block-13._4 {
  background-image: url('../images/Lingedael-Vikingleads.jpg');
}

.div-block-13._5 {
  background-image: url('../images/MyFMS-Vikingleads.jpg');
}

.div-block-13._6 {
  background-image: url('../images/Rooftop-engergy.jpg');
}

.div-block-13._7 {
  background-image: url('../images/ForYouMedia.jpg');
  background-position: 60%;
}

.div-block-13._8 {
  background-image: url('../images/Sprinx-international.jpg');
}

.div-block-13._9 {
  background-image: url('../images/ImaginePeople.jpg');
}

.div-block-13._10 {
  background-image: url('../images/Chathands.jpg');
}

.div-block-13._11 {
  background-image: url('../images/SGI-Compliance.jpg');
}

.div-block-13._12 {
  background-image: url('../images/Lingedael.jpg');
}

.panel-body {
  z-index: 1;
  background-color: #5f6a9012;
  border-radius: 5px;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 36px;
  display: flex;
  position: relative;
}

.panel-body.wide-case-study-panel-body {
  flex: none;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 50px 40px;
}

.panel-body.wide-case-study-panel-body.less-padding {
  padding: 25px;
}

.panel-body.wide-case-study-panel-body.white {
  background-color: var(--ghost-white);
  padding-left: 50px;
  padding-right: 50px;
}

.panel-body.panel-body-small {
  padding: 24px;
  position: static;
}

.h2 {
  color: var(--midnight-blue);
  letter-spacing: -.02em;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 600;
  line-height: 30px;
  transition: color .2s;
}

.h2:hover {
  color: var(--sandy-brown);
}

.link-block {
  cursor: pointer;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: auto;
  height: auto;
}

.wide-case-study-panel-link {
  cursor: pointer;
  border-top: 1px #5f6a903d;
  padding-top: 0;
}

.grid-3 {
  grid-column-gap: 0px;
  background-color: #fff;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .75fr;
  grid-auto-flow: row;
  margin-top: 45px;
  box-shadow: 0 15px 30px #30364d0f;
}

.grid-3.hide {
  display: none;
}

.case-study-panel-logo {
  opacity: .5;
  max-width: 150px;
  margin-bottom: 15px;
  transition: opacity .2s;
}

.case-study-panel-logo:hover {
  opacity: 1;
}

.row {
  display: flex;
}

.row.row-justify-between {
  justify-content: flex-start;
  transition: transform .35s;
}

.row.row-justify-between:hover {
  transform: translate(5px);
}

.row.row-align-center {
  flex-direction: row;
  align-items: center;
}

.row.row-align-center.row-justify-between {
  font-family: Fira Sans, sans-serif;
}

.row.row-justify-between {
  justify-content: space-between;
}

.text-block-13 {
  color: var(--midnight-blue);
}

.image-10 {
  margin-left: 5px;
}

.link-block-2 {
  position: relative;
}

.div-block-14 {
  border-bottom: 1px solid #5f6a9036;
  margin-bottom: 6px;
  margin-right: 20px;
}

.div-block-14.block-case {
  border-bottom-color: #5f6a90f7;
}

.grid-4 {
  grid-column-gap: 25px;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid-4.no-margin-bottom {
  grid-template-rows: auto auto auto auto;
  margin-top: 0;
  margin-bottom: 0;
}

.grid-4.no-margin-bottom1 {
  grid-template-rows: auto auto;
  margin-bottom: 0;
}

.content-width-medium {
  align-self: center;
  width: 100%;
  max-width: 612px;
}

.content-width-medium.article-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 728px;
  margin-bottom: 96px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.case-study-article-logo {
  opacity: .7;
  max-width: 160px;
  margin-bottom: 10px;
  transition: opacity .35s;
}

.case-study-article-logo:hover {
  opacity: 1;
}

.display-heading-4 {
  color: var(--midnight-blue);
  letter-spacing: 0;
  margin-bottom: 24px;
  font-size: 31px;
  font-weight: 500;
  line-height: 43px;
}

.content-width-extra-large {
  width: 100%;
  max-width: 964px;
  margin-left: auto;
  margin-right: auto;
}

.content-width-extra-large.center-content {
  margin-top: -230px;
}

.article-container {
  width: 100%;
  max-width: 682px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.align-right {
  color: #ffffff80;
}

.case-study-company-details-wrapper {
  background-color: var(--midnight-blue);
  border-radius: 12px;
  margin-top: -75px;
  margin-bottom: 50px;
}

.rounded-image {
  border-radius: 12px;
}

.no-bottom-space {
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.panel {
  direction: ltr;
  background-color: #ffffff0d;
  border-radius: 12px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.panel.case-study-company-details-panel {
  z-index: 10;
}

.panel.job-listing-title {
  position: sticky;
  top: 104px;
}

.bordered-list-item {
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.article {
  color: var(--grey-1);
}

.heading-4 {
  margin-bottom: 5px;
}

.link-grey-case {
  color: #99a0bb;
}

.div-block-15 {
  background-image: url('../images/Vikingleads-Excelsior-1.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 600px;
}

.div-block-15._1 {
  background-image: url('../images/ErasmustTalent-Vikingleads.jpg');
}

.div-block-15._2 {
  background-image: url('../images/Deity-Vikingleads.jpg');
  background-position: 50%;
}

.div-block-15._3 {
  background-image: url('../images/Veguard-Vikingleads.jpg');
}

.div-block-15._4 {
  background-image: url('../images/Lingedael.jpg');
}

.div-block-15._5 {
  background-image: url('../images/MyFMS-Vikingleads.jpg');
  background-position: 50% 70%;
}

.div-block-15._6 {
  background-image: url('../images/Rooftop-engergy.jpg');
}

.div-block-15._7 {
  background-image: url('../images/SGI-Compliance.jpg');
}

.div-block-15._8 {
  background-image: url('../images/ForYouMedia.jpg');
}

.div-block-15._9 {
  background-image: url('../images/Sprinx-international.jpg');
}

.div-block-15._10 {
  background-image: url('../images/ImaginePeople.jpg');
}

.div-block-15._11 {
  background-image: url('../images/Chathands.jpg');
  background-position: 50% 70%;
}

.div-block-16 {
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.text-block-15 {
  font-size: 15px;
  line-height: 24px;
}

.checkmark-yellow {
  color: var(--sandy-brown);
  font-weight: 700;
}

.text-block-16 {
  font-size: 15px;
  line-height: 24px;
}

.title-3 {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #e5a753;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 4px 7px 4px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
}

.title-3.kosten-lead-case {
  text-align: center;
  margin-right: 20px;
  padding: 10px 18px;
}

.link-block-3 {
  color: var(--midnight-blue);
  background-color: #1d2c4e12;
  border-radius: 10px;
  padding: 24px;
  transition: background-color .4s;
}

.link-block-3:hover {
  color: var(--midnight-blue);
  background-color: #5f6a9045;
}

.content-width-large {
  width: 100%;
  max-width: 824px;
  margin-top: 50px;
}

.section-title {
  margin-bottom: 96px;
}

.container-2 {
  perspective: 500px;
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.text-lead {
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.text-lead.display-inline {
  color: #ffffff80;
}

.text-primary-2 {
  color: #ff934f;
}

.text-primary-2.space-bottom {
  color: #e59c85;
}

.section-2 {
  margin-top: 144px;
  margin-bottom: 144px;
}

.grid-2 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.display-inline {
  display: inline;
}

.image-11 {
  margin-left: 25px;
}

.div-block-18 {
  align-items: center;
  display: flex;
}

.space-bottom {
  margin-bottom: 24px;
}

.job-listing-grid {
  grid-column-gap: 60px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 30fr 70fr;
  margin-top: 50px;
}

.button-large {
  text-align: center;
  background-color: #e59c85;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-left: 36px;
  padding-right: 36px;
  font-weight: 600;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 20px 20px #0000;
}

.button-large:hover {
  box-shadow: inset 0 0 20px 20px #0000001a;
}

.paragraph {
  margin-bottom: 10px;
}

.div-block-19 {
  background-image: url('../images/_DSC1061.jpg');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-20 {
  background-image: url('../images/Vikingleads-office7.jpg');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-21 {
  background-image: url('../images/_DSC1078.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-22 {
  background-image: url('../images/_DSC0746.jpg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-span {
  text-decoration: underline;
}

.slide {
  height: 100%;
}

.mask-2 {
  background-color: var(--ghost-white);
}

.text-span-2 {
  font-size: 13px;
  position: relative;
  top: -24px;
}

.text-span-3 {
  font-size: 7px;
  position: relative;
  top: -7px;
}

.text-block-17 {
  color: var(--slate-grey-2);
  font-size: 15px;
  font-weight: 400;
}

.text-block-18 {
  color: var(--gradient-2-dark);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.text-field {
  background-color: #f3f3f3;
  border: 1px #000;
  border-radius: 5px;
  height: 50px;
  margin-bottom: 10px;
  font-size: 15px;
}

.heading4 {
  margin-bottom: 30px;
  font-weight: 300;
}

.heading4.heading-4 {
  margin-bottom: 15px;
}

.field-label {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 500;
}

.div-block-4 {
  background-color: #fff;
  border-radius: 7px;
  width: auto;
  padding: 50px;
  box-shadow: 0 16px 30px #30364d1a;
}

.submit-button {
  background-color: #ff9f09;
  border-radius: 5px;
  margin-top: 10px;
}

.error-message-2 {
  background-color: #f0f0f0;
  border-radius: 5px;
}

.div-block-5 {
  background-color: #ff9f09;
  width: 30%;
  height: 2px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.div-block-5.div-block-5-2 {
  width: 50px;
  margin-top: 0;
  margin-bottom: 25px;
}

.paragraph-2 {
  color: #7a7a7a;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.success-message-2 {
  background-color: #f1f1f1;
  border-radius: 5px;
}

.text-span-4, .text-span-5 {
  color: var(--sandy-brown);
  font-weight: 700;
}

.text-span-6 {
  color: var(--sandy-brown);
}

.heading-5 {
  color: var(--white);
}

.heading-6, .paragraph-3 {
  text-align: left;
}

.paragraph-4 {
  color: var(--slate-grey-2);
  text-align: right;
}

.image-12 {
  margin-bottom: 15px;
}

.div-block-23 {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 65px;
  display: flex;
}

.card {
  color: #fff;
  padding-top: 10px;
  padding-left: 20px;
}

.text-block-19 {
  margin-left: 40px;
}

.tab-link-2 {
  opacity: .5;
  color: #29335c;
  background-color: #0000;
  border-radius: 200px;
  padding: 10px 25px;
  transition: opacity .2s;
}

.tab-link-2.w--current {
  opacity: 1;
  background-color: #d3def0;
}

.interface-screenshot-container {
  justify-content: flex-end;
  align-items: center;
  min-height: 448px;
  padding-top: 84px;
  padding-bottom: 84px;
  display: flex;
  position: relative;
}

.interface-screenshot-container.bg-primary-3 {
  background-color: #d3def0;
}

.interface-screenshot-container.bg-primary-3.image-kanalen {
  background-color: #fff;
  background-image: url('../images/Chatoperators.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 400px;
  border-radius: 6px;
  justify-content: flex-end;
  position: relative;
}

.interface-screenshot-container.bg-primary-3.image-kanalen._4 {
  background-image: url('../images/Conversie.png');
  background-size: 350px;
}

.interface-screenshot-container.bg-primary-3.image-kanalen._7 {
  background-image: url('../images/Telegram.png');
  background-size: 325px;
}

.interface-screenshot-container.bg-primary-3.image-kanalen._6 {
  background-image: url('../images/Twitter.png');
  background-size: 350px;
}

.interface-screenshot-container.bg-primary-3.image-kanalen._5 {
  background-image: url('../images/Header2.png');
  background-size: 375px;
}

.interface-screenshot-container.bg-primary-3.image-kanalen._2 {
  color: var(--white);
  background-image: url('../images/Livechat.png');
}

.interface-screenshot-container.bg-primary-3.image-kanalen._3 {
  background-image: url('../images/Email.png');
  background-size: 350px;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #f3663f;
  border-radius: 200px;
  padding: 14px 24px;
  font-weight: 600;
  transition: box-shadow .2s;
  box-shadow: inset 0 10px 3px 100px #0000;
}

.button-3:hover {
  box-shadow: inset 0 10px 3px 100px #0000000d;
}

.button-3.kanalen-button {
  margin-top: 20px;
}

.text-block {
  font-weight: 300;
}

.grid-halves {
  grid-column-gap: 28px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  align-items: center;
}

.grid-halves.grid-kanalen {
  justify-items: end;
}

.container-3 {
  direction: ltr;
  width: 100%;
  max-width: 497px;
}

.container-3.container-kanalen-links {
  max-width: none;
  padding-left: 20px;
  padding-right: 0;
}

.container-3.container-kanalen-rechts {
  max-width: none;
  margin-left: 35px;
}

.large-heading {
  color: #29335c;
  letter-spacing: -.02em;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.large-heading.smaller-heading {
  margin-bottom: 5px;
  font-size: 26px;
  font-weight: 500;
  line-height: 35px;
}

.tabs-menu-2 {
  background-color: #f3f7fd;
  border-radius: 200px;
  justify-content: space-between;
  width: 100%;
  padding: 7px;
  display: flex;
}

.tabs-2 {
  flex-direction: column;
  align-items: flex-start;
  margin: 40px 100px;
  display: flex;
}

.paragraph-5 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

.tabs-content {
  width: 100%;
  margin-top: 56px;
}

@media screen and (min-width: 1280px) {
  a {
    color: var(--sandy-brown);
  }

  .section.haze.case-section {
    padding-top: 29px;
  }

  .section.gradient {
    background-color: var(--midnight-blue);
  }

  .text-grey.no-margin-bottom.case-text {
    color: #99a0bb;
  }

  .title.right-corner.left-corner {
    inset: 0% auto auto 40px;
  }

  .title.kosten-lead-case {
    padding: 10px 18px;
  }

  .heading-2.small-heading-2.white-heading {
    color: var(--ghost-white);
  }

  .panel-body {
    justify-content: flex-start;
  }

  .panel-body.wide-case-study-panel-body {
    justify-content: space-between;
  }

  .panel-body.wide-case-study-panel-body.less-padding {
    padding: 25px;
  }

  .div-block-14.block-case {
    border-bottom-color: #5f6a90db;
  }

  .grid-4.no-margin-bottom {
    margin-bottom: 0;
  }

  .link-grey-case {
    color: #99a0bb;
  }

  .text-block-14 {
    font-size: 15px;
    line-height: 24px;
  }

  .title-3.kosten-lead-case {
    padding: 10px 18px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 26px;
    line-height: 32px;
  }

  h3 {
    margin-bottom: 12px;
  }

  h6 {
    font-size: 12px;
  }

  p {
    margin-bottom: 24px;
  }

  blockquote {
    padding: 12px 24px;
  }

  .section {
    padding-top: 104px;
    padding-bottom: 80px;
  }

  .section.top-section {
    margin-top: -64px;
    padding-top: 136px;
    padding-bottom: 104px;
  }

  .section.intro-hero {
    margin-top: -64px;
    padding-top: 128px;
    padding-bottom: 104px;
  }

  .section.hero-v3 {
    margin-top: -64px;
    padding-top: 144px;
  }

  .section.hero-v4 {
    margin-top: -64px;
    padding-top: 128px;
  }

  .section.hero-v1 {
    margin-top: -64px;
    padding-top: 144px;
    padding-bottom: 120px;
  }

  .section.billing-tabs-section {
    margin-top: -64px;
    padding-top: 128px;
  }

  .section.hero-v2 {
    margin-top: -64px;
    padding-top: 144px;
  }

  .section.hero-v5, .section.light-hero, .section.post-top-section {
    margin-top: -64px;
    padding-top: 128px;
  }

  .section.hero-v2 {
    height: auto;
    margin-top: -64px;
    padding-top: 144px;
    padding-bottom: 100px;
  }

  .section.section-less-padding-top {
    padding-top: 0;
  }

  .wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }

  .wrapper.nav-bar-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper.side-paddings {
    padding-left: 8px;
    padding-right: 8px;
  }

  .wrapper.centred {
    padding-left: 25px;
    padding-right: 25px;
  }

  .button.pricing-cell-button {
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 13px;
    line-height: 16px;
  }

  .sg-buttons {
    padding-bottom: 80px;
  }

  .sg-button-wrapper {
    padding: 40px 12%;
  }

  .nav-bar {
    height: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    color: var(--dark);
    background-color: #fff;
    border-radius: 0;
    padding: 12px 24px;
  }

  .nav-link:hover {
    background-color: #fff;
  }

  .nav-link.w--current {
    color: var(--dark);
  }

  .nav-link.w--open {
    box-shadow: inset 0 1px 0 0 var(--haze-dark);
  }

  .tooltip.sidebar-author-name {
    display: none;
  }

  .no-margin {
    margin: 0;
  }

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

  .intro {
    padding-left: 8px;
    padding-right: 8px;
  }

  .intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .intro.wide {
    max-width: 83.33%;
  }

  .intro.left._80 {
    align-items: center;
    padding-right: 0;
  }

  .intro.margin-bottom {
    margin-bottom: 64px;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-bottom {
    margin-top: 48px;
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand.footer-v1-brand {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 8px;
  }

  .brand.footer-v4-brand {
    padding-left: 8px;
  }

  .changelog {
    width: 83.33%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .change {
    padding: 24px;
  }

  .nav-menu {
    border-bottom: 1px solid var(--haze-dark);
    background-color: #fff;
    max-height: 90vh;
    margin-right: 0;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    overflow: scroll;
  }

  .no-padding {
    padding: 0;
  }

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

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

  .page-wrapper.sg-wrapper {
    margin-left: 0;
  }

  .navigation {
    padding-left: 0;
    padding-right: 0;
  }

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

  .bg-elements {
    min-height: 420px;
  }

  .sg-sidebar {
    width: 100%;
    padding-bottom: 0;
    position: relative;
  }

  .sg-sidebar-heading {
    padding: 16px;
  }

  .sg-sidebar-menu {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 16px;
  }

  .sg-sidebar-link {
    width: auto;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .sg-sidebar-link.w--current {
    background-image: linear-gradient(to right, var(--grade-1-light), var(--grade-1-dark));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .pricing-v1-card {
    flex: 0 auto;
    width: 100%;
  }

  .info {
    flex: none;
  }

  .tab-link-v2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar {
    max-width: 50%;
  }

  .sidebar.sticky {
    max-width: 50%;
    position: static;
  }

  .input {
    box-shadow: inset 0 0 #0000;
  }

  .sidebar-block {
    margin-bottom: 16px;
  }

  .post-card-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sidebar-post-card {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
  }

  .sidebar-post-card:hover {
    box-shadow: none;
    background-color: #0000;
    transform: none;
  }

  .sidebar-post-image {
    width: 72px;
    height: 60px;
    margin-right: 12px;
  }

  .sidebar-author:hover {
    background-color: #0000;
  }

  .sidebar-tags {
    padding-left: 0;
    padding-right: 0;
  }

  .post-card {
    padding: 0;
    overflow: visible;
  }

  .post-card:hover {
    box-shadow: none;
    background-color: #0000;
    transform: none;
  }

  .post-card.big {
    padding: 0;
  }

  .post-card-image-big {
    height: 31vw;
    margin-bottom: 0;
  }

  .post-card-image {
    height: 31vw;
  }

  .nav-dropdown-icon {
    opacity: .4;
    margin-right: 24px;
    display: inline-block;
  }

  .dropdown-list.w--open {
    background-color: #0000;
    border: 1px #000;
    border-radius: 0;
    margin-top: 0;
    margin-left: 0;
    padding: 0 16px 12px;
    position: relative;
    box-shadow: 0 1px #ffffff1f;
  }

  .dropdown-list.v2.w--open {
    width: 100%;
    margin-left: 0;
  }

  .nav-dropdown-link {
    padding-left: 24px;
    font-size: 13px;
  }

  .nav-dropdown-link:hover {
    background-color: #0000;
  }

  .nav-dropdown-link.w--current {
    color: var(--dark);
  }

  .dropdown-corner, .dropdown-bridge {
    display: none;
  }

  .sg-color {
    height: 25vw;
  }

  .cta-card, .breadcrumbs {
    margin-left: 8px;
    margin-right: 8px;
  }

  .features-v8 {
    width: auto;
    margin-bottom: 44px;
    margin-left: 4px;
    margin-right: 4px;
  }

  .feature-v8 {
    font-size: 13px;
    line-height: 20px;
  }

  .feature-v8-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .achievements {
    flex-flow: row;
  }

  .achievement-text {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 32px;
  }

  .pricing-v2-card {
    flex: 0 auto;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .subscribe-v1 {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }

  .social-icons.subscribe-v1-icons {
    margin-top: 32px;
    margin-right: 0;
  }

  .subscribe-1-form-wrapper {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .subscribe-v1-heading {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .subscribe-v1-icon {
    width: 32px;
    margin-bottom: 8px;
  }

  .footer-columns {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-v1-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 48px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-v2 {
    padding-top: 48px;
  }

  .footer-v3-left, .footer-v3-right {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-v3-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  .feature-blocks {
    flex-wrap: wrap;
  }

  .feature-block {
    width: 100%;
    box-shadow: 0 0 0 1px var(--haze-dark);
    flex: 0 auto;
    padding: 12vw;
  }

  .top-message {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 48px;
  }

  .small-message-text {
    flex: 1;
  }

  .side-tab {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .message-text {
    flex: 1;
  }

  .post-info-top {
    font-size: 11px;
  }

  .post-image {
    width: auto;
    max-width: 100%;
    height: 56vw;
    margin: -40px 16px 48px;
  }

  .footer-v2-bottom-menu-link {
    margin-right: 16px;
  }

  .footer-v1-bottom {
    margin-top: 40px;
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .testimonials-v5 {
    padding-bottom: 72px;
  }

  .testimonials-v5-slide {
    width: 50%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .review-v5 {
    font-size: 15px;
  }

  .review-v5-logo {
    height: 28px;
  }

  .logotypes {
    grid-column-gap: 10px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: stretch space-around;
    justify-items: center;
    padding-left: 8%;
    padding-right: 8%;
    display: grid;
  }

  .logotypes.v2 {
    justify-content: center;
  }

  .logo-link {
    margin: 12px 8px;
  }

  .logo {
    height: 28px;
  }

  .menu-button {
    z-index: 2147483647;
    background-color: #0000;
  }

  .menu-button.w--open {
    color: var(--dark);
    background-color: #0000;
  }

  .layouts {
    border-radius: 0;
    margin-bottom: 48px;
    margin-left: -9px;
    margin-right: -9px;
  }

  .layout-box {
    padding: 12%;
  }

  .layout {
    overflow: hidden;
  }

  .post-author {
    margin-top: 0;
    margin-bottom: 48px;
    padding-right: 16%;
  }

  .big-message {
    padding: 32px;
  }

  .big-message-text {
    flex: 1;
  }

  .sg-button-block {
    width: 50%;
    padding: 8px;
  }

  .sg-back-link {
    padding: 16px;
    position: relative;
  }

  .licence-item {
    margin-bottom: 20px;
    box-shadow: 0 10px 20px #30364d1a;
  }

  .play-button {
    width: 64px;
    height: 64px;
    padding: 18px;
  }

  .components {
    margin-bottom: -16px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .components-link {
    border-radius: 8px;
    margin-bottom: 16px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 24px;
    font-size: 14px;
    line-height: 20px;
  }

  .scroll-icon-link {
    display: none;
  }

  .faq-nav-link:hover {
    background-color: #0000;
  }

  .faq-nav-link.w--current {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 16px;
  }

  .footer-v4 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .search-result {
    margin-bottom: 24px;
    box-shadow: 7px 7px 20px #5962731f;
  }

  .feature-card-hover {
    margin-bottom: 32px;
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 12%;
    padding-right: 12%;
  }

  .article-list {
    grid-row-gap: 16px;
    padding-top: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .article-link {
    padding: 24px;
    font-size: 14px;
    line-height: 20px;
  }

  .article-link:hover {
    border-color: var(--grey-3);
    box-shadow: none;
    background-color: #0000;
    transform: none;
  }

  .help-categories {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
  }

  .help-mini-input {
    max-width: 216px;
    box-shadow: inset 0 0 #0000;
  }

  .help-article.margin-left {
    margin-bottom: 48px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .float-button-wrapper {
    bottom: 12px;
    right: 12px;
  }

  .contact-form-card {
    margin-left: 8px;
    margin-right: 8px;
    padding: 80px;
  }

  .about-photo {
    height: auto;
    margin-left: 8px;
    margin-right: 8px;
  }

  .nav-dropdown-link-v2 {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-dropdown-link-v2:hover {
    background-color: #0000;
  }

  .nav-dropdown-link-v2.w--current {
    color: var(--dark);
  }

  .pricing-v3 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .pricing-v3-plans {
    top: 0;
  }

  .pricing-plan-cell {
    padding: 20px;
  }

  .pricing-v3-category-header {
    padding-left: 18px;
    padding-right: 20px;
    top: 124px;
  }

  .pricing-v3-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pricing-v3-row-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-v3-plan-name, .pricing-v3-plan-mobile {
    font-size: 14px;
  }

  .menu-icon-line-top.dark, .menu-icon-line-bottom.dark, .menu-icon-line-middle.dark {
    background-color: var(--dark);
  }

  .testimonials-v1 {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
    margin-left: 8px;
    margin-right: 8px;
  }

  .testimonials-v1-column.mobile-hidden {
    display: none;
  }

  .testimonials-v2 {
    width: 90vw;
    max-width: none;
    height: 440px;
  }

  .slider-arrow.posts-arrow-left, .slider-arrow.posts-arrow-right {
    display: none;
  }

  .review-v2 {
    padding-bottom: 16px;
    padding-left: 12%;
    padding-right: 12%;
  }

  .review-v2-quote {
    width: 56px;
  }

  .review-v2-quote.left {
    top: 40px;
    left: 40px;
  }

  .review-v2-quote.right {
    bottom: 40px;
    right: 40px;
  }

  .review-v2-add-button:hover {
    letter-spacing: 0;
  }

  .logotypes-small {
    max-width: 400px;
  }

  .main-grid {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    grid-auto-columns: 1fr;
    align-content: flex-start;
    padding-left: 8px;
    padding-right: 8px;
    display: grid;
  }

  .main-grid.grid-home-logos {
    grid-template-rows: auto;
  }

  .main-grid.flex-horizontal {
    display: flex;
  }

  .main-grid.services {
    grid-template-rows: auto;
  }

  .main-grid.grid-services {
    padding-left: 15px;
    padding-right: 15px;
  }

  .review-v2-dots {
    bottom: -10%;
    left: 12%;
  }

  .testimonials-v3-circle-big {
    top: -8%;
    right: 9%;
  }

  .testimonials-v3-circle-small {
    left: 7%;
  }

  .dots {
    height: 81px;
    top: 34%;
    bottom: -10%;
    left: -14%;
  }

  .circle-big {
    width: 32vw;
    bottom: -19%;
  }

  .circle-small {
    width: 10vw;
    top: 20%;
    right: 4%;
  }

  ._2-buttons {
    grid-column-gap: 12px;
    margin-right: 8px;
  }

  .footer-top {
    margin-bottom: 0;
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .footer-grid {
    grid-column-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding-bottom: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .wave-bottom, .wave-top {
    height: 6vw;
  }

  .pricing-card-circle {
    width: 20vw;
    top: -9vw;
    right: -6vw;
  }

  .pricing-v1-gradient {
    height: 70%;
  }

  .main-questions {
    width: 100%;
  }

  .sidebar-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
    padding-left: 8px;
    padding-right: 8px;
  }

  .posts-2-cols {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }

  .posts-2-cols.side-paddings {
    margin-top: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .sidebar-post-heading {
    font-size: 15px;
    line-height: 24px;
  }

  .sidear-post-category {
    margin-bottom: 4px;
  }

  .post-top {
    height: 360px;
  }

  .tags {
    padding-left: 0;
    padding-right: 0;
  }

  .posts-3-cols {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .help-category-card:hover {
    border-color: var(--grey-3);
    box-shadow: none;
    background-color: #0000;
    transform: none;
  }

  .sidebar-promo-circle {
    width: 13vw;
  }

  .sidebar-video {
    height: 30vw;
  }

  .team-cards {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-macbook-v1 {
    width: 87%;
  }

  .iphone-v1-image {
    width: auto;
    position: static;
  }

  .counters {
    flex-wrap: wrap;
  }

  .hero-circle-big {
    width: 38vw;
    bottom: -19%;
  }

  .hero-dots {
    height: 96px;
    bottom: -1%;
    left: -14%;
  }

  .testimonials-v1-gradient {
    background-image: linear-gradient(to right, var(--medium-slate-blue), var(--gradient-3-dark));
    height: 56vw;
  }

  .post-slider {
    width: 92%;
  }

  .post-slide {
    padding-left: 0;
    padding-right: 32px;
  }

  .post-slider-intro {
    margin-top: 0;
  }

  .post-slider-mask {
    padding: 0;
    overflow: visible;
  }

  .promo-video {
    height: 48vw;
  }

  .logotypes-hero-header {
    margin-left: 8px;
    margin-right: 8px;
    display: none;
  }

  .logotypes-hero-heading {
    margin-left: 12px;
    margin-right: 12px;
    font-size: 12px;
    line-height: 16px;
  }

  .mini-gallery {
    grid-template-rows: 12vw 12vw 12vw 12vw 12vw;
  }

  .feature-block-image {
    margin-top: 6vw;
  }

  .tab-link {
    padding: 24px 16px;
  }

  .feature-image-big {
    height: 27vw;
  }

  .feature-card {
    padding: 5vw;
  }

  .feature-image-medium, .feature-image-small {
    height: 27vw;
  }

  .dynamic-column {
    grid-row-gap: 40px;
  }

  .dynamic-column.margin-top {
    grid-row-gap: 32px;
    margin-top: 0;
  }

  .dynamic-column.grid-margin-top {
    margin-left: 21px;
    margin-right: 33px;
  }

  .hero-bg-gradient {
    height: 85%;
  }

  .browser-bg {
    width: 100%;
  }

  .hero-browser {
    width: 76vw;
  }

  .browser-top {
    padding: 8px;
  }

  .browser-button {
    width: 10px;
    height: 10px;
  }

  .browser-content {
    min-height: 30vw;
    margin-bottom: 8px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .image-block {
    height: 56vw;
  }

  .search-result-info {
    padding-top: 0;
  }

  .search-result-image {
    width: 168px;
    height: 128px;
  }

  ._404 {
    font-size: 128px;
    line-height: 104px;
  }

  .sidebar-faq-links {
    padding: 24px;
  }

  .post-card-heading-big {
    font-size: 18px;
    line-height: 24px;
  }

  .layout-name {
    margin-bottom: 24px;
  }

  .circle-v1 {
    width: 40vw;
    height: 40vw;
    right: 40vw;
  }

  .info-block {
    margin-left: 8px;
    margin-right: 8px;
  }

  .small-message {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-button {
    width: 32px;
  }

  .home-button-text {
    display: none;
  }

  .nav-buttons {
    grid-column-gap: 12px;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .macbook {
    width: 87%;
  }

  .main-grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
  }

  .image {
    margin-left: 35px;
  }

  .image.hide {
    display: none;
  }

  .image.hide-dekstop {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .achievement-text-2 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 32px;
  }

  .menu-vertical-grid.right-align {
    justify-items: start;
  }

  .container {
    margin-left: auto;
    margin-right: auto;
  }

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

  .div-block-13 {
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }

  .panel-body.wide-case-study-panel-body {
    max-width: none;
    margin-top: -17px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .panel-body.wide-case-study-panel-body.less-padding {
    margin-top: 0;
  }

  .link-block {
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }

  .content-width-medium.article-title-wrapper {
    margin-bottom: 72px;
  }

  .content-width-extra-large.center-content {
    margin-top: -160px;
  }

  .case-study-company-details-wrapper {
    margin-bottom: 72px;
  }

  .no-bottom-space {
    font-size: 15px;
  }

  .section-2 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .job-listing-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .div-block-4 {
    width: auto;
  }

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

  .grid-halves {
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .grid-halves.grid-kanalen {
    grid-row-gap: 35px;
  }

  .container-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .container-3.container-kanalen-links {
    max-width: 684px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .container-3.container-kanalen-rechts {
    margin-left: 0;
  }

  .tabs-menu-2 {
    border-radius: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 26px;
    line-height: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.top-section {
    margin-top: -60px;
    padding-top: 88px;
    padding-bottom: 80px;
  }

  .section.intro-hero {
    margin-top: -60px;
    padding-top: 96px;
    padding-bottom: 80px;
  }

  .section.hero-v3, .section.hero-v4 {
    margin-top: -60px;
    padding-top: 96px;
  }

  .section.hero-v1 {
    margin-top: -60px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section.billing-tabs-section, .section.hero-v2, .section.hero-v5, .section.light-hero, .section.post-top-section, .section.hero-v2 {
    margin-top: -60px;
    padding-top: 96px;
  }

  .button.pricing-cell-button {
    margin-bottom: -8px;
    margin-left: -12px;
    margin-right: -12px;
  }

  .nav-bar {
    height: 60px;
  }

  .no-margin {
    margin: 0;
  }

  .no-margin-bottom, .intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .intro.no-margin-bottom.contact-section {
    flex-direction: column;
  }

  .intro.left.sticky {
    position: static;
  }

  .intro.margin-bottom {
    margin-bottom: 48px;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-v3-menu {
    flex: 0 auto;
    justify-content: flex-start;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 0;
  }

  .footer-link {
    font-size: 13px;
    line-height: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .brand.footer-v1-brand {
    justify-content: flex-start;
    width: 50%;
    margin-right: 8px;
  }

  .changelog {
    width: 100%;
  }

  .no-padding {
    padding: 0;
  }

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

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

  .pricing-v1-card {
    padding: 32px;
  }

  .pricing-v1-tag {
    font-size: 40px;
    line-height: 48px;
  }

  .tabs-menu-v2 {
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .sidebar {
    max-width: 320px;
  }

  .sidebar.sticky {
    max-width: none;
  }

  .simple-form {
    padding-left: 16%;
    padding-right: 16%;
  }

  .cta-card {
    padding-left: 12%;
    padding-right: 12%;
  }

  .features-v8 {
    margin-bottom: 32px;
  }

  .feature-v8 {
    margin: 6px 4px;
  }

  .achievements {
    flex-wrap: wrap;
    width: 83.33%;
  }

  .achievement {
    width: 50%;
    box-shadow: 1px 1px 0 0 var(--grey-3);
    flex: 0 auto;
  }

  .review-v9 {
    padding: 6px;
  }

  .pricing-v2-card-info {
    margin-left: 12px;
    margin-right: 12px;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .feature {
    width: 100%;
  }

  .footer-columns {
    padding-bottom: 0;
  }

  .footer-v1-info {
    justify-content: flex-start;
  }

  .social-icons-small.footer-v4-icons {
    justify-content: flex-start;
    width: 100%;
    margin-top: 20px;
    margin-left: 5px;
  }

  .footer-v3-link {
    margin-left: 0;
    margin-right: 8px;
  }

  .footer-v3-left {
    width: 100%;
  }

  .footer-v3-right {
    flex: none;
    justify-content: flex-start;
    width: 100%;
  }

  .feature-blocks {
    flex-wrap: wrap;
  }

  .feature-block {
    flex: 0 auto;
    width: 100%;
  }

  .side-tab {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px;
  }

  .post-image {
    max-height: none;
    margin-top: -24px;
    margin-bottom: 32px;
    box-shadow: 0 10px 20px -5px #30364d54;
  }

  .footer-v2-bottom-menu {
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-v2-bottom-menu-link {
    margin-bottom: 8px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .footer-v2-bottom-info {
    justify-content: center;
  }

  .testimonials-v5 {
    margin-top: -8px;
    margin-bottom: -24px;
  }

  .testimonials-v5-slide {
    padding-left: 4%;
    padding-right: 4%;
  }

  .slider-nav {
    font-size: 8px;
  }

  .logo {
    height: 28px;
  }

  .layouts {
    margin-bottom: 32px;
  }

  .layout-box {
    padding: 10%;
  }

  .post-author-avatar {
    width: 64px;
    height: 64px;
  }

  .post-author-info {
    padding-top: 8px;
    padding-left: 20px;
    font-size: 13px;
    line-height: 20px;
  }

  .big-message {
    padding: 24px;
  }

  .components {
    justify-content: center;
    align-items: center;
  }

  .components-link {
    flex-basis: 40%;
    padding: 20px;
  }

  .footer-v4-nav {
    flex-wrap: wrap;
    flex: 0 auto;
    justify-content: flex-start;
    width: 100%;
    padding-top: 24px;
    padding-left: 0;
  }

  .footer-v4-link {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .search-result {
    padding: 24px;
  }

  .article-list {
    column-count: 1;
  }

  .article-link {
    padding: 20px;
  }

  .help-categories {
    width: 100%;
  }

  .help-mini-form {
    flex: 0 auto;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .help-mini-input {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .contact-form-card {
    flex-direction: column;
    align-items: center;
    padding: 64px 12%;
  }

  .about-photo {
    height: auto;
  }

  .pricing-v3-plans {
    position: static;
  }

  .pricing-v3-plans.mobile-sticky {
    display: flex;
    position: sticky;
    top: 0;
  }

  .pricing-v3-plans.bottom {
    border-top: 1px solid var(--haze-dark);
    display: flex;
  }

  .pricing-plan-cell {
    width: 33.33%;
  }

  .pricing-plan-cell.no-divider {
    display: none;
  }

  .pricing-v3-currency {
    margin-top: 0;
    margin-left: -11px;
    font-size: 14px;
  }

  .pricing-v3-tag {
    font-size: 24px;
    line-height: 24px;
  }

  .pricing-v3-category-header {
    padding-left: 14px;
    padding-right: 16px;
    position: static;
  }

  .pricing-v3-row {
    flex-wrap: wrap;
  }

  .pricing-v3-row-header {
    border-bottom: 1px solid var(--haze-dark);
    width: 100%;
    min-height: 32px;
    padding: 4px 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .pricing-v3-cell {
    min-height: 48px;
    font-size: 13px;
  }

  .pricing-cell-icon {
    width: 20px;
  }

  .pricing-v3-plan-name {
    font-size: 13px;
    display: none;
    position: sticky;
  }

  .pricing-v3-plan-mobile {
    margin-top: -10px;
    margin-bottom: -10px;
    font-size: 13px;
    position: sticky;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .review-v1-text {
    margin: 24px;
  }

  .review-v1-bottom {
    flex-wrap: wrap;
    padding-left: 24px;
    padding-right: 24px;
  }

  .review-v1-rating {
    width: 100%;
    margin-top: 8px;
    padding-left: 56px;
  }

  .logo-text {
    font-size: 18px;
    line-height: 24px;
  }

  .testimonials-v2 {
    width: 88vw;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
    padding: 10px;
    left: -24px;
  }

  .slider-arrow.right {
    right: -24px;
  }

  .review-v2-add-button {
    right: 40px;
  }

  .testimonials-v3 {
    width: 90vw;
    height: auto;
  }

  .review-v3-quote {
    width: 48px;
  }

  .main-grid {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .main-grid.services {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .review-v2-dots {
    width: 81px;
    bottom: -15%;
  }

  .reviiew-v2-circle-big {
    display: none;
  }

  .reviiew-v2-circle-small {
    top: -9%;
  }

  .dots {
    width: 226px;
    height: 71px;
    top: 38%;
  }

  .circle-big {
    bottom: -2%;
    right: 14%;
  }

  .circle-small {
    width: 15vw;
    top: 17%;
  }

  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-v2-logo {
    height: 48px;
  }

  .pricing-v2-wave {
    height: 32px;
  }

  .pricing-card-dots {
    left: -11%;
  }

  .pricing-card-circle {
    width: 18vw;
    top: -8vw;
  }

  .post-top {
    height: 240px;
  }

  .sidebar-promo-dots {
    width: 231px;
  }

  .sidebar-promo-circle {
    width: 16vw;
  }

  .sidebar-video {
    height: 216px;
  }

  .accordion-header {
    min-height: 60px;
    padding: 12px 16px;
  }

  .accordion-card {
    margin-bottom: 12px;
  }

  .accordion-text {
    margin-left: 4px;
    margin-right: 4px;
    padding-bottom: 24px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .hero-subscribe {
    grid-template-columns: minmax(200px, 1fr) auto;
  }

  .hero-form {
    width: 100%;
  }

  .text-huge {
    font-size: 20px;
    line-height: 28px;
  }

  .accordion-icon {
    width: 20px;
    margin-left: 1px;
    margin-right: 10px;
  }

  .counter {
    box-shadow: 1px 1px 0 0 var(--grey-3);
  }

  .hero-circle-big {
    width: 50vw;
    bottom: -17%;
    right: 8%;
  }

  .hero-dots {
    width: 231px;
    bottom: -5%;
  }

  .testimonials-v1-gradient {
    height: 62vw;
  }

  .post-slide {
    padding-right: 24px;
  }

  .mini-gallery {
    grid-template-rows: 14vw 14vw 14vw 14vw 14vw;
  }

  .feature-image-big {
    width: 100%;
    height: auto;
  }

  .feature-image-medium, .feature-image-small {
    height: 25vw;
  }

  .dynamic-column {
    grid-row-gap: 32px;
  }

  .dynamic-column.grid-margin-top {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-form-v2 {
    width: 100%;
  }

  .browser-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }

  ._404 {
    font-size: 96px;
    line-height: 80px;
  }

  .sidebar-faq-links {
    padding: 20px;
  }

  .layout-name {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .text-2-cols {
    column-count: 1;
  }

  .top-message-text {
    font-size: 13px;
    line-height: 20px;
  }

  .nav-buttons {
    display: none;
  }

  .footer-v4-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -8px;
  }

  .top-button {
    display: none;
  }

  .main-grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 48px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .image, .image.hide-dekstop {
    display: none;
  }

  .image-2 {
    display: block;
  }

  .achievement-2 {
    flex: 0 auto;
    width: 50%;
    box-shadow: 1px 1px #e6e8f0;
  }

  .display-heading-2 {
    letter-spacing: -.01em;
    font-size: 40px;
    line-height: 48px;
  }

  .display-heading-2.contact-heading {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .horizontal-title {
    margin-bottom: 21px;
  }

  .image-9 {
    margin-bottom: 36px;
  }

  .panel-body.wide-case-study-panel-body {
    margin-top: -17px;
  }

  .panel-body.wide-case-study-panel-body.white {
    margin-top: 0;
  }

  .content-width-medium.article-title-wrapper {
    margin-bottom: 48px;
  }

  .display-heading-4 {
    font-size: 40px;
    line-height: 44px;
  }

  .content-width-extra-large.center-content {
    margin-top: -100px;
  }

  .case-study-company-details-wrapper {
    margin-top: 24px;
    margin-bottom: 48px;
  }

  .rounded-image {
    border-radius: 6px;
  }

  .panel {
    flex-direction: row;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-2 {
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .button-large {
    height: 48px;
  }

  .div-block-4 {
    width: 100%;
  }

  .div-block-23 {
    padding-right: 0;
  }

  .interface-screenshot-container {
    min-height: auto;
  }

  .interface-screenshot-container.bg-primary-3 {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .interface-screenshot-container.bg-primary-3.image-kanalen {
    min-height: 400px;
  }

  .grid-halves {
    grid-row-gap: 56px;
  }

  .large-heading {
    letter-spacing: 0;
    font-size: 28px;
    line-height: 36px;
  }
}

@media screen and (max-width: 479px) {
  .button.small {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button.side-margins {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .button.margin-left {
    margin-top: 16px;
    margin-left: 0;
  }

  .button.pricing-cell-button {
    margin-left: 0;
    margin-right: 0;
  }

  .utility-page-content {
    width: 100%;
  }

  .no-margin {
    margin: 0;
  }

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

  .intro.no-margin-bottom {
    width: 100%;
    margin-bottom: 0;
  }

  .intro.wide {
    max-width: 100%;
  }

  .title.right-corner {
    margin-top: 12px;
    margin-bottom: 7px;
    position: relative;
  }

  .title.right-corner.conversieratio {
    margin-top: 0;
  }

  .title.kosten-lead-case {
    text-align: center;
    min-width: 250px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .title.kosten-lead-case.blauw-case {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-v3-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-menu {
    z-index: auto;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .no-padding {
    padding: 0;
  }

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

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

  .pricing-v1-card {
    margin-bottom: 10px;
  }

  .sidebar {
    max-width: none;
  }

  .input {
    min-width: 0;
  }

  .input.subscribe-v1-input {
    text-align: center;
    width: 100%;
  }

  .simple-form {
    padding-left: 0%;
    padding-right: 0%;
  }

  .post-card-image-big {
    height: 58vw;
  }

  .post-card-author {
    margin-left: 0;
    padding-left: 0;
  }

  .post-card-image {
    height: 58vw;
  }

  .sg-color {
    height: 40vw;
  }

  .cta-card-info {
    align-items: stretch;
  }

  .subscribe-form {
    flex-flow: column wrap;
    grid-template-columns: 100%;
    align-items: stretch;
    width: 100%;
    min-width: 200px;
  }

  .inline-elements {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .store-button.side-margins {
    margin: 8px 0;
  }

  .achievements, .achievement {
    width: 100%;
  }

  .video-link.margin-left {
    margin-top: 16px;
    margin-left: 0;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .subscribe-v1-form {
    width: 100%;
  }

  .feature {
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer-column.margin-top {
    margin-top: 30px;
  }

  .footer-v3-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-v3-bottom-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
  }

  .side-tabs {
    padding-left: 0;
    padding-right: 0;
  }

  .side-tab {
    padding-left: 24px;
    padding-right: 24px;
  }

  .message {
    text-align: center;
    flex-direction: column;
  }

  .message-text {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .footer-v2-bottom-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-v1-bottom {
    flex-wrap: wrap;
  }

  .footer-app-link {
    font-size: 12px;
    line-height: 16px;
  }

  .testimonials-v5 {
    padding-bottom: 56px;
  }

  .testimonials-v5-slide {
    width: 100%;
  }

  .feature-icon-left {
    padding-right: 0;
  }

  .feature-info-right {
    padding-left: 20px;
  }

  .logotypes {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    justify-content: center;
    padding-left: 0%;
    padding-right: 0%;
  }

  .logotypes.v2 {
    justify-content: center;
  }

  .logo-link {
    margin: 0;
    padding: 8px 12px;
  }

  .logo {
    height: 24px;
  }

  .layouts {
    grid-template-columns: 1fr;
  }

  .layout-box {
    box-shadow: 0 -1px 0 0 var(--grey-3);
    margin-bottom: 0;
    margin-right: 0;
  }

  .big-message {
    text-align: center;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .big-message-text {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .sg-button-block {
    width: 100%;
  }

  .licence-item {
    flex-direction: column;
    padding-top: 48px;
  }

  .licence-item-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .components-link {
    flex: 0 auto;
    width: 100%;
  }

  .password-card {
    padding: 40px;
  }

  .footer-v4-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
  }

  .footer-v4-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .search-result {
    flex-wrap: wrap;
    padding: 28px;
  }

  .contact-form-card {
    flex-direction: column;
    padding: 40px 10%;
  }

  .pricing-v3 {
    border-radius: 0;
    margin-left: -8px;
    margin-right: -8px;
  }

  .pricing-plan-cell {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 8px;
    display: flex;
  }

  .pricing-v3-billing {
    flex: 1;
  }

  .pricing-v3-currency {
    margin-left: -10px;
    margin-right: 2px;
  }

  .pricing-v3-row-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .testimonials-v1 {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .testimonials-v2 {
    height: 520px;
  }

  .slider-arrow {
    display: none;
    inset: auto auto 4% 35%;
  }

  .slider-arrow.right {
    inset: auto 35% 4% auto;
  }

  .review-v2 {
    padding-bottom: 32px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .review-v2-quote.left, .review-v2-quote.right {
    display: none;
  }

  .review-v2-add-button {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
    top: auto;
    left: 0%;
    right: 0%;
  }

  .testimonials-v3 {
    border-radius: 12px;
    height: auto;
  }

  .review-v3-quote.left {
    top: 24px;
    left: 24px;
  }

  .review-v3-quote.right {
    bottom: 24px;
    right: 24px;
  }

  .review-v3 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .main-grid {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .main-grid.flex {
    flex-direction: column;
    display: flex;
  }

  .main-grid.flex-horizontal {
    flex-direction: column;
  }

  .main-grid.services {
    flex-direction: column;
    display: flex;
  }

  .main-grid.grid-services {
    grid-row-gap: 14px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .review-v2-dots {
    bottom: -12%;
  }

  .reviiew-v2-circle-small {
    top: -8%;
  }

  .dots {
    width: 160px;
    height: 82px;
    bottom: -12%;
  }

  .circle-big {
    width: 35vw;
    bottom: 12%;
  }

  .circle-small {
    width: 17vw;
    top: 22%;
    right: 6%;
  }

  ._2-buttons {
    justify-items: center;
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .footer-brand {
    margin-bottom: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .wave-bottom, .wave-top {
    height: 10vw;
  }

  .pricing-card-circle {
    width: 30vw;
  }

  .pricing-v1-gradient {
    height: 83%;
  }

  .pricing-side-features, .main-questions {
    grid-template-columns: 1fr;
  }

  .posts-2-cols {
    grid-template-columns: 100%;
  }

  .post-top {
    height: 160px;
  }

  .posts-3-cols {
    grid-template-columns: 100%;
  }

  .help-category-card {
    padding: 24px;
  }

  .sidebar-promo-dots {
    bottom: -12%;
  }

  .sidebar-promo-circle {
    top: 6%;
  }

  .sidebar-video {
    height: 60vw;
  }

  .team-cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .hero-macbook-v1 {
    width: 100%;
  }

  .hero-subscribe {
    grid-template-columns: minmax(100%, 1fr);
    padding-left: 0%;
    padding-right: 0%;
  }

  .accordion-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .iphone-v1-image {
    width: 80%;
  }

  .person, .person-info {
    padding-right: 0;
  }

  .counters {
    width: 100%;
  }

  .counter {
    flex: 0 auto;
    width: 100%;
  }

  .question-v1 {
    padding-right: 0;
  }

  .hero-circle-big {
    bottom: 12%;
    right: -19.8vw;
  }

  .hero-dots {
    bottom: -2%;
  }

  .testimonials-v1-gradient {
    height: 112vw;
  }

  .post-slider {
    width: 100%;
  }

  .post-slide {
    width: 100%;
    padding-right: 16px;
  }

  .promo-video {
    height: 64vw;
  }

  .mini-gallery {
    grid-template-rows: 30vw;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 30vw;
  }

  .gallery-photo._1, .gallery-photo._2, .gallery-photo._4, .gallery-photo._3 {
    border-radius: 3px;
  }

  .tab-link {
    width: 100%;
    box-shadow: 0 1px 0 0 var(--grey-3);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .tabs-menu {
    border-bottom-style: none;
    display: block;
  }

  .feature-card {
    padding: 10vw;
  }

  .feature-image-medium, .feature-image-small {
    width: 100%;
    height: auto;
  }

  .dynamic-column.grid-margin-top {
    margin-top: 35px;
  }

  .hero-macbook-v2 {
    width: 100%;
  }

  .hero-bg-gradient {
    height: 92%;
  }

  .hero-browser {
    width: 84vw;
  }

  .image-block {
    height: 72vw;
  }

  .search-result-info {
    padding-top: 20px;
    padding-left: 0;
  }

  .search-result-image {
    flex: 0 auto;
    width: 100%;
    height: 50vw;
  }

  .intro-macbook {
    width: 104%;
  }

  .testimonials-v3-nav {
    margin-bottom: 12px;
    display: none;
  }

  .testimonials-v2-nav {
    margin-bottom: 20px;
  }

  .ipad-image {
    width: 120vw;
    max-width: none;
  }

  .circle-v1 {
    width: 50vw;
    height: 50vw;
    right: 60vw;
  }

  .nav-buttons {
    justify-items: center;
    width: 100%;
  }

  .question-v2 {
    padding-right: 0;
  }

  .footer-v4-links {
    margin-bottom: 16px;
    margin-right: -16px;
    padding-right: 0;
  }

  .macbook {
    width: 100%;
  }

  .icon-box-2.big.gradient-2 {
    padding: 0;
  }

  .main-grid-2 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .video-link-2.margin-left {
    justify-content: center;
    margin-top: 16px;
    margin-left: 0;
  }

  .achievement-2 {
    width: 100%;
  }

  .horizontal-title {
    margin-bottom: 35px;
  }

  .panel-body {
    padding: 24px;
  }

  .panel-body.wide-case-study-panel-body {
    margin-top: -17px;
  }

  .panel-body.wide-case-study-panel-body.less-padding {
    padding: 0;
  }

  .panel-body.wide-case-study-panel-body.white {
    padding: 35px 20px;
  }

  .panel-body.panel-body-small {
    padding: 40px;
  }

  .h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .div-block-14.block-case {
    margin-right: 0;
  }

  .grid-4.no-margin-bottom {
    grid-template-columns: 1fr;
  }

  .content-width-medium.article-title-wrapper {
    margin-bottom: 24px;
  }

  .content-width-extra-large.center-content {
    margin-top: -90px;
  }

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

  .panel {
    border-radius: 6px;
  }

  .div-block-17 {
    flex-direction: column;
    align-items: center;
    display: block;
  }

  .title-3.kosten-lead-case {
    text-align: center;
    min-width: 250px;
  }

  .link-block-3 {
    flex-direction: column;
    padding: 15px;
    display: flex;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .container-2 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .text-lead {
    font-size: 16px;
    line-height: 24px;
  }

  .image-11, .hide {
    display: none;
  }

  .div-block-4 {
    padding: 20px 25px;
  }

  .interface-screenshot-container {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .tabs-menu-2 {
    border-radius: 0;
  }
}

#w-node-a5655f81-cb83-b4aa-6ba8-6fe80a405d6d-c8ac3644 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9084dc2f-9ebc-37b5-438c-ee97e2b83875-d1822f9d {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_4cccd955-1110-6266-a922-4b5ac4677b9d-d1822f9d, #w-node-_63f85f00-be05-c081-0d96-9fc6d1822fb9-d1822f9d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_63f85f00-be05-c081-0d96-9fc6d1822fc6-d1822f9d {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_7901208a-7799-8dd0-0aed-81f88b308563-b32f4091, #w-node-ea006c73-a46f-cedf-40aa-a2106924f89c-a7ac3646 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12143-e0ac3648 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12138-e0ac3648 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_946fabce-ef78-f078-556b-e91fc2f06166-e0ac3648 {
  align-self: stretch;
}

#w-node-_04869715-47ef-a5d7-5eec-787c92812ade-e0ac3648 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_04869715-47ef-a5d7-5eec-787c92812af6-e0ac3648 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_48b98369-4885-d2b9-5c99-3f5a641110ef-6411106d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a30-d1ac364a {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a31-d1ac364a {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_9f703eb6-e1ee-4823-a348-1bacc85f0f1a-d1ac364a {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ef310464-4936-67d0-9fed-70cd6d72acff-d1ac364a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-bda89594-3058-6f55-816b-deb9c936ce01-93ac364e {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-bda89594-3058-6f55-816b-deb9c936ce2b-93ac364e {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-bda89594-3058-6f55-816b-deb9c936ce57-93ac364e, #w-node-b534bcac-a029-8c04-5655-c66150ef07cd-93ac364e {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-b534bcac-a029-8c04-5655-c66150ef07f7-93ac364e {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-b534bcac-a029-8c04-5655-c66150ef0823-93ac364e {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_4bbd4998-af68-0849-ec51-0daa57af97ad-93ac364e, #w-node-_3b9ccb01-ee8c-baa5-54aa-f65ebc32af46-93ac364e {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-ff3abbc9-d940-8b57-5cc6-7f66e7275f2a-93ac364e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ff3abbc9-d940-8b57-5cc6-7f66e7275f88-93ac364e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_19066cec-f9d4-553f-2edf-ebe1e0072792-4dac3650 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b59585cf-d9f4-876c-88c2-5c2f98c04b2e-2cac3654 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8af3b004-aacd-e336-98a8-40008fbcb3e1-2cac3654 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-d5e3ccc5-1443-6414-f580-d36e961483a5-2cac3654 {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

#w-node-_91075fa9-552f-d06f-cb92-8d4d911d5301-2cac3654 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-e079698e-091d-20ac-3772-a807b06403cf-2cac3654 {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

#w-node-ed7ef7ac-8dd7-cf73-ff2e-faa73d69b5fb-2cac3654 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-2cac3654 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-f2cdf1b3-065d-102d-8a60-5c6b346190d4-2cac3654 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_653f33cf-7d4e-6979-9446-806cc4173aa7-2cac3654 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_83795227-f9ed-4353-b81e-cbc3c1ca190b-2cac3654 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
}

#w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1914-2cac3654 {
  grid-area: 1 / 5 / 2 / 9;
  align-self: start;
}

#w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1945-2cac3654 {
  grid-area: 1 / 9 / 2 / 13;
  align-self: start;
}

#w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1946-2cac3654, #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1956-2cac3654 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bdc693aa-93d6-f004-b043-32061db55d6a-caac3657 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-bdc693aa-93d6-f004-b043-32061db55d0c-caac3657, #w-node-_078de49d-f311-e015-247c-76967aff5c0a-a6ac365b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5460285c-a7e7-d225-1852-9df6e68d4808-302897a7 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  align-self: center;
}

#w-node-_5460285c-a7e7-d225-1852-9df6e68d4817-302897a7, #w-node-_90877e45-1dff-e6a1-8651-2cd4373406f8-302897a7 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_90877e45-1dff-e6a1-8651-2cd4373406f9-302897a7 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_572118a2-08be-d15b-f1a2-437b85288333-302897a7 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_572118a2-08be-d15b-f1a2-437b85288334-302897a7 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cea7-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313ceb1-302897a7, #w-node-_378baad3-d61b-9a70-e3a8-efe8ee615d8c-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cebb-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cec5-302897a7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c1-302897a7 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_90a3ac91-4c4b-20f9-a073-354ccde447a7-302897a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c9-302897a7 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_926f6ca7-473a-2415-f0d6-47f31ccd806b-302897a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_3622e74b-fa47-8398-ce97-283232478dc6-302897a7 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee33-302897a7 {
  grid-area: 1 / 8 / 2 / 13;
  place-self: start center;
}

#w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee34-302897a7 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: start;
}

#w-node-fb097305-c1f8-ab10-aeb5-526e88c5790f-302897a7 {
  grid-area: 1 / 8 / 2 / 12;
  align-self: center;
}

#w-node-fb097305-c1f8-ab10-aeb5-526e88c57925-302897a7 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-aa442fe6, #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-c74432df {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_06b88d5b-af9c-8603-71ee-51038b1c1a3a-f010c968, #w-node-c326a613-7bf9-77c0-a2b2-4b27d9786644-f010c968, #w-node-_1ea19512-91d5-65a1-1c63-adbfab16d02d-f010c968, #w-node-_6fe8f585-e80c-6455-cb2e-b337be827170-f010c968, #w-node-_4849f729-1db2-6b34-7c87-ff4ebddbfdd4-f010c968, #w-node-_6b5fb8ff-e8ab-1130-58d6-e12fc3d22b4d-f010c968, #w-node-f12ea81a-0cf2-16a5-7bb6-7fff92f92aac-f010c968, #w-node-d1c124f6-59f6-3b57-6284-f13d80766a2f-f010c968, #w-node-_645fe9d4-495a-4a8b-a2e6-98fb6f5618b1-f010c968, #w-node-_39bc7f3a-6fb5-51cd-5e43-40270db0a0e2-f010c968, #w-node-_4c00d782-4c19-81bc-cac8-ce1db0f62595-f010c968, #w-node-_2771907f-0c0e-2158-bada-de2404ed607d-f010c968, #w-node-dd3c0832-437f-de65-d47d-8b09605f1ba5-f010c968, #w-node-_01fcde52-6262-dde4-a584-a08baba0ca4f-257cb306, #w-node-_01fcde52-6262-dde4-a584-a08baba0ca5b-257cb306, #w-node-_01fcde52-6262-dde4-a584-a08baba0ca4f-170915b2, #w-node-_01fcde52-6262-dde4-a584-a08baba0ca5b-170915b2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-acb322ce {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-acb322ce, #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-acb322ce {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-dc89181c-0709-f820-fbf2-dd108134c31c-acb322ce {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-acb322ce {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bb25b544-68e4-c4e2-c70f-b5188f336083-acb322ce {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-acb322ce {
  grid-area: 1 / 10 / 2 / 14;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-acb322ce {
  grid-area: span 1 / span 8 / span 1 / span 8;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-acb322ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-acb322ce {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-acb322ce {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e000-acb322ce {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e014-acb322ce {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-acb322ce {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-acb322ce {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-acb322ce {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-acb322ce {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_57a2f3df-b699-21de-5271-7614f91f1333-acb322ce {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-acb322ce {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896895-acb322ce {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896896-acb322ce {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafb-acb322ce {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafc-acb322ce {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_8cade764-8cc7-ad72-6b51-a87c5a4e6164-5a4e6161 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8cade764-8cc7-ad72-6b51-a87c5a4e616b-5a4e6161 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_48b3d476-ecee-d844-983f-290e3a747f29-3a747f20 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-b4ad16db {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-b4ad16db, #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-b4ad16db {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-dc89181c-0709-f820-fbf2-dd108134c31c-b4ad16db {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-b4ad16db {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bb25b544-68e4-c4e2-c70f-b5188f336083-b4ad16db {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-b4ad16db {
  grid-area: 1 / 10 / 2 / 14;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-b4ad16db {
  grid-area: span 1 / span 8 / span 1 / span 8;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-b4ad16db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-b4ad16db {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-b4ad16db {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e000-b4ad16db {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e014-b4ad16db {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-b4ad16db {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-b4ad16db {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-b4ad16db {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-b4ad16db {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_57a2f3df-b699-21de-5271-7614f91f1333-b4ad16db {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-b4ad16db {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896895-b4ad16db {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896896-b4ad16db {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafb-b4ad16db {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafc-b4ad16db {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5dadb04c-e8ca-57ed-d3be-24ab184a9658-81c78ed4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-81c78ed4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_16c6eb9c-d3b9-d173-ecf9-e0f6119c0be2-81c78ed4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_4bbadde2-c481-d264-7e45-ec3847cc2be6-81c78ed4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-81c78ed4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-dc89181c-0709-f820-fbf2-dd108134c31c-81c78ed4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-81c78ed4 {
  grid-area: 1 / 10 / 2 / 14;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-81c78ed4 {
  grid-area: span 1 / span 8 / span 1 / span 8;
  align-self: start;
}

#w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-81c78ed4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-81c78ed4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-81c78ed4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e000-81c78ed4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5cdccadc-244d-7b21-00b4-75473349e014-81c78ed4 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-81c78ed4 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-81c78ed4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-81c78ed4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-81c78ed4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_57a2f3df-b699-21de-5271-7614f91f1333-81c78ed4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-81c78ed4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896895-81c78ed4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_2520e862-6d5a-361d-1109-de1447896896-81c78ed4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafb-81c78ed4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-d054877a-b585-7045-3b98-e0c335a8eafc-81c78ed4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced933678a5-b8299ee8 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced933678a6-b8299ee8, #w-node-fcd41eec-144d-2db8-3888-cc09bc4ab13f-b8299ee8 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-a9589de9-0a69-df70-3930-65a9e2ad3128-b8299ee8 {
  grid-area: 1 / 11 / 2 / 16;
  align-self: center;
}

#w-node-d2172ff8-f1ba-d65f-3404-713dc7c55f03-b8299ee8 {
  grid-area: 1 / 6 / 2 / 11;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced933678c4-b8299ee8 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced933678d8-b8299ee8 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367a89-b8299ee8 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367a8a-b8299ee8 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367a97-b8299ee8 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367aab-b8299ee8 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367ada-b8299ee8 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367adb-b8299ee8 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367aea-b8299ee8 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367aeb-b8299ee8 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367af6-b8299ee8 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367af7-b8299ee8 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367b03-b8299ee8 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367b04-b8299ee8 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367b10-b8299ee8 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_5c1316ea-f550-e11b-dc58-7ced93367b11-b8299ee8 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ce-12fe05c4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e6cf-12fe05c4, #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ed-12fe05c4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e701-12fe05c4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e71f-12fe05c4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e726-12fe05c4 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e903-12fe05c4 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e904-12fe05c4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e913-12fe05c4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e914-12fe05c4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e91f-12fe05c4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e920-12fe05c4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e92c-12fe05c4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e92d-12fe05c4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e939-12fe05c4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_76bb7624-8e1f-029a-471e-224d80f1e93a-12fe05c4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f7-c5d365f4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f8-c5d365f4, #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673614-c5d365f4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff4673628-c5d365f4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff467363f-c5d365f4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff4673646-c5d365f4 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ba-c5d365f4 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737bb-c5d365f4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ca-c5d365f4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737cb-c5d365f4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d6-c5d365f4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d7-c5d365f4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e3-c5d365f4 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e4-c5d365f4 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f0-c5d365f4 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f1-c5d365f4 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a4f29-c70f35d7 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a4f2a-c70f35d7, #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f46-c70f35d7 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a4f5a-c70f35d7 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a4f71-c70f35d7 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a4f78-c70f35d7 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a50ec-c70f35d7 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a50ed-c70f35d7 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a50fc-c70f35d7 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a50fd-c70f35d7 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5108-c70f35d7 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5109-c70f35d7 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5115-c70f35d7 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5116-c70f35d7 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5122-c70f35d7 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_19fb4326-a525-f8cc-422e-5a55292a5123-c70f35d7 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151de70-448274de {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151de71-448274de, #w-node-_99549f00-c038-6d9f-0d2e-0e618151de8d-448274de {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151dea1-448274de {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151deb8-448274de {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151debf-448274de {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e033-448274de {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e034-448274de {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e043-448274de {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e044-448274de {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e04f-448274de {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e050-448274de {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e05c-448274de {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e05d-448274de {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e069-448274de {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-_99549f00-c038-6d9f-0d2e-0e618151e06a-448274de {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd7-08c34853 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd8-08c34853, #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bf4-08c34853 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c08-08c34853 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c1f-08c34853 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c26-08c34853 {
  grid-area: 1 / 1 / 2 / 7;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9a-08c34853 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9b-08c34853 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05daa-08c34853 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dab-08c34853 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db6-08c34853 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db7-08c34853 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc3-08c34853 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc4-08c34853 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd0-08c34853 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: center;
}

#w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd1-08c34853 {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-a5655f81-cb83-b4aa-6ba8-6fe80a405d86-c8ac3644 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9084dc2f-9ebc-37b5-438c-ee97e2b83875-d1822f9d {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_4cccd955-1110-6266-a922-4b5ac4677b9d-d1822f9d, #w-node-_63f85f00-be05-c081-0d96-9fc6d1822fb9-d1822f9d, #w-node-_411cb8b5-61e1-f58a-a463-4c04936f234c-a7ac3646 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12143-e0ac3648 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12138-e0ac3648 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_946fabce-ef78-f078-556b-e91fc2f06166-e0ac3648 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: stretch;
  }

  #w-node-b08e5bd7-b96e-b517-2e1e-6258b1d09ed2-e0ac3648 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_04869715-47ef-a5d7-5eec-787c92812af6-e0ac3648 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a30-d1ac364a {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a31-d1ac364a {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_9f703eb6-e1ee-4823-a348-1bacc85f0f1a-d1ac364a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bda89594-3058-6f55-816b-deb9c936ce01-93ac364e {
    grid-area: 1 / 1 / 2 / 5;
    align-self: start;
  }

  #w-node-bda89594-3058-6f55-816b-deb9c936ce2b-93ac364e {
    grid-area: 2 / 3 / 3 / 7;
  }

  #w-node-bda89594-3058-6f55-816b-deb9c936ce57-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-b534bcac-a029-8c04-5655-c66150ef07cd-93ac364e {
    grid-area: 1 / 1 / 2 / 5;
    align-self: start;
  }

  #w-node-b534bcac-a029-8c04-5655-c66150ef07f7-93ac364e {
    grid-area: 2 / 3 / 3 / 7;
  }

  #w-node-b534bcac-a029-8c04-5655-c66150ef0823-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-_4bbd4998-af68-0849-ec51-0daa57af97ad-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_3b9ccb01-ee8c-baa5-54aa-f65ebc32af46-93ac364e {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_167e257b-ed41-e367-3cdc-f0068bda4fd4-4dac3650 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b59585cf-d9f4-876c-88c2-5c2f98c04b2e-2cac3654 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_8af3b004-aacd-e336-98a8-40008fbcb3e1-2cac3654 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-2cac3654 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-f2cdf1b3-065d-102d-8a60-5c6b346190d4-2cac3654 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: center;
  }

  #w-node-_653f33cf-7d4e-6979-9446-806cc4173aa7-2cac3654 {
    grid-area: 2 / 2 / 3 / 8;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca190b-2cac3654 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: start;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1914-2cac3654 {
    grid-area: 1 / 5 / 2 / 9;
    align-self: start;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1945-2cac3654 {
    grid-area: 2 / 5 / 3 / 9;
    align-self: start;
  }

  #w-node-bdc693aa-93d6-f004-b043-32061db55d6a-caac3657 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-ff0736fe-6738-48b4-5cca-d59cf38384b4-61ac3659, #w-node-_078de49d-f311-e015-247c-76967aff5c23-a6ac365b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5460285c-a7e7-d225-1852-9df6e68d4808-302897a7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5460285c-a7e7-d225-1852-9df6e68d4817-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: center;
  }

  #w-node-_90877e45-1dff-e6a1-8651-2cd4373406f8-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_90877e45-1dff-e6a1-8651-2cd4373406f9-302897a7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_572118a2-08be-d15b-f1a2-437b85288333-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_572118a2-08be-d15b-f1a2-437b85288334-302897a7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cea7-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313ceb1-302897a7 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_378baad3-d61b-9a70-e3a8-efe8ee615d8c-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cebb-302897a7 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cec5-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c1-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: center;
  }

  #w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c9-302897a7 {
    grid-area: 2 / 2 / 3 / 8;
  }

  #w-node-_926f6ca7-473a-2415-f0d6-47f31ccd806b-302897a7 {
    grid-area: 1 / 4 / 2 / 8;
  }

  #w-node-_3622e74b-fa47-8398-ce97-283232478dc6-302897a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee33-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee34-302897a7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-fb097305-c1f8-ab10-aeb5-526e88c5790f-302897a7, #w-node-fb097305-c1f8-ab10-aeb5-526e88c57925-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-aa442fe6, #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-c74432df {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_06b88d5b-af9c-8603-71ee-51038b1c1a3a-f010c968, #w-node-_06b88d5b-af9c-8603-71ee-51038b1c1a3c-f010c968, #w-node-c326a613-7bf9-77c0-a2b2-4b27d9786644-f010c968, #w-node-c326a613-7bf9-77c0-a2b2-4b27d9786646-f010c968, #w-node-_1ea19512-91d5-65a1-1c63-adbfab16d02d-f010c968, #w-node-_1ea19512-91d5-65a1-1c63-adbfab16d02f-f010c968, #w-node-_6fe8f585-e80c-6455-cb2e-b337be827170-f010c968, #w-node-_6fe8f585-e80c-6455-cb2e-b337be827172-f010c968, #w-node-_4849f729-1db2-6b34-7c87-ff4ebddbfdd4-f010c968, #w-node-_4849f729-1db2-6b34-7c87-ff4ebddbfdd6-f010c968, #w-node-_6b5fb8ff-e8ab-1130-58d6-e12fc3d22b4d-f010c968, #w-node-_6b5fb8ff-e8ab-1130-58d6-e12fc3d22b4f-f010c968, #w-node-f12ea81a-0cf2-16a5-7bb6-7fff92f92aac-f010c968, #w-node-f12ea81a-0cf2-16a5-7bb6-7fff92f92aae-f010c968, #w-node-d1c124f6-59f6-3b57-6284-f13d80766a2f-f010c968, #w-node-d1c124f6-59f6-3b57-6284-f13d80766a31-f010c968, #w-node-_645fe9d4-495a-4a8b-a2e6-98fb6f5618b1-f010c968, #w-node-_645fe9d4-495a-4a8b-a2e6-98fb6f5618b3-f010c968, #w-node-_39bc7f3a-6fb5-51cd-5e43-40270db0a0e2-f010c968, #w-node-_39bc7f3a-6fb5-51cd-5e43-40270db0a0e4-f010c968, #w-node-_4c00d782-4c19-81bc-cac8-ce1db0f62595-f010c968, #w-node-_4c00d782-4c19-81bc-cac8-ce1db0f62597-f010c968, #w-node-_2771907f-0c0e-2158-bada-de2404ed607d-f010c968, #w-node-_2771907f-0c0e-2158-bada-de2404ed607f-f010c968, #w-node-dd3c0832-437f-de65-d47d-8b09605f1ba5-f010c968, #w-node-dd3c0832-437f-de65-d47d-8b09605f1ba7-f010c968 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-acb322ce {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-acb322ce {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f336083-acb322ce {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-acb322ce {
    grid-area: 1 / 9 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-acb322ce {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-acb322ce {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-acb322ce {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-acb322ce {
    grid-area: 1 / 7 / 2 / 12;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-acb322ce {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-acb322ce {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-acb322ce {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-acb322ce {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-acb322ce {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-acb322ce {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-acb322ce {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_8cade764-8cc7-ad72-6b51-a87c5a4e6164-5a4e6161 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-b4ad16db {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-b4ad16db {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f336083-b4ad16db {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-b4ad16db {
    grid-area: 1 / 9 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-b4ad16db {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-b4ad16db {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-b4ad16db {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-b4ad16db {
    grid-area: 1 / 7 / 2 / 12;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-b4ad16db {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-b4ad16db {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-b4ad16db {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-b4ad16db {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-b4ad16db {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-b4ad16db {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-b4ad16db {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5dadb04c-e8ca-57ed-d3be-24ab184a9658-81c78ed4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_16c6eb9c-d3b9-d173-ecf9-e0f6119c0be2-81c78ed4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_4bbadde2-c481-d264-7e45-ec3847cc2be6-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-81c78ed4 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-81c78ed4 {
    grid-area: 1 / 9 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-81c78ed4 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-81c78ed4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-81c78ed4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-81c78ed4 {
    grid-area: 1 / 7 / 2 / 12;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-81c78ed4 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-81c78ed4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-81c78ed4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-81c78ed4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-81c78ed4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-81c78ed4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-81c78ed4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a5-b8299ee8 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a6-b8299ee8, #w-node-fcd41eec-144d-2db8-3888-cc09bc4ab13f-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-a9589de9-0a69-df70-3930-65a9e2ad3128-b8299ee8, #w-node-d2172ff8-f1ba-d65f-3404-713dc7c55f03-b8299ee8 {
    grid-area: 1 / 1 / 2 / 7;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678c4-b8299ee8 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a89-b8299ee8 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a8a-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a97-b8299ee8 {
    grid-area: 1 / 7 / 2 / 12;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aab-b8299ee8 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367ada-b8299ee8 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367adb-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aea-b8299ee8 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aeb-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367af6-b8299ee8 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367af7-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b03-b8299ee8 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b04-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b10-b8299ee8 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b11-b8299ee8 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ce-12fe05c4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6cf-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ed-12fe05c4 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e71f-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e726-12fe05c4 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e903-12fe05c4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e904-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e913-12fe05c4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e914-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e91f-12fe05c4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e920-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e92c-12fe05c4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e92d-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e939-12fe05c4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e93a-12fe05c4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f7-c5d365f4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f8-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673614-c5d365f4 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff467363f-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673646-c5d365f4 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ba-c5d365f4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737bb-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ca-c5d365f4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737cb-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d6-c5d365f4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d7-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e3-c5d365f4 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e4-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f0-c5d365f4 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f1-c5d365f4 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f29-c70f35d7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f2a-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f46-c70f35d7 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f71-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f78-c70f35d7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50ec-c70f35d7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50ed-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50fc-c70f35d7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50fd-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5108-c70f35d7 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5109-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5115-c70f35d7 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5116-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5122-c70f35d7 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5123-c70f35d7 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de70-448274de {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de71-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de8d-448274de {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151deb8-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151debf-448274de {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e033-448274de {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e034-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e043-448274de {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e044-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e04f-448274de {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e050-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e05c-448274de {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e05d-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e069-448274de {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e06a-448274de {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd7-08c34853 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd8-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bf4-08c34853 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c1f-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c26-08c34853 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9a-08c34853 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9b-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05daa-08c34853 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dab-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db6-08c34853 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db7-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc3-08c34853 {
    grid-area: 1 / 2 / 2 / 8;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc4-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd0-08c34853 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd1-08c34853 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_9084dc2f-9ebc-37b5-438c-ee97e2b83875-d1822f9d {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_7db279e4-fcac-80b5-19eb-6e1e9026cccf-a7ac3646 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12138-e0ac3648 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-_946fabce-ef78-f078-556b-e91fc2f06166-e0ac3648 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: stretch;
  }

  #w-node-_04869715-47ef-a5d7-5eec-787c92812af6-e0ac3648 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a31-d1ac364a {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-ef310464-4936-67d0-9fed-70cd6d72acff-d1ac364a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4bbd4998-af68-0849-ec51-0daa57af97ad-93ac364e, #w-node-_3b9ccb01-ee8c-baa5-54aa-f65ebc32af46-93ac364e {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-ff3abbc9-d940-8b57-5cc6-7f66e7275f88-93ac364e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b59585cf-d9f4-876c-88c2-5c2f98c04b2e-2cac3654, #w-node-_8af3b004-aacd-e336-98a8-40008fbcb3e1-2cac3654 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca190b-2cac3654 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1914-2cac3654 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: start;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1945-2cac3654 {
    grid-area: 3 / 2 / 4 / 8;
    align-self: start;
  }

  #w-node-bdc693aa-93d6-f004-b043-32061db55d6a-caac3657 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5460285c-a7e7-d225-1852-9df6e68d4817-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: center;
  }

  #w-node-_8c1db7ae-be3d-96c0-d82d-eff05733cfdb-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cea7-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313ceb1-302897a7 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_378baad3-d61b-9a70-e3a8-efe8ee615d8c-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cebb-302897a7 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cec5-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c1-302897a7 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: center;
  }

  #w-node-_926f6ca7-473a-2415-f0d6-47f31ccd806b-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_3622e74b-fa47-8398-ce97-283232478dc6-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: start;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-acb322ce {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-acb322ce {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-acb322ce {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-acb322ce {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-acb322ce {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-acb322ce {
    grid-area: 1 / 1 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-acb322ce {
    grid-area: span 1 / span 13 / span 1 / span 13;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-acb322ce {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-acb322ce {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-acb322ce {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-acb322ce {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-acb322ce {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_8cade764-8cc7-ad72-6b51-a87c5a4e6164-5a4e6161 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-b4ad16db {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-b4ad16db {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-b4ad16db {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-b4ad16db {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-b4ad16db {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-b4ad16db {
    grid-area: 1 / 1 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-b4ad16db {
    grid-area: span 1 / span 13 / span 1 / span 13;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-b4ad16db {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-b4ad16db {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-b4ad16db {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-b4ad16db {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-b4ad16db {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_5dadb04c-e8ca-57ed-d3be-24ab184a9658-81c78ed4 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-81c78ed4 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_16c6eb9c-d3b9-d173-ecf9-e0f6119c0be2-81c78ed4 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_4bbadde2-c481-d264-7e45-ec3847cc2be6-81c78ed4 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-81c78ed4 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-81c78ed4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-81c78ed4 {
    grid-area: 1 / 1 / 2 / 14;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218282-81c78ed4 {
    grid-area: span 1 / span 13 / span 1 / span 13;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-81c78ed4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-81c78ed4 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-81c78ed4 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-81c78ed4 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-81c78ed4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a5-b8299ee8 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a6-b8299ee8, #w-node-fcd41eec-144d-2db8-3888-cc09bc4ab13f-b8299ee8 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-a9589de9-0a69-df70-3930-65a9e2ad3128-b8299ee8, #w-node-d2172ff8-f1ba-d65f-3404-713dc7c55f03-b8299ee8 {
    grid-area: 1 / 1 / 2 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678c4-b8299ee8 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678d8-b8299ee8 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a89-b8299ee8 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a8a-b8299ee8 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a97-b8299ee8 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aab-b8299ee8 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ce-12fe05c4 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6cf-12fe05c4 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ed-12fe05c4 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e701-12fe05c4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e71f-12fe05c4 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f7-c5d365f4 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f8-c5d365f4 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673614-c5d365f4 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673628-c5d365f4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff467363f-c5d365f4 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f29-c70f35d7 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f2a-c70f35d7 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f46-c70f35d7 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f5a-c70f35d7 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f71-c70f35d7 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de70-448274de {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de71-448274de {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de8d-448274de {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151dea1-448274de {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151deb8-448274de {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd7-08c34853 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd8-08c34853 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bf4-08c34853 {
    grid-area: 1 / 1 / 2 / 10;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c08-08c34853 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c1f-08c34853 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9084dc2f-9ebc-37b5-438c-ee97e2b83875-d1822f9d {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_4cccd955-1110-6266-a922-4b5ac4677b9d-d1822f9d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12143-e0ac3648, #w-node-e0f3659f-81c2-9ed3-2ece-19f08ff12138-e0ac3648 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a30-d1ac364a {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_4e24dc12-654a-3a88-c38c-d7eda3bc6a31-d1ac364a {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-bda89594-3058-6f55-816b-deb9c936ce01-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-bda89594-3058-6f55-816b-deb9c936ce2b-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-b534bcac-a029-8c04-5655-c66150ef07cd-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-b534bcac-a029-8c04-5655-c66150ef07f7-93ac364e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_19066cec-f9d4-553f-2edf-ebe1e0072792-4dac3650, #w-node-_167e257b-ed41-e367-3cdc-f0068bda4fd4-4dac3650 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_73bd75e6-ef71-8334-4caf-364f79fc7b5d-4dac3650 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b59585cf-d9f4-876c-88c2-5c2f98c04b2e-2cac3654, #w-node-_8af3b004-aacd-e336-98a8-40008fbcb3e1-2cac3654 {
    grid-column: span 4 / span 4;
  }

  #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-2cac3654 {
    grid-area: span 2 / span 4 / span 2 / span 4;
  }

  #w-node-f2cdf1b3-065d-102d-8a60-5c6b346190d4-2cac3654 {
    grid-area: span 1 / span 7 / span 1 / span 7;
    align-self: center;
  }

  #w-node-_653f33cf-7d4e-6979-9446-806cc4173aa7-2cac3654 {
    grid-area: 2 / 1 / 3 / 8;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca190b-2cac3654 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1914-2cac3654, #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1945-2cac3654 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1946-2cac3654, #w-node-_83795227-f9ed-4353-b81e-cbc3c1ca1956-2cac3654 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bdc693aa-93d6-f004-b043-32061db55d6a-caac3657, #w-node-bdc693aa-93d6-f004-b043-32061db55d0c-caac3657 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5460285c-a7e7-d225-1852-9df6e68d4808-302897a7 {
    grid-area: 2 / 1 / 3 / 9;
    align-self: center;
  }

  #w-node-_5460285c-a7e7-d225-1852-9df6e68d4817-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_8c1db7ae-be3d-96c0-d82d-eff05733cfdb-302897a7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_90877e45-1dff-e6a1-8651-2cd4373406f8-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_90877e45-1dff-e6a1-8651-2cd4373406f9-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_572118a2-08be-d15b-f1a2-437b85288333-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_572118a2-08be-d15b-f1a2-437b85288334-302897a7 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cea7-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313ceb1-302897a7, #w-node-_378baad3-d61b-9a70-e3a8-efe8ee615d8c-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cebb-302897a7, #w-node-_372ad2b2-3371-0cc1-0fa5-e8e73313cec5-302897a7 {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c1-302897a7 {
    grid-area: span 1 / span 7 / span 1 / span 7;
    align-self: center;
  }

  #w-node-a3a9095b-03ac-53b1-97c4-36a15f7934c9-302897a7 {
    grid-area: 2 / 1 / 3 / 8;
  }

  #w-node-_926f6ca7-473a-2415-f0d6-47f31ccd806b-302897a7, #w-node-_3622e74b-fa47-8398-ce97-283232478dc6-302897a7 {
    grid-column: span 4 / span 4;
  }

  #w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee33-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_6ea25ce1-4b75-5e61-b9f7-96949ee2ee34-302897a7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-aa442fe6, #w-node-_77ae6bed-d3c5-7d7e-39c0-4f88780101b5-c74432df {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_06b88d5b-af9c-8603-71ee-51038b1c1a3c-f010c968, #w-node-c326a613-7bf9-77c0-a2b2-4b27d9786646-f010c968, #w-node-_1ea19512-91d5-65a1-1c63-adbfab16d02f-f010c968, #w-node-_6fe8f585-e80c-6455-cb2e-b337be827172-f010c968, #w-node-_4849f729-1db2-6b34-7c87-ff4ebddbfdd6-f010c968, #w-node-_6b5fb8ff-e8ab-1130-58d6-e12fc3d22b4f-f010c968, #w-node-f12ea81a-0cf2-16a5-7bb6-7fff92f92aae-f010c968, #w-node-d1c124f6-59f6-3b57-6284-f13d80766a31-f010c968, #w-node-_645fe9d4-495a-4a8b-a2e6-98fb6f5618b3-f010c968, #w-node-_39bc7f3a-6fb5-51cd-5e43-40270db0a0e4-f010c968, #w-node-_4c00d782-4c19-81bc-cac8-ce1db0f62597-f010c968, #w-node-_2771907f-0c0e-2158-bada-de2404ed607f-f010c968, #w-node-dd3c0832-437f-de65-d47d-8b09605f1ba7-f010c968 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-acb322ce {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-acb322ce {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-acb322ce {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-acb322ce {
    grid-area: 1 / 1 / 2 / 5;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-acb322ce, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-acb322ce {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-acb322ce {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-acb322ce {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-acb322ce {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-acb322ce {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-acb322ce {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-acb322ce {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_8cade764-8cc7-ad72-6b51-a87c5a4e6164-5a4e6161 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f79-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-b4ad16db {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-b4ad16db {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bb25b544-68e4-c4e2-c70f-b5188f33607c-b4ad16db {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-b4ad16db {
    grid-area: 1 / 1 / 2 / 5;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-b4ad16db, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-b4ad16db {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-b4ad16db {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-b4ad16db {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-b4ad16db {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-b4ad16db {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-b4ad16db {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-b4ad16db {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_5dadb04c-e8ca-57ed-d3be-24ab184a9658-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_91a818a4-c8f0-7caf-05e6-254725793f7a-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_16c6eb9c-d3b9-d173-ecf9-e0f6119c0be2-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_4bbadde2-c481-d264-7e45-ec3847cc2be6-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_34715f93-353f-cf89-7639-74f8c3a09a3c-81c78ed4 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-dc89181c-0709-f820-fbf2-dd108134c31c-81c78ed4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218279-81c78ed4 {
    grid-area: 1 / 1 / 2 / 5;
    align-self: start;
  }

  #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218283-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e21828a-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218292-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e218299-81c78ed4, #w-node-af14ee71-32b6-3aa9-f4d6-c2141e2182a0-81c78ed4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b5-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a3de56c-567d-bd02-0f3b-075e458607b6-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e000-81c78ed4 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_5cdccadc-244d-7b21-00b4-75473349e014-81c78ed4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec52-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-b892f092-f76f-3516-12c1-699dd6b7ec53-81c78ed4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa6-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2ee3ddb6-fe1f-6875-0f9d-86258a50baa7-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_57a2f3df-b699-21de-5271-7614f91f1333-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5a2b6d42-8469-f41c-6f8e-7afb4e1a6ee4-81c78ed4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896895-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_2520e862-6d5a-361d-1109-de1447896896-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafb-81c78ed4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-d054877a-b585-7045-3b98-e0c335a8eafc-81c78ed4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a5-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678a6-b8299ee8, #w-node-fcd41eec-144d-2db8-3888-cc09bc4ab13f-b8299ee8, #w-node-a9589de9-0a69-df70-3930-65a9e2ad3128-b8299ee8, #w-node-d2172ff8-f1ba-d65f-3404-713dc7c55f03-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678c4-b8299ee8 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced933678d8-b8299ee8 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a89-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a8a-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367a97-b8299ee8 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aab-b8299ee8 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367ada-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367adb-b8299ee8 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aea-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367aeb-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367af6-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367af7-b8299ee8 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b03-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b04-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b10-b8299ee8 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_5c1316ea-f550-e11b-dc58-7ced93367b11-b8299ee8 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ce-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6cf-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e6ed-12fe05c4 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e701-12fe05c4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e71f-12fe05c4 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e903-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e904-12fe05c4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e913-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e914-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e91f-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e920-12fe05c4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e92c-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e92d-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e939-12fe05c4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_76bb7624-8e1f-029a-471e-224d80f1e93a-12fe05c4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f7-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46735f8-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673614-c5d365f4 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff4673628-c5d365f4 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff467363f-c5d365f4 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ba-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737bb-c5d365f4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737ca-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737cb-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d6-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737d7-c5d365f4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e3-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737e4-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f0-c5d365f4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_38992780-9e81-a7eb-dd2e-5dbff46737f1-c5d365f4 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f29-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f2a-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f46-c70f35d7 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f5a-c70f35d7 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a4f71-c70f35d7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50ec-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50ed-c70f35d7 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50fc-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a50fd-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5108-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5109-c70f35d7 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5115-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5116-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5122-c70f35d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_19fb4326-a525-f8cc-422e-5a55292a5123-c70f35d7 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de70-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de71-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151de8d-448274de {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151dea1-448274de {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151deb8-448274de {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e033-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e034-448274de {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e043-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e044-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e04f-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e050-448274de {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e05c-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e05d-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e069-448274de {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-_99549f00-c038-6d9f-0d2e-0e618151e06a-448274de {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd7-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bd8-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05bf4-08c34853 {
    grid-area: span 1 / span 9 / span 1 / span 9;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c08-08c34853 {
    grid-area: 2 / 1 / 3 / 10;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05c1f-08c34853 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9a-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05d9b-08c34853 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05daa-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dab-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db6-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05db7-08c34853 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc3-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dc4-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd0-08c34853 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: center;
  }

  #w-node-bc5d807a-04fe-cefc-ac97-e0a7f4e05dd1-08c34853 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: center;
  }
}


