/*
    Echo: Defaults
*/
/*
    Echo: Variables
*/
/* Echo: Reset */
/*
    Prevents FOUT (Flash of unstyled text) when using the Web Font Loader
 */
.wf-loading {
  display: none; }

/*
    The code below is based on Bootstrap's Reboot SCSS file
    See:
        https://getbootstrap.com/docs/4.2/content/reboot/#headings-and-paragraphs
        https://github.com/twbs/bootstrap/blob/59d040fcbb2766240c6fc38b330f495b840ce75d/scss/_variables.scss

    We've mixed in our own variables and the default values from _variables.scss in Bootstrap
 */
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; }

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  line-height: 1.5;
  text-align: left;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

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

p {
  margin-top: 0;
  margin-bottom: 0; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #f58f2d;
  text-decoration: underline;
  background-color: transparent; }
  a:hover {
    color: #f7a95e; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

select {
  word-wrap: normal; }

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

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer; }

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

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

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

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

/* Echo: Helpers */
body {
  height: 100vh;
  display: flex;
  flex-direction: column; }

/*
    A block can have the underneath or the below class.
    The default is to have the below class.
    If the block creator wants to she can enable
    "underneath-header" and we will use that class instead.
    This is to make the block appear underneath the fixed menu.
 */
.echo-header-1 + .sf-blocks > .sf-row:first-of-type > .sf-block-below-header,
.echo-header-2 + .sf-blocks > .sf-row:first-of-type > .sf-block-below-header {
  margin-top: 100px; }

.sf-blocks > .sf-state-highlight:first-child {
  margin-top: 100px; }

.echo-canvas {
  margin-top: 100px; }

.echo-canvas + .sf-blocks .beam-add-block {
  top: -25px; }

.sf-live-edit .sf-live-edit--overflow-visible {
  overflow: visible !important; }

.sf-live-edit .sf-live-edit--transform-none {
  transform: none !important; }

/*
    Footer

    Makes sure the footer is at the bottom of the browser window
 */
.sf-blocks {
  position: relative; }

/*
    Container
 */
.echo-container-xs {
  width: 100%;
  margin: 0 auto;
  max-width: calc(430px + 25px + 25px);
  padding: 0 25px; }

.echo-container-sm {
  width: 100%;
  margin: 0 auto;
  max-width: calc(730px + 25px + 25px);
  padding: 0 25px; }

.echo-container-md {
  width: 100%;
  margin: 0 auto;
  max-width: calc(1170px + 25px + 25px);
  padding: 0 25px; }

.echo-container-lg {
  width: 100%;
  margin: 0 auto;
  max-width: calc(1440px + 25px + 25px);
  padding: 0 25px; }

.echo-container-xl {
  width: 100%;
  margin: 0 auto;
  max-width: calc(1170px + 25px + 25px);
  padding: 0 25px; }

/*
    Breakpoint helper, using the same as Bootstrap
 */
/*
    Default styles for everything created inside a <sf-text>

    Updates below should also go into text-1.xml
 */
.echo-embed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.echo-embed-video iframe, .echo-embed-video object, .echo-embed-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*
    AOS custom animation
 */
[data-aos="sf-fade"] {
  transform: translate3d(0, 25px, 0);
  opacity: 0;
  transition-property: transform, opacity; }
  [data-aos="sf-fade"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1; }

/*
    Live Editor loaders
 */
.echo-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 50px auto; }

.echo-double-bounce1, .echo-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF6F27;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out; }

.echo-double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

@-webkit-keyframes echo-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes echo-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

/*
    Echo: Header
*/
.echo-header-1-hamburger-icon,
.echo-header-2-hamburger-icon {
  display: inline-block;
  border-radius: 100px;
  padding: 10px;
  transition: background 300ms ease-out; }

.echo-header-1-hamburger-icon svg {
  color: black; }

.echo-header-1-hamburger-icon:hover, .echo-header-1-hamburger-icon:focus {
  color: #b1b1b1;
  background: rgba(255, 255, 255, 0.85); }

.echo-header-1-hamburger-icon:active {
  color: #b1b1b1;
  background: rgba(255, 255, 255, 0.85); }

.echo-header-2-hamburger-icon svg {
  color: #000; }

.echo-header-2-hamburger-icon:hover, .echo-header-2-hamburger-icon:focus {
  background: #F5F5F5; }

.echo-header-2-hamburger-icon:active {
  background: #E1E1E1; }

.echo-header-1-hamburger-close,
.echo-header-2-hamburger-close {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 15px;
  border-radius: 100px;
  padding: 10px 15px;
  transition: background 300ms ease-out; }
  .echo-header-1-hamburger-close svg,
  .echo-header-2-hamburger-close svg {
    color: black; }
  .echo-header-1-hamburger-close:hover, .echo-header-1-hamburger-close:focus,
  .echo-header-2-hamburger-close:hover,
  .echo-header-2-hamburger-close:focus {
    color: #b1b1b1;
    background: rgba(255, 255, 255, 0.85); }
  .echo-header-1-hamburger-close:active,
  .echo-header-2-hamburger-close:active {
    color: #b1b1b1;
    background: rgba(255, 255, 255, 0.85); }

.echo-header-1-hamburger-unfolded,
.echo-header-2-hamburger-unfolded {
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  width: 360px;
  max-width: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 75px;
  z-index: 501;
  transform: translateX(360px);
  transition: all 200ms ease-in-out;
  /* Sub items */ }
  .echo-header-1-hamburger-unfolded.echo-header-1-hamburger-unfolded--visible, .echo-header-1-hamburger-unfolded.echo-header-2-hamburger-unfolded--visible,
  .echo-header-2-hamburger-unfolded.echo-header-1-hamburger-unfolded--visible,
  .echo-header-2-hamburger-unfolded.echo-header-2-hamburger-unfolded--visible {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
    transform: translateX(0); }
  .echo-header-1-hamburger-unfolded ul,
  .echo-header-2-hamburger-unfolded ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items,
  .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items,
  .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items,
  .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items {
    margin: -12px 0 0 0;
    /* Active state */ }
    .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items a,
    .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items a,
    .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items a,
    .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items a {
      display: block;
      padding: 12px 0 12px;
      color: black;
      font-size: 15px;
      font-family: Poppins;
      font-weight: 500;
      line-height: 1.7em;
      letter-spacing: 0.045em;
      text-decoration: none; }
      .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items a:hover,
      .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items a:hover,
      .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items a:hover,
      .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items a:hover {
        color: #b1b1b1;
        text-decoration: none; }
    .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items .echo-header-1-navigation-active > a,
    .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items .echo-header-1-navigation-active > a,
    .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items .echo-header-1-navigation-active > a,
    .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items .echo-header-1-navigation-active > a {
      color: #f58f2d;
      border-color: #b1b1b1; }
      .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items .echo-header-1-navigation-active > a:hover,
      .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items .echo-header-1-navigation-active > a:hover,
      .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items .echo-header-1-navigation-active > a:hover,
      .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items .echo-header-1-navigation-active > a:hover {
        color: #b1b1b1;
        border-color: #b1b1b1; }
  .echo-header-1-hamburger-unfolded .echo-header-1-hamburger-items li > ul,
  .echo-header-1-hamburger-unfolded .echo-header-2-hamburger-items li > ul,
  .echo-header-2-hamburger-unfolded .echo-header-1-hamburger-items li > ul,
  .echo-header-2-hamburger-unfolded .echo-header-2-hamburger-items li > ul {
    margin-left: 19px; }

/* Prevent scrolling the main body on small devices when the menu is open */
.echo-header-1-hamburger-unfolded,
.echo-header-2-hamburger-unfolded {
  overflow: scroll;
  -webkit-overflow-scrolling: touch; }

@media only screen and (max-width: 450px) {
  .document-echo-header-1-hamburger-unfolded--visible,
  .document-echo-header-2-hamburger-unfolded--visible {
    height: 100%;
    overflow: hidden; } }

/*
    Echo: Header 1
*/
.echo-header-1-hamburger-navigation {
  display: none; }

.echo-header-1-navigation {
  display: flex; }

@media (max-width: 991.98px) {
  .echo-header-1-hamburger-navigation {
    display: block; }
  .echo-header-1-navigation {
    display: none; } }

.echo-header-1 {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  /* Dropdown */ }
  .echo-header-1 .echo-header-1-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
    height: 100px; }
    @media (max-width: 566.98px) {
      .echo-header-1 .echo-header-1-flex {
        padding: 0 25px; } }
  @media (max-width: 566.98px) {
    .echo-header-1 .echo-header-1-logo {
      width: 75%; }
      .echo-header-1 .echo-header-1-logo img {
        max-width: 100%; } }
  .echo-header-1 .echo-header-1-navigation {
    height: 100%;
    align-items: center;
    /* Active state */ }
    .echo-header-1 .echo-header-1-navigation ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      height: 100%;
      align-items: center; }
    .echo-header-1 .echo-header-1-navigation li {
      height: 100%;
      display: flex;
      position: relative; }
    .echo-header-1 .echo-header-1-navigation a {
      font-size: 15px;
      font-family: Poppins;
      font-weight: 500;
      line-height: 1.7em;
      letter-spacing: 0.045em;
      display: flex;
      align-items: center;
      padding: 0 10px 0 10px;
      margin: 0 23px 0 23px;
      text-decoration: none;
      color: black;
      border-bottom: 3px solid transparent;
      transition: color .2s ease-in-out, border-color .2s ease-in-out; }
      .echo-header-1 .echo-header-1-navigation a:hover {
        color: #b1b1b1;
        border-color: #b1b1b1; }
    .echo-header-1 .echo-header-1-navigation .echo-header-1-navigation-active-root > a,
    .echo-header-1 .echo-header-1-navigation .echo-header-1-navigation-active > a {
      color: #f58f2d;
      border-color: #b1b1b1; }
      .echo-header-1 .echo-header-1-navigation .echo-header-1-navigation-active-root > a:hover,
      .echo-header-1 .echo-header-1-navigation .echo-header-1-navigation-active > a:hover {
        color: #b1b1b1;
        border-color: #b1b1b1; }
  .echo-header-1 .echo-header-1-navigation li:hover > ul {
    visibility: visible;
    opacity: 1; }
  .echo-header-1 .echo-header-1-navigation li > ul {
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    max-width: 100vw;
    position: absolute;
    z-index: 1000;
    display: block;
    min-width: 250px;
    padding: 15px 0;
    margin: 0 0;
    border-top: 0;
    background: rgba(255, 255, 255, 0.85);
    height: auto;
    border-radius: 0 0 5px 5px; }
    .echo-header-1 .echo-header-1-navigation li > ul a {
      padding: 15px 35px;
      margin: 0;
      border: 0;
      width: 100%; }
    .echo-header-1 .echo-header-1-navigation li > ul li {
      height: auto; }

/*
    Echo: Header 2
*/
.echo-header-2 {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.4); }
  .echo-header-2 .echo-header-2-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
    height: 100px; }
    @media (max-width: 566.98px) {
      .echo-header-2 .echo-header-2-flex {
        padding: 0 25px; } }
  @media (max-width: 566.98px) {
    .echo-header-2 .echo-header-2-logo {
      width: 50%; }
      .echo-header-2 .echo-header-2-logo img {
        max-width: 100%; } }

/*
    Echo: Footer
*/
/*
    Echo: Footer 1
*/
.echo-footer-1 {
  background: white;
  padding: 60px 0 120px 0;
  position: relative;
  margin-top: auto; }

.echo-footer-1-text {
  text-align: center;
  color: #a3a6b0;
  font-size: 15px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 2.5em;
  letter-spacing: 0.045em; }
  .echo-footer-1-text p {
    padding-left: 25px;
    padding-right: 25px; }
  .echo-footer-1-text ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0; }
  .echo-footer-1-text li {
    list-style: none;
    position: relative;
    margin-right: 50px; }
    .echo-footer-1-text li:after {
      position: absolute;
      content: ' ';
      border-right: 1px solid #a3a6b0;
      height: 45%;
      margin-left: 25px;
      margin-top: 11px; }
    .echo-footer-1-text li:last-child {
      margin-right: 0; }
      .echo-footer-1-text li:last-child:after {
        display: none; }
  .echo-footer-1-text a {
    color: #a3a6b0;
    text-decoration: none;
    border-bottom: 2px solid #f58f2d; }

.echo-footer-1-power {
  position: absolute;
  left: 30px;
  bottom: 30px; }

/*
    Echo: Footer 2
*/
.echo-footer-2 {
  background: white;
  padding: 60px 0 100px 0;
  position: relative;
  margin-top: auto; }

.echo-footer-2-flex {
  display: flex;
  width: 100%;
  flex-wrap: wrap; }
  .echo-footer-2-flex > .echo-footer-2-column:not(:first-child) .echo-footer-2-text {
    margin-left: 32px; }
  @media (max-width: 1199.98px) {
    .echo-footer-2-flex > .echo-footer-2-column .echo-footer-2-text {
      margin-left: 32px !important;
      margin-right: 32px; } }
  @media (max-width: 566.98px) {
    .echo-footer-2-flex > .echo-footer-2-column .echo-footer-2-text {
      margin-left: 0 !important;
      margin-right: 0; } }

.echo-footer-2-column {
  width: 25%; }
  @media (max-width: 1199.98px) {
    .echo-footer-2-column {
      width: 50%;
      margin-bottom: 32px; } }
  @media (max-width: 566.98px) {
    .echo-footer-2-column {
      width: 100%;
      margin-bottom: 32px;
      text-align: center; } }

.echo-footer-2-text {
  color: #a3a6b0;
  font-size: 15px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 2.5em;
  letter-spacing: 0.045em; }
  .echo-footer-2-text ul {
    margin: 0;
    padding: 0; }
  .echo-footer-2-text li {
    list-style: none;
    position: relative; }
  .echo-footer-2-text a {
    color: #a3a6b0;
    text-decoration: none; }
    .echo-footer-2-text a:hover {
      text-decoration: underline; }

/*
    Echo: Footer 1 & 2 Social
*/
.echo-footer-1-social {
  margin: 0 0 30px 0; }
  .echo-footer-1-social ul {
    justify-content: center; }
  .echo-footer-1-social li {
    margin: 0 20px; }

.echo-footer-2-social {
  margin: 30px 0 20px 0; }
  .echo-footer-2-social ul {
    justify-content: left; }
    @media (max-width: 566.98px) {
      .echo-footer-2-social ul {
        justify-content: center; } }
  .echo-footer-2-social li {
    margin-right: 20px; }

.echo-footer-1-social,
.echo-footer-2-social {
  color: #a3a6b0;
  font-size: 15px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 2.5em;
  letter-spacing: 0.045em; }
  .echo-footer-1-social ul,
  .echo-footer-2-social ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none; }
  .echo-footer-1-social svg,
  .echo-footer-2-social svg {
    display: block;
    fill: currentColor;
    color: #a3a6b0; }
  .echo-footer-1-social a,
  .echo-footer-2-social a {
    border: 0;
    display: block;
    width: 16px;
    height: 16px; }
  .echo-footer-1-social li,
  .echo-footer-2-social li {
    height: 16px;
    width: 16px;
    text-align: center; }

.echo-form-group {
  margin-bottom: 20px;
  text-align: left; }
  .echo-form-group.echo-form-group-error input,
  .echo-form-group.echo-form-group-error textarea,
  .echo-form-group.echo-form-group-error select {
    border-color: #F1546B !important;
    background-color: #fbd5db !important; }
  .echo-form-group.echo-form-group-error .echo-checkbox > span::before {
    box-shadow: 0 0 0 3px #F1546B; }
  .echo-form-group.echo-form-group-error .echo-radio [type="radio"]:checked + label:before,
  .echo-form-group.echo-form-group-error .echo-radio [type="radio"]:not(:checked) + label:before {
    box-shadow: 0 0 0 3px #F1546B; }
  .echo-form-group.echo-form-group-columns {
    display: flex;
    margin: -10px 0 20px -10px; }
    .echo-form-group.echo-form-group-columns > div {
      flex: 1;
      padding: 10px 0 0 10px; }
    @media only screen and (max-width: 567px) {
      .echo-form-group.echo-form-group-columns {
        display: block; } }
  .echo-form-group label {
    margin: 0;
    text-align: left;
    display: block; }
  .echo-form-group input[type="text"],
  .echo-form-group input[type="email"],
  .echo-form-group textarea {
    width: 100%;
    border-radius: 4px;
    padding: 8px; }
    .echo-form-group input[type="text"]:active, .echo-form-group input[type="text"]:focus,
    .echo-form-group input[type="email"]:active,
    .echo-form-group input[type="email"]:focus,
    .echo-form-group textarea:active,
    .echo-form-group textarea:focus {
      outline: 0; }
  .echo-form-group input[type="file"] {
    font-size: 12px; }
  .echo-form-group select {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid red;
    padding: 8px 10px;
    border-radius: 4px;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1.2em + 2px), calc(100% - 15px) calc(1.2em + 2px), calc(100% - 2.5em) 0.8em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat; }
    .echo-form-group select:focus {
      outline: none;
      background-color: #fff;
      border-color: red; }

.echo-form-group-divider {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  padding-bottom: 10px;
  padding-top: 15px; }

.echo-form-group-uploader {
  border-width: 1px;
  border-style: dashed;
  position: relative;
  text-align: center;
  transition: all 0.2s ease-in-out; }
  .echo-form-group-uploader.echo-form-group-uploader--hover {
    cursor: pointer; }
  .echo-form-group-uploader .echo-form-group-uploader-icon {
    text-align: center;
    margin: 30px 0 0 0; }
    .echo-form-group-uploader .echo-form-group-uploader-icon svg {
      fill: currentColor; }
  .echo-form-group-uploader .echo-form-group-uploader-current {
    display: none;
    margin: 30px 0 0 0;
    word-break: break-all;
    padding: 0 20px; }
  .echo-form-group-uploader .echo-form-group-uploader-button {
    text-align: center;
    display: inline-block;
    background-color: #E6E1DE;
    border-radius: 4px;
    padding: 3px 10px;
    margin: 10px 0 30px 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
    .echo-form-group-uploader .echo-form-group-uploader-button .echo-form-group-uploader-button-label-change {
      display: none; }
  .echo-form-group-uploader .echo-form-group-uploader-progress {
    position: absolute;
    bottom: -1px;
    left: -1px;
    height: 6px;
    border-radius: 0 3px 3px 0;
    transition: width 0.2s ease-in-out; }
  .echo-form-group-uploader input[type="file"] {
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    font-size: 0;
    z-index: 2;
    opacity: 0;
    width: 100%; }

.echo-form-button {
  text-align: center;
  margin-top: 45px; }
  .echo-form-button button[type="submit"] {
    border-radius: 100px;
    min-width: 180px;
    padding: 15px 40px;
    border: 0; }

.echo-form-button-loader {
  min-width: 160px; }

.echo-form-button-spinner,
.echo-form-button-spinner:before,
.echo-form-button-spinner:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out; }

.echo-form-button-spinner {
  position: relative;
  margin: -18px auto 0 auto;
  color: white;
  font-size: 5px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

.echo-form-button-spinner:before,
.echo-form-button-spinner:after {
  content: '';
  position: absolute;
  top: 0; }

.echo-form-button-spinner:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.echo-form-button-spinner:after {
  left: 3.5em; }

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em; }
  40% {
    box-shadow: 0 2.5em 0 0; } }

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em; }
  40% {
    box-shadow: 0 2.5em 0 0; } }

.echo-form-group-error-text {
  text-align: left;
  color: #F1546B !important;
  margin-bottom: 10px; }

.echo-form-hp {
  display: none; }

.echo-checkbox + .echo-checkbox {
  margin-top: 10px; }

.echo-checkbox {
  z-index: 0;
  position: relative;
  display: inline-block;
  line-height: 1.95em; }
  .echo-checkbox a {
    text-decoration: underline; }

/* Input */
.echo-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s; }

/* Span */
.echo-checkbox > span {
  display: inline-block;
  cursor: pointer;
  text-indent: -30px;
  margin-left: 30px;
  line-height: 25px; }

/* Box */
.echo-checkbox > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 3px 8px 3px 1px;
  border: solid 1px;
  /* Safari */
  border-color: green;
  border-radius: 5px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s; }

/* Checkmark */
.echo-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 1px;
  width: 11px;
  height: 6px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg); }

