@charset "UTF-8";
@import url("https://use.typekit.net/pcx2uzn.css");
.VerdanaBold {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.VerdanaRegular {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.VerdanaItalic {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
  font-style: oblique;
}

.AcuminProBlack {
  font-family: acumin-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.AcuminProBlackItalic {
  font-family: acumin-pro, sans-serif;
  font-weight: 800;
  font-style: italic;
}

.AcuminProBold {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.AcuminProBoldItalic {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.AcuminProItalic {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.AcuminProLight {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.AcuminProLightItalic {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.AcuminProRegular {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.AcuminPro-SC-Bold {
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.AcuminPro-SC-BoldItalic {
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.AcuminPro-SC-Regular {
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.AcuminPro-SC-Italic {
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.AcuminPro-Wide-Black {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.AcuminPro-Wide-BlackItalic {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 800;
  font-style: italic;
}

.AcuminPro-Wide-Bold {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.AcuminPro-Wide-BoldItalic {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.AcuminPro-Wide-Light {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.AcuminPro-Wide-LightItalic {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.AcuminPro-Wide-Regular {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.AcuminPro-Wide-Italic {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.dy-color-gradient {
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, rgb(140, 190, 42) 0%, rgb(70, 155, 45) 50%, rgb(0, 122, 51) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#007a33",GradientType=1);
}

/* Logo brand */
.dy-logo {
  display: block;
  width: 250px;
  min-height: 50px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 3rem;
}

/* Global page settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Track */
  /* Handle */
  /* Handle on hover */
  background-color: #ececec;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #575757;
}
html ::-webkit-scrollbar {
  width: 10px;
}
html ::-webkit-scrollbar-track {
  background: #575757;
}
html ::-webkit-scrollbar-thumb {
  background: #469B2D;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #8cbe2a;
  cursor: pointer;
}

.content {
  background: white;
  max-width: 1000px;
  min-width: 300px;
  min-height: 100vh;
  text-align: left;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  overflow: auto;
}

/* Layout components */
section {
  display: block;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.dy-layout-columns, .dy-layout-rows {
  padding-left: 4rem;
  padding-right: 4rem;
}

.dy-layout-columns > .dy-layout-rows {
  padding-left: 0;
  padding-right: 0;
}

.dy-layout-columns {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

/* Columns */
div[class^=col-] > * {
  width: 100%;
}

.col-6 {
  width: 12%;
  flex-basis: 12%;
  flex-grow: 1;
}

.col-5 {
  width: 18%;
  flex-basis: 18%;
  flex-grow: 1;
}

.col-4 {
  width: 25%;
  flex-basis: 25%;
  flex-grow: 1;
}

.col-3 {
  width: 30%;
  flex-basis: 30%;
  flex-grow: 1;
}

.col-2 {
  width: 44%;
  flex-basis: 44%;
  flex-grow: 1;
}

.col-1 {
  width: 100%;
  flex-basis: 100%;
  flex-grow: 1;
}

.dy-layout-rows {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
}

.dy-layout-rows-all-same-height {
  display: table;
  width: 100%;
}

/* Link styles, button styles */
.dy-text-center {
  text-align: center;
}

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

.dy-display-none {
  display: none;
}

a {
  color: #575757;
  text-decoration: none;
}
a:hover {
  transition: all 500ms ease;
  color: black;
  text-decoration: none;
}

[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}

[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1.5em;
  right: 50%;
  padding: 4px 4px 4px 8px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #469B2D;
  border: solid 1px #469B2D;
  white-space: nowrap;
  box-shadow: 0px 0px 2px #666;
  background-color: white;
  opacity: 0;
  z-index: 999999;
  visibility: hidden;
  cursor: help;
  transition: all 280ms ease;
}

[data-title] {
  position: relative;
}

.dy-btn-primary {
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, rgb(140, 190, 42) 0%, rgb(70, 155, 45) 50%, rgb(0, 122, 51) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#007a33",GradientType=1);
  text-align: center;
  font-family: acumin-pro, sans-serif;
  color: white;
}
.dy-btn-primary:hover {
  transition: background-color 150ms ease;
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, 90deg, rgb(140, 190, 42) 0%, rgb(140, 190, 42) 50%, rgb(140, 190, 42) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#8cbe2a",GradientType=1);
  color: rgb(255, 255, 255);
  border-bottom: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.dy-btn-primary:focus {
  transition: all 500ms ease;
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, rgb(140, 190, 42) 0%, rgb(70, 155, 45) 50%, rgb(0, 122, 51) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#007a33",GradientType=1);
  color: rgba(255, 255, 255, 0.5);
}

.dy-btn-secondary-lg {
  position: relative;
  text-align: center;
  line-height: 3;
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 0.8rem);
  text-transform: uppercase;
  color: black;
  border-bottom: solid 2px #575757;
  padding-bottom: 0.5rem;
}
.dy-btn-secondary-lg::after {
  content: "";
  color: black;
  display: block;
  position: absolute;
  right: -15px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid black;
}
.dy-btn-secondary-lg:hover {
  transition: all 150ms ease;
  color: #469B2D;
  border-bottom: solid 2px black;
}
.dy-btn-secondary-lg:hover::after {
  border-left: 8px solid #007A33;
}
.dy-btn-secondary-lg:focus {
  transition: all 500ms ease;
  color: #007A33;
  border-bottom: solid 2px #469B2D;
}

.dy-btn-secondary-sm {
  position: relative;
  text-align: center;
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 0.5rem);
  text-transform: uppercase;
  color: black;
  border-bottom: solid 2px #575757;
  padding-bottom: 0.5rem;
}
.dy-btn-secondary-sm::after {
  content: "";
  color: black;
  display: block;
  position: absolute;
  right: -12px;
  bottom: 7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid black;
}
.dy-btn-secondary-sm:hover {
  transition: all 250ms ease;
  color: #469B2D;
  border-bottom: solid 2px black;
}
.dy-btn-secondary-sm:hover::after {
  border-left: 6px solid #007A33;
}
.dy-btn-secondary-sm:focus {
  transition: all 250ms ease;
  color: #007A33;
  border-bottom: solid 2px #469B2D;
}

.dy-btn-alternative {
  border: solid 1px #469B2D;
  text-align: center;
  text-decoration: none;
  font-family: acumin-pro, sans-serif;
  color: #469B2D;
}
.dy-btn-alternative:hover {
  transition: border 250ms ease;
  border: solid 1px black;
  color: black;
  font-weight: 700;
}
.dy-btn-alternative:focus {
  transition: color 300ms ease;
  color: #575757;
  border: solid 1px #575757;
  font-weight: 700;
}

.dy-btn-lg {
  font-weight: 400;
  font-style: normal;
  line-height: 3.5;
  font-size: calc(0.5vw + 0.8rem);
  padding: 1rem;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
}

.dy-btn-sm {
  font-weight: 300;
  font-style: normal;
  line-height: 2;
  font-size: calc(0.5vw + 0.5rem);
  padding: 0.8rem;
  padding-right: 1.3rem;
  padding-left: 1.3rem;
}

/* Font styles, paragraph styles */
p, ul {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.3;
  font-size: calc(0.5vw + 0.9rem);
  margin-bottom: 1.6rem;
}
p .bold, ul .bold {
  font-weight: 700;
}

p > a {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  color: #469B2D;
  text-decoration: none;
}
p > a:hover {
  transition: -webkit-text-decoration 250ms ease;
  transition: text-decoration 250ms ease;
  transition: text-decoration 250ms ease, -webkit-text-decoration 250ms ease;
  color: black;
  text-decoration: none;
  border-bottom: solid 2px #575757;
}

ul > li {
  list-style: none; /* Remove default bullets */
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
ul > li::before {
  content: ">"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #007A33; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  font-size: 2.2rem;
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 0.9em; /* Also needed for space (tweak if needed) */
  margin-left: -0.9em; /* Also needed for space (tweak if needed) */
}
ul > li:last-of-type {
  margin-bottom: 0;
}

.striked {
  text-decoration: line-through;
  text-decoration-color: red;
}

.message {
  display: inline;
  margin-left: 1rem;
  margin-bottom: 1rem;
  padding: 0.3em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #469B2D !important;
  border: 1px solid #878787;
  background-color: white;
}

h1 {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 3rem);
  line-height: 1.1;
  margin-bottom: 4rem;
}

h1::after {
  position: relative;
  display: block;
  content: "";
  background-color: #575757;
  width: 3ch;
  height: 3px;
  margin-top: 2rem;
}

h1.grad::after {
  position: relative;
  display: block;
  content: "";
  width: 3ch;
  height: 3px;
  margin-top: 2rem;
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, rgb(140, 190, 42) 0%, rgb(70, 155, 45) 50%, rgb(0, 122, 51) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#007a33",GradientType=1);
}

h2 {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h3 {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 1.2rem);
  line-height: 1.1;
  margin-top: 0.5rem;
  margin-bottom: 1.3rem;
}

h4 {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: black;
  font-size: calc(0.5vw + 1.2rem);
  line-height: 1.1;
  margin-top: 0.5rem;
  margin-bottom: 1.3rem;
}

.dy-text-sub-caps {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #469B2D;
  font-size: calc(0.5vw + 1rem);
  display: block;
}

.dy-text-sub {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #469B2D;
  font-size: calc(0.5vw + 1rem);
  display: block;
}

/* Layout component classes */
.circle {
  display: inline-block;
  min-width: 60px;
  min-height: 60px;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  margin: 0.5rem;
  flex: none;
}
.circle span {
  text-align: center;
  color: red;
}
.circle:first-of-type {
  margin-left: 0;
}
.circle:last-of-type {
  margin-right: 0;
}

/* CARDS component */
.dy-card {
  border: solid 1px #b2b2b2;
  padding-bottom: 2em;
  text-align: center;
  position: relative;
}
.dy-card .webinar {
  position: absolute;
  top: -5px;
  right: 2rem;
  min-width: auto;
  min-height: auto;
  width: auto;
  padding: 1.3333333333rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
  border-left: inset 1px #8cbe2a;
  border-right: inset 1px #8cbe2a;
  border-bottom: inset 1px #8cbe2a;
  font-size: 1.8rem;
  line-height: 1.3;
  background-color: #469B2D;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.dy-card h3 {
  padding: 0.5em;
}
.dy-card p {
  padding-top: 1.5vw;
  padding-left: 1vw;
  padding-right: 1vw;
  border-top: solid 1px #b2b2b2;
}
.dy-card img {
  display: block;
  width: 100%;
}
.dy-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 500ms ease;
  border: solid 1px #8cbe2a;
  cursor: pointer;
}

/* BIG HERO component */
.dy-bighero-image {
  background-image: url("../img/securedd_header_en.png");
  height: 300px;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.dy-bighero {
  background: rgb(140, 190, 42);
  background: linear-gradient(90deg, rgb(140, 190, 42) 0%, rgb(70, 155, 45) 50%, rgb(0, 122, 51) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8cbe2a",endColorstr="#007a33",GradientType=1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0.5vh;
  padding: 4rem;
}
.dy-bighero h1 {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 5.5rem;
  text-align: center;
  color: white;
  padding: 0;
  margin: 0;
}
.dy-bighero h1 b {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.dy-bighero h1::after {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
}
.dy-bighero p {
  margin-top: 4rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

/* NAV-BAR (Main) component */
.navbar-fixed {
  position: sticky;
  top: 0;
  background-color: white;
  border-bottom: solid 1px #dadada;
  z-index: 999;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  background-color: white;
}
nav > * {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 3rem;
}
nav > *:last-child {
  padding-right: 0;
}
nav.dy-nav-top {
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: #575757;
  border-bottom: solid 1px #dadada;
  padding-left: 4rem;
}
nav.dy-nav-top :last-child {
  margin-left: auto;
  padding-right: 4rem;
}
nav.dy-nav-top a {
  padding-right: 1.5rem;
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: #575757;
}
nav.dy-nav-top a::after {
  content: "";
  border-right: solid 1px #dadada;
  padding-right: 2rem;
}
nav.dy-nav-top a:hover {
  color: #469B2D;
  text-decoration: underline;
}
nav.dy-nav-top a.disabled {
  color: #dadada;
  text-decoration: none;
  cursor: not-allowed;
}
nav.dy-nav-top a.disabled:hover {
  color: #575757;
  text-decoration: none !important;
  cursor: not-allowed;
}
nav.dy-nav-top .submenu-wrapper {
  position: relative;
  left: -22%;
  top: -5px;
}
nav.dy-nav-top .submenu-parent {
  position: relative;
  padding-right: 2rem;
  margin-right: 1rem;
  cursor: pointer !important;
}
nav.dy-nav-top .submenu-parent::after {
  content: "";
  color: black;
  display: block;
  position: absolute;
  right: -10px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid black;
}
nav.dy-nav-top .submenu-parent:hover .submenu {
  display: block !important;
  z-index: 999;
}
nav.dy-nav-top .submenu-item::before, nav.dy-nav-top .submenu-item a::after {
  content: none !important;
}
nav.dy-nav-top .submenu {
  position: absolute;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  top: 41px;
  left: 6.5vw;
  background-color: white;
  border: solid 1px #dadada;
  overflow: hidden;
  box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.2);
}
nav.dy-nav-top .submenu li {
  padding: 0;
  margin: 0;
  padding-left: 0.8em;
  padding-top: 0.3em;
  padding-bottom: 0.6em;
  border-bottom: solid 1px #dadada;
}
nav.dy-nav-top .submenu li:last-child {
  border-bottom: none;
}
nav.dy-nav-top .submenu li a {
  color: black;
  cursor: pointer;
}
nav.dy-nav-top .submenu li a.disabled {
  color: #007A33;
}
nav.dy-nav-top .dy-social-media-bar {
  display: flex;
  flex-direction: row;
  width: 150px;
  padding-right: 4rem;
}
nav.dy-nav-top .dy-social-media-bar img {
  width: 57px;
  height: auto;
}
nav.dy-nav-top .dy-social-media-bar a {
  width: 30px;
  height: auto;
}
nav.dy-nav-top .dy-social-media-bar a:hover {
  text-decoration: none;
}
nav.dy-nav-top .dy-social-media-bar a:hover img {
  padding-left: 0.15em;
}
nav.dy-nav-top .dy-social-media-bar a::after {
  content: "";
  border-right: none;
  padding-right: 0;
}
nav.dy-nav-main {
  font-family: acumin-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  color: black;
  padding-left: 4rem;
}
nav.dy-nav-main a {
  color: black;
}
nav.dy-nav-main a:hover {
  text-decoration: none;
  color: #469B2D;
}
nav.dy-nav-main a.active {
  color: #007A33;
  font-weight: 700;
}
nav.dy-nav-main a.active:hover {
  color: black;
}
nav.dy-nav-main a.disabled {
  color: #b2b2b2;
  cursor: not-allowed;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  font-family: acumin-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
footer section {
  width: 100%;
  height: auto;
  padding: 4rem;
  padding-bottom: 3rem;
  padding-top: 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  font-size: calc(0.5vw + 1rem);
  margin: 0;
}
footer .dy-office {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: white;
  color: black;
  border-top: solid 1px #dadada;
}
footer .dy-office > div {
  margin-right: 4rem;
}
footer .dy-office > div:last-child {
  margin-right: 0;
  margin-left: auto;
  flex-grow: 0;
}
footer .dy-office .dy-office-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 2;
}
footer .dy-office .dy-office-left p {
  color: #575757;
  line-height: 1.4;
}
footer .dy-office .dy-office-left p a {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #575757;
  text-decoration: none;
  border-bottom: none;
}
footer .dy-office .dy-office-left p a:hover {
  text-decoration: underline;
  color: #469B2D;
}
footer .dy-office .dy-office-left p > span {
  font-weight: bold;
  color: black;
}
footer .dy-office .dy-office-left .dy-office-left-wrapper {
  display: flex;
  flex-direction: row;
}
footer .dy-office .dy-office-left .dy-office-left-wrapper .icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-top: 0.7rem;
  margin-right: 0.9em;
}
footer .dy-office .dy-office-left .dy-office-left-wrapper:last-child p > a:last-of-type {
  display: block;
  margin-top: 1.2rem;
}
footer .dy-legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #666666;
}
footer .dy-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  line-height: 1.2;
  margin-right: 4rem;
  padding-top: 1rem;
}
footer .dy-legal a:last-of-type {
  margin-right: 0;
}
footer .dy-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* Helper only for the styleguide */
#buttons h3 {
  margin-bottom: 0;
}

/* Webform Clickdimensions integration */
#form-wrapper {
  background-color: white;
  margin-top: 0;
  margin-bottom: 3em;
  padding: 50px !important;
  padding-bottom: 0 !important;
  min-width: 40%;
  border: none;
  border-radius: 0;
}

/* Web form: questions */
#eform p.questions {
  font-weight: normal;
  color: #007A33;
}
#eform input.question {
  padding-right: 20px !important;
  overflow: visible;
  text-overflow: ellipsis;
}
#eform input.question::-moz-placeholder {
  color: #cccccc;
  font-weight: normal;
  font-size: 2.5em;
  text-align: left;
  text-overflow: ellipsis;
}
#eform input.question::placeholder,
#eform input.question::-moz-placeholder,
#eform input.question:-moz-placeholder {
  color: #cccccc;
  font-weight: normal;
  font-size: 2.5em;
  text-align: left;
  text-overflow: ellipsis;
}

/* Preloader component */
.loader-container {
  width: 100% !important;
  height: 100vh !important;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid;
  color: #8cbe2a;
  border-radius: 50%;
  border-top-color: transparent;
  animation: loader 1.2s linear infinite;
}

@keyframes loader {
  25% {
    color: #8cbe2a;
  }
  50% {
    color: #469B2D;
  }
  75% {
    color: #007A33;
  }
  to {
    transform: rotate(360deg);
  }
}
/* MEDIA QUERIES */
@media screen and (max-width: 500px) {
  .dy-shorten-text {
    display: none;
  }
  .dy-nav-top > *:not(.dy-social-media-bar) {
    display: none;
    visibility: hidden;
  }
  .dy-social-media-bar {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100% !important;
    transition: all 750ms ease;
  }
  .dy-nav-main > *:not(.dy-logo) {
    display: none;
    visibility: hidden;
  }
  .dy-nav-main {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }
  #terms ul > li {
    list-style: none; /* Remove default bullets */
    margin-top: 1.4rem;
    margin-bottom: 1.6rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  #terms ul > li::before {
    content: "•" !important; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #007A33; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    font-size: 2.2rem;
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 0.9em; /* Also needed for space (tweak if needed) */
    margin-left: -0.9em; /* Also needed for space (tweak if needed) */
  }
  .dy-office div.dy-logo {
    display: none;
    visibility: hidden;
  }
}/*# sourceMappingURL=main.css.map */