/* Checked, Indeterminate */
.echo-checkbox > input:checked + span::after,
.echo-checkbox > input:indeterminate + span::after {
  border-color: orange; }

.echo-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px); }

/* Hover, Focus */
.echo-checkbox:hover > input {
  opacity: 0.04;
  border: 0; }

.echo-checkbox > input:focus {
  opacity: 0.12;
  border: 0; }

.echo-checkbox:hover > input:focus {
  opacity: 0.16;
  border: 0; }

/* Active */
.echo-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s; }

.echo-checkbox > input:active + span::before {
  border-color: #FF6A00; }

.echo-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.6); }

/* Disabled */
.echo-checkbox > input:disabled {
  opacity: 0; }

.echo-checkbox > input:disabled + span {
  color: rgba(0, 0, 0, 0.38);
  cursor: initial; }

.echo-checkbox > input:disabled + span::before {
  border-color: currentColor; }

.echo-checkbox > input:checked:disabled + span::before,
.echo-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor; }

.echo-checkbox-prepend {
  display: block;
  padding-left: 32px;
  margin-top: 3px; }

.echo-form-group-radio > label {
  margin-bottom: 5px; }

.echo-radio {
  text-align: left;
  margin-bottom: 5px; }
  .echo-radio:last-child {
    margin-bottom: 0; }
  .echo-radio [type="radio"]:checked,
  .echo-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px; }
  .echo-radio [type="radio"]:checked + label,
  .echo-radio [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666; }
  .echo-radio [type="radio"]:checked + label:before,
  .echo-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%; }
  .echo-radio [type="radio"]:checked + label:after,
  .echo-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .echo-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  .echo-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }

/*
    Echo: Modal 2.0 (blurry overlay with more space)
*/
.echo-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  padding: 2vw;
  display: flex;
  justify-content: center;
  align-items: center; }

.echo-modal {
  width: 90%;
  max-width: 1200px; }

.echo-modal-content {
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  color: #3b3d44;
  text-align: center;
  margin: 0 auto; }
  .echo-modal-content.echo-modal-content--shadow {
    padding: 4vw;
    background: #fff;
    box-shadow: 0 0 #000, 0 0 #000, 0px -2px 6px rgba(251, 217, 202, 0.25), 0px 2px 6px rgba(251, 217, 202, 0.25); }

.echo-modal-footer {
  text-align: center;
  padding-top: 2vw; }

.echo-modal-button {
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  color: #3b3d44;
  color: #3B3D44;
  border: 1px solid #3B3D44;
  background-color: transparent;
  padding: 1vw 4vw;
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  text-decoration: none; }
  .echo-modal-button:hover {
    color: #fff;
    background-color: #3B3D44; }

/*
    Echo: Modal 1.0 (small window on dark overlay)
*/
/*
    Echo: Blog
*/
.echo-blog-1 {
  padding: 60px 0 0 0; }
  .echo-blog-1.echo-blog-1-overview {
    background-color: #F8F8F7;
    min-height: 100vh; }
  .echo-blog-1 .echo-blog-1__main-title {
    font-size: 28px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    margin-bottom: 60px;
    text-align: center; }
  .echo-blog-1 .echo-blog-1__posts {
    display: flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -15px; }
    .echo-blog-1 .echo-blog-1__posts.echo-blog-1__posts--with-images {
      margin-top: 100px; }
  .echo-blog-1 .echo-blog-1__post-wrapper {
    width: calc(100% / 3);
    padding: 15px 0 75px 15px; }
    @media (max-width: 767.98px) {
      .echo-blog-1 .echo-blog-1__post-wrapper {
        width: 100%; } }
  .echo-blog-1 .echo-blog-1__post {
    display: block;
    background: #fff;
    padding: 40px 40px;
    position: relative;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    text-decoration: none;
    transition: all ease-in-out 200ms;
    max-height: 400px;
    max-width: 380px;
    margin: 0 auto; }
    .echo-blog-1 .echo-blog-1__post:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  .echo-blog-1 .echo-blog-1__card-image {
    border-radius: 100%;
    width: 120px;
    height: 120px;
    display: block;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-position: center center; }
  .echo-blog-1 .echo-blog-1__card-title {
    font-size: 28px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    display: block;
    margin-bottom: 30px; }
    @media (max-width: 1199.98px) {
      .echo-blog-1 .echo-blog-1__card-title {
        font-size: 16.8px; } }
    @media (max-width: 767.98px) {
      .echo-blog-1 .echo-blog-1__card-title {
        font-size: 28px; } }
  .echo-blog-1 .echo-blog-1__post--with-image {
    padding: 25px 40px; }
    @media (max-width: 1199.98px) {
      .echo-blog-1 .echo-blog-1__post--with-image {
        padding: 15px 30px; } }
    .echo-blog-1 .echo-blog-1__post--with-image .echo-blog-1__card-title {
      margin-top: 60px; }
  .echo-blog-1 .echo-blog-1__card-meta {
    display: block;
    position: absolute;
    bottom: 25px;
    left: 40px; }
  .echo-blog-1 .echo-blog-1__card-meta-row {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167;
    display: block; }

.echo-blog-1-post {
  padding: 60px 0 0 0; }
  .echo-blog-1-post .echo-blog-1-post__author {
    display: flex;
    align-items: center;
    margin-bottom: 40px; }
  .echo-blog-1-post .echo-blog-1-post__author-image img {
    border-radius: 100%;
    margin-right: 20px; }
  .echo-blog-1-post .echo-blog-1-post__author-name span {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167;
    display: block; }
  .echo-blog-1-post h1 {
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
    @media (max-width: 767.98px) {
      .echo-blog-1-post h1 {
        font-size: 24px; } }
  .echo-blog-1-post .echo-blog-1-post__main-image__wrapper {
    text-align: center; }
  .echo-blog-1-post .echo-blog-1-post__main-image {
    max-width: 100%;
    margin: 60px auto 0 auto; }

.echo-blog-2.echo-blog-2-overview {
  background-color: #F8F8F7;
  min-height: 100vh; }

.echo-blog-2 .echo-blog-2__main-title {
  margin-bottom: 60px;
  padding-top: 60px; }
  .echo-blog-2 .echo-blog-2__main-title h1 {
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .echo-blog-2 .echo-blog-2__main-title h2 {
    font-size: 28px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .echo-blog-2 .echo-blog-2__main-title h3 {
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .echo-blog-2 .echo-blog-2__main-title h4 {
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .echo-blog-2 .echo-blog-2__main-title h5 {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167; }
  .echo-blog-2 .echo-blog-2__main-title p {
    font-size: 14px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.1em;
    color: #3b3d44; }
  @media (max-width: 767.98px) {
    .echo-blog-2 .echo-blog-2__main-title {
      margin-bottom: 30px;
      padding-top: 30px; } }

.echo-blog-2 .echo-blog-2__posts {
  display: flex;
  flex-wrap: wrap;
  margin: -15px 0 0 -15px;
  padding-bottom: 60px; }

.echo-blog-2 .echo-blog-2__post-wrapper {
  width: calc(100% / 3);
  padding: 15px 0 0 15px; }
  @media (max-width: 767.98px) {
    .echo-blog-2 .echo-blog-2__post-wrapper {
      width: 100%; } }

.echo-blog-2 .echo-blog-2__post {
  display: block;
  background: #fff;
  padding: 25px 25px;
  position: relative;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-decoration: none;
  transition: all ease-in-out 200ms;
  max-height: 500px;
  max-width: 380px;
  margin: 0 auto;
  min-height: 250px; }
  .echo-blog-2 .echo-blog-2__post:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  .echo-blog-2 .echo-blog-2__post.echo-blog-2__post--with-image {
    min-height: 500px; }

.echo-blog-2 .echo-blog-2__card-image {
  height: 225px;
  display: block;
  margin: -25px -25px 25px -25px;
  background-size: cover;
  background-position: center center; }

.echo-blog-2 .echo-blog-2__card-title {
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em;
  color: #3b3d44;
  display: block;
  margin-bottom: 30px; }
  @media (max-width: 1199.98px) {
    .echo-blog-2 .echo-blog-2__card-title {
      font-size: 12px; } }
  @media (max-width: 767.98px) {
    .echo-blog-2 .echo-blog-2__card-title {
      font-size: 20px; } }

.echo-blog-2 .echo-blog-2__card-meta {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 25px; }

.echo-blog-2 .echo-blog-2__card-meta-row {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em;
  color: #626167;
  display: block; }

.echo-blog-2-post .echo-blog-2-post__author {
  display: flex;
  align-items: center; }

.echo-blog-2-post .echo-blog-2-post__author-image img {
  border-radius: 100%;
  margin-right: 20px; }

.echo-blog-2-post .echo-blog-2-post__author-name span {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em;
  color: #626167;
  display: block; }

.echo-blog-2-post h1 {
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  color: #3b3d44;
  margin-bottom: 20px; }
  @media (max-width: 767.98px) {
    .echo-blog-2-post h1 {
      font-size: 24px; } }

.echo-blog-2-post .echo-blog-2-post__main-image {
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 60px;
  height: 65vh; }
  @media (max-width: 991.98px) {
    .echo-blog-2-post .echo-blog-2-post__main-image {
      height: 50vh; } }
  @media (max-width: 767.98px) {
    .echo-blog-2-post .echo-blog-2-post__main-image {
      margin-bottom: 30px; } }

/* Blog pagination buttons */
/* blog template (overview page) */
.echo-blog-3-current-tag {
  text-align: center; }
  .echo-blog-3-current-tag .echo-blog-3-current-tag-title {
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    padding: 0;
    margin: 60px 0; }

.echo-blog-3.echo-blog-3-overview {
  padding-bottom: 200px; }
  .echo-blog-3.echo-blog-3-overview .blog-3-grid {
    margin-top: 60px; }
  .echo-blog-3.echo-blog-3-overview .blog-3-grid--loading {
    opacity: 0; }
  .echo-blog-3.echo-blog-3-overview .blog-3-grid-item-wrapper {
    width: 530px;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 767.98px) {
      .echo-blog-3.echo-blog-3-overview .blog-3-grid-item-wrapper {
        width: 360px; } }
  .echo-blog-3.echo-blog-3-overview .blog-3-grid-item {
    transition: all 200ms ease-in-out;
    text-decoration: none;
    display: block;
    position: relative;
    min-width: 530px; }
    @media (max-width: 767.98px) {
      .echo-blog-3.echo-blog-3-overview .blog-3-grid-item {
        min-width: 360px; } }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item a {
      text-decoration: none; }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-image {
      display: block; }
      .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-image img {
        max-width: 100%; }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-title {
      font-size: 20px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.6em;
      letter-spacing: 0.085em;
      color: #3b3d44;
      display: block;
      margin: 20px 0 0px 0;
      overflow-wrap: break-word;
      word-wrap: break-word;
      -ms-word-break: break-all;
      word-break: break-all;
      word-break: break-word; }
      @media (max-width: 1199.98px) {
        .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-title {
          font-size: 12px; } }
      @media (max-width: 767.98px) {
        .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-title {
          font-size: 20px; } }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-introduction {
      font-size: 12px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.5em;
      letter-spacing: 0.115em;
      color: #626167;
      line-height: 1.7em; }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 5px; }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-title + .blog-3-card-flex {
      margin-top: -5px; }
    .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-meta-column {
      font-size: 12px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.5em;
      letter-spacing: 0.115em;
      color: #626167;
      text-transform: uppercase;
      font-size: 10px;
      position: relative;
      margin-right: 6px; }
      .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-meta-column:after {
        content: '';
        position: absolute;
        border-right: 1px solid #e3e3e4;
        height: 12px;
        margin-top: 8px;
        padding-left: 4px; }
      .echo-blog-3.echo-blog-3-overview .blog-3-grid-item .blog-3-card-meta-column:last-child:after {
        display: none; }

.blog-3-post {
  margin: 100px 0 100px 0; }
  .blog-3-post .blog-3-post__main-image-wrapper {
    position: relative;
    text-align: center; }
    .blog-3-post .blog-3-post__main-image-wrapper .blog-3-post__overlay {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      max-width: 1170px;
      margin: 0 auto;
      left: 0;
      right: 0;
      pointer-events: none; }
    .blog-3-post .blog-3-post__main-image-wrapper .blog-3-post__main-image {
      margin-bottom: 20px;
      max-width: 100%; }
  .blog-3-post .blog-3-contain-text {
    max-width: 560px; }
  .blog-3-post .container-for-title + .container-for-meta {
    margin-top: -5px;
    margin-bottom: 10px; }
  .blog-3-post .blog-3-post-meta-column {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167;
    text-transform: uppercase;
    font-size: 10px;
    position: relative;
    margin-right: 6px; }
    .blog-3-post .blog-3-post-meta-column a {
      color: #626167;
      text-decoration: noneblog-3-post-meta-column; }
    .blog-3-post .blog-3-post-meta-column:after {
      content: '';
      position: absolute;
      border-right: 1px solid #e3e3e4;
      height: 12px;
      margin-top: 8px;
      padding-left: 4px; }
    .blog-3-post .blog-3-post-meta-column:last-child:after {
      display: none; }
  .blog-3-post .blog-3-post__author {
    display: flex; }
  .blog-3-post .blog-3-post__author-image img {
    border-radius: 100%;
    margin-right: 20px; }
  .blog-3-post .blog-3-post__author-name span {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167;
    display: block; }
  .blog-3-post .blog-3-post__about-author {
    margin-top: 30px;
    border-left: 5px solid #99828E;
    padding-left: 20px; }
  .blog-3-post h1 {
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    padding: 0;
    margin: 0 0 1px 0; }
    @media (max-width: 767.98px) {
      .blog-3-post h1 {
        font-size: 13.33333px; } }
  .blog-3-post .blog-3-post-introduction {
    margin: 0 0 0 0; }
    .blog-3-post .blog-3-post-introduction p {
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em;
      color: #3b3d44;
      margin: 0; }
  .blog-3-post .blog-3-post__about-author p {
    font-size: 14px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.1em;
    color: #3b3d44;
    font-size: 12px;
    font-style: italic;
    line-height: 1.9em;
    margin: 0; }
  .blog-3-post .sf-blocks {
    margin-top: 120px; }

/*
    Echo: Search
*/
/*
    Echo: Search 1
*/
.echo-search-1 {
  margin: 40px 0 0 0;
  min-height: 100vh; }
  .echo-search-1 h1 {
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 767.98px) {
      .echo-search-1 h1 {
        font-size: 24px; } }
  .echo-search-1 .echo-search-1-box .echo-search-1-box-inline {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px auto; }
  .echo-search-1 .echo-search-1-box input[type="search"] {
    background: #fff;
    border: 1px solid #f58f2d;
    border-radius: 100px 0 0 100px;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding-left: 25px;
    width: 100%; }
    .echo-search-1 .echo-search-1-box input[type="search"]:focus {
      outline: 0; }
  .echo-search-1 .echo-search-1-box input[type="search"]::-webkit-search-decoration,
  .echo-search-1 .echo-search-1-box input[type="search"]::-webkit-search-cancel-button,
  .echo-search-1 .echo-search-1-box input[type="search"]::-webkit-search-results-button,
  .echo-search-1 .echo-search-1-box input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none; }
  .echo-search-1 .echo-search-1-box button[type="submit"] {
    -webkit-appearance: none;
    background: #f58f2d;
    border: 0;
    border-radius: 0 50px 50px 0;
    height: 40px;
    padding: 3px 30px 0 25px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .echo-search-1 .echo-search-1-box button[type="submit"] span {
      display: block;
      color: white; }
    .echo-search-1 .echo-search-1-box button[type="submit"]:focus {
      outline: 0; }
  .echo-search-1 .echo-search-1-results-error,
  .echo-search-1 .echo-search-1-results-no-match {
    color: #989898;
    padding: 30px;
    text-align: center; }
  .echo-search-1 .echo-search-1-results {
    max-width: 750px;
    margin: 25px auto 0 auto; }
  .echo-search-1 .echo-search-1-result {
    margin: 15px 0;
    border: 1px dashed #D5D8DF;
    border-radius: 8px;
    padding: 40px; }
    .echo-search-1 .echo-search-1-result .echo-search-1-result-title {
      font-size: 20px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.6em;
      letter-spacing: 0.085em;
      color: #3b3d44; }
      .echo-search-1 .echo-search-1-result .echo-search-1-result-title a {
        color: #365CE2;
        text-decoration: none; }
        .echo-search-1 .echo-search-1-result .echo-search-1-result-title a:hover {
          color: #365CE2 !important; }
        .echo-search-1 .echo-search-1-result .echo-search-1-result-title a:visited {
          color: #6031AC !important; }
        .echo-search-1 .echo-search-1-result .echo-search-1-result-title a:hover {
          text-decoration: underline; }
      .echo-search-1 .echo-search-1-result .echo-search-1-result-title em {
        font-style: normal; }
    .echo-search-1 .echo-search-1-result .echo-search-1-result-link {
      margin-bottom: 12px; }
      .echo-search-1 .echo-search-1-result .echo-search-1-result-link a {
        color: #39710E;
        display: block;
        text-decoration: none;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 1.2em;
        letter-spacing: 0.04em;
        color: #39710E;
        word-wrap: break-word; }
        @media only screen and (max-width: 600px) {
          .echo-search-1 .echo-search-1-result .echo-search-1-result-link a {
            font-size: 12px;
            line-height: 1.2em; } }
    .echo-search-1 .echo-search-1-result .echo-search-1-result-description {
      color: #62656F; }
      .echo-search-1 .echo-search-1-result .echo-search-1-result-description em {
        font-style: normal;
        font-weight: bold; }
  .echo-search-1 .echo-search-1-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.5px;
    color: #3B3D44; }
  .echo-search-1 .echo-search-1-pagination-previous a,
  .echo-search-1 .echo-search-1-pagination-next a,
  .echo-search-1 .echo-search-1-pagination-current a {
    display: block;
    padding: 5px 10px;
    line-height: 8px; }

.echo-pagination {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em;
  color: #626167;
  margin-top: 60px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center; }
  .echo-pagination .echo-pagination-current {
    padding: 0 15px; }
  .echo-pagination .echo-pagination-next a,
  .echo-pagination .echo-pagination-previous a {
    width: 35px;
    border-radius: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 200ms; }
    .echo-pagination .echo-pagination-next a:hover,
    .echo-pagination .echo-pagination-previous a:hover {
      background-color: #f58f2d; }
      .echo-pagination .echo-pagination-next a:hover svg,
      .echo-pagination .echo-pagination-previous a:hover svg {
        color: white; }
  .echo-pagination .echo-pagination-next svg,
  .echo-pagination .echo-pagination-previous svg {
    fill: currentColor;
    display: inline-block;
    color: #626167;
    margin-top: 1px; }

.echo-next-article {
  margin-top: 60px; }
  .echo-next-article .echo-next-article-label-wrapper {
    border-top: 1px solid #f58f2d; }
  .echo-next-article .echo-next-article-label {
    font-size: 14px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.1em;
    color: #3b3d44;
    background-color: #f58f2d;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 9px; }
  .echo-next-article .echo-next-article-title a {
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    margin-bottom: 60px;
    text-decoration: none;
    display: block;
    padding: 60px 0 80px 0; }
    @media (max-width: 767.98px) {
      .echo-next-article .echo-next-article-title a {
        font-size: 24px; } }

.echo-social-share {
  margin: 15px 0 0 0;
  display: flex; }
  .echo-social-share > a {
    margin-right: 15px; }

.echo-share-whatsapp,
.echo-share-twitter,
.echo-share-linkedin,
.echo-share-facebook {
  text-decoration: none;
  display: block; }
  .echo-share-whatsapp svg,
  .echo-share-twitter svg,
  .echo-share-linkedin svg,
  .echo-share-facebook svg {
    fill: currentColor;
    color: #95949a; }

.echo-video-container {
  overflow: hidden;
  position: relative;
  width: 100%; }

.echo-video-container::after {
  padding-top: 56.25%;
  display: block;
  content: ''; }

.echo-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.echo-image-container img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 0 auto; }

.sf_add_snippet {
  margin-top: 150px; }

.echo-header-2 li:nth-child(2), .echo-header-2 li:nth-child(3), .echo-header-2 li:nth-child(4), .echo-header-2 li:nth-child(5), .echo-header-2 li:nth-child(6), .echo-header-2 li:nth-child(7) {
  text-align: center;
  background-color: #d7d7d7;
  margin-bottom: 5px; }

.sf-block-button-1[data-block-id="159"] .button-1-wrapper a.button-1 {
  border-radius: 0 !important; }

/* Form button */
.echo-form-button {
  text-align: left !important;
  margin-top: 45px; }
  .echo-form-button .echo-form-button-loader {
    border-radius: 0px !important; }

.form-header-group {
  display: none !important; }

h1, h2, h3, h4, h5, .faq-item .faq-question {
  font-family: din-2014, verdana, sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important; }

p {
  font-family: din-2014, verdana, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 16px !important; }

.sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny p {
  font-size: 21px !important; }

.thinDivider {
  height: 100%;
  width: 4px;
  background-color: #F58F2D;
  margin-right: 100px; }
  @media (max-width: 991.98px) {
    .thinDivider {
      display: none; } }

.sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper, .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper, .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper {
  margin-top: -245px !important;
  margin-bottom: -70px; }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper, .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper, .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper {
      margin-top: -150px !important; } }

.sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper {
  margin-top: -245px !important;
  margin-bottom: -70px; }

.sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper {
  margin-bottom: -75px; }

.sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper {
  margin-bottom: -225px; }

.sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 90%) !important;
  clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 90%) !important; }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper {
      -webkit-clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 90%) !important;
      clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 90%) !important; } }

/* ========================
Footer Style
==========================*/
.echo-footer-2 {
  padding: 60px 0 0px 0; }
  .echo-footer-2 .flexContainer {
    display: flex; }
    @media (max-width: 991.98px) {
      .echo-footer-2 .flexContainer {
        flex-wrap: wrap;
        flex-direction: column-reverse; } }
  .echo-footer-2 .echo-footer-2-flex {
    margin-top: 70px;
    flex: 80%; }
    @media (max-width: 991.98px) {
      .echo-footer-2 .echo-footer-2-flex {
        text-align: center;
        margin-top: 0; }
        .echo-footer-2 .echo-footer-2-flex .echo-footer-2-social ul {
          justify-content: center; } }
    .echo-footer-2 .echo-footer-2-flex .echo-footer-2-column {
      flex: 0.5; }
      @media (max-width: 1199.98px) {
        .echo-footer-2 .echo-footer-2-flex .echo-footer-2-column {
          flex: 1; } }
      @media (max-width: 991.98px) {
        .echo-footer-2 .echo-footer-2-flex .echo-footer-2-column {
          flex: 100%; } }
    .echo-footer-2 .echo-footer-2-flex .echo-footer-2-column:nth-child(3) {
      flex: 1.5; }
      @media (max-width: 991.98px) {
        .echo-footer-2 .echo-footer-2-flex .echo-footer-2-column:nth-child(3) {
          flex: 100%; } }
  .echo-footer-2 .echo-footer-2-social {
    margin: 10px 0 0 0; }
    .echo-footer-2 .echo-footer-2-social ul {
      justify-content: center; }
  .echo-footer-2 .triangleElement {
    display: flex;
    align-items: flex-end;
    flex: 50%;
    width: 500px;
    height: 200px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    background-color: #474747; }
    @media (max-width: 991.98px) {
      .echo-footer-2 .triangleElement {
        flex: 100%;
        -webkit-clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
        width: 100vw; } }
    .echo-footer-2 .triangleElement .triangleInfo {
      margin: 0 0 30px 30px; }
      @media (max-width: 991.98px) {
        .echo-footer-2 .triangleElement .triangleInfo {
          margin-top: 40px; } }
    .echo-footer-2 .triangleElement .copyrightText {
      color: white;
      font-size: 14px !important; }
      @media (max-width: 1199.98px) {
        .echo-footer-2 .triangleElement .copyrightText {
          font-size: 12px !important; } }
      @media (max-width: 767.98px) {
        .echo-footer-2 .triangleElement .copyrightText {
          font-size: 10px !important; } }
    .echo-footer-2 .triangleElement img {
      width: 70px;
      height: auto;
      margin-bottom: 5px; }
      @media (max-width: 991.98px) {
        .echo-footer-2 .triangleElement img {
          width: 50px; } }
  .echo-footer-2 .echo-footer-1-power {
    position: absolute;
    left: auto;
    right: 30px !important;
    bottom: 30px; }

/* =======
Align blocks styles
======= */
#sf-block-id-77 {
  margin-bottom: -250px; }
  @media (max-width: 991.98px) {
    #sf-block-id-77 {
      margin-bottom: 0; } }

/* =======
Align blocks styles
======= */
#sf-block-id-53 {
  margin-top: -250px; }
  @media (max-width: 991.98px) {
    #sf-block-id-53 {
      margin-top: -150px; } }

.customblogg.customblogg-overview {
  background-color: #FFFFFF;
  min-height: 100vh; }

.customblogg .customblogg__main-title {
  margin-bottom: 60px;
  padding-top: 60px;
  color: white !important; }
  .customblogg .customblogg__main-title h1 {
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    color: white !important; }
  .customblogg .customblogg__main-title h2 {
    font-size: 28px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.085em;
    color: #3b3d44;
    color: white !important;
    font-size: 36px; }
  .customblogg .customblogg__main-title h3 {
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .customblogg .customblogg__main-title h4 {
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em;
    color: #3b3d44; }
  .customblogg .customblogg__main-title h5 {
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    color: #626167; }
  .customblogg .customblogg__main-title p {
    font-size: 14px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.1em;
    color: #3b3d44; }
  @media (max-width: 767.98px) {
    .customblogg .customblogg__main-title {
      margin-bottom: 30px;
      padding-top: 30px; } }

.customblogg .customblogg__posts {
  display: flex;
  flex-wrap: wrap;
  margin: -15px 0 0 -15px;
  padding-bottom: 60px; }

.customblogg .customblogg__post-wrapper {
  width: calc(100% / 3);
  padding: 15px 0 0 15px; }
  @media (max-width: 767.98px) {
    .customblogg .customblogg__post-wrapper {
      width: 100%; } }

.customblogg .customblogg__post {
  display: block;
  background: #fff;
  padding: 25px 25px;
  position: relative;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-decoration: none;
  transition: all ease-in-out 200ms;
  max-height: 500px;
  max-width: 380px;
  margin: 0 auto;
  min-height: 250px; }
  .customblogg .customblogg__post:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  .customblogg .customblogg__post.customblogg__post--with-image {
    min-height: 350px; }

.customblogg .customblogg__card-image {
  height: 225px;
  display: block;
  margin: -25px -25px 25px -25px;
  background-size: cover; }

.customblogg .customblogg__card-title {
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em;
  color: #3b3d44;
  display: block;
  margin-bottom: 30px;
  color: #474747 !important; }
  @media (max-width: 1199.98px) {
    .customblogg .customblogg__card-title {
      font-size: 12px; } }
  @media (max-width: 767.98px) {
    .customblogg .customblogg__card-title {
      font-size: 20px; } }

.customblogg .customblogg__card-meta {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 25px; }

.customblogg .customblogg__card-meta-row {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em;
  color: #626167;
  display: block; }

.imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(29, 29, 29, 0.77); }

.imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .imageblock-background {
      background-attachment: scroll; } }

.imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .imageblock-content > div {
    pointer-events: auto; }

.customblogg-post .customblogg-post__author {
  display: flex;
  align-items: center; }

.customblogg-post .customblogg-post__author-image img {
  border-radius: 100%;
  margin-right: 20px; }

.customblogg-post .customblogg-post__author-name span {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em;
  color: #626167;
  display: block; }

.customblogg-post h1 {
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  color: #3b3d44;
  color: #474747;
  margin-bottom: 20px; }
  @media (max-width: 767.98px) {
    .customblogg-post h1 {
      font-size: 24px; } }

.customblogg-post .customblogg-post__main-image {
  margin: auto;
  min-height: 600px;
  width: 1200px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 60px; }
  @media (max-width: 991.98px) {
    .customblogg-post .customblogg-post__main-image {
      height: 50vh;
      max-width: 100%; } }
  @media (max-width: 767.98px) {
    .customblogg-post .customblogg-post__main-image {
      margin-bottom: 30px; } }

.echo-next-article .echo-next-article-title a {
  font-family: din-2014, verdana, sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #474747; }

.sf-block-561[data-block-id="2"] .sf-customintrovideo-outer {
  height: 130vh; }
  @media (max-width: 767.98px) {
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer {
      height: 100vh;
      min-height: 100vh; } }
  .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-inner {
    position: absolute;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    height: 130vh; }
    @media (max-width: 767.98px) {
      .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-inner {
        height: 100vh; } }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-inner video {
      transition: all 0.5s ease-in-out;
      position: absolute;
      bottom: 50%;
      right: 50%;
      -moz-transform: translateX(50%) translateY(50%);
      -webkit-transform: translateX(50%) translateY(50%);
      transform: translateX(50%) translateY(50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 1;
      overflow: hidden;
      display: block;
      opacity: 1; }
  .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 110vh;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none; }
    @media (max-width: 767.98px) {
      .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-overlay {
        height: 100vh; } }
  .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content {
    position: absolute;
    z-index: 3;
    height: 100%;
    width: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content > div {
      pointer-events: all; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground {
      width: 100%;
      height: 90%;
      position: absolute;
      bottom: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      background-image: linear-gradient(to bottom, transparent, #73aab4);
      /* rgba(110,110,110,1) */ }
      @media (max-width: 991.98px) {
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground {
          height: 100%; } }
      .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer {
        flex-direction: row;
        position: absolute;
        bottom: 0;
        text-align: center;
        width: 90%; }
        @media screen and (min-width: 1700px) {
          .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer {
            width: 60%; } }
        @media (max-width: 991.98px) {
          .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); } }
        @media (max-width: 767.98px) {
          .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer {
            width: 80%; } }
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer .introText {
          display: inline-block;
          flex: 50%; }
          @media screen and (max-width: 1600px) {
            .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer .introText h1 {
              padding-left: 0; } }
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer .introButtons {
          display: inline-block;
          display: flex;
          flex-direction: row;
          justify-content: center; }
          @media (max-width: 767.98px) {
            .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .gradientBackground .introContainer .introButtons {
              flex-direction: column; } }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content h1 {
      color: #ffffff;
      font-size: 56px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.35em;
      letter-spacing: 0.085em;
      padding-left: 25px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content h1 {
          font-size: 36px;
          padding-left: 0; } }
      @media (max-width: 767.98px) {
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content h1 {
          font-size: 24px; } }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .introSmallText p {
      color: #ffffff;
      font-size: 27px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em;
      font-size: 21px !important; }
      @media (max-width: 767.98px) {
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-content .introSmallText p {
          font-size: 16px !important;
          white-space: pre-wrap; } }
  .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper {
    text-align: center;
    margin-top: 20px; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper:nth-child(1) {
      margin-right: 20px; }
      @media (max-width: 767.98px) {
        .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper:nth-child(1) {
          margin-right: 0; } }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper a.sf-customintrovideo-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      width: 225px;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper a.buttonTwo {
      background-color: #474747; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper a.sf-customintrovideo-button:hover {
      color: white;
      background-color: #474747; }
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .sf-customintrovideo-button-wrapper a.buttonTwo:hover {
      background-color: #F58F2D; }
  .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .imageContainer {
    display: none; }
    @media (max-width: 991.98px) {
      .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .imageContainer {
        position: absolute;
        bottom: 50%;
        right: 50%;
        -moz-transform: translateX(50%) translateY(50%);
        -webkit-transform: translateX(50%) translateY(50%);
        transform: translateX(50%) translateY(50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 1;
        display: block;
        opacity: 1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url("https://assets.v3.snowfirehub.com/editor/dist/120916/uploads/pexels-brayden-law-1738980.jpg?t=12741d0a3fa93658dce62c62a4523fc0"); } }
  @media (max-width: 991.98px) {
    .sf-block-561[data-block-id="2"] .sf-customintrovideo-outer .introVideo {
      display: none; } }

.sf-block-561[data-block-id="2"] .icon-text-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-bottom: 80px; }
  @media (max-width: 767.98px) {
    .sf-block-561[data-block-id="2"] .icon-text-container {
      display: none; } }
  .sf-block-561[data-block-id="2"] .icon-text-container .icon-text-column {
    position: relative;
    flex: 1;
    flex-basis: 200px;
    max-width: 200px;
    margin-bottom: 10px; }
    .sf-block-561[data-block-id="2"] .icon-text-container .icon-text-column img {
      margin-bottom: 10px; }
    .sf-block-561[data-block-id="2"] .icon-text-container .icon-text-column p {
      color: #fff; }

.sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 0px; }
  @media (max-width: 767.98px) {
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper {
      padding-top: 5px; } }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .greyElement {
    width: 100%;
    height: 186px;
    background-color: #474747;
    margin-top: -180px; }
    @media (max-width: 991.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .greyElement {
        display: none; } }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column {
        width: 100%; } }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column:nth-child(2) {
    padding: 50px 50px 200px 50px;
    display: flex;
    align-items: center; }
    @media (max-width: 1199.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column:nth-child(2) {
        padding: 50px 50px 200px 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column:nth-child(2) {
        padding: 30px 25px; } }
    @media (max-width: 767.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .imageContainer {
    height: 100%; }
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .imageContainer .lefttiltedimagetext-image {
      width: 100%;
      height: 100%;
      max-height: 100%;
      background-size: cover;
      /* <------ */
      background-repeat: no-repeat;
      background-position: center center;
      /* optional, center the image */
      min-height: 650px;
      -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 80%, 0% 100%);
      clip-path: polygon(0 0%, 100% 0%, 100% 80%, 0% 100%); }
      @media (max-width: 991.98px) {
        .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .imageContainer .lefttiltedimagetext-image {
          height: 50vh;
          min-height: 0; } }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-content h2 {
          font-size: 21.53846px; } }
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-button-wrapper {
    margin-top: 60px; }
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-button-wrapper a.lefttiltedimagetext-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-563[data-block-id="4"] .lefttiltedimagetext-wrapper .lefttiltedimagetext-button-wrapper a.lefttiltedimagetext-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0; }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .greyElementMobile {
    display: none; }
  @media (max-width: 991.98px) {
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper {
      flex-direction: column-reverse; }
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .greyElementMobile {
        display: block;
        width: 100%;
        height: 130px;
        margin-bottom: -130px;
        background-color: #474747; } }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .greyElement {
    width: 100%;
    height: 134px;
    background-color: #474747;
    margin-bottom: -138px; }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column {
        width: 100%; } }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column:nth-child(2) {
    padding: 200px 50px 50px 50px;
    display: flex;
    align-items: center; }
    @media (max-width: 1199.98px) {
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column:nth-child(2) {
        padding: 200px 50px 50px 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column:nth-child(2) {
        padding: 30px 25px; } }
    @media (max-width: 767.98px) {
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .imageContainer {
    height: 100%; }
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .imageContainer .righttiltedimagetext-image {
      width: 100%;
      height: 100%;
      max-height: 100%;
      background-size: cover;
      /* <------ */
      background-repeat: no-repeat;
      background-position: center center;
      /* optional, center the image */
      min-height: 650px;
      -webkit-clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
      clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%); }
      @media (max-width: 991.98px) {
        .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .imageContainer .righttiltedimagetext-image {
          height: 50vh;
          min-height: 0; } }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-content h2 {
          font-size: 21.53846px; } }
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-button-wrapper {
    text-align: left;
    margin-top: 60px; }
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-button-wrapper a.righttiltedimagetext-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-564[data-block-id="6"] .righttiltedimagetext-wrapper .righttiltedimagetext-button-wrapper a.righttiltedimagetext-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-570[data-block-id="15"] .startsidatextbakgrund-wrapper {
  background-color: #474747;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%; }

@media (max-width: 991.98px) {
  .sf-block-570[data-block-id="15"] .echo-container-sm {
    padding-top: 30px; } }

.sf-block-570[data-block-id="15"] p, .sf-block-570[data-block-id="15"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-570[data-block-id="15"] h1 {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-570[data-block-id="15"] h1 {
      font-size: 27.69231px; } }

.sf-block-570[data-block-id="15"] h2 {
  color: white;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-570[data-block-id="15"] h2 {
      font-size: 21.53846px; } }

.sf-block-570[data-block-id="15"] h3 {
  color: white;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-570[data-block-id="15"] h3 {
      font-size: 16.66667px; } }

.sf-block-570[data-block-id="15"] h4 {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-570[data-block-id="15"] h4 {
      font-size: 15px; } }

.sf-block-570[data-block-id="15"] h5 {
  color: white;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-570[data-block-id="15"] p + h1,
.sf-block-570[data-block-id="15"] p + h2,
.sf-block-570[data-block-id="15"] p + h3 {
  padding-top: 15px; }

.sf-block-570[data-block-id="15"] h4 + h1,
.sf-block-570[data-block-id="15"] h4 + h2,
.sf-block-570[data-block-id="15"] h4 + h3 {
  padding-top: 30px; }

.sf-block-570[data-block-id="15"] ul + h1,
.sf-block-570[data-block-id="15"] ul + h2,
.sf-block-570[data-block-id="15"] ul + h3 {
  padding-top: 30px; }

.sf-block-570[data-block-id="15"] h1:last-child,
.sf-block-570[data-block-id="15"] h2:last-child,
.sf-block-570[data-block-id="15"] h3:last-child,
.sf-block-570[data-block-id="15"] h4:last-child,
.sf-block-570[data-block-id="15"] h5:last-child,
.sf-block-570[data-block-id="15"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="51"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #73aab4;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="51"] .undersidattextbakgrund-wrapper {
  background-color: #73aab4;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="51"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="51"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="51"] p, .sf-block-567[data-block-id="51"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="51"] h1 {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="51"] h2 {
  color: white;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="51"] h3 {
  color: white;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="51"] h4 {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="51"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="51"] h5 {
  color: white;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="51"] p + h1,
.sf-block-567[data-block-id="51"] p + h2,
.sf-block-567[data-block-id="51"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="51"] h4 + h1,
.sf-block-567[data-block-id="51"] h4 + h2,
.sf-block-567[data-block-id="51"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="51"] ul + h1,
.sf-block-567[data-block-id="51"] ul + h2,
.sf-block-567[data-block-id="51"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="51"] h1:last-child,
.sf-block-567[data-block-id="51"] h2:last-child,
.sf-block-567[data-block-id="51"] h3:last-child,
.sf-block-567[data-block-id="51"] h4:last-child,
.sf-block-567[data-block-id="51"] h5:last-child,
.sf-block-567[data-block-id="51"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="58"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #474747;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="58"] .undersidattextbakgrund-wrapper {
  background-color: #474747;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="58"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="58"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="58"] p, .sf-block-567[data-block-id="58"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="58"] h1 {
  color: #f58f2d;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="58"] h2 {
  color: #f58f2d;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="58"] h3 {
  color: #f58f2d;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="58"] h4 {
  color: #3b3d44;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="58"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="58"] h5 {
  color: #626167;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="58"] p + h1,
.sf-block-567[data-block-id="58"] p + h2,
.sf-block-567[data-block-id="58"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="58"] h4 + h1,
.sf-block-567[data-block-id="58"] h4 + h2,
.sf-block-567[data-block-id="58"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="58"] ul + h1,
.sf-block-567[data-block-id="58"] ul + h2,
.sf-block-567[data-block-id="58"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="58"] h1:last-child,
.sf-block-567[data-block-id="58"] h2:last-child,
.sf-block-567[data-block-id="58"] h3:last-child,
.sf-block-567[data-block-id="58"] h4:last-child,
.sf-block-567[data-block-id="58"] h5:last-child,
.sf-block-567[data-block-id="58"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="74"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #b4d2d2;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="74"] .undersidattextbakgrund-wrapper {
  background-color: #b4d2d2;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="74"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="74"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="74"] p, .sf-block-567[data-block-id="74"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="74"] h1 {
  color: #3b3d44;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="74"] h2 {
  color: #3b3d44;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="74"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="74"] h4 {
  color: #3b3d44;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="74"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="74"] h5 {
  color: #626167;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="74"] p + h1,
.sf-block-567[data-block-id="74"] p + h2,
.sf-block-567[data-block-id="74"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="74"] h4 + h1,
.sf-block-567[data-block-id="74"] h4 + h2,
.sf-block-567[data-block-id="74"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="74"] ul + h1,
.sf-block-567[data-block-id="74"] ul + h2,
.sf-block-567[data-block-id="74"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="74"] h1:last-child,
.sf-block-567[data-block-id="74"] h2:last-child,
.sf-block-567[data-block-id="74"] h3:last-child,
.sf-block-567[data-block-id="74"] h4:last-child,
.sf-block-567[data-block-id="74"] h5:last-child,
.sf-block-567[data-block-id="74"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="79"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #d7d7d7;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="79"] .undersidattextbakgrund-wrapper {
  background-color: #d7d7d7;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="79"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="79"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="79"] p, .sf-block-567[data-block-id="79"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="79"] h1 {
  color: #3b3d44;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="79"] h2 {
  color: #3b3d44;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="79"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="79"] h4 {
  color: #3b3d44;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="79"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="79"] h5 {
  color: #626167;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="79"] p + h1,
.sf-block-567[data-block-id="79"] p + h2,
.sf-block-567[data-block-id="79"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="79"] h4 + h1,
.sf-block-567[data-block-id="79"] h4 + h2,
.sf-block-567[data-block-id="79"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="79"] ul + h1,
.sf-block-567[data-block-id="79"] ul + h2,
.sf-block-567[data-block-id="79"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="79"] h1:last-child,
.sf-block-567[data-block-id="79"] h2:last-child,
.sf-block-567[data-block-id="79"] h3:last-child,
.sf-block-567[data-block-id="79"] h4:last-child,
.sf-block-567[data-block-id="79"] h5:last-child,
.sf-block-567[data-block-id="79"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="84"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #7a7a7a;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="84"] .undersidattextbakgrund-wrapper {
  background-color: #7a7a7a;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="84"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="84"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="84"] p, .sf-block-567[data-block-id="84"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="84"] h1 {
  color: #f58f2d;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="84"] h2 {
  color: #f58f2d;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="84"] h3 {
  color: #f58f2d;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="84"] h4 {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="84"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="84"] h5 {
  color: white;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="84"] p + h1,
.sf-block-567[data-block-id="84"] p + h2,
.sf-block-567[data-block-id="84"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="84"] h4 + h1,
.sf-block-567[data-block-id="84"] h4 + h2,
.sf-block-567[data-block-id="84"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="84"] ul + h1,
.sf-block-567[data-block-id="84"] ul + h2,
.sf-block-567[data-block-id="84"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="84"] h1:last-child,
.sf-block-567[data-block-id="84"] h2:last-child,
.sf-block-567[data-block-id="84"] h3:last-child,
.sf-block-567[data-block-id="84"] h4:last-child,
.sf-block-567[data-block-id="84"] h5:last-child,
.sf-block-567[data-block-id="84"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="89"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #73aab4;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="89"] .undersidattextbakgrund-wrapper {
  background-color: #73aab4;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="89"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="89"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="89"] p, .sf-block-567[data-block-id="89"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="89"] h1 {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="89"] h2 {
  color: white;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="89"] h3 {
  color: white;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="89"] h4 {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="89"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="89"] h5 {
  color: white;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="89"] p + h1,
.sf-block-567[data-block-id="89"] p + h2,
.sf-block-567[data-block-id="89"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="89"] h4 + h1,
.sf-block-567[data-block-id="89"] h4 + h2,
.sf-block-567[data-block-id="89"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="89"] ul + h1,
.sf-block-567[data-block-id="89"] ul + h2,
.sf-block-567[data-block-id="89"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="89"] h1:last-child,
.sf-block-567[data-block-id="89"] h2:last-child,
.sf-block-567[data-block-id="89"] h3:last-child,
.sf-block-567[data-block-id="89"] h4:last-child,
.sf-block-567[data-block-id="89"] h5:last-child,
.sf-block-567[data-block-id="89"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="177"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: #f3f3f3;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="177"] .undersidattextbakgrund-wrapper {
  background-color: #f3f3f3;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="177"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="177"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="177"] p, .sf-block-567[data-block-id="177"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="177"] h1 {
  color: #3b3d44;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="177"] h2 {
  color: #3b3d44;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="177"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="177"] h4 {
  color: #3b3d44;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="177"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="177"] h5 {
  color: #626167;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="177"] p + h1,
.sf-block-567[data-block-id="177"] p + h2,
.sf-block-567[data-block-id="177"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="177"] h4 + h1,
.sf-block-567[data-block-id="177"] h4 + h2,
.sf-block-567[data-block-id="177"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="177"] ul + h1,
.sf-block-567[data-block-id="177"] ul + h2,
.sf-block-567[data-block-id="177"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="177"] h1:last-child,
.sf-block-567[data-block-id="177"] h2:last-child,
.sf-block-567[data-block-id="177"] h3:last-child,
.sf-block-567[data-block-id="177"] h4:last-child,
.sf-block-567[data-block-id="177"] h5:last-child,
.sf-block-567[data-block-id="177"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="218"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: white;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="218"] .undersidattextbakgrund-wrapper {
  background-color: white;
  padding-top: 0px;
  padding-bottom: 240px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="218"] .undersidattextbakgrund-wrapper {
      padding-bottom: 120px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="218"] p, .sf-block-567[data-block-id="218"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-567[data-block-id="218"] h1 {
  color: #3b3d44;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="218"] h2 {
  color: #3b3d44;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="218"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="218"] h4 {
  color: #3b3d44;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="218"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="218"] h5 {
  color: #626167;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-567[data-block-id="218"] p + h1,
.sf-block-567[data-block-id="218"] p + h2,
.sf-block-567[data-block-id="218"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="218"] h4 + h1,
.sf-block-567[data-block-id="218"] h4 + h2,
.sf-block-567[data-block-id="218"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="218"] ul + h1,
.sf-block-567[data-block-id="218"] ul + h2,
.sf-block-567[data-block-id="218"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="218"] h1:last-child,
.sf-block-567[data-block-id="218"] h2:last-child,
.sf-block-567[data-block-id="218"] h3:last-child,
.sf-block-567[data-block-id="218"] h4:last-child,
.sf-block-567[data-block-id="218"] h5:last-child,
.sf-block-567[data-block-id="218"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="243"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: white;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="243"] .undersidattextbakgrund-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="243"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="243"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="243"] p, .sf-block-567[data-block-id="243"] li {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #3b3d44;
  max-font-size: 100px; }

.sf-block-567[data-block-id="243"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="243"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="243"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="243"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="243"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="243"] h5 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.115em;
  line-height: 1.5em;
  color: #626167;
  max-font-size: 100px; }

.sf-block-567[data-block-id="243"] p + h1,
.sf-block-567[data-block-id="243"] p + h2,
.sf-block-567[data-block-id="243"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="243"] h4 + h1,
.sf-block-567[data-block-id="243"] h4 + h2,
.sf-block-567[data-block-id="243"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="243"] ul + h1,
.sf-block-567[data-block-id="243"] ul + h2,
.sf-block-567[data-block-id="243"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="243"] h1:last-child,
.sf-block-567[data-block-id="243"] h2:last-child,
.sf-block-567[data-block-id="243"] h3:last-child,
.sf-block-567[data-block-id="243"] h4:last-child,
.sf-block-567[data-block-id="243"] h5:last-child,
.sf-block-567[data-block-id="243"] p:last-child {
  padding-bottom: 0; }

.sf-block-567[data-block-id="251"] .coloredElement {
  width: 100%;
  height: 119px;
  background-color: white;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 0 100%, 0 0);
  margin-top: -121px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] .coloredElement {
      margin-top: -100px;
      -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0);
      clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0 100%, 0 0); } }

.sf-block-567[data-block-id="251"] .undersidattextbakgrund-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 0; }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="251"] .undersidattextbakgrund-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-567[data-block-id="251"] .undersidattextbakgrund-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] .undersidattextbakgrund-wrapper {
      margin-top: -1px; } }

.sf-block-567[data-block-id="251"] p, .sf-block-567[data-block-id="251"] li {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #3b3d44;
  max-font-size: 100px; }

.sf-block-567[data-block-id="251"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] h1 {
      font-size: 27.69231px; } }

.sf-block-567[data-block-id="251"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] h2 {
      font-size: 21.53846px; } }

.sf-block-567[data-block-id="251"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] h3 {
      font-size: 16.66667px; } }

.sf-block-567[data-block-id="251"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-567[data-block-id="251"] h4 {
      font-size: 15px; } }

.sf-block-567[data-block-id="251"] h5 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.115em;
  line-height: 1.5em;
  color: #626167;
  max-font-size: 100px; }

.sf-block-567[data-block-id="251"] p + h1,
.sf-block-567[data-block-id="251"] p + h2,
.sf-block-567[data-block-id="251"] p + h3 {
  padding-top: 15px; }

.sf-block-567[data-block-id="251"] h4 + h1,
.sf-block-567[data-block-id="251"] h4 + h2,
.sf-block-567[data-block-id="251"] h4 + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="251"] ul + h1,
.sf-block-567[data-block-id="251"] ul + h2,
.sf-block-567[data-block-id="251"] ul + h3 {
  padding-top: 30px; }

.sf-block-567[data-block-id="251"] h1:last-child,
.sf-block-567[data-block-id="251"] h2:last-child,
.sf-block-567[data-block-id="251"] h3:last-child,
.sf-block-567[data-block-id="251"] h4:last-child,
.sf-block-567[data-block-id="251"] h5:last-child,
.sf-block-567[data-block-id="251"] p:last-child {
  padding-bottom: 0; }

.sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper {
  background-color: #73aab4;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: white;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: white;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="52"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper {
  background-color: #474747;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: white;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="59"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #7a7a7a; }

.sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper {
  background-color: #b4d2d2;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="72"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper {
  background-color: #d7d7d7;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="77"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper {
  background-color: #7a7a7a;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: white;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="82"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper {
  background-color: #73aab4;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: white;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: white;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="87"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper {
  background-color: #f3f3f3;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #474747;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-565[data-block-id="171"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-565[data-block-id="210"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-565[data-block-id="235"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-565[data-block-id="246"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  /* Diagonal */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
  @media (max-width: 991.98px) {
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper {
      margin-bottom: -120px;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
  @media (max-width: 767.98px) {
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper {
      margin-bottom: -130px; } }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column {
        width: 100%; } }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
    padding: 125px;
    padding-bottom: 200px;
    padding-top: 80px;
    display: flex; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 50px; } }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        margin-bottom: 130px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
    @media (max-width: 767.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-column:nth-child(2) {
        padding: 30px 25px; } }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-image {
        height: 40vh;
        min-height: 0; } }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-content h2 {
          font-size: 21.53846px; } }
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper {
    margin-top: 60px; }
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-565[data-block-id="249"] .undersidabildtext1-wrapper .undersidabildtext1-button-wrapper a.undersidabildtext1-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper {
  background-color: #f3f3f3;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="53"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="60"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="73"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="78"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="83"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #f58f2d;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="88"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper {
  background-color: #b4d2d2;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #474747;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="169"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper {
  background-color: #b4d2d2;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: none; }
    .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #474747;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="173"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper {
  background-color: #b4d2d2;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: none; }
    .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="208"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper {
  background-color: #b4d2d2;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      color: #3b3d44;
      font-size: 28px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 1.5em;
      letter-spacing: 0.085em;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      color: #3b3d44;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 2em;
      letter-spacing: 0.1em; }
  .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: none; }
    .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      color: white;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 1.9em;
      letter-spacing: 0.085em; }
    .sf-block-566[data-block-id="212"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-566[data-block-id="233"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-566[data-block-id="237"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-566[data-block-id="247"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -200px;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 90%); }
  @media (max-width: 991.98px) {
    .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper {
      margin-top: 0;
      flex-direction: column-reverse;
      -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%); } }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-column {
    width: 50%;
    position: relative; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-column {
        width: 100%; } }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
    padding: 100px 50px 200px 50px;
    display: flex; }
    @media (max-width: 1199.98px) {
      .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        padding-top: 80px; } }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-column:nth-child(1) {
        margin-bottom: 120px;
        padding: 30px 25px; } }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-overlay {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    margin-bottom: -100px; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-image {
        height: 40vh;
        min-height: 0;
        margin-bottom: 0; } }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-content {
    max-width: 460px;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-content {
        max-width: 730px;
        margin: 0 auto; } }
    .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
      font-family: Poppins;
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.085em;
      line-height: 1.5em;
      color: #3b3d44;
      max-font-size: 100px;
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-content h2 {
          font-size: 21.53846px; } }
    .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-content p {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper {
    margin-top: 60px;
    display: block; }
    .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button {
      padding: 15px 45px;
      background-color: #f58f2d;
      text-decoration: none;
      display: inline-block;
      font-family: Poppins;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.085em;
      line-height: 1.9em;
      color: white;
      max-font-size: 100px; }
    .sf-block-566[data-block-id="259"] .undersidabildtext2-wrapper .undersidabildtext2-button-wrapper a.undersidabildtext2-button:hover {
      color: white;
      background-color: #474747; }

.sf-block-571[data-block-id="92"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="92"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(29, 29, 29, 0.768627); }

.sf-block-571[data-block-id="92"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="92"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="92"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="92"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="92"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="92"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="92"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="92"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="92"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="98"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="98"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(29, 29, 29, 0.768627); }

.sf-block-571[data-block-id="98"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="98"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="98"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="98"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="98"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="98"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="98"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="98"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="98"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="118"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="118"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(29, 29, 29, 0.768627); }

.sf-block-571[data-block-id="118"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="118"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="118"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="118"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="118"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="118"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="118"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="118"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="118"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="134"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="134"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(29, 29, 29, 0.768627); }

.sf-block-571[data-block-id="134"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="134"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="134"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="134"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="134"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="134"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="134"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="134"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="134"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="166"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="166"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.58); }

.sf-block-571[data-block-id="166"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="166"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="166"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="166"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="166"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="166"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="166"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="166"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="166"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="205"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="205"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.02); }

.sf-block-571[data-block-id="205"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="205"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="205"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="205"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="205"] .imageblock-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: white;
  max-font-size: 100px;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="205"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="205"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="205"] .imageblock-text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: white;
  max-font-size: 100px;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="205"] .imageblock-text {
      font-size: 15px; } }

.sf-block-571[data-block-id="230"] .imageblock-wrapper {
  position: relative;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 60%);
  margin-bottom: -110px; }

.sf-block-571[data-block-id="230"] .imageblock-overlay {
  position: absolute;
  z-index: 1;
  height: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.71); }

.sf-block-571[data-block-id="230"] .imageblock-background {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: auto;
  background-attachment: fixed; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="230"] .imageblock-background {
      background-attachment: scroll; } }

.sf-block-571[data-block-id="230"] .imageblock-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-top: 130px; }
  .sf-block-571[data-block-id="230"] .imageblock-content > div {
    pointer-events: auto; }

.sf-block-571[data-block-id="230"] .imageblock-title {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em;
  margin-top: 20px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="230"] .imageblock-title {
      font-size: 27.69231px; } }
  @media screen and (max-width: 400px) {
    .sf-block-571[data-block-id="230"] .imageblock-title {
      margin-top: 0;
      font-size: 22.5px; } }

.sf-block-571[data-block-id="230"] .imageblock-text {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em;
  font-size: 24px !important; }
  @media (max-width: 991.98px) {
    .sf-block-571[data-block-id="230"] .imageblock-text {
      font-size: 15px; } }

.sf-block-faq-1[data-block-id="97"] .faq-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-faq-1[data-block-id="97"] .faq-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-faq-1[data-block-id="97"] .faq-wrapper {
      padding-bottom: 30px; } }

.sf-block-faq-1[data-block-id="97"] .faq-item {
  position: relative; }
  .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #f8f8f7;
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    text-decoration: none; }
    .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-up,
    .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-down {
      color: #3b3d44; }
      .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-up svg,
      .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-down svg {
        fill: currentColor; }
    .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-up {
      display: none; }
    .sf-block-faq-1[data-block-id="97"] .faq-item .faq-question .faq-arrow-down {
      display: block; }
  .sf-block-faq-1[data-block-id="97"] .faq-item .faq-answer {
    padding: 25px; }
    .sf-block-faq-1[data-block-id="97"] .faq-item .faq-answer p, .sf-block-faq-1[data-block-id="97"] .faq-item .faq-answer li {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-faq-1[data-block-id="97"] .faq-item.faq-item--active {
    background-color: #f8f8f7;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); }
    .sf-block-faq-1[data-block-id="97"] .faq-item.faq-item--active .faq-arrow-up {
      display: block; }
    .sf-block-faq-1[data-block-id="97"] .faq-item.faq-item--active .faq-arrow-down {
      display: none; }

.sf-block-574[data-block-id="102"] .segmentmeny-wrapper {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: white;
  display: flex;
  flex-flow: row wrap;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper {
      padding-top: 2.5px; } }
  @media (max-width: 767.98px) {
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper {
      padding-bottom: 2.5px; } }
  .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer {
    height: 250px;
    margin: 5px;
    flex: 32%;
    position: relative; }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer .segmentLink {
      width: 100%;
      height: 100%; }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer .segmentmeny-overlay {
      position: absolute;
      background-color: rgba(17, 17, 17, 0.768627);
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none; }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer .segmentLink:hover + .segmentmeny-overlay {
      background-color: rgba(80, 80, 80, 0.77); }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer .segmentmeny-image {
      min-width: 100%;
      min-height: 100%;
      background-size: cover;
      /* <------ */
      background-repeat: no-repeat;
      background-position: center center;
      /* optional, center the image */ }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .buttonContainer .segmentIkon {
      width: 20px;
      height: 20px; }
  .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny {
    width: 50%;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em; }
    @media screen and (max-width: 600px) {
      .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny {
        flex-direction: column; } }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny img {
      width: 50px;
      height: auto; }
    .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny p {
      margin-left: 20px;
      font-size: 27px; }
      @media screen and (max-width: 600px) {
        .sf-block-574[data-block-id="102"] .segmentmeny-wrapper .segmentmeny p {
          margin-left: 0;
          margin-top: 10px; } }

.sf-block-587[data-block-id="106"] .twocolumnskontakt-background {
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: row;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 20px;
  padding-bottom: 30px; }
  @media (max-width: 767.98px) {
    .sf-block-587[data-block-id="106"] .twocolumnskontakt-background {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-587[data-block-id="106"] .twocolumnskontakt-background {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-587[data-block-id="106"] .twocolumnskontakt-background {
      display: block; } }
  .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .echo-container-md {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 991.98px) {
      .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .echo-container-md {
        display: block; } }
  .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .columnContainer {
    display: inline-block;
    width: 40%; }
    @media (max-width: 991.98px) {
      .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .columnContainer {
        width: 100%;
        display: block;
        margin-bottom: 50px; } }
    .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .columnContainer .twocolumnskontakt-column {
      flex: 50%;
      display: flex;
      /* vertical stretch */ }
      .sf-block-587[data-block-id="106"] .twocolumnskontakt-background .columnContainer .twocolumnskontakt-column:nth-child(1) {
        margin-bottom: 20px; }

.sf-block-587[data-block-id="106"] h1 {
  color: #f58f2d;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-587[data-block-id="106"] h1 {
      font-size: 27.69231px; } }

.sf-block-587[data-block-id="106"] h2 {
  color: #f58f2d;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-587[data-block-id="106"] h2 {
      font-size: 21.53846px; } }

.sf-block-587[data-block-id="106"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-587[data-block-id="106"] h3 {
      font-size: 16.66667px; } }

.sf-block-587[data-block-id="106"] h4 {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 18px !important; }
  @media (max-width: 991.98px) {
    .sf-block-587[data-block-id="106"] h4 {
      font-size: 15px !important; } }

.sf-block-587[data-block-id="106"] h5 {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 12px !important; }

.sf-block-587[data-block-id="106"] p, .sf-block-587[data-block-id="106"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-587[data-block-id="106"] .twocolumnskontakt-header {
  width: 100%; }

.sf-block-591[data-block-id="113"] .supportformular-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-591[data-block-id="113"] .supportformular-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-591[data-block-id="113"] .supportformular-wrapper {
      padding-bottom: 30px; } }

.sf-block-592[data-block-id="114"] .freetrialformular-wrapper {
  position: relative;
  pointer-events: none; }
  .sf-block-592[data-block-id="114"] .freetrialformular-wrapper h1 {
    color: #f58f2d;
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      .sf-block-592[data-block-id="114"] .freetrialformular-wrapper h1 {
        font-size: 24px; } }
  .sf-block-592[data-block-id="114"] .freetrialformular-wrapper h3 {
    color: #3b3d44;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em; }
    @media (max-width: 991.98px) {
      .sf-block-592[data-block-id="114"] .freetrialformular-wrapper h3 {
        font-size: 13.33333px; } }
  .sf-block-592[data-block-id="114"] .freetrialformular-wrapper p {
    color: white;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.25); }
    @media (max-width: 991.98px) {
      .sf-block-592[data-block-id="114"] .freetrialformular-wrapper p {
        font-size: 16px; } }

.sf-block-592[data-block-id="114"] .freetrialformular-content {
  display: flex;
  min-height: 800px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-wrap: wrap; }

.sf-block-592[data-block-id="114"] .freetrialformular-column-1 {
  width: calc(60% - 20px);
  width: 30%;
  margin-right: 20px;
  pointer-events: auto; }
  @media (max-width: 991.98px) {
    .sf-block-592[data-block-id="114"] .freetrialformular-column-1 {
      width: 100%;
      margin-right: 0;
      margin-left: 0; } }

.sf-block-592[data-block-id="114"] .freetrialformular-column-2 {
  width: calc(40% - 20px);
  margin-left: 20px;
  pointer-events: auto; }
  @media (max-width: 991.98px) {
    .sf-block-592[data-block-id="114"] .freetrialformular-column-2 {
      width: 100%;
      margin-left: 0; } }

.sf-block-592[data-block-id="114"] .freetrialformular-column-1-content {
  max-width: 600px;
  margin-left: 35px;
  margin-right: auto;
  padding-top: 0; }
  @media (max-width: 991.98px) {
    .sf-block-592[data-block-id="114"] .freetrialformular-column-1-content {
      margin-left: 0;
      padding-top: 60px; } }

.sf-block-592[data-block-id="114"] .freetrialformular-card {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 35px;
  text-align: center; }
  .sf-block-592[data-block-id="114"] .freetrialformular-card h3 {
    margin-bottom: 30px; }
  @media (max-width: 991.98px) {
    .sf-block-592[data-block-id="114"] .freetrialformular-card {
      padding-left: 0;
      padding-right: 0; } }

.sf-block-592[data-block-id="114"] .freetrialformular-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.768627);
  pointer-events: none; }

.sf-block-592[data-block-id="114"] .freetrialformular-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  top: 0;
  pointer-events: auto; }

.sf-block-592[data-block-id="114"] button {
  background-color: #f58f2d;
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  .sf-block-592[data-block-id="114"] button:hover {
    background-color: #f58f2d;
    color: white; }

.sf-block-592[data-block-id="114"] .echo-form-group-error-text {
  color: #626167;
  driver: google;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-593[data-block-id="117"] .kontaktformular-wrapper {
  position: relative;
  pointer-events: none;
  margin-top: 30px; }
  @media (max-width: 991.98px) {
    .sf-block-593[data-block-id="117"] .kontaktformular-wrapper {
      margin-top: 0; } }
  .sf-block-593[data-block-id="117"] .kontaktformular-wrapper h1 {
    color: #f58f2d;
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      .sf-block-593[data-block-id="117"] .kontaktformular-wrapper h1 {
        font-size: 27.69231px; } }
    @media (max-width: 767.98px) {
      .sf-block-593[data-block-id="117"] .kontaktformular-wrapper h1 {
        font-size: 22.5px; } }
  .sf-block-593[data-block-id="117"] .kontaktformular-wrapper h3 {
    color: #3b3d44;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em; }
    @media (max-width: 767.98px) {
      .sf-block-593[data-block-id="117"] .kontaktformular-wrapper h3 {
        font-size: 22.5px; } }
  .sf-block-593[data-block-id="117"] .kontaktformular-wrapper p {
    color: white;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.085em;
    text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.25); }
    @media (max-width: 991.98px) {
      .sf-block-593[data-block-id="117"] .kontaktformular-wrapper p {
        font-size: 16px; } }

.sf-block-593[data-block-id="117"] .kontaktformular-content {
  display: flex;
  min-height: 800px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-wrap: wrap; }

.sf-block-593[data-block-id="117"] .kontaktformular-column-1 {
  width: calc(60% - 20px);
  margin-right: 20px;
  pointer-events: auto; }
  @media (max-width: 991.98px) {
    .sf-block-593[data-block-id="117"] .kontaktformular-column-1 {
      width: 100%;
      margin-right: 0; } }

.sf-block-593[data-block-id="117"] .kontaktformular-column-2 {
  width: calc(40% - 20px);
  margin-left: 20px;
  pointer-events: auto; }
  @media (max-width: 991.98px) {
    .sf-block-593[data-block-id="117"] .kontaktformular-column-2 {
      width: 100%;
      margin-left: 0; } }

.sf-block-593[data-block-id="117"] .kontaktformular-column-1-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px; }

.sf-block-593[data-block-id="117"] .kontaktformular-card {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 35px;
  text-align: center; }
  .sf-block-593[data-block-id="117"] .kontaktformular-card h3 {
    margin-bottom: 30px; }
  @media (max-width: 991.98px) {
    .sf-block-593[data-block-id="117"] .kontaktformular-card {
      padding-left: 20px;
      padding-right: 20px; } }

.sf-block-593[data-block-id="117"] .kontaktformular-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.768627);
  pointer-events: none; }

.sf-block-593[data-block-id="117"] .kontaktformular-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  top: 0;
  pointer-events: auto; }

.sf-block-593[data-block-id="117"] .echo-form-group label,
.sf-block-593[data-block-id="117"] .echo-form-group .echo-label {
  color: #626167;
  driver: google;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-593[data-block-id="117"] .echo-form-group input[type="text"],
.sf-block-593[data-block-id="117"] .echo-form-group input[type="email"],
.sf-block-593[data-block-id="117"] .echo-form-group textarea {
  color: #3b3d44;
  driver: google;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  border-width: 1px;
  border-style: solid;
  border-color: #e6e1de;
  background-color: white; }
  .sf-block-593[data-block-id="117"] .echo-form-group input[type="text"]:focus, .sf-block-593[data-block-id="117"] .echo-form-group input[type="text"]:active,
  .sf-block-593[data-block-id="117"] .echo-form-group input[type="email"]:focus,
  .sf-block-593[data-block-id="117"] .echo-form-group input[type="email"]:active,
  .sf-block-593[data-block-id="117"] .echo-form-group textarea:focus,
  .sf-block-593[data-block-id="117"] .echo-form-group textarea:active {
    border-color: #f58f2d;
    background-color: white; }

.sf-block-593[data-block-id="117"] .echo-form-group select {
  color: #3b3d44;
  driver: google;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  border-color: #e6e1de;
  background-color: white; }
  .sf-block-593[data-block-id="117"] .echo-form-group select:focus {
    border-color: #f58f2d;
    background-color: white; }

.sf-block-593[data-block-id="117"] .echo-form-group .echo-radio [type="radio"]:checked + label:before,
.sf-block-593[data-block-id="117"] .echo-form-group .echo-radio [type="radio"]:not(:checked) + label:before {
  background-color: white;
  border-color: #e6e1de; }

.sf-block-593[data-block-id="117"] .echo-form-group .echo-radio [type="radio"]:checked + label:after,
.sf-block-593[data-block-id="117"] .echo-form-group .echo-radio [type="radio"]:not(:checked) + label:after {
  background-color: #f58f2d;
  border-color: #e6e1de; }

.sf-block-593[data-block-id="117"] .echo-form-group .echo-checkbox > span::before {
  border-color: #e6e1de;
  background-color: white; }

.sf-block-593[data-block-id="117"] .echo-form-group .echo-checkbox > input:checked + span::before,
.sf-block-593[data-block-id="117"] .echo-form-group .echo-checkbox > input:indeterminate + span::before {
  background-color: #f58f2d;
  border-color: #f58f2d; }

.sf-block-593[data-block-id="117"] .echo-form-group .echo-checkbox > input:checked + span::after,
.sf-block-593[data-block-id="117"] .echo-form-group .echo-checkbox > input:indeterminate + span::after {
  border-color: #fff; }

.sf-block-593[data-block-id="117"] .echo-form-group.echo-form-group-divider {
  border-color: #e6e1de; }
  .sf-block-593[data-block-id="117"] .echo-form-group.echo-form-group-divider .echo-divider-title {
    color: #626167;
    driver: google;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    font-weight: bold; }
  .sf-block-593[data-block-id="117"] .echo-form-group.echo-form-group-divider .echo-divider-description {
    color: #626167;
    driver: google;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em; }

.sf-block-593[data-block-id="117"] button {
  background-color: #f58f2d;
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  .sf-block-593[data-block-id="117"] button:hover {
    background-color: #f58f2d;
    color: white; }

.sf-block-593[data-block-id="117"] .echo-form-group-error-text {
  color: #626167;
  driver: google;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-text-1[data-block-id="120"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="120"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="120"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p, .sf-block-text-1[data-block-id="120"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="120"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="120"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="120"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="120"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="121"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="121"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="121"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p, .sf-block-text-1[data-block-id="121"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="121"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="121"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="121"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="121"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="142"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="142"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="142"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p, .sf-block-text-1[data-block-id="142"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="142"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="142"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="142"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="142"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="144"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="144"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="144"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p, .sf-block-text-1[data-block-id="144"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="144"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="144"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="144"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="144"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="160"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="160"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="160"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p, .sf-block-text-1[data-block-id="160"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="160"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="160"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="160"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="160"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="162"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="162"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="162"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p, .sf-block-text-1[data-block-id="162"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="162"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="162"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="162"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="162"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="178"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="178"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="178"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p, .sf-block-text-1[data-block-id="178"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="178"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="178"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="178"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="178"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="179"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="179"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="179"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p, .sf-block-text-1[data-block-id="179"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="179"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="179"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="179"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="179"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="180"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="180"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="180"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p, .sf-block-text-1[data-block-id="180"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="180"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="180"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="180"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="180"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="181"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="181"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="181"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p, .sf-block-text-1[data-block-id="181"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="181"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="181"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="181"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="181"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="182"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="182"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="182"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p, .sf-block-text-1[data-block-id="182"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="182"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="182"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="182"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="182"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="185"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="185"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="185"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p, .sf-block-text-1[data-block-id="185"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="185"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="185"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="185"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="185"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="187"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="187"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="187"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p, .sf-block-text-1[data-block-id="187"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="187"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="187"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="187"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="187"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="188"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="188"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="188"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p, .sf-block-text-1[data-block-id="188"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="188"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="188"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="188"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="188"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="190"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="190"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="190"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p, .sf-block-text-1[data-block-id="190"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="190"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="190"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="190"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="190"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="197"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="197"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="197"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p, .sf-block-text-1[data-block-id="197"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="197"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="197"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="197"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="197"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="255"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="255"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="255"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p, .sf-block-text-1[data-block-id="255"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="255"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="255"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="255"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="255"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-text-1[data-block-id="257"] .text-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="257"] .text-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-text-1[data-block-id="257"] .text-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p, .sf-block-text-1[data-block-id="257"] .text-1-wrapper li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2em;
    color: #3b3d44;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="257"] .text-1-wrapper h1 {
        font-size: 27.69231px; } }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="257"] .text-1-wrapper h2 {
        font-size: 21.53846px; } }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h3 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.085em;
    line-height: 1.6em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="257"] .text-1-wrapper h3 {
        font-size: 16.66667px; } }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    padding-bottom: 10px; }
    @media (max-width: 991.98px) {
      .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4 {
        font-size: 15px; } }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h5 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.115em;
    line-height: 1.5em;
    color: #626167;
    max-font-size: 100px; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper a {
    color: #f58f2d; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p + h1,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p + h2,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p + h3,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p + h4 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4 + h1,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4 + h2,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4 + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper ul + h1,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper ul + h2,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper ul + h3 {
    padding-top: 30px; }
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h1:last-child,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h2:last-child,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h3:last-child,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h4:last-child,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper h5:last-child,
  .sf-block-text-1[data-block-id="257"] .text-1-wrapper p:last-child {
    padding-bottom: 0; }

.sf-block-594[data-block-id="122"] .whitepaperformular-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(245, 143, 45, 0.1); }
  @media (max-width: 767.98px) {
    .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper {
      border-width: 11px; } }
  .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper h2 {
    color: #3b3d44;
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    margin-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper h2 {
        font-size: 22.5px; } }
  .sf-block-594[data-block-id="122"] .whitepaperformular-wrapper p {
    color: #3b3d44;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em; }

.sf-block-594[data-block-id="122"] .whitepaperformular-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  @media (max-width: 991.98px) {
    .sf-block-594[data-block-id="122"] .whitepaperformular-flex {
      flex-direction: column-reverse;
      max-width: 500px;
      margin: 0 auto; } }
  .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-text-column {
    width: 60%;
    z-index: 3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 35px; }
    @media (max-width: 991.98px) {
      .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-text-column {
        width: 100%; } }
  .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-image-column {
    width: 40%; }
    .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-image-column img {
      width: 100%;
      border-radius: 100%;
      max-width: 500px;
      max-height: 500px; }
    @media (max-width: 991.98px) {
      .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-image-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: center; }
        .sf-block-594[data-block-id="122"] .whitepaperformular-flex .whitepaperformular-image-column img {
          max-width: 300px;
          max-height: 300px; } }

.sf-block-594[data-block-id="122"] .whitepaperformular-form-wrapper {
  margin-top: 35px;
  max-width: 430px; }

.sf-block-594[data-block-id="122"] .echo-form-group label,
.sf-block-594[data-block-id="122"] .echo-form-group .echo-label {
  color: #626167;
  driver: google;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-594[data-block-id="122"] .echo-form-group input[type="text"],
.sf-block-594[data-block-id="122"] .echo-form-group input[type="email"],
.sf-block-594[data-block-id="122"] .echo-form-group textarea {
  color: #3b3d44;
  driver: google;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  border-width: 1px;
  border-style: solid;
  border-color: #e6e1de;
  background-color: white; }
  .sf-block-594[data-block-id="122"] .echo-form-group input[type="text"]:focus, .sf-block-594[data-block-id="122"] .echo-form-group input[type="text"]:active,
  .sf-block-594[data-block-id="122"] .echo-form-group input[type="email"]:focus,
  .sf-block-594[data-block-id="122"] .echo-form-group input[type="email"]:active,
  .sf-block-594[data-block-id="122"] .echo-form-group textarea:focus,
  .sf-block-594[data-block-id="122"] .echo-form-group textarea:active {
    border-color: #f58f2d;
    background-color: white; }

.sf-block-594[data-block-id="122"] .echo-form-group select {
  color: #3b3d44;
  driver: google;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  border-color: #e6e1de;
  background-color: white; }
  .sf-block-594[data-block-id="122"] .echo-form-group select:focus {
    border-color: #f58f2d;
    background-color: white; }

.sf-block-594[data-block-id="122"] .echo-form-group .echo-radio [type="radio"]:checked + label:before,
.sf-block-594[data-block-id="122"] .echo-form-group .echo-radio [type="radio"]:not(:checked) + label:before {
  background-color: white;
  border-color: #e6e1de; }

.sf-block-594[data-block-id="122"] .echo-form-group .echo-radio [type="radio"]:checked + label:after,
.sf-block-594[data-block-id="122"] .echo-form-group .echo-radio [type="radio"]:not(:checked) + label:after {
  background-color: #f58f2d;
  border-color: #e6e1de; }

.sf-block-594[data-block-id="122"] .echo-form-group .echo-checkbox > span::before {
  border-color: #e6e1de;
  background-color: white; }

.sf-block-594[data-block-id="122"] .echo-form-group .echo-checkbox > input:checked + span::before,
.sf-block-594[data-block-id="122"] .echo-form-group .echo-checkbox > input:indeterminate + span::before {
  background-color: #f58f2d;
  border-color: #f58f2d; }

.sf-block-594[data-block-id="122"] .echo-form-group .echo-checkbox > input:checked + span::after,
.sf-block-594[data-block-id="122"] .echo-form-group .echo-checkbox > input:indeterminate + span::after {
  border-color: #fff; }

.sf-block-594[data-block-id="122"] .echo-form-group.echo-form-group-divider {
  border-color: #e6e1de; }
  .sf-block-594[data-block-id="122"] .echo-form-group.echo-form-group-divider .echo-divider-title {
    color: #626167;
    driver: google;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em;
    font-weight: bold; }
  .sf-block-594[data-block-id="122"] .echo-form-group.echo-form-group-divider .echo-divider-description {
    color: #626167;
    driver: google;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.115em; }

.sf-block-594[data-block-id="122"] button {
  background-color: #f58f2d;
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.9em;
  letter-spacing: 0.085em; }
  .sf-block-594[data-block-id="122"] button:hover {
    background-color: #f58f2d;
    color: white; }

.sf-block-594[data-block-id="122"] .echo-form-group-error-text {
  color: #626167;
  driver: google;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-594[data-block-id="122"] .whitepaperformular-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  top: 0;
  pointer-events: auto; }

.sf-block-594[data-block-id="122"] .whitepaperformular-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.768627);
  pointer-events: none; }

.sf-block-596[data-block-id="126"] .whitepaperformular-wrapper {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper {
      border-width: 11px; } }
  .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper h2 {
    color: #3b3d44;
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.085em;
    margin-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper h2 {
        font-size: 22.5px; } }
  .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper p {
    color: #3b3d44;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em;
    margin-bottom: 20px; }
  .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper a.test {
    padding: 15px 45px;
    border-radius: 0;
    background-color: #f58f2d;
    text-decoration: none;
    margin: 0 auto;
    display: inline-block;
    color: white;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em; }
  .sf-block-596[data-block-id="126"] .whitepaperformular-wrapper a.test:hover {
    color: white;
    background-color: #f58f2d; }

.sf-block-596[data-block-id="126"] .whitepaperformular-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  @media (max-width: 991.98px) {
    .sf-block-596[data-block-id="126"] .whitepaperformular-flex {
      flex-direction: column-reverse;
      max-width: 500px;
      margin: 0 auto; } }
  .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-text-column {
    width: 60%;
    z-index: 3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 35px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-text-column {
        width: 100%; } }
  .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-image-column {
    width: 40%; }
    .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-image-column img {
      width: 100%;
      max-width: 500px;
      max-height: 500px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-image-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: center; }
        .sf-block-596[data-block-id="126"] .whitepaperformular-flex .whitepaperformular-image-column img {
          max-width: 300px;
          max-height: 300px; } }

.sf-block-596[data-block-id="126"] .whitepaperformular-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  top: 0;
  pointer-events: auto; }

.sf-block-596[data-block-id="126"] .whitepaperformular-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.768627);
  pointer-events: none; }

.sf-block-596[data-block-id="161"] .whitepaperformular-wrapper {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper {
      border-width: 11px; } }
  .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.085em;
    line-height: 1.35em;
    color: #3b3d44;
    max-font-size: 100px;
    margin-bottom: 15px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper h2 {
        font-size: 22.5px; } }
  .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: #3b3d44;
    max-font-size: 100px;
    margin-bottom: 20px; }
  .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper a.test {
    padding: 15px 45px;
    border-radius: 0;
    background-color: #f58f2d;
    text-decoration: none;
    margin: 0 auto;
    display: inline-block;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: white;
    max-font-size: 100px; }
  .sf-block-596[data-block-id="161"] .whitepaperformular-wrapper a.test:hover {
    color: white;
    background-color: #f58f2d; }

.sf-block-596[data-block-id="161"] .whitepaperformular-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  @media (max-width: 991.98px) {
    .sf-block-596[data-block-id="161"] .whitepaperformular-flex {
      flex-direction: column-reverse;
      max-width: 500px;
      margin: 0 auto; } }
  .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-text-column {
    width: 60%;
    z-index: 3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 35px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-text-column {
        width: 100%; } }
  .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-image-column {
    width: 40%; }
    .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-image-column img {
      width: 100%;
      max-width: 500px;
      max-height: 500px; }
    @media (max-width: 991.98px) {
      .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-image-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: center; }
        .sf-block-596[data-block-id="161"] .whitepaperformular-flex .whitepaperformular-image-column img {
          max-width: 300px;
          max-height: 300px; } }

.sf-block-596[data-block-id="161"] .whitepaperformular-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  top: 0;
  pointer-events: auto; }

.sf-block-596[data-block-id="161"] .whitepaperformular-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.02);
  pointer-events: none; }

.sf-block-598[data-block-id="129"] .singlebuttonblock-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #474747;
  text-align: left; }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="129"] .singlebuttonblock-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="129"] .singlebuttonblock-wrapper {
      padding-bottom: 30px; } }
  .sf-block-598[data-block-id="129"] .singlebuttonblock-wrapper a.singlebuttonblock {
    padding: 15px 45px;
    border-radius: 0;
    background-color: #f58f2d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em; }
  .sf-block-598[data-block-id="129"] .singlebuttonblock-wrapper a.singlebuttonblock:hover {
    color: white;
    background-color: #7a7a7a; }

.sf-block-598[data-block-id="219"] .singlebuttonblock-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: white;
  text-align: left; }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="219"] .singlebuttonblock-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="219"] .singlebuttonblock-wrapper {
      padding-bottom: 30px; } }
  .sf-block-598[data-block-id="219"] .singlebuttonblock-wrapper a.singlebuttonblock {
    padding: 15px 45px;
    border-radius: 0;
    background-color: #f58f2d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: white;
    max-font-size: 100px; }
  .sf-block-598[data-block-id="219"] .singlebuttonblock-wrapper a.singlebuttonblock:hover {
    color: white;
    background-color: #f58f2d; }

.sf-block-598[data-block-id="244"] .singlebuttonblock-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: white;
  text-align: left; }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="244"] .singlebuttonblock-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-598[data-block-id="244"] .singlebuttonblock-wrapper {
      padding-bottom: 30px; } }
  .sf-block-598[data-block-id="244"] .singlebuttonblock-wrapper a.singlebuttonblock {
    padding: 15px 45px;
    border-radius: 0;
    background-color: #f58f2d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: white;
    max-font-size: 100px; }
  .sf-block-598[data-block-id="244"] .singlebuttonblock-wrapper a.singlebuttonblock:hover {
    color: white;
    background-color: #f58f2d; }

.sf-block-599[data-block-id="130"] .trekolumnerstartsida-background {
  background-color: #73aab4;
  position: relative; }
  .sf-block-599[data-block-id="130"] .trekolumnerstartsida-background .triangleElement {
    -webkit-clip-path: polygon(100% 60%, 0% 100%, 100% 100%);
    clip-path: polygon(100% 60%, 0% 100%, 100% 100%);
    background-color: #474747;
    width: 500px;
    height: 400px;
    position: absolute;
    bottom: 0;
    right: 0; }
    @media screen and (max-width: 1200px) {
      .sf-block-599[data-block-id="130"] .trekolumnerstartsida-background .triangleElement {
        width: 400px;
        height: 300px; } }

.sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper {
  position: relative;
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px; }
  @media (max-width: 991.98px) {
    .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper {
      display: block;
      padding-bottom: 0; } }
  .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column {
    flex: 1;
    display: flex;
    /* vertical stretch */
    justify-content: center;
    padding: 70px 50px; }
    @media screen and (max-width: 1000px) {
      .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column {
        padding: 20px 50px;
        justify-content: left; } }
    @media (max-width: 767.98px) {
      .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column {
        padding: 10px; } }
    .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(1) {
      justify-content: flex-end; }
      @media screen and (max-width: 1200px) {
        .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(1) {
          justify-content: left; } }
    @media (max-width: 991.98px) {
      .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(1), .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(2) {
        margin: 0; } }
    .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(2) {
      padding: 70px 0; }
      @media screen and (max-width: 1000px) {
        .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(2) {
          padding: 20px 50px; } }
      @media (max-width: 767.98px) {
        .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(2) {
          padding: 10px; } }
    @media (max-width: 991.98px) {
      .sf-block-599[data-block-id="130"] .trekolumnerstartsida-wrapper .trekolumnerstartsida-column:nth-child(3) {
        margin: 0 0 0 0;
        padding-bottom: 100px; } }

.sf-block-599[data-block-id="130"] h1 {
  color: white;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-599[data-block-id="130"] h1 {
      font-size: 27.69231px; } }

.sf-block-599[data-block-id="130"] h2 {
  color: white;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-599[data-block-id="130"] h2 {
      font-size: 21.53846px; } }

.sf-block-599[data-block-id="130"] h3 {
  color: white;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-599[data-block-id="130"] h3 {
      font-size: 16.66667px; } }

.sf-block-599[data-block-id="130"] h4 {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 18px !important; }
  @media (max-width: 991.98px) {
    .sf-block-599[data-block-id="130"] h4 {
      font-size: 15px !important; } }

.sf-block-599[data-block-id="130"] h5 {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 12px !important; }

.sf-block-599[data-block-id="130"] p, .sf-block-599[data-block-id="130"] li {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-600[data-block-id="133"] .tekniskaspecblock-background {
  background-color: white; }

.sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper {
  position: relative;
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 991.98px) {
    .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper {
      display: block; } }
  .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column {
    flex: 1;
    display: flex;
    /* vertical stretch */ }
    .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(1), .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(2) {
      margin-right: 15px;
      border-right: 4px solid #F58F2D; }
      @media (max-width: 991.98px) {
        .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(1), .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(2) {
          margin: 0 0 30px 0;
          border-right: none;
          border-bottom: 4px solid #F58F2D; } }
    .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(3) {
      margin-left: 0; }
      @media (max-width: 991.98px) {
        .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-column:nth-child(3) {
          margin: 0 0 0 0; } }
  .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-content {
    padding: 65px 75px 40px 75px;
    flex: 1; }
    @media (max-width: 767.98px) {
      .sf-block-600[data-block-id="133"] .tekniskaspecblock-wrapper .tekniskaspecblock-content {
        padding: 30px; } }

.sf-block-600[data-block-id="133"] h1 {
  color: #f58f2d;
  font-size: 36px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.35em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-600[data-block-id="133"] h1 {
      font-size: 27.69231px; } }

.sf-block-600[data-block-id="133"] h2 {
  color: #f58f2d;
  font-size: 28px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-600[data-block-id="133"] h2 {
      font-size: 21.53846px; } }

.sf-block-600[data-block-id="133"] h3 {
  color: #3b3d44;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.085em; }
  @media (max-width: 991.98px) {
    .sf-block-600[data-block-id="133"] h3 {
      font-size: 16.66667px; } }

.sf-block-600[data-block-id="133"] h4 {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 18px !important; }
  @media (max-width: 991.98px) {
    .sf-block-600[data-block-id="133"] h4 {
      font-size: 15px !important; } }

.sf-block-600[data-block-id="133"] h5 {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-size: 12px !important; }

.sf-block-600[data-block-id="133"] p, .sf-block-600[data-block-id="133"] li {
  color: #3b3d44;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em; }

.sf-block-601[data-block-id="140"] .faq-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-601[data-block-id="140"] .faq-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-601[data-block-id="140"] .faq-wrapper {
      padding-bottom: 30px; } }

.sf-block-601[data-block-id="140"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  font-size: 28px !important;
  text-align: center; }

.sf-block-601[data-block-id="140"] .faq-item {
  position: relative; }
  .sf-block-601[data-block-id="140"] .faq-item .faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #f8f8f7;
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.085em;
    line-height: 1.5em;
    color: #3b3d44;
    max-font-size: 100px;
    text-decoration: none; }
    .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-up,
    .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-down {
      color: #3b3d44; }
      .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-up svg,
      .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-down svg {
        fill: currentColor; }
    .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-up {
      display: none; }
    .sf-block-601[data-block-id="140"] .faq-item .faq-question .faq-arrow-down {
      display: block; }
  .sf-block-601[data-block-id="140"] .faq-item .faq-answer {
    padding: 25px; }
    .sf-block-601[data-block-id="140"] .faq-item .faq-answer p, .sf-block-601[data-block-id="140"] .faq-item .faq-answer li {
      font-family: Poppins;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2em;
      color: #3b3d44;
      max-font-size: 100px; }
  .sf-block-601[data-block-id="140"] .faq-item.faq-item--active {
    background-color: #f8f8f7;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); }
    .sf-block-601[data-block-id="140"] .faq-item.faq-item--active .faq-arrow-up {
      display: block; }
    .sf-block-601[data-block-id="140"] .faq-item.faq-item--active .faq-arrow-down {
      display: none; }

.sf-block-button-1[data-block-id="159"] .button-1-wrapper {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: white;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-button-1[data-block-id="159"] .button-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-button-1[data-block-id="159"] .button-1-wrapper a.button-1 {
    padding: 15px 45px;
    border-radius: 100px;
    background-color: #f58f2d;
    text-decoration: none;
    display: inline-block;
    color: white;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.9em;
    letter-spacing: 0.085em; }
  .sf-block-button-1[data-block-id="159"] .button-1-wrapper a.button-1:hover {
    color: white;
    background-color: #474747; }

.sf-block-quote-1[data-block-id="195"] .quote-1-gradient {
  --color1: #474747;
  --color2: #474747;
  background-image: linear-gradient(var(--color1), var(--color2));
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-quote-1[data-block-id="195"] .quote-1-gradient {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-quote-1[data-block-id="195"] .quote-1-gradient {
      padding-bottom: 30px; } }

.sf-block-quote-1[data-block-id="195"] .quote-1-item {
  color: #474747;
  display: flex; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] .quote-1-item {
      display: block; } }

.sf-block-quote-1[data-block-id="195"] .quote-1-content {
  width: calc(100% - 150px);
  padding-left: 44px;
  position: relative; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] .quote-1-content {
      width: 100%;
      padding-left: 0; } }
  .sf-block-quote-1[data-block-id="195"] .quote-1-content:before {
    content: '';
    position: absolute;
    margin-left: -22px;
    margin-top: 0px;
    height: 100%;
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: rgba(255, 255, 255, 0.4); }
    @media (max-width: 991.98px) {
      .sf-block-quote-1[data-block-id="195"] .quote-1-content:before {
        display: none; } }

.sf-block-quote-1[data-block-id="195"] .quote-1-image {
  margin: 0 auto 22px auto;
  width: 150px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] .quote-1-image {
      padding-bottom: 22px;
      border-bottom-width: 2px;
      border-bottom-style: solid;
      border-bottom-color: rgba(255, 255, 255, 0.4); } }

.sf-block-quote-1[data-block-id="195"] .quote-1-image img {
  display: inline;
  width: auto;
  border-radius: 100%; }

.sf-block-quote-1[data-block-id="195"] .quote-1-text p a {
  color: #f58f2d; }

.sf-block-quote-1[data-block-id="195"] .quote-1-author {
  margin-top: 20px; }
  .sf-block-quote-1[data-block-id="195"] .quote-1-author p a {
    color: #f58f2d; }

.sf-block-quote-1[data-block-id="195"] .owl-carousel button:focus {
  outline: none; }

.sf-block-quote-1[data-block-id="195"] .owl-carousel button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color; }

.sf-block-quote-1[data-block-id="195"] .owl-carousel {
  opacity: 0;
  transition: opacity 1s ease-in-out; }

.sf-block-quote-1[data-block-id="195"] .owl-carousel.sf-loaded {
  opacity: 1; }

.sf-block-quote-1[data-block-id="195"] .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px; }

.sf-block-quote-1[data-block-id="195"] .quoteIn {
  -webkit-animation-name: quoteIn;
  animation-name: quoteIn; }

.sf-block-quote-1[data-block-id="195"] .quoteOut {
  -webkit-animation-name: quoteOut;
  animation-name: quoteOut; }

@-webkit-keyframes quoteOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes quoteOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes quoteIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes quoteIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.sf-block-quote-1[data-block-id="195"] .sf-repeater-buttons {
  position: relative; }

.sf-block-quote-1[data-block-id="195"] p, .sf-block-quote-1[data-block-id="195"] li {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em; }

.sf-block-quote-1[data-block-id="195"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] h1 {
      font-size: 27.69231px; } }

.sf-block-quote-1[data-block-id="195"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] h2 {
      font-size: 21.53846px; } }

.sf-block-quote-1[data-block-id="195"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] h3 {
      font-size: 16.66667px; } }

.sf-block-quote-1[data-block-id="195"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="195"] h4 {
      font-size: 15px; } }

.sf-block-quote-1[data-block-id="195"] h5 {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-quote-1[data-block-id="195"] a {
  color: #f58f2d; }

.sf-block-quote-1[data-block-id="195"] p + h1,
.sf-block-quote-1[data-block-id="195"] p + h2,
.sf-block-quote-1[data-block-id="195"] p + h3,
.sf-block-quote-1[data-block-id="195"] p + h4 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="195"] h4 + h1,
.sf-block-quote-1[data-block-id="195"] h4 + h2,
.sf-block-quote-1[data-block-id="195"] h4 + h3 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="195"] ul + h1,
.sf-block-quote-1[data-block-id="195"] ul + h2,
.sf-block-quote-1[data-block-id="195"] ul + h3 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="195"] h1:last-child,
.sf-block-quote-1[data-block-id="195"] h2:last-child,
.sf-block-quote-1[data-block-id="195"] h3:last-child,
.sf-block-quote-1[data-block-id="195"] h4:last-child,
.sf-block-quote-1[data-block-id="195"] h5:last-child,
.sf-block-quote-1[data-block-id="195"] p:last-child {
  padding-bottom: 0; }

.sf-block-quote-1[data-block-id="196"] .quote-1-gradient {
  --color1: #474747;
  --color2: #474747;
  background-image: linear-gradient(var(--color1), var(--color2));
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-quote-1[data-block-id="196"] .quote-1-gradient {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-quote-1[data-block-id="196"] .quote-1-gradient {
      padding-bottom: 30px; } }

.sf-block-quote-1[data-block-id="196"] .quote-1-item {
  color: #474747;
  display: flex; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] .quote-1-item {
      display: block; } }

.sf-block-quote-1[data-block-id="196"] .quote-1-content {
  width: calc(100% - 150px);
  padding-left: 44px;
  position: relative; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] .quote-1-content {
      width: 100%;
      padding-left: 0; } }
  .sf-block-quote-1[data-block-id="196"] .quote-1-content:before {
    content: '';
    position: absolute;
    margin-left: -22px;
    margin-top: 0px;
    height: 100%;
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: rgba(255, 255, 255, 0.4); }
    @media (max-width: 991.98px) {
      .sf-block-quote-1[data-block-id="196"] .quote-1-content:before {
        display: none; } }

.sf-block-quote-1[data-block-id="196"] .quote-1-image {
  margin: 0 auto 22px auto;
  width: 150px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] .quote-1-image {
      padding-bottom: 22px;
      border-bottom-width: 2px;
      border-bottom-style: solid;
      border-bottom-color: rgba(255, 255, 255, 0.4); } }

.sf-block-quote-1[data-block-id="196"] .quote-1-image img {
  display: inline;
  width: auto;
  border-radius: 100%; }

.sf-block-quote-1[data-block-id="196"] .quote-1-text p a {
  color: #f58f2d; }

.sf-block-quote-1[data-block-id="196"] .quote-1-author {
  margin-top: 20px; }
  .sf-block-quote-1[data-block-id="196"] .quote-1-author p a {
    color: #f58f2d; }

.sf-block-quote-1[data-block-id="196"] .owl-carousel button:focus {
  outline: none; }

.sf-block-quote-1[data-block-id="196"] .owl-carousel button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color; }

.sf-block-quote-1[data-block-id="196"] .owl-carousel {
  opacity: 0;
  transition: opacity 1s ease-in-out; }

.sf-block-quote-1[data-block-id="196"] .owl-carousel.sf-loaded {
  opacity: 1; }

.sf-block-quote-1[data-block-id="196"] .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px; }

.sf-block-quote-1[data-block-id="196"] .quoteIn {
  -webkit-animation-name: quoteIn;
  animation-name: quoteIn; }

.sf-block-quote-1[data-block-id="196"] .quoteOut {
  -webkit-animation-name: quoteOut;
  animation-name: quoteOut; }

@-webkit-keyframes quoteOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes quoteOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes quoteIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes quoteIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.sf-block-quote-1[data-block-id="196"] .sf-repeater-buttons {
  position: relative; }

.sf-block-quote-1[data-block-id="196"] p, .sf-block-quote-1[data-block-id="196"] li {
  color: white;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em; }

.sf-block-quote-1[data-block-id="196"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] h1 {
      font-size: 27.69231px; } }

.sf-block-quote-1[data-block-id="196"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] h2 {
      font-size: 21.53846px; } }

.sf-block-quote-1[data-block-id="196"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] h3 {
      font-size: 16.66667px; } }

.sf-block-quote-1[data-block-id="196"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: white;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-quote-1[data-block-id="196"] h4 {
      font-size: 15px; } }

.sf-block-quote-1[data-block-id="196"] h5 {
  color: white;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.115em; }

.sf-block-quote-1[data-block-id="196"] a {
  color: #f58f2d; }

.sf-block-quote-1[data-block-id="196"] p + h1,
.sf-block-quote-1[data-block-id="196"] p + h2,
.sf-block-quote-1[data-block-id="196"] p + h3,
.sf-block-quote-1[data-block-id="196"] p + h4 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="196"] h4 + h1,
.sf-block-quote-1[data-block-id="196"] h4 + h2,
.sf-block-quote-1[data-block-id="196"] h4 + h3 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="196"] ul + h1,
.sf-block-quote-1[data-block-id="196"] ul + h2,
.sf-block-quote-1[data-block-id="196"] ul + h3 {
  padding-top: 30px; }

.sf-block-quote-1[data-block-id="196"] h1:last-child,
.sf-block-quote-1[data-block-id="196"] h2:last-child,
.sf-block-quote-1[data-block-id="196"] h3:last-child,
.sf-block-quote-1[data-block-id="196"] h4:last-child,
.sf-block-quote-1[data-block-id="196"] h5:last-child,
.sf-block-quote-1[data-block-id="196"] p:last-child {
  padding-bottom: 0; }

.sf-block-568[data-block-id="198"] .referenserblock-background {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: white; }
  @media (max-width: 767.98px) {
    .sf-block-568[data-block-id="198"] .referenserblock-background {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-568[data-block-id="198"] .referenserblock-background {
      padding-bottom: 7.5px; } }

.sf-block-568[data-block-id="198"] .referenserblock-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.sf-block-568[data-block-id="198"] .referenserblock-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  text-align: left;
  margin-bottom: 40px; }
  @media (max-width: 991.98px) {
    .sf-block-568[data-block-id="198"] .referenserblock-title {
      font-size: 21.53846px; } }

.sf-block-568[data-block-id="198"] .referenserblock-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 45px 45px 45px;
  min-width: 175px;
  min-height: 75px; }

.sf-block-image-1[data-block-id="200"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="200"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="200"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="200"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-image-1[data-block-id="201"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="201"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="201"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="201"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-image-1[data-block-id="223"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="223"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="223"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="223"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-image-1[data-block-id="224"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="224"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="224"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="224"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-image-1[data-block-id="254"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="254"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="254"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="254"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-image-1[data-block-id="261"] .image-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center; }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="261"] .image-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-image-1[data-block-id="261"] .image-1-wrapper {
      padding-bottom: 30px; } }
  .sf-block-image-1[data-block-id="261"] .image-1-wrapper img {
    max-width: 100%; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-video-card-1[data-block-id="226"] .video-card-1-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-video-card-1[data-block-id="226"] .video-card-1-wrapper {
      padding-bottom: 30px; } }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -25px -12px;
  position: relative;
  justify-content: center; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-column {
  width: calc(100% / 3);
  margin: 0 0 25px 0; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] .video-card-1-column {
      width: 100%; } }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-content {
  position: relative;
  background-color: #fafbfb;
  border-radius: 10px;
  padding: 25px 25px 25px 25px;
  margin: 0px 12px 0px 12px;
  height: 100%; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] .video-card-1-content {
      max-width: 375px;
      margin-left: auto;
      margin-right: auto; } }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 205px; }
  .sf-block-video-card-1[data-block-id="226"] .video-card-1-image-wrapper a {
    display: block;
    height: 100%; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-play-icon-wrapper {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-play-icon {
  background-image: url('data:image/svg+xml;utf8,<svg width="46" height="46" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="23" cy="23" r="23" fill="%23f58f2d"/><path d="M33 23.45L17 14v18l16-8.55z" fill="%23fff"/></svg>');
  content: '';
  display: block;
  width: 46px;
  height: 46px;
  opacity: .8;
  transition: all 200ms ease-in-out; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image-overlay {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  pointer-events: none; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image {
  display: block;
  border-radius: 10px;
  width: 325px;
  height: 205px;
  transition: all 1.5s ease; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-text {
  padding: 20px 0 0 0; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image-wrapper--hover .video-card-1-image-overlay {
  background-color: transparent; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image-wrapper--hover .video-card-1-play-icon {
  opacity: 1; }

.sf-block-video-card-1[data-block-id="226"] .video-card-1-image-wrapper--hover .video-card-1-image {
  transform: scale(1.025); }

.sf-block-video-card-1[data-block-id="226"] p, .sf-block-video-card-1[data-block-id="226"] li {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #3b3d44;
  max-font-size: 100px; }

.sf-block-video-card-1[data-block-id="226"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] h1 {
      font-size: 27.69231px; } }

.sf-block-video-card-1[data-block-id="226"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] h2 {
      font-size: 21.53846px; } }

.sf-block-video-card-1[data-block-id="226"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] h3 {
      font-size: 16.66667px; } }

.sf-block-video-card-1[data-block-id="226"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 10px; }
  @media (max-width: 991.98px) {
    .sf-block-video-card-1[data-block-id="226"] h4 {
      font-size: 15px; } }

.sf-block-video-card-1[data-block-id="226"] h5 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.115em;
  line-height: 1.5em;
  color: #626167;
  max-font-size: 100px; }

.sf-block-video-card-1[data-block-id="226"] a {
  color: #f58f2d; }

.sf-block-video-card-1[data-block-id="226"] p + h1,
.sf-block-video-card-1[data-block-id="226"] p + h2,
.sf-block-video-card-1[data-block-id="226"] p + h3,
.sf-block-video-card-1[data-block-id="226"] p + h4 {
  padding-top: 30px; }

.sf-block-video-card-1[data-block-id="226"] h4 + h1,
.sf-block-video-card-1[data-block-id="226"] h4 + h2,
.sf-block-video-card-1[data-block-id="226"] h4 + h3 {
  padding-top: 30px; }

.sf-block-video-card-1[data-block-id="226"] ul + h1,
.sf-block-video-card-1[data-block-id="226"] ul + h2,
.sf-block-video-card-1[data-block-id="226"] ul + h3 {
  padding-top: 30px; }

.sf-block-video-card-1[data-block-id="226"] h1:last-child,
.sf-block-video-card-1[data-block-id="226"] h2:last-child,
.sf-block-video-card-1[data-block-id="226"] h3:last-child,
.sf-block-video-card-1[data-block-id="226"] h4:last-child,
.sf-block-video-card-1[data-block-id="226"] h5:last-child,
.sf-block-video-card-1[data-block-id="226"] p:last-child {
  padding-bottom: 0; }

.sf-block-562[data-block-id="258"] .tiltedleftimagetext-wrapper {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767.98px) {
    .sf-block-562[data-block-id="258"] .tiltedleftimagetext-wrapper {
      padding-top: 30px; } }
  @media (max-width: 767.98px) {
    .sf-block-562[data-block-id="258"] .tiltedleftimagetext-wrapper {
      padding-bottom: 30px; } }

.sf-block-562[data-block-id="258"] .block-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] .block-flex {
      flex-direction: column-reverse; } }

.sf-block-562[data-block-id="258"] .block-column {
  width: 50%; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] .block-column {
      width: 100%; } }

.sf-block-562[data-block-id="258"] .block-column--with-image {
  text-align: right; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] .block-column--with-image {
      text-align: center; } }
  .sf-block-562[data-block-id="258"] .block-column--with-image img {
    max-width: 100%;
    padding-left: 25px;
    border-radius: 100%; }
    @media (max-width: 991.98px) {
      .sf-block-562[data-block-id="258"] .block-column--with-image img {
        padding-left: 0;
        padding-bottom: 30px; } }

.sf-block-562[data-block-id="258"] .block-button-wrapper {
  display: block;
  text-align: center;
  margin-top: 60px; }
  .sf-block-562[data-block-id="258"] .block-button-wrapper a.block-button {
    padding: 15px 45px;
    border-radius: 100px;
    background-color: #f58f2d;
    text-decoration: none;
    display: inline-block;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.085em;
    line-height: 1.9em;
    color: white;
    max-font-size: 100px; }
  .sf-block-562[data-block-id="258"] .block-button-wrapper a.block-button:hover {
    color: white;
    background-color: #f58f2d; }

.sf-block-562[data-block-id="258"] p, .sf-block-562[data-block-id="258"] li {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #3b3d44;
  max-font-size: 100px; }

.sf-block-562[data-block-id="258"] h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.085em;
  line-height: 1.35em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] h1 {
      font-size: 27.69231px; } }

.sf-block-562[data-block-id="258"] h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.085em;
  line-height: 1.5em;
  color: #3b3d44;
  max-font-size: 100px;
  padding-bottom: 15px; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] h2 {
      font-size: 21.53846px; } }

.sf-block-562[data-block-id="258"] h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.085em;
  line-height: 1.6em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] h3 {
      font-size: 16.66667px; } }

.sf-block-562[data-block-id="258"] h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.9em;
  color: #3b3d44;
  max-font-size: 100px; }
  @media (max-width: 991.98px) {
    .sf-block-562[data-block-id="258"] h4 {
      font-size: 15px; } }

.sf-block-562[data-block-id="258"] h5 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.115em;
  line-height: 1.5em;
  color: #626167;
  max-font-size: 100px; }

.sf-block-562[data-block-id="258"] p + h1,
.sf-block-562[data-block-id="258"] p + h2,
.sf-block-562[data-block-id="258"] p + h3 {
  padding-top: 15px; }

.sf-block-562[data-block-id="258"] h4 + h1,
.sf-block-562[data-block-id="258"] h4 + h2,
.sf-block-562[data-block-id="258"] h4 + h3 {
  padding-top: 30px; }

.sf-block-562[data-block-id="258"] ul + h1,
.sf-block-562[data-block-id="258"] ul + h2,
.sf-block-562[data-block-id="258"] ul + h3 {
  padding-top: 30px; }

.sf-block-562[data-block-id="258"] h1:last-child,
.sf-block-562[data-block-id="258"] h2:last-child,
.sf-block-562[data-block-id="258"] h3:last-child,
.sf-block-562[data-block-id="258"] h4:last-child,
.sf-block-562[data-block-id="258"] h5:last-child,
.sf-block-562[data-block-id="258"] p:last-child {
  padding-bottom: 0; }
