/* ********************
Set root URL for LESS compiling
-------------------- */
/* ********************
=Imports
******************** */
/* ********************
Browser Reset
******************** */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
figure,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  cellspacing: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
/* ********************
Float & Align
******************** */
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn {
  float: none;
}
.cb {
  clear: both !important;
}
.cl {
  clear: left !important;
}
.cr {
  clear: right !important;
}
.al {
  text-align: left !important;
}
.ar {
  text-align: right !important;
}
.ac {
  text-align: center !important;
}
/* ********************
Grid
******************** */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.grid {
  margin: 0 auto;
}
.grid:after,
.clear:after {
  clear: both !important;
  content: "";
  display: table;
}
[class*='col-'] {
  float: left;
}
/* ********************
Columns
******************** */
.col-1-1 {
  width: 100%;
}
.col-4-5 {
  width: 80%;
}
.col-3-4 {
  width: 75%;
}
.col-2-3 {
  width: 66.66666%;
}
.col-3-5 {
  width: 60%;
}
.col-1-2 {
  width: 50%;
}
.col-2-5 {
  width: 40%;
}
.col-1-4 {
  width: 25%;
}
.col-1-5 {
  width: 20%;
}
.col-1-3 {
  width: 33.33333%;
}
.col-1-8 {
  width: 12.5%;
}
.col-1-6 {
  width: 16.66%;
}
/* ********************
Mixins
******************** */
/* ****************************************
Flexbox
**************************************** */
.flex-row {
  margin: 0 auto;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* ********************
Columns
******************** */
[class*="flex-col"] {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.flex-col-1-1 {
  -webkit-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  max-width: 100%;
}
.flex-col-1-2 {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  max-width: 50%;
}
.flex-col-1-3 {
  -webkit-flex-basis: 33.33333%;
  -ms-flex-basis: 33.33333%;
  flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  max-width: 33.33333%;
}
.flex-col-2-3 {
  -webkit-flex-basis: 66.66665999999999%;
  -ms-flex-basis: 66.66665999999999%;
  flex-basis: 66.66665999999999%;
  -ms-flex-preferred-size: 66.66665999999999%;
  max-width: 66.66665999999999%;
}
.flex-col-1-4 {
  -webkit-flex-basis: 25%;
  -ms-flex-basis: 25%;
  flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  max-width: 25%;
}
.flex-col-3-4 {
  -webkit-flex-basis: 75%;
  -ms-flex-basis: 75%;
  flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  max-width: 75%;
}
.flex-col-1-5 {
  -webkit-flex-basis: 20%;
  -ms-flex-basis: 20%;
  flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  max-width: 20%;
}
.flex-col-2-5 {
  -webkit-flex-basis: 40%;
  -ms-flex-basis: 40%;
  flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  max-width: 40%;
}
.flex-col-3-5 {
  -webkit-flex-basis: 60%;
  -ms-flex-basis: 60%;
  flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  max-width: 60%;
}
.flex-col-4-5 {
  -webkit-flex-basis: 80%;
  -ms-flex-basis: 80%;
  flex-basis: 80%;
  -ms-flex-preferred-size: 80%;
  max-width: 80%;
}
.flex-col-1-6 {
  -webkit-flex-basis: 16.66666%;
  -ms-flex-basis: 16.66666%;
  flex-basis: 16.66666%;
  -ms-flex-preferred-size: 16.66666%;
  max-width: 16.66666%;
}
.flex-col-1-8 {
  -webkit-flex-basis: 12.5%;
  -ms-flex-basis: 12.5%;
  flex-basis: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  max-width: 12.5%;
}
.flex-col-1-12 {
  -webkit-flex-basis: 8.33333%;
  -ms-flex-basis: 8.33333%;
  flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  max-width: 8.33333%;
}
.flex-col-5-12 {
  -webkit-flex-basis: 41.66666%;
  -ms-flex-basis: 41.66666%;
  flex-basis: 41.66666%;
  -ms-flex-preferred-size: 41.66666%;
  max-width: 41.66666%;
}
/* ********************
Align
******************** */
.align-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.align-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.align-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.align-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.align-stretch {
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}
/* ********************
Align self
******************** */
.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-self-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.align-self-middle {
  -ms-flex-item-align: center;
  align-self: center;
}
.align-self-shrink {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}
.align-self-grow {
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}
/* ********************
Flexbox mixins
******************** */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
@font-face {
  font-family: 'Objectivity-Regular';
  src: url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Regular.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Regular.otf') format('opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Regular.woff') format('woff'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Regular.ttf') format('truetype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Regular.svg#Objectivity-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Objectivity-Medium';
  src: url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Medium.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Medium.otf') format('opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Medium.woff') format('woff'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Medium.ttf') format('truetype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Medium.svg#Objectivity-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Objectivity-Bold';
  src: url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Bold.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Bold.otf') format('opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Bold.woff') format('woff'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Bold.ttf') format('truetype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-Bold.svg#Objectivity-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Objectivity-BoldSlanted';
  src: url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-BoldSlanted.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-BoldSlanted.otf') format('opentype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-BoldSlanted.woff') format('woff'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-BoldSlanted.ttf') format('truetype'), url('/wp-content/themes/nedapsecurity/static/fonts/Objectivity-BoldSlanted.svg#Objectivity-BoldSlanted') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.eot');
  src: local('IBM Plex Sans'), local('IBMPlexSans'), url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-regular.svg#IBMPlexSans') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* ibm-plex-sans-italic - latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: italic;
  font-weight: 400;
  src: url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.eot');
  src: local('IBM Plex Sans Italic'), local('IBMPlexSans-Italic'), url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.woff') format('woff'), /* Modern Browsers */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('/wp-content/themes/nedapsecurity/static/fonts/ibm-plex-sans-v3-latin-italic.svg#IBMPlexSans') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
#cookie-notice {
  padding: 20px;
  display: none !important;
  padding: 10px;
}
#cookie-notice .cookie-notice-container {
  display: flex;
  overflow: hidden;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1410px;
  width: 100%;
  padding: 0;
}
@media (max-width: 600px) {
  #cookie-notice .cookie-notice-container {
    flex-flow: row wrap;
  }
}
#cookie-notice #cn-notice-text {
  flex: 0 1 1410px;
  font-size: 14px;
  text-align: left;
  opacity: .8;
}
#cookie-notice #cn-notice-text a {
  font-size: 14px;
  color: inherit;
  text-decoration: underline;
}
#cookie-notice #cn-notice-text a:hover {
  text-decoration: none;
}
#cookie-notice #cn-accept-cookie {
  text-decoration: none;
}
#cookie-notice #cn-accept-cookie,
#cookie-notice #cn-more-info {
  background: #ff6c37;
  color: #ffffff;
  padding: 16px 22px 14px;
  font-size: 16px;
  line-height: 22px;
  transition: all .2s ease;
  border: 1px solid #ff6c37;
  transition: border .15s ease, background .15s ease, color .15s ease, border .15s ease;
  border-radius: 4px;
}
#cookie-notice #cn-accept-cookie:hover,
#cookie-notice #cn-more-info:hover {
  background: #ff7f51;
}
#cookie-notice #cn-more-info {
  background: transparent;
  text-decoration: none;
  color: #ff6c37;
  min-width: 115px;
}
#cookie-notice #cn-more-info:hover {
  text-decoration: none;
  background-color: #ff6c37;
  color: #ffffff;
}
@media (max-width: 600px) {
  #cookie-notice #cn-more-info {
    width: 100%;
    padding: 11px 22px 8px;
    min-height: 43px;
    margin: 0px;
    margin-top: 10px;
  }
  #cookie-notice #cn-notice-text {
    width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
  }
  #cookie-notice #cn-notice-text a {
    font-size: 12px;
  }
  #cookie-notice #cn-accept-cookie {
    margin-left: 0;
    padding: 11px 22px 8px;
    min-height: 43px;
    width: 100%;
    margin-right: 0px;
  }
}
.cookie-settings-modal {
  position: fixed;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
  background: white;
  z-index: 0;
  padding: 50px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}
.cookie-settings-modal .cookie-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  padding: 0;
  background: none;
  cursor: pointer;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cookie-settings-modal .cookie-close::before,
.cookie-settings-modal .cookie-close::after {
  position: absolute;
  width: 34px;
  height: 3px;
  left: 0;
  top: 19px;
  content: "";
  background: black;
}
.cookie-settings-modal .cookie-close::before {
  transform: rotate(-45deg);
}
.cookie-settings-modal .cookie-close::after {
  transform: rotate(45deg);
}
.cookie-settings-modal form {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.cookie-settings-modal ul {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cookie-settings-modal ul li {
  padding-left: 0;
  margin-bottom: 15px;
}
.cookie-settings-modal ul li::after,
.cookie-settings-modal ul li::before {
  display: none;
}
.cookie-settings-modal ul li:last-child {
  margin-bottom: 0;
}
.cookie-settings-modal ul li label {
  cursor: pointer;
}
.cookie-settings-modal ul li.analytic {
  position: relative;
  padding-left: 12px;
}
.cookie-settings-modal ul li.analytic:before {
  position: absolute;
  display: block;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMDBFNjc2IiBkPSJNMjAuMjg1IDJsLTExLjI4NSAxMS41NjctNS4yODYtNS4wMTEtMy43MTQgMy43MTYgOSA4LjcyOCAxNS0xNS4yODV6Ii8+PC9zdmc+') top left / 16px no-repeat;
  content: "";
}
.cookie-settings-modal ul li.analytic strong {
  padding-left: 12px;
}
.cookie-settings-modal ul li p {
  margin: 8px 0 0;
  padding-left: 12px;
}
.cookie-settings-modal h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold !important;
}
.cookie-settings-modal p {
  margin-bottom: 16px;
}
.cookie-settings-modal .button {
  line-height: 100%;
  padding: 13px 30px;
  font-family: inherit;
  background: #ff6c37;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  margin: 32px 0 0;
  text-decoration: none;
  font-size: 16px;
  transition: all .2s ease;
  border-radius: 4px;
}
.cookie-settings-modal .button:hover {
  background: #ff7f51;
}
.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 640px), screen and (max-height: 768px) {
  .cookie-settings-modal {
    padding: 20px;
    left: 0;
    top: 2%;
    transform: translateX(0%) translateY(0%);
    max-height: calc(100vh - 4%);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .cookie-settings-modal .cookie-settings-scroll-inner {
    margin-bottom: 80px;
  }
  .cookie-settings-modal .cookie-close {
    top: 5px;
    right: 5px;
  }
  .cookie-settings-modal ul {
    padding: 10px;
  }
  .cookie-settings-modal.show {
    left: 0;
    top: 2%;
    transform: translateX(0%) translateY(0%);
    z-index: 100001 !important;
  }
  .cookie-settings-modal.editor h3 {
    margin-bottom: 10px;
  }
  .cookie-settings-modal.editor p {
    margin-bottom: 10px;
  }
}
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.7.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chosen-container * {
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
}
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  /*   background: url("chosen-sprite.png") -42px 1px no-repeat; */
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  /*   background: url("chosen-sprite.png") no-repeat 0px 2px; */
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  /*   background: url("chosen-sprite.png") no-repeat 100% -20px; */
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  /*   background: url("chosen-sprite.png") -42px 1px no-repeat; */
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  /*   background: url("chosen-sprite.png") no-repeat -30px -20px; */
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    /*     background-image: url("chosen-sprite@2x.png") !important; */
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
/* ********************
=Editor
******************** */
.editor {
  display: flex;
  flex-flow: column wrap;
  /* ---------------
	Heading
	--------------- */
  /* ---------------
	Paragraph
	--------------- */
  /* ---------------
	Unordered list
	--------------- */
  /* ---------------
	Ordered list
	--------------- */
  /* ---------------
	Blockqoute
	--------------- */
}
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  position: relative;
  color: #545454;
  color: #023a4f;
  line-height: 1.3;
  margin-top: 15px;
}
.editor h1.orange,
.editor h2.orange,
.editor h3.orange,
.editor h4.orange,
.editor h5.orange,
.editor h6.orange {
  color: #ff6c37;
}
.editor h1 {
  font-size: 36px;
  margin-bottom: 35px;
}
.editor h2 {
  font-size: 36px;
  margin-bottom: 35px;
}
.editor h3 {
  font-size: 32px;
  font-size: 26px;
  margin-bottom: 30px;
}
.editor h4 {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}
.editor h5 {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
}
.editor h6 {
  font-size: 18px;
  margin-bottom: 20px;
}
.editor p {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 20px;
}
.editor p a {
  color: #ff6c37;
  margin-bottom: 0;
}
.editor p a:hover {
  text-decoration: underline;
}
.editor p.italic-grey {
  font-family: 'Objectivity-Medium';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(38, 41, 43, 0.3);
  color: rgba(2, 58, 79, 0.4);
  margin-bottom: 0;
}
.editor p.objectivity-intro {
  font-family: 'Objectivity-Regular';
  font-weight: 400;
  font-size: 26px;
  font-size: 22px;
  line-height: 36px;
  line-height: 34px;
  color: #023a4f;
  width: calc(100% + 140px);
  margin-left: -70px;
}
.editor a {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #ff6c37;
  margin-bottom: 20px;
}
.editor a:hover {
  text-decoration: underline;
}
.editor ul {
  margin: 10px 0 20px 0;
}
.editor ul li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 23px;
  padding-left: 54px;
}
.editor ul li:before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -3px;
  left: 0;
  background: #ff6c37;
  border-radius: 50%;
  content: "";
}
.editor ul li:after {
  position: absolute;
  width: 12px;
  height: 8px;
  left: 10px;
  top: 9px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/check-white.svg") center center / 12px no-repeat;
  content: "";
}
.editor ul li a {
  color: #ff6c37;
}
.editor ul li > ul {
  margin-top: 20px;
}
.editor ol {
  counter-reset: li-counter;
  margin: 10px 0 20px 0;
}
.editor ol li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 23px;
  padding-left: 54px;
}
.editor ol li:before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -3px;
  left: 0;
  background: #ff6c37;
  border-radius: 50%;
  content: "";
}
.editor ol li:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  position: absolute;
  left: 12px;
  top: -1px;
  color: white;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.editor ol li a {
  color: #ff6c37;
}
.editor button,
.editor .button {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  display: inline-block;
  text-decoration: none !important;
  line-height: 20px;
  color: white;
}
.editor button--white,
.editor .button--white {
  color: #ff6c37;
}
.editor button--ghost,
.editor .button--ghost {
  color: #ff6c37;
}
.editor img {
  display: flex;
}
.editor img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.editor img.alignleft {
  margin-right: auto;
}
.editor img.alignright {
  margin-left: auto;
}
.editor iframe {
  max-width: 100%;
}
.editor .wp-caption {
  max-width: 100%;
}
@media only screen and (max-width: 1280px) {
  .editor p.objectivity-intro {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .editor h1,
  .editor h2,
  .editor h3,
  .editor h4,
  .editor h5,
  .editor h6 {
    margin-top: 7px;
  }
  .editor h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .editor h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .editor h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .editor h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .editor h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .editor h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .editor p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .editor p.italic-grey {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .editor p.objectivity-intro {
    font-size: 18px;
    line-height: 24px;
  }
  .editor a {
    font-size: 15px;
    line-height: 24px;
  }
  .editor ul,
  .editor ol {
    margin: 5px 0 10px 0;
  }
  .editor ul li,
  .editor ol li {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
    padding-left: 35px;
  }
  .editor ul li:before,
  .editor ol li:before,
  .editor ul li:after,
  .editor ol li:after {
    transform: scale(0.8) translateX(-6px);
  }
  .editor ol li:after {
    top: 1px;
    left: 11px;
  }
}
@media only screen and (max-width: 640px) {
  .editor iframe {
    max-height: 300px;
  }
}
/* ********************
=Colors
******************** */
/* ********************
=General
******************** */
.block {
  display: block;
}
.inlineblock {
  display: inline-block;
}
.none {
  display: none;
}
.flex {
  display: flex;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.hidden {
  overflow: hidden;
}
.box-shadow_basic {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.box-shadow_reset {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.allerregular {
  font-family: 'aller';
  font-weight: 400;
}
.allerregularitalic {
  font-family: 'aller';
  font-weight: 400;
  font-style: italic;
}
.allerbold {
  font-family: 'aller';
  font-weight: 700;
}
.allerbolditalic {
  font-family: 'aller';
  font-weight: 700;
  font-style: italic;
}
.allerregular {
  font-family: 'IBM Plex Sans';
  font-weight: 400;
}
.allerregularitalic {
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-style: italic;
}
.allerbold {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
}
.allerbolditalic {
  font-family: 'Objectivity-BoldSlanted';
  font-weight: 400;
}
.objectivityregular {
  font-family: 'Objectivity-Regular';
  font-weight: 400;
}
.objectivitymedium {
  font-family: 'Objectivity-Medium';
  font-weight: 400;
}
.objectivitybold {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
}
.objectivityboldslanted {
  font-family: 'Objectivity-BoldSlanted';
  font-weight: 400;
}
body {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  background: #f7f9fa;
  background: #f5f9fa;
  background: #f4f4f4;
}
::selection {
  background: #fe7a34;
  color: #fff;
}
::-moz-selection {
  background: #fe7a34;
  color: #fff;
}
table {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgba(2, 58, 79, 0.8);
}
table tr {
  border-bottom: 1px solid rgba(2, 58, 79, 0.1);
}
table td {
  text-align: left !important;
  padding: 0 20px;
}
table td:first-of-type {
  padding-left: 0;
}
table td:last-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 640px) {
  table tr {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 0;
  }
  table td {
    float: left;
    clear: both;
    width: 100%;
    padding: 0;
  }
}
/* ********************
=Section
******************** */
.section {
  position: relative;
  z-index: 2;
}
.section--our-clients {
  padding: 110px 0 95px;
}
.section--our-clients-less-padding {
  padding: 65px 0 95px;
}
.section--resources {
  padding: 0 0 90px 0;
}
.section--events {
  position: relative;
  padding: 0 0 190px 0;
  background: rgba(216, 216, 216, 0.35);
  z-index: 1;
}
.section--events:before {
  position: absolute;
  width: 100%;
  height: 155px;
  left: 0;
  top: -155px;
  background: rgba(216, 216, 216, 0.35);
  content: "";
}
.section--related-content {
  padding: 90px 0;
  background: rgba(216, 216, 216, 0.35);
}
.section--large-padding-top {
  padding-top: 190px;
}
.section--large-padding-bottom {
  padding-bottom: 175px;
}
@media only screen and (max-width: 1440px) {
  .section--our-clients {
    padding: 55px 0;
  }
  .section--resources {
    padding: 0 0 45px 0;
  }
  .section--events {
    padding: 0 0 95px 0;
  }
}
@media only screen and (max-width: 1250px) {
  .section--events:before {
    height: 90px;
    top: -90px;
  }
}
@media only screen and (max-width: 1024px) {
  .section--related-content {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 640px) {
  .section--our-clients {
    padding: 20px 0 50px;
  }
  .section--events {
    padding: 0 0 40px 0;
  }
  .section--resources {
    padding: 0 0 30px 0;
  }
}
/* ********************
=Grid
******************** */
.base-grid {
  position: relative;
  text-align: left !important;
  display: flex;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}
.base-grid--reverse {
  flex-direction: row-reverse;
}
.base-grid--inherit {
  align-items: inherit;
}
.base-grid--space-between {
  justify-content: space-between;
}
.base-grid--vertically-centered {
  align-items: center;
}
.base-grid--page-first {
  margin-top: -30px;
}
.base-grid--wider {
  max-width: 1480px;
}
.base-grid--has-slider {
  max-width: 1370px;
  flex-direction: column;
}
.base-grid--has-sidebar-left {
  padding: 0;
}
.base-grid--has-row-tiles {
  flex-flow: row nowrap;
  margin-left: -15px;
  margin-right: -15px;
}
.base-grid--has-column-tiles {
  flex-direction: column;
}
.base-grid--justify-end {
  justify-content: flex-end;
}
.base-grid--no-page-header {
  padding-top: 255px;
}
.base-grid--has-margin-top {
  margin-top: 60px;
}
.base-grid--has-margin-bottom {
  margin-bottom: 170px;
}
.base-grid--flex-row {
  flex-flow: row nowrap;
}
.base-grid--has-offices {
  margin-top: 100px;
  flex-flow: column nowrap;
  margin-bottom: 170px;
}
.base-grid--page-distributors {
  padding-top: 190px;
}
.base-grid--has-wrap {
  flex-flow: row wrap;
}
.base-grid--full-height {
  height: 100%;
}
@media only screen and (max-width: 1440px) {
  .base-grid--page-distributors {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 1024px) {
  .base-grid--has-offices {
    margin-bottom: 85px;
  }
  .base-grid--has-margin-bottom {
    margin-bottom: 85px;
  }
}
@media only screen and (max-width: 1023px) {
  .base-grid--no-page-header {
    padding-top: 175px;
  }
  .base-grid--has-flexible-content {
    flex-flow: column nowrap;
  }
  .base-grid--page-distributors {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 960px) {
  .base-grid--960-column {
    flex-direction: column;
  }
  .base-grid--has-row-tiles {
    margin-left: 0;
    margin-right: 0;
  }
  .base-grid--has-offices {
    margin-top: 40px;
  }
  .base-grid--page-distributors {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 800px) {
  .base-grid--800-column {
    flex-direction: column;
  }
  .base-grid--page-distributors {
    padding-top: 165px;
  }
}
@media only screen and (max-width: 640px) {
  .base-grid {
    padding: 0 10px;
  }
  .base-grid--no-page-header {
    padding-top: 175px;
  }
  .base-grid--has-sidebar-left {
    padding: 0;
  }
  .base-grid--has-margin-bottom {
    margin-bottom: 40px;
  }
  .base-grid--has-offices {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .base-grid--page-distributors {
    padding-top: 385px;
  }
}
#filter-result-container {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  flex: 1 0 100%;
  align-items: baseline;
}
#filter-result-container:before {
  position: absolute;
  display: inline-block;
  right: calc(50% - 10px);
  top: 20px;
  content: "";
  border: 4px solid white;
  border-top: 4px solid #ff4e0e;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1.3s linear infinite;
  transition: opacity .2s ease;
  opacity: 0;
  z-index: 999;
}
#filter-result-container:after {
  position: absolute;
  width: 100%;
  height: calc(100% + 35px);
  left: 0;
  top: -35px;
  content: "";
  background: rgba(244, 244, 244, 0.85);
  transition: opacity .3s ease, visibility .3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}
#filter-result-container.filter-loader:before {
  opacity: 1;
}
#filter-result-container.filter-loader:after {
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.other-clients-container {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  flex: 1 0 100%;
  align-items: baseline;
}
.other-clients-container:after {
  position: absolute;
  width: 100%;
  height: calc(100% + 50px);
  left: 0;
  top: -50px;
  content: "";
  background: rgba(244, 244, 244, 0.85);
  transition: opacity .3s ease, visibility .3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}
body.filter-loader .other-clients-container:after {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 640px) {
  .other-clients-container:after {
    height: calc(100% + 100px);
    top: -100px;
  }
}
/* ********************
=Typography (basic)
******************** */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
}
p,
a {
  color: rgba(2, 58, 79, 0.8);
  font-size: 16px;
}
a {
  text-decoration: none;
}
.heading {
  display: flex;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  color: #545454;
  color: #023a4f;
  margin-bottom: 20px;
}
.heading--has-asterix:after {
  display: none;
  width: 20px;
  height: 19px;
  margin-left: 5px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/heading-asterix.svg') center center / 20px no-repeat;
  content: "";
}
.heading--small {
  font-size: 36px;
  line-height: 54px;
}
.heading--regular {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
}
.heading--grey {
  color: rgba(38, 41, 43, 0.2);
  color: rgba(2, 58, 79, 0.3);
}
.heading--no-margin {
  margin-bottom: 0;
}
.heading--distributor-large:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 14px;
  color: rgba(38, 41, 43, 0.5);
  background: #E2E4E5;
  border-radius: 2px;
  padding: 3px 10px;
  margin-left: 15px;
  line-height: 24px;
  max-height: 24px;
  margin-top: 14px;
  content: attr(data-counter);
}
@media only screen and (max-width: 1023px) {
  .heading--distributor-large:after {
    margin-top: 9px;
  }
}
@media only screen and (max-width: 960px) {
  .heading--distributor-large:after {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 640px) {
  .heading--grey {
    font-size: 28px;
    line-height: 36px;
  }
  .heading--distributor-small {
    font-size: 22px;
    line-height: 28px;
  }
  .heading--distributor-large {
    font-size: 24px;
    line-height: 28px;
  }
  .heading--distributor-large:after {
    margin-top: -2px;
  }
}
h1.heading,
h2.heading {
  font-size: 48px;
  line-height: 54px;
}
h1.heading--small,
h2.heading--small {
  font-size: 36px;
  line-height: 54px;
}
@media only screen and (max-width: 1280px) {
  h1.heading,
  h2.heading {
    font-size: 42px;
    line-height: 50px;
  }
  h1.heading--small,
  h2.heading--small {
    font-size: 36px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 1024px) {
  h1.heading,
  h2.heading {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 960px) {
  h1.heading,
  h2.heading {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  h1.heading--small,
  h2.heading--small {
    font-size: 30px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 640px) {
  h1.heading--distributor-large,
  h2.heading--distributor-large {
    font-size: 24px;
    line-height: 28px;
  }
}
/* ********************
=Buttons/Links
******************** */
button,
.button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  align-self: baseline;
}
.button {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  min-height: 52px;
  padding: 16px 22px 14px;
  color: white;
  background: #ff6c37;
  border-radius: 4px;
  border: 1px solid #ff6c37;
  transition: border .15s ease, background .15s ease, color .15s ease, border .15s ease;
  cursor: pointer;
}
.button:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
.button--white {
  background: white;
  color: #ff6c37;
}
.button--white:hover {
  background: #ff6c37;
  border-color: #ff6c37;
  color: white;
}
.button--hover-dark-border:hover {
  border-color: #ff4e0e;
}
.button--ghost {
  background: none;
  color: #ff6c37;
}
.button--ghost:hover {
  background: #ff6c37;
  border-color: #ff6c37;
  color: white;
}
.button--centered {
  align-self: center;
}
.button--black {
  background: #26292b;
  background: #032e3e;
  border-color: #26292b;
  border-color: #032e3e;
}
.button--black:hover {
  background: #ff6c37;
  border-color: #ff6c37;
}
.button--social {
  display: flex;
  position: relative;
  flex: 0 1 52px;
  margin: 0 5px 10px 5px;
  max-width: 52px;
}
.button--social svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.button--twitter:hover {
  background: #00aced;
  border-color: #00aced;
}
.button--facebook:hover {
  background: #3b5998;
  border-color: #3b5998;
}
.button--linkedin:hover {
  background: #007bb5;
  border-color: #007bb5;
}
.button--full-width {
  text-align: center !important;
  width: 100%;
}
.button--margin-bottom {
  margin-bottom: 40px;
}
.button--in-editor {
  display: inline-block;
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  color: white !important;
  text-decoration: none !important;
  line-height: 18px !important;
}
.buttons-container {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 10px);
  margin-left: -10px;
}
.link {
  display: flex;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  color: #ff6c37;
  font-size: 16px;
  line-height: 28px;
}
.link:after {
  width: 8px;
  height: 12px;
  margin: 9px 0 0 20px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right.svg') center center / 8px no-repeat;
  content: "";
  transition: transform .15s ease;
}
.link:hover:after {
  transform: translateX(5px);
}
.link--white {
  color: white;
}
.link--white:after {
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-white.svg') center center / 8px no-repeat;
}
.link--v-a-bottom {
  margin-top: auto;
}
.link--margin-bottom {
  margin-bottom: 40px;
}
/* ********************
=Form elements
******************** */
.form-element-container {
  position: relative;
  display: flex;
}
.ginput_recaptcha {
  margin: 0 10px 20px 10px;
}
.ginput_recaptcha div {
  max-width: 100%;
}
.form-element,
.gform_wrapper input[type="text"],
input[type="textarea"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  max-width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: rgba(2, 58, 79, 0.8);
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
  margin: 0 10px 20px 10px;
}
.form-element::-webkit-input-placeholder,
.gform_wrapper input[type="text"]::-webkit-input-placeholder,
input[type="textarea"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(2, 58, 79, 0.5);
}
.form-element:-moz-placeholder,
.gform_wrapper input[type="text"]:-moz-placeholder,
input[type="textarea"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(2, 58, 79, 0.5);
}
.form-element::-moz-placeholder,
.gform_wrapper input[type="text"]::-moz-placeholder,
input[type="textarea"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(2, 58, 79, 0.5);
}
.form-element:-ms-input-placeholder,
.gform_wrapper input[type="text"]:-ms-input-placeholder,
input[type="textarea"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(2, 58, 79, 0.5);
}
.form-element--textarea,
.gform_wrapper input[type="text"]--textarea,
input[type="textarea"]--textarea,
input[type="email"]--textarea,
input[type="password"]--textarea,
input[type="search"]--textarea,
input[type="url"]--textarea,
textarea--textarea,
select--textarea {
  resize: none;
}
.form-element--submit,
.gform_wrapper input[type="text"]--submit,
input[type="textarea"]--submit,
input[type="email"]--submit,
input[type="password"]--submit,
input[type="search"]--submit,
input[type="url"]--submit,
textarea--submit,
select--submit {
  background: #ff6c37;
  border-color: #ff6c37;
  color: white;
  cursor: pointer;
}
.form-element--submit:hover,
.gform_wrapper input[type="text"]--submit:hover,
input[type="textarea"]--submit:hover,
input[type="email"]--submit:hover,
input[type="password"]--submit:hover,
input[type="search"]--submit:hover,
input[type="url"]--submit:hover,
textarea--submit:hover,
select--submit:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
.form-element--no-margin,
.gform_wrapper input[type="text"]--no-margin,
input[type="textarea"]--no-margin,
input[type="email"]--no-margin,
input[type="password"]--no-margin,
input[type="search"]--no-margin,
input[type="url"]--no-margin,
textarea--no-margin,
select--no-margin {
  margin: 0;
}
.form-element--transparent,
.gform_wrapper input[type="text"]--transparent,
input[type="textarea"]--transparent,
input[type="email"]--transparent,
input[type="password"]--transparent,
input[type="search"]--transparent,
input[type="url"]--transparent,
textarea--transparent,
select--transparent {
  background: none;
}
.form-element--transparent::-webkit-input-placeholder,
.gform_wrapper input[type="text"]--transparent::-webkit-input-placeholder,
input[type="textarea"]--transparent::-webkit-input-placeholder,
input[type="email"]--transparent::-webkit-input-placeholder,
input[type="password"]--transparent::-webkit-input-placeholder,
input[type="search"]--transparent::-webkit-input-placeholder,
input[type="url"]--transparent::-webkit-input-placeholder,
textarea--transparent::-webkit-input-placeholder,
select--transparent::-webkit-input-placeholder {
  color: rgba(2, 58, 79, 0.4);
}
.form-element--transparent:-moz-placeholder,
.gform_wrapper input[type="text"]--transparent:-moz-placeholder,
input[type="textarea"]--transparent:-moz-placeholder,
input[type="email"]--transparent:-moz-placeholder,
input[type="password"]--transparent:-moz-placeholder,
input[type="search"]--transparent:-moz-placeholder,
input[type="url"]--transparent:-moz-placeholder,
textarea--transparent:-moz-placeholder,
select--transparent:-moz-placeholder {
  color: rgba(2, 58, 79, 0.4);
}
.form-element--transparent::-moz-placeholder,
.gform_wrapper input[type="text"]--transparent::-moz-placeholder,
input[type="textarea"]--transparent::-moz-placeholder,
input[type="email"]--transparent::-moz-placeholder,
input[type="password"]--transparent::-moz-placeholder,
input[type="search"]--transparent::-moz-placeholder,
input[type="url"]--transparent::-moz-placeholder,
textarea--transparent::-moz-placeholder,
select--transparent::-moz-placeholder {
  color: rgba(2, 58, 79, 0.4);
}
.form-element--transparent:-ms-input-placeholder,
.gform_wrapper input[type="text"]--transparent:-ms-input-placeholder,
input[type="textarea"]--transparent:-ms-input-placeholder,
input[type="email"]--transparent:-ms-input-placeholder,
input[type="password"]--transparent:-ms-input-placeholder,
input[type="search"]--transparent:-ms-input-placeholder,
input[type="url"]--transparent:-ms-input-placeholder,
textarea--transparent:-ms-input-placeholder,
select--transparent:-ms-input-placeholder {
  color: rgba(2, 58, 79, 0.4);
}
.form-element--search-submit,
.gform_wrapper input[type="text"]--search-submit,
input[type="textarea"]--search-submit,
input[type="email"]--search-submit,
input[type="password"]--search-submit,
input[type="search"]--search-submit,
input[type="url"]--search-submit,
textarea--search-submit,
select--search-submit {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 52px;
  height: 52px;
  right: 0;
  top: 0;
  background: none;
  border: 0;
}
.form-element--search-submit svg,
.gform_wrapper input[type="text"]--search-submit svg,
input[type="textarea"]--search-submit svg,
input[type="email"]--search-submit svg,
input[type="password"]--search-submit svg,
input[type="search"]--search-submit svg,
input[type="url"]--search-submit svg,
textarea--search-submit svg,
select--search-submit svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(0.85) translateX(-50%) translateY(-50%);
}
.form-element--grow,
.gform_wrapper input[type="text"]--grow,
input[type="textarea"]--grow,
input[type="email"]--grow,
input[type="password"]--grow,
input[type="search"]--grow,
input[type="url"]--grow,
textarea--grow,
select--grow {
  flex-grow: 1;
}
@media only screen and (max-width: 640px) {
  .form-element,
  .gform_wrapper input[type="text"],
  input[type="textarea"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  textarea,
  select {
    margin: 0 10px 10px 10px;
  }
}
input[type="checkbox"] {
  margin: 0 10px 20px 10px;
}
.privacy-policy {
  margin-top: -10px;
}
.privacy-policy .ginput_container_checkbox ul {
  margin-bottom: 0px;
}
.privacy-policy .ginput_container_checkbox ul li {
  font-size: 14px;
}
.privacy-policy .ginput_container_checkbox ul li a {
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  .privacy-policy {
    margin-top: 0px;
  }
}
.form {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.form--on-black input[type="text"],
.form--on-black input[type="textarea"],
.form--on-black input[type="email"],
.form--on-black input[type="password"],
.form--on-black input[type="search"],
.form--on-black input[type="url"],
.form--on-black textarea,
.form--on-black select {
  background: #26292b;
  background: #032e3e;
  color: rgba(255, 255, 255, 0.3);
  border-color: #26292b;
}
.form--on-black input[type="text"]::-webkit-input-placeholder,
.form--on-black input[type="textarea"]::-webkit-input-placeholder,
.form--on-black input[type="email"]::-webkit-input-placeholder,
.form--on-black input[type="password"]::-webkit-input-placeholder,
.form--on-black input[type="search"]::-webkit-input-placeholder,
.form--on-black input[type="url"]::-webkit-input-placeholder,
.form--on-black textarea::-webkit-input-placeholder,
.form--on-black select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form--on-black input[type="text"]:-moz-placeholder,
.form--on-black input[type="textarea"]:-moz-placeholder,
.form--on-black input[type="email"]:-moz-placeholder,
.form--on-black input[type="password"]:-moz-placeholder,
.form--on-black input[type="search"]:-moz-placeholder,
.form--on-black input[type="url"]:-moz-placeholder,
.form--on-black textarea:-moz-placeholder,
.form--on-black select:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form--on-black input[type="text"]::-moz-placeholder,
.form--on-black input[type="textarea"]::-moz-placeholder,
.form--on-black input[type="email"]::-moz-placeholder,
.form--on-black input[type="password"]::-moz-placeholder,
.form--on-black input[type="search"]::-moz-placeholder,
.form--on-black input[type="url"]::-moz-placeholder,
.form--on-black textarea::-moz-placeholder,
.form--on-black select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form--on-black input[type="text"]:-ms-input-placeholder,
.form--on-black input[type="textarea"]:-ms-input-placeholder,
.form--on-black input[type="email"]:-ms-input-placeholder,
.form--on-black input[type="password"]:-ms-input-placeholder,
.form--on-black input[type="search"]:-ms-input-placeholder,
.form--on-black input[type="url"]:-ms-input-placeholder,
.form--on-black textarea:-ms-input-placeholder,
.form--on-black select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form--has-newsletter {
  margin-bottom: 25px;
}
.form--has-newsletter input[type="email"] {
  flex-grow: 1;
}
.form--in-footer {
  padding-right: 165px;
}
@media only screen and (max-width: 1200px) {
  .form--in-footer {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .form--in-footer {
    padding-right: 0;
  }
  .form--has-newsletter {
    margin-bottom: 0;
  }
}
.form-element--no-margin {
  margin: 0 !important;
}
.form-element--textarea {
  resize: none;
}
.form-element--submit {
  background: #ff6c37;
  border-color: #ff6c37;
  color: white;
  cursor: pointer;
}
.form-element--submit:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
.form-element--no-margin {
  margin: 0;
}
.form-element--transparent {
  background: none;
}
.form-element--transparent::-webkit-input-placeholder {
  color: rgba(38, 41, 43, 0.4);
}
.form-element--transparent:-moz-placeholder {
  color: rgba(38, 41, 43, 0.4);
}
.form-element--transparent::-moz-placeholder {
  color: rgba(38, 41, 43, 0.4);
}
.form-element--transparent:-ms-input-placeholder {
  color: rgba(38, 41, 43, 0.4);
}
.form-element--search-submit {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 52px;
  height: 52px;
  right: 0;
  top: 0;
  background: none;
  border: 0;
}
.form-element--search-submit svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(0.85) translateX(-50%) translateY(-50%);
}
.form-element--grow {
  flex-grow: 1;
}
select {
  cursor: pointer;
}
textarea {
  resize: none;
}
.gform_wrapper ul {
  margin-top: 0;
}
.gform_wrapper ul li {
  padding-left: 0;
  margin-bottom: 0;
}
.gform_wrapper ul li:before,
.gform_wrapper ul li:after {
  display: none;
}
.gform_wrapper .gform_fields {
  display: flex;
  flex-flow: row wrap;
  margin-left: -10px !important;
  margin-right: -10px !important;
  margin-bottom: 0 !important;
}
.gform_wrapper .gfield {
  flex-grow: 1;
}
.gform_wrapper .gfield_label {
  display: none;
}
.gform_wrapper .ginput_container {
  display: flex;
  flex-flow: column wrap;
}
.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container select,
.gform_wrapper .ginput_container textarea {
  flex: 1 1 auto;
}
.gform_wrapper .validation_message {
  margin: -10px 10px 20px 10px;
  color: #d70000;
  font-size: 15px;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
}
.gform_wrapper .validation_error {
  display: none;
  opacity: 0 !important;
  visibility: hidden !important;
}
.gform_confirmation_message {
  color: #007a29;
}
.checkbox-container {
  display: flex;
  flex-flow: row wrap;
}
.checkbox {
  overflow: hidden;
  margin-bottom: 15px;
}
.checkbox__label {
  display: flex;
  flex-flow: row nowrap;
  cursor: pointer;
  align-items: center;
}
.checkbox__input {
  display: none;
}
.checkbox__checker {
  float: left;
  position: relative;
  overflow: hidden;
  width: 24px;
  height: 24px;
  margin-right: 20px;
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  transition: all .2s ease;
}
.checkbox__checker:after {
  position: absolute;
  width: 12px;
  height: 8px;
  top: 7px;
  left: 5px;
  content: "";
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/check-white.svg') right top / 12px no-repeat;
  transition: all .2s ease;
  -webkit-transform: translateY(18px);
  -moz-transform: translateY(18px);
  -ms-transform: translateY(18px);
  -o-transform: translateY(18px);
  transform: translateY(18px);
}
.checkbox__count {
  color: #26292b;
  padding-left: 8px;
}
.checkbox__label {
  float: left;
  font-size: 14px;
  color: rgba(2, 58, 79, 0.6);
}
.checkbox input:checked + .checkbox__checker {
  background: #ff6c37;
  border-color: #ff6c37;
}
.checkbox input:checked + .checkbox__checker:after {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.checkbox--is-tag {
  margin-bottom: 10px;
  margin-right: 10px;
}
.checkbox--is-tag p.checkbox__label {
  background: #e3e4e6;
  color: rgba(2, 58, 79, 0.8);
  border-radius: 12px;
  padding: 5px 16px 5px 16px;
  cursor: pointer;
}
.checkbox--is-tag p.checkbox__label:hover {
  background: #023a4f;
  color: white;
}
.checkbox--is-tag p.checkbox__label:hover .checkbox__count {
  color: white;
}
.checkbox--is-tag input:checked + .checkbox__label {
  background: #023a4f;
  color: white;
}
.checkbox--is-tag input:checked + .checkbox__label .checkbox__count {
  color: white;
}
.checkbox--align-hor {
  margin-right: 10px;
}
/* ********************
=Chosen
******************** */
.chosen-container {
  position: relative;
  min-width: 100%;
}
.chosen-container:after {
  position: absolute;
  width: 8px;
  height: 18px;
  right: 18px;
  top: 20px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-grey.svg") center center / 8px no-repeat;
  content: '';
  transform: rotate(90deg);
  transition: transform .2s ease;
}
.chosen-container.chosen-with-drop:after {
  transform: rotate(-90deg);
}
.chosen-container > a,
.chosen-container > .chosen-single {
  height: auto;
  background: white;
  padding: 15px 20px;
  border: 1px solid white !important;
  line-height: 1;
}
.chosen-container > a span,
.chosen-container > .chosen-single span {
  display: inline-block;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  overflow: visible;
  font-size: 18px;
  line-height: 22px;
  color: #26292b;
}
.chosen-container > a span:after,
.chosen-container > .chosen-single span:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 14px;
  color: rgba(38, 41, 43, 0.5);
  background: #E2E4E5;
  border-radius: 2px;
  padding: 4px 10px 1px;
  margin-left: 15px;
  content: attr(data-counter);
}
.chosen-container > a > div,
.chosen-container > .chosen-single > div {
  display: none;
}
.chosen-container .chosen-drop {
  border: 1px solid white !important;
  border-top: 0 !important;
}
.chosen-container .chosen-drop .chosen-results li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #26292b;
}
.chosen-container .chosen-drop .chosen-results li.highlighted {
  background: #ff6c37;
  color: white;
}
.chosen-container .chosen-drop .chosen-results li:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 14px;
  color: rgba(38, 41, 43, 0.5);
  background: #E2E4E5;
  border-radius: 2px;
  padding: 4px 10px 1px;
  margin-left: 15px;
  content: attr(data-counter);
}
.is-select {
  position: relative;
}
.is-select select {
  width: 100%;
  background: white;
}
@media only screen and (max-width: 1024px) {
  .is-select:after {
    position: absolute;
    width: 8px;
    height: 18px;
    right: 18px;
    top: 18px;
    background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-grey.svg") center center / 8px no-repeat;
    content: '';
    transform: rotate(90deg);
    transition: transform .2s ease;
  }
  .is-select:before {
    position: absolute;
    right: 45px;
    top: 16px;
    font-family: 'aller';
    font-weight: 700;
    font-family: 'Objectivity-Bold';
    font-weight: 400;
    font-size: 14px;
    color: rgba(38, 41, 43, 0.5);
    background: #E2E4E5;
    border-radius: 2px;
    padding: 3px 10px;
    margin-left: 15px;
    content: attr(data-counter);
  }
}
/* ********************
=Header
******************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(151, 151, 151, 0.3);
  z-index: 1000;
  transition: transform 0.25s ease-in-out;
}
.header__top {
  position: relative;
  z-index: 2;
  background: #E2E4E5;
  background: #dfe4e5;
  height: 60px;
}
.header__bottom {
  position: relative;
  display: flex;
  z-index: 1;
  align-items: center;
  background: white;
  height: 80px;
}
.header__nav-toggle,
.header__nav-toggle-close {
  display: none;
}
.header.headroom--unpinned {
  transform: translate3d(0, -60px, 0);
}
@media only screen and (max-width: 1023px) {
  .header {
    display: flex;
    height: 60px;
    background: white;
    transform: translate3d(0, 0, 0) !important;
  }
  .header__inner {
    position: fixed;
    width: calc(100% - 68px);
    max-width: 500px;
    height: 100%;
    background: white;
    top: 0;
    right: 0;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.63s cubic-bezier(0.63, 0.01, 0.33, 1) !important;
  }
  .header__inner--open {
    transform: translate3d(0, 0, 0);
  }
  .header__bottom {
    overflow-y: scroll;
    padding-bottom: 180px;
    height: 100vh;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .header__bottom > .base-grid {
    flex-flow: column wrap;
    padding: 0 10px;
  }
  .header__top > .base-grid {
    padding: 0;
  }
  .header__nav-toggle {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    left: -65px;
    top: 0;
    transition: all .25s .8s ease;
  }
  .header__nav-toggle--open {
    transform: scale(0.75);
    opacity: 0;
    visibility: hidden;
    transform-origin: center center;
    transition: all .3s .6s ease;
  }
  .header__nav-toggle-close {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    left: -65px;
    top: 0;
    transition: all .25s .6s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.75);
  }
  .header__nav-toggle-close--open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: all .25s .8s ease;
  }
  .header__nav-toggle-close .header__nav-toggle-line {
    transform: rotate(45deg);
    top: 28px !important;
  }
  .header__nav-toggle-close .header__nav-toggle-line:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  .header__nav-toggle-line {
    position: absolute;
    width: 34px;
    height: 3px;
    background: #7d7f80;
    left: 13px;
    top: 18px;
  }
  .header__nav-toggle-line:nth-of-type(2) {
    top: 28px;
  }
  .header__nav-toggle-line:nth-of-type(3) {
    top: 38px;
  }
}
.wpml-ls-legacy-dropdown {
  display: flex;
  align-items: center;
  width: auto;
  border-left: 1px solid #c7c7c7;
}
.wpml-ls-legacy-dropdown ul {
  border: 0 !important;
}
.wpml-ls-legacy-dropdown ul li {
  background: #E2E4E5;
}
.wpml-ls-legacy-dropdown ul li a {
  padding: 16px 20px;
  background: none !important;
  border: 0;
}
.wpml-ls-legacy-dropdown ul li a.wpml-ls-item-toggle {
  padding-right: 40px;
}
.wpml-ls-legacy-dropdown ul li a.wpml-ls-item-toggle:after {
  position: absolute;
  width: 8px;
  height: 18px;
  right: 18px;
  top: 22px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-grey.svg") center center / 8px no-repeat;
  content: '';
  transform: rotate(90deg);
  border: 0;
}
.wpml-ls-legacy-dropdown ul li a span {
  display: none;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  text-indent: -9999px;
}
.wpml-ls-legacy-dropdown ul li a:hover {
  background: #dadcde !important;
}
.wpml-ls-legacy-dropdown ul li a:hover:before {
  color: #ff6c37 !important;
}
.wpml-ls-legacy-dropdown ul li:hover {
  background: #dadcde !important;
}
.wpml-ls-legacy-dropdown ul li:hover a.wpml-ls-item-toggle:before {
  color: #ff6c37 !important;
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-en > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "EN";
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-nl > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "NL";
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-fr > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "FR";
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-de > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "DE";
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-pl > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "PL";
}
.wpml-ls-legacy-dropdown ul li.wpml-ls-item-es > a:before {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.4);
  content: "ES";
}
.top-menu {
  display: flex;
  align-items: center;
}
.top-menu ul {
  display: flex;
  padding-right: 15px;
}
.top-menu ul li a {
  font-size: 14px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.4);
  padding: 0 15px;
}
.top-menu ul li a:hover {
  color: #ff6c37;
}
@media only screen and (max-width: 1023px) {
  .top-menu {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .top-menu ul {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    white-space: nowrap;
    padding-right: 0;
    margin-top: 15px;
  }
  .top-menu ul li a {
    font-size: 13px;
    white-space: nowrap;
    padding: 0 8px;
  }
}
.search-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: white;
  min-width: 60px;
}
.search-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.search-toggle:hover {
  background: #ff6c37;
}
.search-toggle:hover svg path {
  fill: white;
}
.logo {
  display: flex;
  align-content: center;
}
.logo__name {
  display: none;
}
.logo__image {
  align-self: center;
  width: 369px;
  width: 190px;
  height: auto;
}
.logo--header {
  margin-right: auto;
}
.logo--mobile {
  display: none;
}
.logo--footer .logo__image {
  width: auto;
  height: 38px;
  height: 30px;
}
@media only screen and (max-width: 1100px) {
  .logo__image {
    width: 300px;
    width: 190px;
  }
}
@media only screen and (max-width: 1023px) {
  .logo--header {
    display: none;
  }
  .logo--mobile {
    display: flex;
    margin-left: 20px;
    transition: transform 0.63s cubic-bezier(0.63, 0.01, 0.33, 1) !important;
  }
  .logo--mobile-open {
    transform: translate3D(-150%, 0, 0);
  }
}
@media only screen and (max-width: 700px) {
  .logo--footer {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .logo--mobile {
    margin-left: 10px;
  }
  .logo__image {
    width: 230px;
    width: 160px;
  }
}
.main-menu ul {
  display: flex;
}
.main-menu ul li {
  position: relative;
}
.main-menu ul li a {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  display: flex;
  font-size: 16px;
  line-height: 1;
  color: rgba(2, 58, 79, 0.8);
  padding: 32px 30px 0;
  height: 80px;
  border-left: 1px solid rgba(151, 151, 151, 0.3);
  white-space: nowrap;
}
.main-menu ul li:last-child a {
  border-right: 1px solid rgba(151, 151, 151, 0.3);
}
.main-menu ul li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #ff6c37;
  content: "";
  opacity: 0;
  transition: opacity .15s ease;
}
.main-menu ul li:hover:after {
  opacity: 1;
}
.main-menu ul li.current-menu-item:after {
  opacity: 1;
}
.main-menu ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 55px;
}
.main-menu ul li.menu-item-has-children > a:after {
  position: absolute;
  width: 8px;
  height: 12px;
  right: 25px;
  top: 35px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-blue-light.svg") center center / 8px no-repeat;
  content: '';
  transform: rotate(90deg);
}
.main-menu ul li.menu-item-has-children:hover > .sub-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 1250px) {
  .main-menu ul li a {
    padding: 32px 15px 0;
  }
  .main-menu ul li.menu-item-has-children > a {
    padding-right: 35px;
  }
  .main-menu ul li.menu-item-has-children > a:after {
    right: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .main-menu {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
  }
  .main-menu ul {
    flex-flow: column wrap;
    width: 100%;
  }
  .main-menu ul li a {
    border-left: 0;
    border-right: 0 !important;
    height: auto;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.3);
  }
  .main-menu ul li.menu-item-has-children > a:after {
    top: 20px;
    transform: rotate(0deg);
    transition: transform .15s ease;
  }
  .main-menu ul li.menu-item-has-children.open > a:after {
    transform: rotate(90deg);
  }
  .main-menu ul li:after {
    display: none;
  }
}
.buttons-menu {
  padding-left: 20px;
}
.buttons-menu ul {
  display: flex;
}
.buttons-menu ul li a {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  min-height: 52px;
  max-height: 52px;
  padding: 18px 22px 16px;
  color: white;
  background: #ff6c37;
  border-radius: 4px;
  border: 1px solid #ff6c37;
  transition: border .15s ease, background .15s ease, color .15s ease, border .15s ease;
  white-space: nowrap;
}
.buttons-menu ul li a:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
.buttons-menu ul li.ghost a {
  color: #ff6c37;
  background: white;
  border: 1px solid #ff6c37;
}
.buttons-menu ul li.ghost a:hover {
  color: white;
  background: #ff6c37;
}
.buttons-menu ul li:first-child {
  padding-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .buttons-menu {
    margin-top: 15px;
    padding-left: 0;
    width: 100%;
  }
  .buttons-menu ul li {
    display: flex;
    width: 50%;
  }
  .buttons-menu ul li a {
    text-align: center !important;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .buttons-menu ul li a {
    padding: 16px 14px;
  }
}
.sub-menu-wrapper {
  position: fixed;
  overflow: hidden;
  width: 100%;
  max-width: 1410px;
  left: calc(50% - 705px);
  top: 140px;
  background: white;
  border-top: 1px solid #e0e0e0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
  transform: translate3d(0, 15px, 0);
  border-radius: 0 0 4px 4px;
}
.sub-menu-wrapper > .base-grid:before {
  position: absolute;
  width: calc(100vw - (1450px / 2));
  height: 100%;
  left: 20px;
  top: 0;
  background: rgba(216, 216, 216, 0.35);
  content: "";
  transform: translate3d(-100%, 0, 0);
}
.sub-menu-wrapper > .base-grid > .sub-menu {
  display: flex;
  flex-flow: column nowrap;
  flex: 0 0 25%;
  background: rgba(216, 216, 216, 0.35);
  padding: 40px 30px 37px 0;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li {
  position: static;
  border-bottom: 1px solid #e0e0e0;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li a {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 18px;
  height: auto;
  line-height: 26px;
  color: rgba(2, 58, 79, 0.6);
  padding: 20px;
  border: 0;
  transition: background .15s ease;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li a:hover {
  background: rgba(216, 216, 216, 0.5);
}
.sub-menu-wrapper > .base-grid > .sub-menu > li:after {
  display: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.header-sub-menu {
  border-bottom: 0;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.header-sub-menu a {
  font-size: 22px;
  color: #ff6c37;
  background: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.header-sub-menu a:hover {
  background: none;
  color: #ff4e0e;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.header-sub-menu a:after {
  display: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children a {
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-blue-light.svg") right 20px center / 8px no-repeat;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children a:after {
  display: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children a:hover {
  background: rgba(216, 216, 216, 0.5) url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-blue-light.svg") right 15px center / 8px no-repeat;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li:last-child {
  border-bottom: 0;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper {
  position: absolute;
  width: calc(75% - 10px);
  left: calc(25% + 10px);
  top: 0;
  border: 0 !important;
  transform: translate3d(0, 0, 0);
  box-shadow: 0px 200px 300px 100px rgba(0, 0, 0, 0) !important;
  background: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid {
  background: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid:before {
  background: none;
  display: none;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
  display: block;
  background: none;
  flex: 0 0 67%;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li {
  float: left;
  width: 50%;
  border-bottom: 0;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #023a4f;
  padding: 10px 10px 10px 55px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right.svg") left 20px center / 7px no-repeat;
  white-space: normal;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a:hover {
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right.svg") left 25px center / 7px no-repeat;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li.header-sub-menu {
  width: 100%;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li.header-sub-menu a {
  font-size: 22px;
  color: #ff6c37;
  background: none;
  padding: 20px;
}
.sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li.header-sub-menu a:hover {
  color: #ff4e0e;
}
.sub-menu-wrapper--restyle {
  width: 275px;
  max-width: 100%;
  left: inherit;
  overflow: visible !important;
}
.sub-menu-wrapper--restyle .sub-cta {
  display: none;
}
.sub-menu-wrapper--restyle > .base-grid {
  padding: 0px;
}
.sub-menu-wrapper--restyle > .base-grid:before {
  display: none;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu {
  background: white;
  padding: 0px;
  width: 275px;
  flex: 0 0 100%;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li a {
  font-size: 16px;
  width: 275px;
  padding: 15px;
  transition: all 0.275s ease-in-out;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li a:hover {
  padding-left: 20px;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li.menu-item-has-children a {
  transition: all 0.275s ease-in-out;
  background-image: none;
  position: relative;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li.menu-item-has-children a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-blue-light.svg");
  background-position: center;
  background-size: 8px;
  background-repeat: no-repeat;
  transition: all 0.275s ease-in-out;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li.menu-item-has-children a:hover {
  background-color: #f4f4f4;
  background-image: none;
  padding-left: 20px;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li.menu-item-has-children a:hover:after {
  right: 5px;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper {
  transform: translate3d(100%, 0, 0) !important;
  left: 0px;
  width: 275px;
  top: -1px;
  border-top: 1px solid #e0e0e0 !important;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
  display: flex;
  background: white;
  flex: 100%;
  border-radius: 0 0 4px 0;
  overflow: hidden;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li {
  float: none;
  width: 100%;
  border-left: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a {
  padding: 15px;
  background-image: none;
  color: rgba(2, 58, 79, 0.6);
  transition: all 0.275s ease-in-out;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a:after {
  display: none;
}
.sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a:hover {
  background-color: #f4f4f4;
  background-image: none;
  padding-left: 20px;
}
@media only screen and (max-width: 1410px) {
  .sub-menu-wrapper {
    left: 0;
  }
  .sub-menu-wrapper--restyle {
    left: inherit;
  }
}
@media only screen and (max-width: 1200px) {
  .sub-menu-wrapper > .base-grid {
    padding: 0;
  }
  .sub-menu-wrapper > .base-grid:before {
    display: none;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu {
    padding: 20px 20px 20px 0;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
    flex: 0 0 55%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a {
    font-size: 15px;
    line-height: 22px;
    padding-left: 40px;
    white-space: normal;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu {
    padding: 0px;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li a {
    padding: 15px;
    width: 275px;
    font-size: 15px;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li a:hover {
    padding-left: 20px;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper {
    width: 275px;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
    flex: 0 0 100%;
    border-radius: 0 0 4px 0;
    overflow: hidden;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a {
    padding: 15px;
    white-space: nowrap;
    line-height: 26px;
  }
}
@media only screen and (max-width: 1023px) {
  .sub-menu-wrapper {
    display: none;
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    border-top: 0;
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid {
    flex-flow: column wrap;
    padding: 0 0 0 10px;
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid:before {
    display: none;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu {
    padding: 0;
    background: none !important;
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li {
    border-bottom: 1px solid rgba(151, 151, 151, 0.3);
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li a {
    background: none !important;
    font-size: 16px;
    padding: 10px;
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li.header-sub-menu {
    display: none;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children > a {
    position: relative;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children > a:after {
    position: absolute;
    display: block;
    width: 8px;
    height: 12px;
    right: 15px;
    top: 20px;
    background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-grey.svg") center center / 8px no-repeat;
    content: '';
    transform: rotate(0deg);
    transition: transform .15s ease;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li.menu-item-has-children.open > a:after {
    transform: rotate(90deg);
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper {
    position: relative;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid {
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
    border-top: 1px solid rgba(151, 151, 151, 0.3);
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li {
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li a {
    font-size: 14px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.3);
    color: rgba(38, 41, 43, 0.5);
    width: 100%;
  }
  .sub-menu-wrapper > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li:last-child a {
    border-bottom: 0;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li a {
    width: 100%;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper {
    transform: none !important;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu {
    border: 0px;
  }
  .sub-menu-wrapper--restyle > .base-grid > .sub-menu > li > .sub-menu-wrapper > .base-grid > .sub-menu li {
    border: 0px;
  }
}
.sub-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #26292b;
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.sub-menu-overlay--show {
  opacity: .6;
  visibility: visible;
}
.breadcrumbs {
  position: absolute;
  display: flex;
  flex-flow: row wrap;
  right: 20px;
  top: 0;
  height: 56px;
  min-width: 450px;
  background: #023a4f;
  border-radius: 4px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.breadcrumbs__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  flex: 1 1 auto;
}
.breadcrumbs__inner--has-share-this {
  position: relative;
  overflow: hidden;
  padding-right: 220px;
}
.breadcrumbs__home {
  width: 56px;
  height: 56px;
}
.breadcrumbs__home a {
  display: flex;
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(216, 216, 216, 0.2);
}
.breadcrumbs__home a:after {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/home.svg") center center / 16px no-repeat;
  content: "";
  transform: translate3d(-50%, -50%, 0);
}
.breadcrumbs__home a:hover {
  background: rgba(216, 216, 216, 0.05);
}
.breadcrumbs a,
.breadcrumbs span {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
.breadcrumbs span[property="itemListElement"] {
  position: relative;
  color: white;
}
.breadcrumbs span[property="itemListElement"]:not(.breadcrumbs__home) {
  padding: 0 0 0 32px;
  transform: translateX(-17px);
}
.breadcrumbs span[property="itemListElement"]:not(.breadcrumbs__home) a span {
  padding: 0;
}
.breadcrumbs span[property="itemListElement"]:not(.breadcrumbs__home):before {
  display: none;
  position: absolute;
  width: 8px;
  height: 12px;
  right: -21px;
  top: 8px;
  content: "";
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-white.svg") center center / 8px no-repeat;
  opacity: .4;
}
.breadcrumbs span[property="itemListElement"]:last-of-type:before {
  display: none;
}
.breadcrumbs a span {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs a:hover span {
  color: white;
}
.breadcrumbs--breadcrumbs-v2 {
  right: auto;
  left: 5px;
  top: 35px;
  background: none;
  z-index: 3;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.breadcrumbs--breadcrumbs-v2 .breadcrumbs__home {
  width: auto;
  height: auto;
}
.breadcrumbs--breadcrumbs-v2 .breadcrumbs__home a {
  width: auto;
  height: auto;
  background: none !important;
}
.breadcrumbs--breadcrumbs-v2 .breadcrumbs__home a:after {
  display: none;
}
.breadcrumbs--breadcrumbs-v2 a,
.breadcrumbs--breadcrumbs-v2 span {
  line-height: 16px;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] {
  display: inline-block;
  padding-left: 0 !important;
  transform: translateX(0) !important;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > a,
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > span {
  position: relative;
  display: inline-block;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.8);
  padding: 7px 5px 7px 30px;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > a:before,
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > span:before {
  display: block;
  position: absolute;
  width: 8px;
  height: 12px;
  top: 9px;
  left: 10px;
  content: "";
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-white.svg') center center / 8px no-repeat;
  opacity: .6;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > a:hover {
  color: white;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"]:first-of-type > a,
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"]:first-of-type > span {
  padding-left: 15px;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"]:first-of-type > a:before,
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"]:first-of-type > span:before {
  display: none;
}
.breadcrumbs--breadcrumbs-v2 span[property="itemListElement"].current > span {
  color: white;
}
@media only screen and (max-width: 800px) {
  .breadcrumbs--breadcrumbs-v2 {
    display: flex;
    position: relative;
    left: auto;
    top: auto;
    transform: translateX(-15px);
  }
  .breadcrumbs--breadcrumbs-v2--on-community {
    position: absolute;
  }
  .breadcrumbs--breadcrumbs-v2--on-grey {
    position: absolute;
  }
}
@media only screen and (max-width: 640px) {
  .breadcrumbs--breadcrumbs-v2 {
    width: 100vw;
    -webkit-mask-image: linear-gradient(90deg, #ffffff 80%, transparent 100%);
  }
  .breadcrumbs--breadcrumbs-v2 .breadcrumbs__inner {
    overflow: hidden;
    min-width: 100%;
    white-space: nowrap;
    flex-flow: nowrap;
  }
  .breadcrumbs--breadcrumbs-v2 a,
  .breadcrumbs--breadcrumbs-v2 span {
    font-size: 12px;
  }
  .breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > a,
  .breadcrumbs--breadcrumbs-v2 span[property="itemListElement"] > span {
    font-size: 12px;
  }
}
.breadcrumbs--has-padding-left {
  padding-left: 30px;
}
.breadcrumbs--on-grey span[property="itemListElement"] > a,
.breadcrumbs--on-grey span[property="itemListElement"] > span {
  color: rgba(2, 58, 79, 0.6);
}
.breadcrumbs--on-grey span[property="itemListElement"] > a:before,
.breadcrumbs--on-grey span[property="itemListElement"] > span:before {
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-blue.svg') center center / 8px no-repeat;
}
.breadcrumbs--on-grey span[property="itemListElement"] > a span {
  color: rgba(2, 58, 79, 0.6);
}
.breadcrumbs--on-grey span[property="itemListElement"] > a:hover {
  color: #023a4f;
}
.breadcrumbs--on-grey span[property="itemListElement"] > a:hover span {
  color: #023a4f;
}
.breadcrumbs--on-grey span[property="itemListElement"].current > span {
  color: #023a4f;
}
.breadcrumbs--on-community {
  top: 170px;
}
@media only screen and (max-width: 1023px) {
  .breadcrumbs--on-community {
    top: 90px;
  }
  .breadcrumbs--has-padding-left {
    padding-left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .breadcrumbs--on-community {
    position: absolute;
  }
}
@media only screen and (max-width: 640px) {
  .breadcrumbs {
    min-width: 0;
  }
}
.sub-cta {
  position: absolute;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  background-color: #e7edf0;
  right: 0;
  top: 0;
  width: 347px;
  height: 100%;
  max-height: 320px;
  padding: 40px;
}
.sub-cta:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 41, 43, 0.4);
  content: "";
}
.sub-cta__title {
  position: relative;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  color: white;
}
.sub-cta__button {
  position: relative;
  color: white !important;
  padding: 15px 22px !important;
  line-height: 19px !important;
  max-height: 52px;
}
@media only screen and (max-width: 1200px) {
  .sub-cta {
    width: 280px;
    padding: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .sub-cta {
    display: none;
  }
}
.share-this-container {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  max-width: 810px;
  margin-top: 30px;
}
@media only screen and (max-width: 1023px) {
  .share-this-container {
    margin-top: 0;
  }
}
.share-this {
  display: flex;
  flex-flow: row wrap;
  align-self: flex-start;
  padding-left: 175px;
}
.share-this__toggle {
  display: flex;
  position: relative;
  order: 2;
  width: 56px;
  height: 56px;
  background: rgba(216, 216, 216, 0.2);
  border-radius: 0 4px 4px 0;
}
.share-this__toggle svg {
  position: absolute;
  width: 16px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.share-this__toggle:hover {
  background: rgba(216, 216, 216, 0.05);
}
.share-this__list {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  order: 1;
  transform: translate3d(0, 0, 0);
  transition: all .25s ease;
}
.share-this__list:before {
  position: absolute;
  text-align: center !important;
  width: 135px;
  left: 0;
  top: 0;
  content: attr(data-label);
  font-size: 14px;
  color: rgba(2, 58, 79, 0.8);
  height: 43px;
  padding: 0 20px;
  line-height: 45px;
  border: 1px solid #e0e0e0;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  transform: translate3d(-100%, 0, 0);
}
.share-this__list li a {
  display: flex;
  position: relative;
  width: 60px;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-right: 0;
}
.share-this__list li svg {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  fill: white;
  opacity: .8;
  transform: translate3d(-50%, -50%, 0);
}
.share-this__list li svg path {
  fill: rgba(38, 41, 43, 0.8);
  fill: rgba(2, 58, 79, 0.8);
}
.share-this__list li.rrssb-facebook a {
  background: none;
}
.share-this__list li.rrssb-facebook a:hover {
  background: #3b5998;
}
.share-this__list li.rrssb-facebook a:hover svg path {
  fill: white;
}
.share-this__list li.rrssb-linkedin a {
  background: none;
  border-right: 1px solid #e0e0e0;
  border-radius: 0 4px 4px 0;
}
.share-this__list li.rrssb-linkedin a:hover {
  background: #007bb5;
}
.share-this__list li.rrssb-linkedin a:hover svg path {
  fill: white;
}
.share-this__list li.rrssb-twitter a {
  background: none;
}
.share-this__list li.rrssb-twitter a:hover {
  background: #00aced;
}
.share-this__list li.rrssb-twitter a:hover svg path {
  fill: white;
}
/* ********************
=Page header
******************** */
.page-header {
  position: relative;
  display: flex;
  margin-top: 140px;
  height: 490px;
}
.page-header__slider {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 490px;
}
.page-header__slider--large {
  height: 645px;
}
.page-header__slider--large .page-header__background-image {
  height: 645px;
}
.page-header__background-image {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 490px;
}
.page-header__background-image:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(38, 41, 43, 0.3);
  content: "";
  z-index: 1;
}
.page-header__background-image--large {
  height: 645px;
}
.page-header__background-image--large:after {
  background: rgba(38, 41, 43, 0.5);
}
.page-header__background-image--in-slider {
  position: relative;
  left: auto;
  top: auto;
}
.page-header__background-image--in-slider:after {
  display: none;
}
.page-header__background-image.slick-current .page-header__background-image-inner {
  transform: scale(1.04);
}
.page-header__background-image.slick-current .page-header__line--o60-animated {
  opacity: .6;
  transform: scale(1);
  transition: opacity .6s .5s ease, transform .6s .5s ease;
}
.page-header__background-image.slick-current .page-header__line--large-animated {
  opacity: 1;
  transform: scale(1);
  transition: opacity .6s .7s ease, transform .6s .7s ease;
}
.page-header__background-image.slick-current .page-header__subtitle--animated {
  opacity: 1;
  transform: scale(1);
  transition: opacity .6s .9s ease, transform .6s .9s ease;
}
.page-header__background-image-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: all 1s ease;
}
.page-header__background-image-inner:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(38, 41, 43, 0.3);
  content: "";
  z-index: 1;
}
.page-header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66.6666%;
  z-index: 2;
}
.page-header__content--align-top {
  justify-content: flex-start;
  padding-top: 100px;
  width: 100%;
}
.page-header__content--has-padding-left {
  padding-left: 30px;
}
.page-header__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  display: flex;
  position: relative;
  z-index: 2;
  align-items: flex-start;
  flex-direction: column;
  font-size: 44px;
  line-height: 54px;
  color: white;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.page-header__line {
  display: flex;
}
.page-header__line--o60 {
  opacity: .6;
}
.page-header__line--o60-animated {
  opacity: 0;
  transform: scale(0.95);
  transform-origin: left center;
  transition: opacity .5s ease, transform .5s ease;
}
.page-header__line--large {
  font-size: 100px;
  line-height: 100px;
}
.page-header__line--large:after {
  margin-top: 14px;
}
.page-header__line--large-animated {
  opacity: 0;
  transform: scale(0.95);
  transform-origin: left center;
  transition: opacity .5s ease, transform .5s ease;
}
.page-header__line:last-of-type:after {
  display: none;
  width: 20px;
  height: 19px;
  margin-left: 5px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/heading-asterix.svg') center center / 20px no-repeat;
  content: "";
}
.page-header__subtitle {
  position: relative;
  display: flex;
  font-family: 'Objectivity-Medium';
  font-weight: 400;
  z-index: 2;
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
.page-header__subtitle--animated {
  opacity: 0;
  transform: scale(0.95);
  transform-origin: left center;
  transition: opacity .5s ease, transform .5s ease;
}
.page-header__subtitle--narrow {
  max-width: 600px;
}
.page-header__video {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.page-header__video-button {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 28px;
  color: white;
  border: 0;
  background: none;
  margin: auto;
}
.page-header__video-button:hover .page-header__video-button-svg circle {
  opacity: 1;
}
.page-header__video-button-svg {
  margin-right: 20px;
}
.page-header__video-button-svg circle {
  transition: opacity .2s ease;
}
.page-header__world-map-container {
  position: absolute;
  right: 0;
  top: 50%;
  width: 794px;
  height: 404px;
  background: #d6d7d8;
  /* background: url("@{base-url}/images/world-map-large.svg") right top / 794px no-repeat; */
  transform: translate3d(0, -50%, 0);
}
.page-header__world-map-container--scaled-down {
  transform: translate3d(0, -47%, 0) scale(0.6);
}
.page-header__world-map-mask {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 2;
}
.page-header__world-map-marker {
  position: absolute;
  top: 107px;
  right: 414px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6c37;
}
.page-header__world-map-marker:before {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: 0 0;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 108, 55, 0.3);
  content: "";
}
.page-header__world-map-marker:after {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 108, 55, 0.2);
  content: "";
  transform-origin: 0 0;
}
.page-header__world-map-marker:nth-of-type(1):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 3 ease-in;
}
.page-header__world-map-marker:nth-of-type(1):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 1s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-marker:nth-of-type(2) {
  top: 141px;
  right: 650px;
}
.page-header__world-map-marker:nth-of-type(2):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 3s infinite ease-in;
}
.page-header__world-map-marker:nth-of-type(2):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 2s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-marker:nth-of-type(3) {
  top: 142px;
  right: 439px;
}
.page-header__world-map-marker:nth-of-type(3):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 20s 3 ease-in;
}
.page-header__world-map-marker:nth-of-type(3):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 3s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-marker:nth-of-type(4) {
  top: 345px;
  right: 548px;
}
.page-header__world-map-marker:nth-of-type(4):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 4s 3 ease-in;
}
.page-header__world-map-marker:nth-of-type(4):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 4s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-marker:nth-of-type(5) {
  top: 192px;
  right: 320px;
}
.page-header__world-map-marker:nth-of-type(5):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 8s 3 ease-in;
}
.page-header__world-map-marker:nth-of-type(5):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 5.5s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-marker:nth-of-type(6) {
  top: 125px;
  right: 151px;
}
.page-header__world-map-marker:nth-of-type(6):before {
  display: none;
  animation: worldmapmarkerbefore 1.5s 16s 3 ease-in;
}
.page-header__world-map-marker:nth-of-type(6):after {
  background: #ff6c37;
  animation: worldmapmarkerafter 4s 6.5s infinite cubic-bezier(0.25, 0.96, 0.95, 1);
}
.page-header__world-map-container-v2 {
  position: absolute;
  right: 0;
  top: 50%;
  width: 794px;
  height: 404px;
  transform: translate3d(0, -50%, 0);
}
.page-header__world-map-container-v2 svg {
  width: 794px;
}
.page-header__world-map-container-v2 .marker {
  fill: #ff6c37;
}
.page-header__world-map-container-v2 .marker-level-1 {
  animation: marker_level_1 1.7s ease infinite;
}
.page-header__world-map-container-v2 .marker-level-2 {
  animation: marker_level_2 1.7s ease infinite;
}
.page-header--home-large {
  height: 645px;
}
.page-header--small {
  height: 300px;
}
.page-header--small .page-header__background-image {
  height: 300px;
}
.page-header--small .page-header__background-image:after {
  background: rgba(216, 216, 216, 0.35);
}
.page-header--small .page-header__title {
  color: #545454;
  color: #023a4f;
}
.page-header--small .page-header__subtitle {
  color: rgba(38, 41, 43, 0.4);
  color: rgba(2, 58, 79, 0.4);
}
.page-header--large {
  height: 634px;
}
.page-header--large .page-header__background-image {
  height: 634px;
}
.page-header--large .page-header__background-image:after {
  background: rgba(216, 216, 216, 0.35);
}
.page-header--large .page-header__title {
  color: #545454;
  color: #023a4f;
}
.page-header--large .page-header__subtitle {
  color: rgba(38, 41, 43, 0.4);
  color: rgba(2, 58, 79, 0.4);
}
.page-header--has-world-map {
  background: #edeef0;
}
.page-header--has-world-map .page-header__content {
  width: 100%;
}
.page-header--has-world-map .page-header__background-image:after {
  display: none;
}
.page-header--has-world-map-contact {
  overflow: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1440px) {
  .page-header {
    height: 400px;
  }
  .page-header__background-image {
    height: 400px;
  }
  .page-header__slider--large {
    height: 400px;
  }
  .page-header__slider--large .page-header__background-image {
    height: 400px;
  }
  .page-header--home-large {
    height: 400px;
  }
  .page-header__title {
    font-size: 40px;
    line-height: 48px;
  }
  .page-header__line--large {
    font-size: 80px;
    line-height: 80px;
  }
  .page-header--large .page-header__background-image {
    height: 550px;
  }
  .page-header--has-world-map {
    height: 550px;
  }
  .page-header--small {
    height: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-header__world-map-container {
    transform: scale(0.85) translate3d(85px, -50%, 0);
    top: 40%;
  }
  .page-header__world-map-container--scaled-down {
    transform: scale(0.65) translate3d(85px, -50%, 0);
    top: 32%;
  }
}
@media only screen and (max-width: 1023px) {
  .page-header {
    margin-top: 60px;
  }
  .page-header__content--has-padding-left {
    padding-left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .page-header > .base-grid {
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 45px;
  }
  .page-header--home-large {
    padding-top: 25px;
  }
  .page-header--no-video > .base-grid {
    justify-content: center;
  }
  .page-header--no-video .page-header__background-image > .base-grid {
    padding-bottom: 100px;
  }
  .page-header__background-image > .base-grid {
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 45px;
  }
  .page-header__content {
    width: 100%;
  }
  .page-header__content--align-top {
    padding-top: 60px;
  }
  .page-header__content--home {
    height: 100%;
  }
  .page-header__title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .page-header__video-button-svg {
    transform: scale(0.8) translateX(-7px);
    margin-right: 5px;
  }
  .page-header--has-world-map .page-header__content {
    height: 100%;
  }
  .page-header--large .page-header__background-image {
    height: 450px;
  }
  .page-header--has-world-map {
    height: 450px;
  }
  .page-header__world-map-container {
    transform: scale(0.65) translate3d(235px, -50%, 0);
    top: 6%;
  }
  .page-header--small {
    height: 300px;
  }
}
@media only screen and (max-width: 640px) {
  .page-header {
    height: 300px;
  }
  .page-header--home-large {
    padding-top: 15px;
  }
  .page-header__background-image {
    height: 300px;
  }
  .page-header__slider--large {
    height: 300px;
  }
  .page-header__slider--large .page-header__background-image {
    height: 300px;
  }
  .page-header--no-video .page-header__background-image > .base-grid {
    padding-bottom: 60px;
  }
  .page-header__line {
    font-size: 20px;
    line-height: 30px;
  }
  .page-header__line--large {
    font-size: 40px;
    line-height: 40px;
  }
  .page-header__title {
    margin-bottom: 5px;
  }
  .page-header__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .page-header__content--align-top {
    padding-top: 100px;
  }
  .page-header__world-map-container {
    transform: scale(0.4) translate3d(235px, -50%, 0);
    top: -22%;
    right: -145px;
  }
  .page-header--small {
    height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .page-header__subtitle br {
    display: none;
  }
}
@keyframes marker_level_1 {
  0% {
    fill: #d6d7d8;
  }
  50% {
    fill: #ff6c37;
  }
  100% {
    fill: #ff6c37;
  }
}
@keyframes marker_level_2 {
  0% {
    fill: #d6d7d8;
  }
  30% {
    fill: #d6d7d8;
  }
  80% {
    fill: #ff6c37;
  }
  100% {
    fill: #ff6c37;
  }
}
@keyframes worldmapmarkerbefore {
  0% {
    opacity: 1;
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
  32% {
    opacity: 0;
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
  33% {
    opacity: 0;
    transform: scale(0) translate3d(-50%, -50%, 0);
  }
  100% {
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
}
@keyframes worldmapmarkerafter {
  0% {
    opacity: 1;
    transform: scale(0) translate3d(-50%, -50%, 0);
  }
  25% {
    opacity: 1;
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
  50% {
    opacity: 0;
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
  75% {
    opacity: 0;
    transform: scale(0) translate3d(-50%, -50%, 0);
  }
  100% {
    transform: scale(0) translate3d(-50%, -50%, 0);
  }
}
/* ********************
=Page content
******************** */
.page-content {
  position: relative;
  z-index: 1;
}
.page-content--is-404 {
  padding-bottom: 100px;
}
.page-content__container {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 100%;
  align-items: center;
  padding: 115px 0 200px 0;
  max-width: calc(100% - 430px);
  margin-left: auto;
}
.page-content__container .flexible-content {
  max-width: 100%;
  padding: 0;
  margin-left: 0;
}
@media only screen and (max-width: 1440px) {
  .page-content__container {
    max-width: calc(100% - 330px);
  }
}
@media only screen and (max-width: 1275px) {
  .page-content__container {
    padding: 60px 0 100px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .page-content__container {
    order: 1;
    margin-left: 0;
    max-width: 100%;
    padding: 60px 0 40px 0;
  }
  .page-content__container--on-event {
    padding: 0 0 60px 0;
  }
}
@media only screen and (max-width: 640px) {
  .page-content__container {
    padding: 60px 0 20px 0;
  }
  .page-content__container--on-event {
    padding: 0 0 60px 0;
  }
}
/* ********************
=CTA block
******************** */
.cta-block {
  display: flex;
  overflow: hidden;
  flex-flow: row wrap;
  flex: 0 1 50%;
  width: 50%;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.cta-block__image {
  flex: 0 0 155px;
}
.cta-block__image--wider {
  flex: 0 0 270px;
}
.cta-block__content {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  padding: 40px;
}
.cta-block__content--on-distributors {
  padding: 40px 40px 30px 40px;
}
.cta-block__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: #023a4f;
  margin-bottom: 17px;
}
.cta-block__title--white {
  color: white;
}
.cta-block__text {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 44px;
}
.cta-block__text--white {
  color: white;
}
.cta-block__text--white p {
  margin-bottom: 17px;
}
.cta-block__text--white p,
.cta-block__text--white ol li,
.cta-block__text--white ul li {
  color: white;
}
.cta-block__text--o70 {
  opacity: .7;
}
.cta-block__text--o70 p {
  opacity: .7;
}
.cta-block__text--no-margin {
  margin-bottom: 0;
}
.cta-block__text ol {
  counter-reset: li-counter;
  margin-bottom: 32px;
}
.cta-block__text ol li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: white;
  margin-bottom: 23px;
  padding-left: 54px;
  opacity: 1;
}
.cta-block__text ol li:before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -1px;
  left: 0;
  background: white;
  border-radius: 50%;
  content: "";
}
.cta-block__text ol li:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  position: absolute;
  left: 11px;
  top: 2px;
  color: #ff6c37;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.cta-block__text ol li a {
  color: white;
}
.cta-block__buttons-list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-bottom: 25px;
}
.cta-block__list-item {
  display: flex;
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.cta-block__list-item-button {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: rgba(38, 41, 43, 0.8);
  width: 100%;
  background: white;
  padding: 15px 19px;
  border-radius: 2px;
  transition: padding .15s ease;
}
.cta-block__list-item-button:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: background-color 0.15s ease;
}
.cta-block__list-item-button:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 2px;
  height: 100%;
  background: #ff4e0e;
  content: "";
  transition: max-width 0.15s ease;
}
.cta-block__list-item-button:hover {
  padding-left: 23px;
}
.cta-block__list-item-button:hover:before {
  background-color: rgba(255, 78, 14, 0.1);
}
.cta-block__list-item-button:hover:after {
  max-width: 6px;
}
.cta-block__list-item-button--on-white {
  border: 1px solid #e0e0e0;
  border-left: #ff6c37;
}
.cta-block__list-item-button--on-white:after {
  background: #ff6c37;
}
.cta-block__buttons {
  display: flex;
  flex-flow: row nowrap;
}
.cta-block__buttons .button {
  margin-right: 10px;
}
.cta-block--orange {
  background: #ff6c37;
}
.cta-block--grey {
  background: #f2f2f2;
}
.cta-block--side-margin {
  margin: 0 15px;
}
.cta-block--side-margin:nth-of-type(1) {
  margin-left: 0;
}
.cta-block--side-margin:nth-of-type(2) {
  margin-right: 0;
}
.cta-block--in-flexible {
  flex: 0 1 100%;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.cta-block--has-world-map {
  position: relative;
}
.cta-block--has-world-map:before {
  position: absolute;
  right: -149px;
  bottom: -42px;
  width: 436px;
  height: 222px;
  background: url('/wp-content/themes/nedapsecurity/static/images/world-map-bg.svg') center center / 436px no-repeat;
  content: '';
}
.cta-block--in-page-header {
  position: absolute;
  left: 0;
  bottom: -100px;
  max-width: 688px;
  z-index: 1;
}
.cta-block--visible {
  overflow: visible;
}
.cta-block--visible .cta-block__image {
  border-radius: 4px 0 0 4px;
}
@media only screen and (max-width: 1200px) {
  .cta-block__content {
    padding: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .cta-block__content {
    padding: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .cta-block {
    flex: 0 1 100%;
    width: 100%;
    margin: 0 0 20px 0 !important;
  }
  .cta-block--in-page-header {
    position: absolute;
    left: 0;
    bottom: -140px;
    max-width: 100%;
    z-index: 1;
    margin-bottom: 0 !important;
    transform: translateY(50px);
  }
}
@media only screen and (max-width: 640px) {
  .cta-block__image {
    display: none;
  }
  .cta-block__title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .cta-block__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .cta-block--in-page-header {
    bottom: -240px;
  }
}
@media only screen and (max-width: 480px) {
  .cta-block__buttons-list {
    flex-flow: column wrap;
  }
  .cta-block__list-item {
    width: 100%;
  }
}
/* ********************
=Client slider
******************** */
.client-slider {
  margin: 70px 0;
}
.client-slider__logo {
  max-height: 85px;
  transition: transform 0.2s ease-in-out;
  max-width: 215px;
  width: auto;
  filter: grayscale(100%);
  opacity: .5;
}
.client-slider__logo--low-opacity {
  opacity: .5;
}
.client-slider__link {
  display: inline-block;
  justify-content: center;
  align-items: baseline;
  padding: 0 40px;
  width: 100%;
}
.client-slider__link:hover .client-slider__logo {
  transform: translateY(-5px);
}
.client-slider__link--disabled {
  transform: translateY(0);
  pointer-events: none;
}
.client-slider--in-flex .client-slider__logo {
  filter: grayscale(100%);
  /* opacity: .5; */
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.client-slider--in-flex .client-slider__link--disabled {
  transform: translateY(0);
  pointer-events: none;
}
.client-slider .slick-track {
  display: flex !important;
  align-items: center;
}
.client-slider .slick-list {
  padding: 5px 0;
}
.client-slider .slick-list:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
  z-index: 2;
}
.client-slider .slick-list:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 100%);
}
@media only screen and (max-width: 1440px) {
  .client-slider {
    margin: 35px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .client-slider__link:hover .client-slider__logo {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 640px) {
  .client-slider {
    margin: 5px 0 15px;
  }
  .client-slider .slick-list:before,
  .client-slider .slick-list:after {
    width: 30px;
  }
}
/* ********************
=Title plus intro
******************** */
.title-plus-intro {
  text-align: center !important;
  width: 100%;
}
.title-plus-intro__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 36px;
  line-height: 54px;
  color: #545454;
  color: #023a4f;
  margin-bottom: 4px;
}
.title-plus-intro__title--italic {
  font-family: 'aller';
  font-weight: 700;
  font-style: italic;
  font-family: 'Objectivity-BoldSlanted';
  font-weight: 400;
}
.title-plus-intro__title--small {
  font-size: 26px;
}
.title-plus-intro--has-margin-bottom {
  margin-bottom: 60px;
}
.title-plus-intro__intro {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
}
.title-plus-intro--margin-bottom {
  margin-bottom: 50px;
}
.title-plus-intro--margin-top {
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .title-plus-intro__title {
    font-size: 26px;
    line-height: 38px;
  }
  .title-plus-intro__intro {
    font-size: 15px;
    line-height: 24px;
  }
}
/* ********************
=Sidebar
******************** */
.sidebar {
  padding-right: 30px;
  width: 100%;
  max-width: 430px;
  min-width: 430px;
  margin-bottom: 20px;
}
.sidebar--smaller {
  padding-right: 100px;
  margin-bottom: 20px;
}
.sidebar--fixed {
  position: fixed;
  top: 100px;
  z-index: 9;
  transition: transform 0.25s ease-in-out, opacity 0.5s ease, visibility 0.5s ease;
}
.sidebar--fixed.headroom--pinned {
  transform: translateY(60px);
}
.sidebar--sticky-hide {
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease-in-out, opacity 0.2s ease, visibility 0.2s ease;
}
.sidebar--sticky-hide.sidebar--sticky-disabled {
  opacity: 1;
  visibility: visible;
}
.sidebar--sticky-disabled {
  position: relative;
  transform: translateY(0) !important;
  top: 0 !important;
}
.sidebar__subtitle {
  font-family: 'Objectivity-Medium';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(38, 41, 43, 0.3);
  color: rgba(2, 58, 79, 0.3);
  margin-bottom: 45px;
}
.sidebar__inner {
  overflow: hidden;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.sidebar__inner--cta-block {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column wrap;
  padding: 28px 30px;
  background: #ff6c37;
  border-color: #ff6c37;
  border-left-color: #ff4e0e;
  margin-top: 20px;
}
.sidebar__inner--cta-block:before {
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff4e0e;
  content: '';
}
.sidebar__inner--white-scheme {
  background: white;
  border-color: #e0e0e0;
  border-left-color: #e0e0e0;
}
.sidebar__inner--white-scheme:before {
  background: #e0e0e0;
}
.sidebar__inner--white-scheme .sidebar__title {
  color: #023a4f;
}
.sidebar__inner--white-scheme .sidebar__text {
  color: rgba(2, 58, 79, 0.8);
}
.sidebar__inner--white-scheme .sidebar__contact-tooltip {
  background: #ff6c37;
  color: white;
}
.sidebar__inner--white-scheme .sidebar__contact-tooltip:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ff6c37;
}
.sidebar__inner--author-block {
  padding-top: 97px;
}
.sidebar__inner--has-photo {
  margin-top: 37px;
  overflow: visible;
}
.sidebar__inner--hide {
  border: 0;
}
.sidebar__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  color: white;
  margin-bottom: 20px;
}
.sidebar__post-label {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(2, 58, 79, 0.6);
  margin-bottom: 11px;
}
.sidebar__post-label--no-margin-bottom {
  margin-bottom: 0;
}
.sidebar__post-title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #023a4f;
}
.sidebar__text {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.sidebar__text--author {
  margin-bottom: 0;
}
.sidebar__text--grey {
  font-size: 16px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.6);
}
.sidebar__text--bold {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  margin-bottom: 5px;
}
.sidebar__profile-photo {
  position: absolute;
  width: 88px;
  height: 88px;
  top: -17px;
  left: 35px;
  border-radius: 50%;
}
.sidebar__nav-toggle {
  text-align: left !important;
  position: relative;
  padding: 28px 30px;
  align-self: auto;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  margin: 0;
}
.sidebar__nav-toggle h3 {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #023a4f;
  transition: color .25s ease;
  padding-right: 40px;
}
.sidebar__nav-toggle span {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 30px;
  top: calc(50% - 16px);
  border: 1px solid #D8D8D8;
  border-radius: 50%;
  transition: background .25s ease;
}
.sidebar__nav-toggle span:before {
  position: absolute;
  width: 11px;
  height: 2px;
  background: #26292b;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  content: '';
}
.sidebar__nav-toggle span:after {
  position: absolute;
  width: 2px;
  height: 11px;
  background: #26292b;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  content: '';
  transition: transform .25s ease;
}
.sidebar__nav-toggle:hover h3 {
  color: #ff6c37;
}
.sidebar__nav-toggle:hover span {
  background: #d8d8d8;
}
.sidebar__nav-post-inner {
  display: flex;
  flex-flow: column wrap;
  padding-left: 30px;
  flex-basis: 100%;
}
.sidebar__nav-post-chevron {
  display: flex;
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-top: 34px;
  border: 1px solid rgba(224, 224, 224, 0.5);
  border-radius: 50%;
  transition: all .15s ease;
}
.sidebar__nav-post-chevron svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.sidebar__nav-post-chevron svg path {
  transition: fill .15s ease;
}
.sidebar__nav-ul {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  background: rgba(216, 216, 216, 0.35);
  padding: 0 20px 0 50px;
  transition: max-height 0.8s ease;
}
.sidebar__nav-ul li:first-child {
  margin-top: 20px;
}
.sidebar__nav-ul li:last-child {
  margin-bottom: 20px;
}
.sidebar__nav-ul--small {
  display: none;
  background: none;
  padding: 0 0 0 25px;
  margin-bottom: 18px;
}
.sidebar__nav-ul--small li {
  position: relative;
}
.sidebar__nav-ul--small li:before {
  position: absolute;
  width: 1px;
  height: 100%;
  left: -25px;
  top: 0;
  content: "";
  background: rgba(216, 216, 216, 0.95);
}
.sidebar__nav-ul--small li:first-child {
  margin-top: 5px;
}
.sidebar__nav-ul--small li:last-child {
  margin-bottom: 5px;
}
.sidebar__nav-ul--small .sidebar__link {
  overflow: hidden;
  display: block;
  font-size: 13px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}
.sidebar__nav-ul--open {
  display: block;
}
.sidebar__li--has-children {
  position: relative;
}
.sidebar__li--has-children:after {
  position: absolute;
  right: 10px;
  top: -2px;
  width: 8px;
  height: 12px;
  margin: 9px 0 0 20px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-grey.svg') center center / 8px no-repeat;
  content: "";
  transition: transform .15s ease;
}
.sidebar__li--has-children:hover:after {
  transform: rotate(90deg);
}
.sidebar__li--active:after {
  transform: rotate(90deg);
}
.sidebar__link {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 18px;
  color: rgba(2, 58, 79, 0.8);
  padding-right: 20px;
}
.sidebar__link:hover,
.sidebar__link--active {
  color: #ff6c37;
}
.sidebar__link--global {
  display: inline-block;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  color: rgba(2, 58, 79, 0.8);
  font-size: 15px;
  margin-bottom: 15px;
}
.sidebar__link--global:after {
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 12px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right.svg') center center / 8px no-repeat;
  content: "";
  transition: transform .15s ease;
  transform: translate3d(0, -50%, 0);
}
.sidebar__link--global:hover {
  color: rgba(2, 58, 79, 0.8);
}
.sidebar__link--global:hover:after {
  transform: translate3d(5px, -50%, 0);
}
.sidebar--blank .sidebar__inner {
  background: none;
  border: 0;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.sidebar--blank .sidebar__title {
  font-size: 48px;
  line-height: 54px;
  color: #26292b;
  margin-bottom: 20px;
}
.sidebar__event-info-list-item {
  padding: 25px 30px;
  border-bottom: 1px solid #e0e0e0;
}
.sidebar__event-info-list-item:last-child {
  border-bottom: 0;
}
.sidebar--cta-only .sidebar__inner--cta-block:first-of-type {
  margin-top: 0;
}
.sidebar__nav {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
}
.sidebar__nav:before {
  position: absolute;
  width: 100%;
  max-width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff6c37;
  z-index: 3;
  content: '';
  transition: max-width 0.25s ease;
}
.sidebar__nav--open:before {
  max-width: 4px;
}
.sidebar__nav--open .sidebar__nav-toggle h3 {
  color: #ff6c37;
}
.sidebar__nav--open .sidebar__nav-toggle span {
  background: #D8D8D8;
}
.sidebar__nav--open .sidebar__nav-toggle span:after {
  transform: translate3d(-50%, -50%, 0) rotate(-90deg);
}
.sidebar__nav--open .sidebar__nav-ul {
  max-height: 500px;
  transition: max-height 0.8s 0.2s ease;
}
.sidebar__nav--post {
  display: flex;
  flex-flow: row nowrap;
  padding: 30px;
}
.sidebar__nav--post:hover .sidebar__nav-post-chevron {
  background: #ff6c37;
  border-color: #ff6c37;
}
.sidebar__nav--post:hover .sidebar__nav-post-chevron svg {
  fill: white;
}
.sidebar__nav--post:hover .sidebar__nav-post-chevron svg path {
  fill: white;
}
.sidebar__nav--prev-post .sidebar__nav-post-inner {
  padding-left: 40px;
}
.sidebar__nav--prev-post .sidebar__nav-post-chevron svg {
  transform: translate3d(-50%, -50%, 0) rotate(-180deg);
}
.sidebar__nav--next-post {
  border-bottom: 1px solid #e0e0e0;
}
.sidebar__nav--next-post .sidebar__nav-post-inner {
  padding-right: 40px;
}
.sidebar__nav--big-buttons:before {
  display: none;
}
.sidebar__nav--big-buttons .sidebar__nav-toggle {
  display: none;
}
.sidebar__nav--big-buttons .sidebar__nav-ul {
  background: white;
  padding: 0;
}
.sidebar__nav--big-buttons .sidebar__nav-ul li {
  margin: 0;
}
.sidebar__nav--big-buttons .sidebar__nav-ul li:last-child .sidebar__link {
  border-bottom: 0;
}
.sidebar__nav--big-buttons .sidebar__nav-ul--small {
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 0;
}
.sidebar__nav--big-buttons .sidebar__nav-ul--small .sidebar__link {
  padding: 14px 20px 14px 40px;
  font-size: 14px;
}
.sidebar__nav--big-buttons .sidebar__link {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  position: relative;
  display: flex;
  font-size: 18px;
  line-height: 26px;
  color: #545454;
  transition: color .25s ease;
  padding: 28px 30px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 0;
}
.sidebar__nav--big-buttons .sidebar__link:before {
  position: absolute;
  width: 100%;
  max-width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff6c37;
  z-index: 3;
  content: '';
  transition: max-width 0.25s ease;
}
.sidebar__nav--big-buttons .sidebar__link--active {
  color: #ff6c37;
}
.sidebar__nav--big-buttons .sidebar__link--active:before {
  max-width: 4px;
}
.sidebar__nav--big-buttons .sidebar__link:hover:before {
  max-width: 4px;
}
.sidebar__nav--big-buttons .sidebar__li--has-children:after {
  top: 26px;
  right: 25px;
}
.sidebar__type-labels {
  margin-top: 25px;
}
.sidebar__type-list {
  display: flex;
  flex-flow: column nowrap;
}
.sidebar__type-list-item {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 25px;
}
.sidebar__type-text {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  color: rgba(2, 58, 79, 0.8);
  font-size: 14px;
  line-height: 20px;
  padding-left: 15px;
}
.sidebar__partner-type-inner {
  text-align: center !important;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  /* background: #c69c6d; */
  margin-bottom: 45px;
  width: 70px;
  border-radius: 0 0 2px 2px;
  padding: 5px 0 0 0;
}
.sidebar__partner-type-inner > span {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #c69c6d;
}
.sidebar__partner-type-inner--advanced > span {
  color: #c4c4c4;
}
.sidebar__partner-type-inner--expert > span {
  color: #eabb39;
}
.sidebar__partner-type-inner--alliance > span {
  color: #656160;
}
.sidebar__contact-buttons {
  display: flex;
  flex-flow: row nowrap;
  flex: 1 0 auto;
}
.sidebar__contact-button {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid #ff4e0e;
  background: white;
  border-radius: 4px;
  margin-right: 10px;
}
.sidebar__contact-button:hover {
  background: #ff6c37;
  border-color: #ff4e0e;
}
.sidebar__contact-button:hover svg {
  fill: white;
}
.sidebar__contact-button:hover > .sidebar__contact-tooltip {
  display: block;
}
.sidebar__contact-button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #ff6c37;
}
.sidebar__contact-button--email svg {
  width: 13px;
  height: 9px;
  margin: -4px 0 0 -6px;
}
.sidebar__contact-button--phone svg {
  width: 13px;
  height: 13px;
  margin: -6px 0 0 -6px;
}
.sidebar__contact-button--linkedin svg {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
}
.sidebar__contact {
  position: relative;
  padding-top: 20px;
}
.sidebar__contact:before {
  position: absolute;
  width: calc(100% + 60px);
  left: -30px;
  top: 0;
  height: 1px;
  background: #ff4e0e;
  content: "";
}
.sidebar__contact-tooltip {
  position: absolute;
  text-align: center !important;
  display: none;
  font-size: 13px;
  padding: 5px 10px;
  color: #ff6c37;
  background: white;
  top: -33px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 4px;
}
.sidebar__contact-tooltip:after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  content: "";
  transform: translate3d(-50%, 0, 0);
}
.sidebar--event-mobile {
  display: none;
  max-width: 100%;
}
.sidebar__filter-toggle {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .sidebar {
    min-width: 330px;
    max-width: 330px;
  }
  .sidebar--smaller {
    padding-right: 30px;
  }
  .sidebar__nav--post {
    padding: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .sidebar__subtitle {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 24px;
  }
  .sidebar--fixed {
    position: relative;
    transform: translateY(0) !important;
    top: 0 !important;
  }
}
@media only screen and (max-width: 1023px) {
  .sidebar--sticky {
    position: relative;
    order: 2;
    top: auto !important;
    transform: translateY(0) !important;
    margin-bottom: 40px;
    padding-right: 0;
    max-width: 50%;
  }
  .sidebar--sticky-hide {
    opacity: 1;
    visibility: visible;
    padding-right: 0;
    max-width: 50%;
  }
  .sidebar__nav {
    display: none;
  }
  .sidebar__nav--prev-post {
    display: flex;
  }
  .sidebar__nav--next-post {
    display: flex;
    justify-content: space-between;
  }
  .sidebar--event-mobile {
    display: flex;
    max-width: 100%;
  }
  .sidebar--event-mobile .sidebar__inner {
    width: 100%;
  }
  .sidebar--on-event {
    max-width: 100%;
  }
  .sidebar--on-event .sidebar__event-info-list {
    display: none;
  }
  .sidebar__event-info-list-item {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 960px) {
  .sidebar {
    min-width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .sidebar__subtitle {
    margin-bottom: 25px;
  }
  .sidebar__filter-toggle {
    display: block;
    position: relative;
    font-family: 'aller';
    font-weight: 700;
    font-family: 'Objectivity-Bold';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(2, 58, 79, 0.8);
    background: none;
    border: 0;
    padding: 0 45px 0 0;
    margin: -10px 0 10px 0;
  }
  .sidebar__filter-toggle span {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 0px;
    top: calc(50% - 16px);
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    transition: background .25s ease;
  }
  .sidebar__filter-toggle span:before {
    position: absolute;
    width: 11px;
    height: 2px;
    background: #26292b;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    content: '';
  }
  .sidebar__filter-toggle span:after {
    position: absolute;
    width: 2px;
    height: 11px;
    background: #26292b;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    content: '';
    transition: transform .25s ease;
  }
  .sidebar__filter-toggle--open span {
    background: #D8D8D8;
  }
  .sidebar__filter-toggle--open span:after {
    transform: translate3d(-50%, -50%, 0) rotate(-90deg);
  }
}
@media only screen and (max-width: 640px) {
  .sidebar__subtitle {
    margin-bottom: 10px;
  }
  .sidebar__nav--prev-post .sidebar__nav-post-inner {
    padding-left: 20px;
  }
  .sidebar__nav--next-post .sidebar__nav-post-inner {
    padding-left: 0;
  }
  .sidebar__post-label {
    margin-bottom: 0;
  }
  .sidebar--distributors {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .sidebar__inner--cta-block {
    padding: 20px;
  }
  .sidebar__inner--cta-block .sidebar__title {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .sidebar__inner--cta-block .sidebar__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .sidebar__inner--author-block {
    padding-top: 85px;
  }
  .sidebar__filter-toggle {
    margin: 20px 0 10px;
  }
  .sidebar__profile-photo {
    left: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .filter-blocks {
    display: none;
  }
}
.filter-block {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 40px;
}
.filter-block--row {
  flex-flow: row wrap;
}
.filter-block--row .filter-block__title {
  flex: 1 0 100%;
}
.filter-block--row .checkbox {
  width: 20%;
  padding-right: 20px;
}
.filter-block--row .checkbox__checker {
  margin-right: 10px;
}
.filter-block__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #023a4f;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1175px) {
  .filter-block--row .checkbox {
    width: 25%;
  }
}
@media only screen and (max-width: 960px) {
  .filter-block {
    margin-bottom: 20px;
  }
  .filter-block__title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .filter-block--row .checkbox {
    width: 50%;
  }
}
/* ********************
=Flexible content
******************** */
.page-content-wrapper {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 auto;
  align-items: center;
  padding: 115px 0 200px 0;
  max-width: calc(100% - 430px);
  margin-left: auto;
}
.page-content-wrapper > .flexible-content {
  max-width: 100%;
  padding: 0;
  margin-left: 0;
}
@media only screen and (max-width: 1440px) {
  .page-content-wrapper {
    max-width: calc(100% - 330px);
  }
}
@media only screen and (max-width: 1275px) {
  .page-content-wrapper {
    padding: 60px 0 100px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .page-content-wrapper {
    order: 1;
    margin-left: 0;
    max-width: 100%;
    padding: 60px 0 40px 0;
  }
}
@media only screen and (max-width: 640px) {
  .page-content-wrapper {
    padding: 60px 0 20px 0;
  }
}
.flexible-content {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 auto;
  align-items: center;
  padding: 115px 0 200px 0;
  max-width: calc(100% - 430px);
  margin-left: auto;
  min-width: 100%;
}
.flexible-content__block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 910px;
  padding: 5px 20px 35px 20px;
  flex-shrink: 0;
}
.flexible-content__block--small {
  max-width: 850px;
}
.flexible-content__block--has-padding-top {
  padding-top: 45px;
}
.flexible-content__block--quote {
  position: relative;
  flex-flow: column nowrap;
  padding: 35px 20px 65px 60px;
}
.flexible-content__block--quote:before {
  position: absolute;
  width: 4px;
  height: calc(100% - 100px);
  background: #ff6c37;
  left: 20px;
  top: 35px;
  content: '';
}
.flexible-content__block--quote p span {
  color: #ff6c37;
  margin-left: 10px;
}
.flexible-content__block--quote-no-margin blockquote {
  margin-bottom: 0 !important;
}
.flexible-content__block--cta-block {
  margin-bottom: 40px;
}
.flexible-content__block--two-third-one-third > .flexible-content__editor:nth-child(1) {
  width: 66.6666%;
  max-width: 510px;
}
.flexible-content__block--two-third-one-third > .flexible-content__editor:nth-child(2) {
  width: 33.33333%;
}
.flexible-content__block--one-third-two-third > .flexible-content__editor:nth-child(1) {
  width: 33.33333%;
}
.flexible-content__block--one-third-two-third > .flexible-content__editor:nth-child(2) {
  width: 66.66666%;
  max-width: 510px;
}
.flexible-content__block--accordion {
  flex-flow: column nowrap;
}
.flexible-content__block--accordion .flexible-content__editor {
  flex: 1 1 auto !important;
}
.flexible-content__block--client-slider {
  flex-flow: column nowrap;
}
.flexible-content__editor {
  flex: 1 1 0%;
  min-width: 0;
}
.flexible-content__editor img {
  border-radius: 4px;
}
.flexible-content__editor--has-two-col {
  max-width: 375px;
  flex: 0 1 auto;
  width: 50%;
}
.flexible-content__editor--has-three-col {
  width: 33.3333%;
  padding: 0 15px;
}
.flexible-content__editor--has-three-col:nth-of-type(1) {
  padding-left: 30px;
}
.flexible-content__editor--has-three-col:nth-of-type(3) {
  padding-right: 30px;
}
.flexible-content__editor--has-grey-background {
  position: relative;
  max-width: 415px;
  padding: 25px 40px 20px 40px;
  background: rgba(216, 216, 216, 0.35);
  transform: translateY(-25px);
}
.flexible-content__editor--has-grey-background:first-of-type {
  transform: translateY(-25px) translateX(-30px);
}
.flexible-content__editor--has-grey-background:last-of-type {
  transform: translateY(-25px) translateX(30px);
}
.flexible-content__editor--has-image {
  max-width: 415px;
  justify-content: center;
  transform: translateY(0);
}
.flexible-content__editor--has-image:first-of-type {
  transform: translateY(0) translateX(-30px);
}
.flexible-content__editor--has-image:last-of-type {
  transform: translateY(0) translateX(30px);
}
.flexible-content__editor--whitepaper-download {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  background: #F2F2F2;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  flex: 1 0 auto;
}
.flexible-content__editor--whitepaper-download h1,
.flexible-content__editor--whitepaper-download h2,
.flexible-content__editor--whitepaper-download h3,
.flexible-content__editor--whitepaper-download h4 {
  font-size: 24px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 15px;
}
.flexible-content__editor--whitepaper-download p {
  margin-bottom: 30px;
}
.flexible-content__editor--whitepaper-download a {
  margin-bottom: 0;
}
.flexible-content__editor--whitepaper-download .gform_wrapper .gfield_label {
  display: none;
}
.flexible-content__editor--whitepaper-download .gform_wrapper form {
  display: flex;
  flex-flow: row nowrap;
}
.flexible-content__editor--whitepaper-download .gform_wrapper input[type="email"],
.flexible-content__editor--whitepaper-download .gform_wrapper input[type="text"] {
  display: flex;
  flex: 1 1 auto;
  margin-left: 0;
}
.flexible-content__editor--whitepaper-download .gform_wrapper input[type="text"] {
  margin-bottom: 10px;
}
.flexible-content__editor--whitepaper-download .gform_wrapper .gform_body {
  flex-grow: 1;
}
.flexible-content__editor--whitepaper-download .gform_wrapper .gform_body ul {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .flexible-content__editor--whitepaper-download .gform_wrapper .gform_body {
    width: 100%;
  }
}
.flexible-content__editor--whitepaper-download .gform_wrapper .ginput_container {
  display: flex;
}
.flexible-content__editor--whitepaper-download #gform_1,
.flexible-content__editor--whitepaper-download #gform_9 {
  align-items: flex-start;
  flex-direction: column;
}
.flexible-content__editor--whitepaper-download #gform_1 .gform_footer,
.flexible-content__editor--whitepaper-download #gform_9 .gform_footer {
  margin-bottom: 20px;
  margin-top: 10px;
  width: 100%;
  flex-grow: 1;
}
.flexible-content__editor--whitepaper-download #gform_1 .gform_footer .button,
.flexible-content__editor--whitepaper-download #gform_9 .gform_footer .button {
  width: auto;
}
.flexible-content__editor--whitepaper-download #gform_1 .ginput_recaptcha,
.flexible-content__editor--whitepaper-download #gform_9 .ginput_recaptcha {
  margin: 0 0px 20px 0px;
}
@media only screen and (max-width: 767px) {
  .flexible-content__editor--whitepaper-download #gform_1,
  .flexible-content__editor--whitepaper-download #gform_9 {
    flex-direction: column;
  }
  .flexible-content__editor--whitepaper-download #gform_1 .gform_footer,
  .flexible-content__editor--whitepaper-download #gform_9 .gform_footer {
    margin-bottom: 20px;
    width: 100%;
  }
  .flexible-content__editor--whitepaper-download #gform_1 .gform_footer .button,
  .flexible-content__editor--whitepaper-download #gform_9 .gform_footer .button {
    width: 100%;
  }
  .flexible-content__editor--whitepaper-download #gform_1 input[type="email"],
  .flexible-content__editor--whitepaper-download #gform_9 input[type="email"],
  .flexible-content__editor--whitepaper-download #gform_1 input[type="text"],
  .flexible-content__editor--whitepaper-download #gform_9 input[type="text"] {
    margin-right: 0px;
  }
  .flexible-content__editor--whitepaper-download #gform_1 input[type="checkbox"],
  .flexible-content__editor--whitepaper-download #gform_9 input[type="checkbox"] {
    margin: 0 10px 20px 0px;
  }
  .flexible-content__editor--whitepaper-download #gform_1 .gfield,
  .flexible-content__editor--whitepaper-download #gform_9 .gfield {
    width: 100%;
  }
}
.flexible-content__whitepaper-image {
  flex: 0 0 260px;
}
.flexible-content__whitepaper-content {
  position: relative;
  padding: 30px 40px 40px 70px;
}
.flexible-content__whitepaper-content .gform_fields {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.flexible-content__whitepaper-content p {
  margin-bottom: 15px;
}
.flexible-content__whitepaper-content .gform_wrapper {
  padding-top: 15px;
}
.flexible-content__whitepaper-content--cta-v2 {
  padding: 30px 40px 40px 210px;
}
.flexible-content__whitepaper-icon {
  position: absolute;
  display: flex;
  left: 0%;
  top: 50%;
  width: 70px;
  height: 70px;
  background: white;
  background: #ff6c37;
  /* border: 1px solid fade(#979797, 50%); */
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  align-items: center;
  justify-content: center;
}
.flexible-content__whitepaper-icon svg {
  display: flex;
  max-width: 35px;
  max-height: 70px;
}
.flexible-content__whitepaper-icon svg path {
  fill: white;
}
.flexible-content__whitepaper-icon--cta-v2 {
  width: 150px;
  height: 150px;
  transform: translate3d(0, 0, 0);
  left: 30px;
  top: 30px;
}
.flexible-content blockquote {
  font-family: 'Objectivity-Medium';
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: #26292b;
  color: #023a4f;
  margin-bottom: 32px;
}
.flexible-content--has-timeline {
  padding-bottom: 70px;
}
@media only screen and (max-width: 1275px) {
  .flexible-content__block {
    padding: 5px 0 35px 0;
  }
  .flexible-content__block--has-padding-top {
    padding-top: 45px;
  }
  .flexible-content__block--quote {
    padding: 35px 0px 65px 40px;
  }
  .flexible-content__block--quote:before {
    left: 0;
  }
  .flexible-content__block--has-three-col {
    max-width: 850px;
  }
  .flexible-content__editor--has-grey-background:first-of-type {
    transform: translateY(-25px) translateX(0px);
  }
  .flexible-content__editor--has-grey-background:last-of-type {
    transform: translateY(-25px) translateX(0px);
  }
  .flexible-content__editor--has-two-col:not(.flexible-content__editor--has-grey-background):first-of-type {
    padding-right: 20px;
  }
  .flexible-content__editor--has-two-col:not(.flexible-content__editor--has-grey-background):last-of-type {
    padding-left: 20px;
  }
  .flexible-content__editor--has-image:first-of-type {
    transform: translateY(-25px);
  }
  .flexible-content__editor--has-image:last-of-type {
    transform: translateY(-25px);
  }
  .flexible-content__editor--has-three-col:nth-of-type(1) {
    padding-left: 0;
  }
  .flexible-content__editor--has-three-col:nth-of-type(3) {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .flexible-content__whitepaper-image {
    flex: 0 0 200px;
  }
  .flexible-content__whitepaper-content {
    padding: 20px 30px 10px 50px;
  }
  .flexible-content__whitepaper-content--cta-v2 {
    padding: 20px 30px 10px 210px;
  }
}
@media only screen and (max-width: 1024px) {
  .flexible-content__editor--has-grey-background {
    padding: 15px 25px 15px 25px;
  }
  .flexible-content__editor--has-grey-background:first-of-type {
    transform: translateY(-15px) translateX(0px);
  }
  .flexible-content__editor--has-grey-background:last-of-type {
    transform: translateY(-15px) translateX(0px);
  }
  .flexible-content blockquote {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .flexible-content__block {
    max-width: 100% !important;
  }
  .flexible-content__block:last-of-type {
    padding-bottom: 0;
  }
  .flexible-content__editor {
    max-width: none !important;
  }
  .flexible-content--on-event {
    padding: 0 0 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexible-content__block {
    flex-flow: column wrap;
    padding: 5px 0 20px 0;
  }
  .flexible-content__block--quote {
    padding: 5px 0px 30px 20px;
  }
  .flexible-content__block--quote:before {
    height: calc(100% - 25px);
    top: 5px;
  }
  .flexible-content blockquote {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .flexible-content__editor {
    transform: translateX(0) translateY(0) !important;
  }
  .flexible-content__editor--has-two-col {
    width: 100% !important;
  }
  .flexible-content__editor--has-two-col:not(.flexible-content__editor--has-grey-background) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .flexible-content__editor--has-two-col h1,
  .flexible-content__editor--has-two-col h2,
  .flexible-content__editor--has-two-col h3,
  .flexible-content__editor--has-two-col h4,
  .flexible-content__editor--has-two-col h5,
  .flexible-content__editor--has-two-col h6,
  .flexible-content__editor--has-two-col p,
  .flexible-content__editor--has-two-col a,
  .flexible-content__editor--has-two-col li {
    text-align: left !important;
  }
  .flexible-content__editor--has-three-col {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 20px;
  }
  .flexible-content__editor--has-grey-background {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 20px;
  }
  .flexible-content__editor--has-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 640px) {
  .flexible-content__editor--has-grey-background {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px;
  }
  .flexible-content__editor--whitepaper-download {
    flex-flow: column wrap;
  }
  .flexible-content__editor--whitepaper-download h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .flexible-content__editor--whitepaper-download p {
    margin-bottom: 10px;
  }
  .flexible-content__editor--whitepaper-download .gform_wrapper form {
    flex-flow: column wrap;
  }
  .flexible-content__editor--whitepaper-download .gform_wrapper input[type="email"] {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .flexible-content__editor--whitepaper-download .gform_wrapper input[type="submit"] {
    width: 100%;
  }
  .flexible-content__whitepaper-image {
    flex: 0 0 175px;
  }
  .flexible-content__whitepaper-content {
    padding: 50px 20px 30px 20px;
  }
  .flexible-content__whitepaper-content--cta-v2 {
    margin-top: 20px;
  }
  .flexible-content__whitepaper-icon {
    left: 20px;
    top: -35px;
    transform: translate3d(0, 0, 0);
  }
  .flexible-content__whitepaper-icon--cta-v2 {
    width: 70px;
    height: 70px;
  }
  .flexible-content--on-event {
    padding: 0 0 60px 0;
  }
}
.mock-up {
  position: relative;
  width: 100%;
}
.mock-up__background img {
  object-fit: contain;
}
.mock-up__video-files {
  position: absolute;
  top: 6%;
  max-width: calc(100% - 8%);
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.mock-up__video-files video {
  max-width: 100%;
  width: 100%;
}
.accordion {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  margin-top: 30px;
}
.accordion__row {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}
.accordion__button {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  text-align: left !important;
  display: flex;
  position: relative;
  width: 100%;
  font-size: 20px;
  line-height: 1.3;
  padding: 7px 0 15px;
  border-bottom: 1px solid rgba(2, 58, 79, 0.1);
  background: none;
  color: #023a4f;
  margin-bottom: 8px;
  transition: border .2s ease;
}
.accordion__button--open {
  border-bottom: 1px solid rgba(224, 224, 224, 0);
  transition: border .2s .3s ease;
}
.accordion__button--open .accordion__button-svg {
  transform: rotate(270deg);
}
.accordion__button-text {
  width: calc(100% - 40px);
}
.accordion__button-svg {
  position: absolute;
  right: 15px;
  top: 15px;
  transform: rotate(90deg);
  transition: transform .2s ease;
}
.accordion__content {
  display: none;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
}
.accordion__content p {
  margin-bottom: 20px;
}
.accordion__content ul {
  margin: 10px 0 20px 0;
}
.accordion__content ul li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 23px;
  padding-left: 54px;
}
.accordion__content ul li:before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -3px;
  left: 0;
  background: #ff6c37;
  border-radius: 50%;
  content: "";
}
.accordion__content ul li:after {
  position: absolute;
  width: 12px;
  height: 8px;
  left: 10px;
  top: 9px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/check-white.svg") center center / 12px no-repeat;
  content: "";
}
.accordion__content ul li a {
  color: #ff6c37;
}
.accordion__content ul li > ul {
  margin-top: 20px;
}
.accordion__content ol {
  counter-reset: li-counter;
  margin: 10px 0 20px 0;
}
.accordion__content ol li {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: rgba(2, 58, 79, 0.8);
  margin-bottom: 23px;
  padding-left: 54px;
}
.accordion__content ol li:before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -3px;
  left: 0;
  background: #ff6c37;
  border-radius: 50%;
  content: "";
}
.accordion__content ol li:after {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  position: absolute;
  left: 12px;
  top: -1px;
  color: white;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.accordion__content ol li a {
  color: #ff6c37;
}
@media only screen and (max-width: 640px) {
  .accordion__button {
    font-size: 18px;
  }
  .accordion__button-text {
    width: calc(100% - 20px);
  }
  .accordion__button-svg {
    right: 0;
  }
}
.video-anchor {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  border-radius: 4px;
}
.video-anchor:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 45%;
  bottom: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(0deg, #ff6c37 0%, #ff6c37 10%, rgba(255, 108, 55, 0) 100%);
  transition: max-height 0.4s ease;
}
.video-anchor:hover:after {
  max-height: 65%;
}
.video-anchor__inner {
  position: absolute;
  display: flex;
  z-index: 2;
  flex-flow: row nowrap;
  align-items: center;
  left: 30px;
  bottom: 30px;
}
.video-anchor__play {
  position: relative;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
}
.video-anchor__play svg {
  position: absolute;
  width: 9px;
  height: 11px;
  top: 50%;
  left: 50%;
  transform: translate3d(-3px, -50%, 0);
}
.video-anchor__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-style: 16px;
  line-height: 28px;
  color: white;
  padding-left: 18px;
}
.video-anchor__time {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
}
@media only screen and (max-width: 640px) {
  .video-anchor {
    padding-bottom: 60%;
  }
  .video-anchor__inner {
    left: 15px;
    bottom: 15px;
  }
}
.call-to-action {
  display: flex;
  overflow: hidden;
  position: relative;
  flex-flow: column nowrap;
  flex: 1;
  padding: 50px 50px 10px 50px;
  background: rgba(38, 41, 43, 0.7);
  border-left: 4px solid #ff6c37;
  border-radius: 4px;
}
.call-to-action:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.6) 100%);
  content: "";
  z-index: 0;
}
.call-to-action__top {
  position: relative;
  margin-bottom: 100px;
}
.call-to-action__title {
  font-family: 'Objectivity-BoldSlanted';
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: white;
  margin-bottom: 40px;
}
.call-to-action__bottom {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.call-to-action__buttons {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  flex: 0 1 auto;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .call-to-action {
    padding: 30px 30px 10px 30px;
  }
  .call-to-action__title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .call-to-action__buttons {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .call-to-action {
    padding: 20px 20px 10px 20px;
  }
  .call-to-action__top {
    margin-bottom: 50px;
  }
  .call-to-action__title {
    font-size: 20px;
    line-height: 28px;
  }
  .call-to-action__buttons {
    flex-flow: column wrap;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .call-to-action__buttons .link {
    margin-top: 20px;
  }
}
.image-slider {
  width: 100%;
  margin-bottom: 20px;
}
.image-slider .slick-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  top: calc(50% - 74px);
  text-indent: -9999px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
}
.image-slider .slick-arrow:before {
  position: absolute;
  width: 8px;
  height: 13px;
  left: 13px;
  top: 9px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/chevron-right-black.svg') center center / 8px no-repeat;
  content: "";
}
.image-slider .slick-arrow.slick-prev {
  left: 20px;
}
.image-slider .slick-arrow.slick-prev:before {
  left: 11px;
  top: 10px;
  transform: rotate(-180deg);
}
.image-slider .slick-arrow.slick-next {
  right: 20px;
}
.image-slider .slick-arrow:hover {
  background: white;
}
.image-slider__slide {
  overflow: hidden;
}
.image-slider__slide-inner {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 63%;
  border-radius: 4px;
  margin-bottom: 20px;
}
.image-slider__slide-inner img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.image-slider .slick-dots {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.image-slider .slick-dots li {
  padding: 0 7px;
  margin-bottom: 15px;
}
.image-slider .slick-dots li button {
  flex: 0 1 120px;
  height: 80px;
  width: 120px;
  border-radius: 4px;
  border: 1px solid #A2A2A2;
  opacity: .4;
  transition: all .2s ease;
}
.image-slider .slick-dots li.slick-active button {
  opacity: 1;
  border-left: 4px solid #ff6c37;
}
@media only screen and (max-width: 640px) {
  .image-slider .slick-dots {
    overflow: hidden;
    position: relative;
    flex-flow: row nowrap;
    justify-content: flex-start;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .image-slider .slick-dots li {
    padding: 0 5px;
  }
  .image-slider .slick-dots li:first-child {
    padding-left: 0;
  }
  .image-slider:after {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    content: "";
    background: linear-gradient(90deg, rgba(247, 249, 250, 0) 0%, #f7f9fa 100%);
  }
  .image-slider__slide-inner {
    margin-bottom: 10px;
  }
}
/* ********************
=Content block
******************** */
.content-block {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 0 auto;
}
.content-block--white-bg {
  background: white;
  padding: 70px 85px 70px 85px;
}
.content-block--margin-bottom {
  margin-bottom: 90px;
}
@media only screen and (max-width: 1275px) {
  .content-block--white-bg {
    padding: 35px 40px 35px 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .content-block--margin-bottom {
    margin-bottom: 45px;
  }
  .content-block--contains-form .gform_wrapper .col-1-3 {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .content-block--white-bg {
    padding: 20px;
  }
  .content-block--contains-form .gform_wrapper .col-1-3 {
    width: 100%;
  }
}
/* ********************
=Related-content
******************** */
.related-content {
  display: flex;
  flex: 1 1 auto;
  max-width: calc(100% - 430px);
}
.related-content__inner {
  display: flex;
  flex-flow: column;
  flex: 0 1 910px;
  margin: 0 auto;
  padding: 0 20px;
}
.related-content__tile-grid {
  display: flex;
  flex-flow: row;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-top: 90px;
}
.related-content__button {
  margin: 60px auto 0;
}
@media only screen and (max-width: 1440px) {
  .related-content {
    max-width: calc(100% - 330px);
  }
}
@media only screen and (max-width: 1275px) {
  .related-content__inner {
    padding: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .related-content__tile-grid {
    margin-top: 45px;
  }
  .related-content__button {
    margin: 30px auto 0;
  }
}
@media only screen and (max-width: 1023px) {
  .related-content {
    max-width: 100%;
  }
  .related-content__inner {
    flex: 1 1 auto;
  }
}
@media only screen and (max-width: 960px) {
  .related-content__tile-grid {
    margin-left: 0;
    width: 100%;
    flex-flow: row wrap;
  }
}
@media only screen and (max-width: 640px) {
  .related-content__tile-grid {
    margin-top: 20px;
  }
  .related-content__button {
    margin: 0px auto 0;
  }
}
/* ********************
=Tile
******************** */
.tile {
  position: relative;
  display: flex;
  overflow: hidden;
  flex: 0 1 33.3333%;
  padding: 0 15px 30px 15px;
}
.tile__image-container {
  overflow: hidden;
  position: relative;
  height: 185px;
  background: #f7f9fa;
  padding: 20px 17px;
  border-radius: 4px 4px 0 0;
}
.tile__image-container--has-logo:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(38, 41, 43, 0.6) !important;
  background: linear-gradient(0deg, rgba(38, 41, 43, 0.7) 0%, rgba(38, 41, 43, 0.1) 100%) !important;
  content: "";
  z-index: 2;
}
.tile__image-container--has-placeholder:before {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/asterisk-grey.svg') center center / 90px no-repeat;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  opacity: .6;
}
.tile__image-container--has-placeholder.tile__image-container--has-logo:before {
  background: none !important;
}
.tile__image {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 120%;
  max-height: 120%;
}
.tile__image--is-logo {
  width: auto;
  max-width: calc(100% - 140px);
  max-height: calc(100% - 110px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  min-width: auto;
  min-height: auto;
}
.tile__image--with-grayscale {
  filter: grayscale(100%);
}
.tile__content {
  display: flex;
  position: relative;
  flex: 0 1 auto;
  flex: 1 1 auto;
  flex-flow: column nowrap;
  padding: 40px 55px 40px 35px;
}
.tile__date-container {
  position: relative;
  width: calc(100% + 30px);
  z-index: 1;
}
.tile__author-thumb {
  position: absolute;
  left: 0;
  top: -65px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.tile__type {
  float: left;
  position: relative;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #ff6c37;
  margin-right: 4px;
  margin-bottom: 20px;
}
.tile__type:after {
  content: "   -";
  color: rgba(2, 58, 79, 0.8);
}
.tile__date {
  position: relative;
  display: flex;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  flex-flow: column wrap;
  font-size: 14px;
  line-height: 18px;
  color: rgba(2, 58, 79, 0.4);
  margin-bottom: 15px;
}
.tile__date-inner {
  line-height: 18px;
}
.tile__time {
  margin-left: 10px;
}
.tile__location {
  position: relative;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.6);
  color: rgba(2, 58, 79, 0.8);
  padding-left: 24px;
  margin-top: auto;
}
.tile__location:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 20px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/loc-marker-grey.svg') center center / 14px no-repeat;
  content: "";
}
.tile__author {
  font-size: 14px;
  line-height: 18px;
  color: #26292b;
  margin: 0;
  white-space: nowrap;
}
.tile__category-container {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 3px;
}
.tile__category {
  font-size: 14px;
  line-height: 18px;
  color: #ff6c37;
  margin: 0 4px 0 0;
  white-space: nowrap;
}
.tile__category:after {
  content: "-";
  margin-left: 4px;
  color: rgba(38, 41, 43, 0.4);
}
.tile__category:last-of-type:after {
  display: none;
}
.tile__category--single:after {
  display: none;
}
.tile__category--wrap {
  white-space: normal;
}
.tile__title {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #023a4f;
}
.tile__subtitle {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}
.tile__chevron {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-radius: 4px 0 0 0;
  transition: all .25s ease;
}
.tile__chevron:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 42px;
  width: 100%;
  max-width: 0px;
  background: #ff6c37;
  content: "";
  border-radius: 4px 0 0 0;
  transition: max-width 0.25s ease;
}
.tile__chevron svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.tile__chevron svg path {
  transition: all .2s ease;
}
.tile--placeholder:nth-of-type(3) {
  display: none;
}
.tile__placeholder-inner {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/asterisk-grey.svg') center center / 20px no-repeat !important;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;
}
.tile > a,
.tile > span {
  display: flex;
  flex: 1;
  flex-flow: column nowrap;
  background: white;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 30px 0px #e0e0e0;
  transition: box-shadow 0.2s ease;
}
.tile > a:hover .tile__chevron,
.tile > span:hover .tile__chevron {
  border-left-color: #ff6c37;
}
.tile > a:hover .tile__chevron:before,
.tile > span:hover .tile__chevron:before {
  max-width: 42px;
  transition: max-width 0.25s 0.15s ease;
}
.tile > a:hover .tile__chevron svg path,
.tile > span:hover .tile__chevron svg path {
  transition: all .2s .2s ease;
  fill: white;
}
.tile__icon {
  position: absolute;
  display: flex;
  left: 50%;
  top: 0%;
  width: 70px;
  height: 70px;
  background: white;
  background: #ff6c37;
  /* border: 1px solid fade(#979797, 50%); */
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tile__icon img {
  display: flex;
  max-width: 25px;
}
.tile__icon--white-bg {
  background: white;
  border: 1px solid rgba(151, 151, 151, 0.2);
}
.tile__contact-buttons {
  display: flex;
  flex-flow: row nowrap;
  flex: 1 0 auto;
  margin-top: 20px;
}
.tile__contact-button {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  margin-right: 10px;
}
.tile__contact-button:hover {
  background: #ff6c37;
  border-color: #ff6c37;
}
.tile__contact-button:hover svg {
  fill: white;
}
.tile__contact-button:hover > .tile__contact-tooltip {
  display: block;
}
.tile__contact-button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #7a7a7a;
}
.tile__contact-button--email svg {
  width: 13px;
  height: 9px;
  margin: -4px 0 0 -6px;
}
.tile__contact-button--phone svg {
  width: 13px;
  height: 13px;
  margin: -6px 0 0 -6px;
}
.tile__contact-button--linkedin svg {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
}
.tile__contact-tooltip {
  position: absolute;
  text-align: center !important;
  display: none;
  font-size: 13px;
  padding: 5px 10px;
  color: white;
  background: #ff6c37;
  top: -33px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 4px;
}
.tile__contact-tooltip:after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ff6c37;
  content: "";
  transform: translate3d(-50%, 0, 0);
}
.tile__partner-type-inner {
  text-align: center !important;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  background: #c69c6d;
  margin-bottom: 45px;
  width: 70px;
  border-radius: 0 0 2px 2px;
  padding: 25px 0 25px;
}
.tile__partner-type-inner > span {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: white;
}
.tile__partner-type-inner--advanced {
  background: #c4c4c4;
}
.tile__partner-type-inner--expert {
  background: #eabb39;
}
.tile__partner-type-inner--alliance {
  background: #656160;
}
.tile__asterisk-container {
  font-family: 'aller';
  font-family: 'IBM Plex Sans' !important;
  font-weight: 400;
  font-size: 26px !important;
  line-height: 13px !important;
}
.tile__distri-logo {
  align-self: center;
  margin-bottom: 45px;
  max-height: 45px;
  max-height: 70px;
}
.tile__link {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(38, 41, 43, 0.6);
}
.tile__link:hover {
  color: #ff6c37;
}
.tile__type-icon {
  position: absolute;
  top: 50%;
  left: -35px;
  width: 70px;
  height: 70px;
  background: #ff6c37;
  border: 1px solid #ff6c37;
  border-radius: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 3;
}
.tile__type-icon img {
  position: absolute;
  width: 100%;
  max-width: 35px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.tile:hover > a {
  box-shadow: 0px 4px 30px 0px #c7c7c7;
}
.tile--row {
  flex: 1 1 auto;
  padding: 0 0 30px 0;
}
.tile--row a {
  flex-direction: row;
  flex-grow: 1;
}
.tile--row .tile__image-container {
  height: auto;
  width: 305px;
  min-height: 165px;
  border-radius: 4px 0 0 4px;
}
.tile--row .tile__content {
  padding: 28px 40px 28px 75px;
  flex: 1 1 auto;
}
.tile--row .tile__title {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
}
.tile--row .tile__date {
  flex-flow: row wrap;
  line-height: 1;
}
.tile--related .tile__image-container {
  height: 170px;
}
.tile--related .tile__content {
  position: relative;
  padding: 40px 35px;
  flex: 0 1 auto;
}
.tile--related .tile__title {
  text-align: center !important;
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-top: auto;
}
.tile--is-events-tile a {
  background: #ff6c37;
  border-left: 4px solid #ff4e0e;
}
.tile--is-events-tile .tile__asterisk {
  position: absolute;
  left: 35px;
  top: 35px;
  width: 19px;
}
.tile--is-events-tile .tile__content {
  justify-content: flex-end;
  padding: 35px;
  flex-grow: 1;
}
.tile--is-events-tile .tile__subtitle {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 19px;
  color: rgba(38, 41, 43, 0.3);
}
.tile--is-events-tile .tile__title {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 55px;
  color: white;
}
.tile--is-events-tile .tile__button {
  border: 1px solid white;
  align-self: auto;
}
.tile--is-events-tile .tile__button:hover {
  background: white;
  color: #ff6c37;
}
.tile--employee {
  overflow: visible;
  padding-bottom: 65px;
}
.tile--employee > span {
  border-top: 4px solid #ff6c37;
}
.tile--employee .tile__content {
  padding-top: 90px;
}
.tile--employee .tile__avatar {
  overflow: hidden;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 35px;
  top: -35px;
  border-radius: 50%;
  background: #e3e4e6;
}
.tile--employee .tile__avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.tile--employee .tile__avatar--has-placeholder:after {
  position: absolute;
  left: 5px;
  bottom: -15px;
  width: 90px;
  height: 102px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/man-user.svg") center center / 90px no-repeat;
  content: "";
  opacity: .15;
}
.tile--employee .tile__subtitle {
  font-size: 14px;
  margin-top: 3px;
}
.tile--distributor {
  display: flex;
  flex-flow: row wrap;
}
.tile--distributor .tile__inner {
  display: flex;
  flex: 1;
  flex-flow: row wrap;
  background: white;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 30px 0px #e0e0e0;
  transition: box-shadow 0.2s ease;
  max-width: 100%;
}
.tile--distributor .tile__distri-logo-container {
  display: flex;
  width: 100%;
  justify-content: center;
}
.tile--distributor .tile__content {
  padding: 0;
}
.tile--distributor .tile__content--first {
  overflow: hidden;
}
.tile--distributor .tile__content--second {
  background: #f2f2f2;
  margin-top: auto;
  border-top: 1px solid #e0e0e0;
  padding: 16px 32px 16px 0;
}
.tile--distributor .tile__content-inner {
  flex: 0 1 auto;
  padding: 0 32px 27px 32px;
  width: 100%;
}
.tile--distributor .tile__link {
  position: relative;
  overflow: hidden;
  color: rgba(2, 58, 79, 0.8);
  padding-left: 35px;
  width: calc(100% - 35px);
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translate3d(35px, 0, 0);
}
.tile--distributor .tile__link:hover {
  color: #ff6c37;
}
.tile--distributor .tile__link--tel {
  margin-bottom: 5px;
}
.tile--distributor .tile__link--tel:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/icon-phone.svg") center center / 15px no-repeat;
  content: "";
}
.tile--distributor .tile__link--web:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/icon-web.svg") center center / 15px no-repeat;
  content: "";
}
.tile--distributor .tile__location {
  margin-top: 0;
  padding-left: 0;
}
.tile--distributor .tile__location:before {
  display: none;
}
.tile--no-basis {
  flex: 0 1 auto;
  width: 33.3333%;
}
.tile--logo-only .tile__image-container {
  width: 100%;
  background: none;
}
.tile--logo-only .tile__image-container:before {
  display: none;
}
.tile--non-clickable a {
  pointer-events: none;
}
.tile--non-clickable:hover a {
  box-shadow: 0px 4px 30px 0px #e0e0e0;
}
.tile--non-clickable .tile__chevron {
  display: none;
}
.tile--hidden {
  display: none;
}
@media only screen and (max-width: 1250px) {
  .tile__image-container {
    height: 135px;
  }
  .tile__content {
    padding: 20px 55px 20px 20px;
  }
  .tile--is-events-tile .tile__content {
    padding: 20px;
  }
  .tile--is-events-tile .tile__asterisk {
    top: 20px;
    left: 20px;
  }
  .tile--employee .tile__avatar {
    left: 20px;
  }
}
@media only screen and (max-width: 1170px) {
  .tile {
    width: 50%;
    flex: 0 1 auto;
    padding: 0 10px 20px 10px;
  }
  .tile__image-container {
    height: 185px;
  }
  .tile--row {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .tile--row .tile__image-container {
    width: 260px;
  }
  .tile--row .tile__content {
    padding: 28px 40px 28px 50px;
  }
  .tile--employee {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .tile--related .tile__image-container {
    height: 120px;
  }
  .tile--related .tile__content {
    padding: 40px 20px 20px;
  }
  .tile--related .tile__title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 960px) {
  .tile--column:nth-child(odd) {
    padding-left: 0;
  }
  .tile--column:nth-child(even) {
    padding-right: 0;
  }
}
@media only screen and (max-width: 640px) {
  .tile {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .tile--is-events-tile .tile__content {
    padding-top: 60px;
  }
  .tile--is-events-tile .tile__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .tile--is-events-tile .tile__subtitle {
    margin-bottom: 10px;
  }
  .tile--row a {
    flex-flow: column wrap;
  }
  .tile--row .tile__image-container {
    width: 100%;
    height: 185px;
  }
  .tile--row .tile__content {
    padding: 20px 55px 20px 20px;
  }
  .tile--row .tile__title {
    font-size: 20px;
  }
  .tile__type-icon {
    top: -40px;
    left: 20px;
    width: 50px;
    height: 50px;
    transform: translate3d(0, 0, 0);
  }
  .tile__type-icon img {
    max-width: 30px;
  }
  .tile__location {
    margin-top: 10px;
  }
  .tile--placeholder {
    display: none;
  }
  .tile--distributor .tile__content {
    padding: 0 20px 15px 20px;
  }
  .tile--distributor .tile__content--second {
    padding: 16px 20px 16px 0;
  }
  .tile--distributor .tile__link {
    width: calc(100% - 20px);
    transform: translate3d(20px, 0, 0);
    max-width: 83vw;
  }
  .tile--distributor .tile__content-inner {
    padding: 0;
  }
  .tile--logo-only {
    width: 50%;
  }
  .tile--logo-only .tile__image--is-logo {
    max-width: calc(100% - 50px);
    max-height: calc(100% - 50px);
  }
  .tile--logo-only .tile__image-container {
    height: 110px;
  }
  .tile--distributor .tile__content--first,
  .tile--distributor .tile__content--second {
    height: auto !important;
  }
}
/* ********************
=Tags
******************** */
.cat-tag-list {
  position: relative;
  display: flex;
  z-index: 1;
}
.cat-tag-list__list-item {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  border-radius: 2px;
  margin: 0 10px 10px 0;
}
.cat-tag-list__list-item--large .cat-tag-list__name {
  font-size: 16px;
  padding: 7px 12px;
}
.cat-tag-list__icon {
  display: flex;
  flex: 0 1 28px;
  justify-content: center;
  width: 28px;
  background: white;
}
.cat-tag-list__icon img {
  align-self: center;
  max-width: 20px;
  max-height: 20px;
}
.cat-tag-list__name {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: white;
  background: #ff6c37;
  padding: 5px 8px;
}
.cat-tag-list--in-page-header {
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .cat-tag-list__list-item--large .cat-tag-list__name {
    font-size: 14px;
    padding: 5px 8px;
  }
}
/* ********************
=Timeline
******************** */
.timeline-wrapper {
  float: left;
  width: 100%;
  margin-bottom: 150px;
}
.timeline-wrapper .timeline {
  float: left;
  position: relative;
  width: 100%;
  margin-top: 60px;
}
.timeline-wrapper .timeline:before {
  position: absolute;
  width: 1px;
  height: calc(100% - 130px);
  left: 50%;
  top: 130px;
  background-color: #ff6c37;
  content: "";
}
.timeline-wrapper .timeline:after {
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  background-color: #ff6c37;
  content: "";
  z-index: 2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.timeline-wrapper .timeline .row {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.timeline-wrapper .timeline .row .event {
  float: left;
  position: relative;
  text-align: right !important;
  width: calc(50% - 35px);
  padding: 0 40px 40px;
  line-height: 1.3;
  background-color: white;
  opacity: 0;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}
.timeline-wrapper .timeline .row .event:before {
  position: absolute;
  right: -47px;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  border: 2px solid #ff6c37;
  background: #f7f9fa;
  content: "";
  z-index: 2;
  border-radius: 50%;
  transform: scale(0);
}
.timeline-wrapper .timeline .row .event:after {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  margin-top: 18px;
  right: -22px;
  border: 12px solid black;
  border-color: transparent transparent white white;
  transform-origin: 0 0;
  transform: rotate(-135deg);
  content: "";
  box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.08);
}
.timeline-wrapper .timeline .row .event .date {
  float: left;
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  margin-top: 25px;
  color: #26292b;
  width: 100%;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease-in-out;
}
.timeline-wrapper .timeline .row .event .image-wrapper {
  float: right;
  clear: both !important;
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin-top: -40px;
  opacity: 0;
  border: 2px solid #e0e0e0;
  transform: translateX(20px);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.timeline-wrapper .timeline .row .event .image-wrapper img {
  position: absolute;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.timeline-wrapper .timeline .row .event h3 {
  float: left;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  color: #ff6c37;
  width: 100%;
  font-size: 18px;
  margin-bottom: 7px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s 0.1s ease-in-out;
}
.timeline-wrapper .timeline .row .event p {
  float: left;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  color: rgba(2, 58, 79, 0.8);
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s 0.2s ease-in-out;
}
.timeline-wrapper .timeline .row:nth-child(odd) .event {
  float: right;
  text-align: left !important;
}
.timeline-wrapper .timeline .row:nth-child(odd) .event:before {
  left: -45px;
  right: auto;
}
.timeline-wrapper .timeline .row:nth-child(odd) .event:after {
  left: 0;
  right: auto;
  margin-top: -15px;
  border-color: transparent transparent white white;
  transform: rotate(-315deg);
}
.timeline-wrapper .timeline .row:nth-child(odd) .event .date {
  transform: translateX(-20px);
}
.timeline-wrapper .timeline .row:nth-child(odd) .event .image-wrapper {
  float: left;
}
.timeline-wrapper .timeline .row:nth-child(odd) .event .image-wrapper,
.timeline-wrapper .timeline .row:nth-child(odd) .event h3,
.timeline-wrapper .timeline .row:nth-child(odd) .event p {
  transform: translateX(-20px);
}
.timeline-wrapper .timeline .row.show-me .event {
  opacity: 1;
}
.timeline-wrapper .timeline .row.show-me .event:before {
  transform: scale(1);
}
.timeline-wrapper .timeline .row.show-me .event:after {
  max-width: 40px;
}
.timeline-wrapper .timeline .row.show-me .event .date,
.timeline-wrapper .timeline .row.show-me .event .image-wrapper,
.timeline-wrapper .timeline .row.show-me .event h3,
.timeline-wrapper .timeline .row.show-me .event p {
  opacity: 1;
  transform: translateX(0);
}
@media only screen and (max-width: 1023px) {
  .timeline-wrapper {
    order: 3;
  }
}
@media only screen and (max-width: 767px) {
  .timeline-wrapper {
    margin-bottom: 75px;
  }
  .timeline-wrapper .timeline {
    padding: 0 0 0 35px;
  }
  .timeline-wrapper .timeline:before {
    left: 0;
    top: 25px;
    height: calc(100% - 25px);
  }
  .timeline-wrapper .timeline:after {
    left: 0;
  }
  .timeline-wrapper .timeline .row {
    margin-bottom: 40px;
  }
  .timeline-wrapper .timeline .row .event {
    float: right;
    text-align: left !important;
    width: 100%;
    padding: 20px !important;
  }
  .timeline-wrapper .timeline .row .event:before {
    left: -45px !important;
    right: auto;
    top: 30px !important;
  }
  .timeline-wrapper .timeline .row .event:after {
    left: 0 !important;
    right: auto;
    top: 23px !important;
    margin-top: 0 !important;
    border-color: transparent transparent white white !important;
    border-width: 7px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    -ms-transform: rotate(-315deg);
    -o-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  .timeline-wrapper .timeline .row .event .date {
    margin-top: 0;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  .timeline-wrapper .timeline .row .event .image-wrapper {
    float: left;
  }
  .timeline-wrapper .timeline .row .event .image-wrapper,
  .timeline-wrapper .timeline .row .event h3,
  .timeline-wrapper .timeline .row .event p {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@media only screen and (max-width: 640px) {
  .timeline-wrapper {
    margin-bottom: 0;
  }
  .timeline-wrapper .timeline {
    margin-top: 40px;
  }
  .timeline-wrapper .timeline:before {
    left: 10px;
  }
  .timeline-wrapper .timeline:after {
    margin-left: 5px;
  }
  .timeline-wrapper .timeline .row .event:before {
    left: -35px !important;
  }
}
/* ********************
Page Search
******************** */
.page-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 41, 43, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page-search .page-search-top .grid .close-form,
.page-search .page-search-top .base-grid .close-form {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  right: 20px;
  height: 60px;
  width: 60px;
  background-image: url('/wp-content/themes/nedapsecurity/static/images/icons/icon-close-white.svg');
  background-color: #ff6c37;
  background-size: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-indent: -999px;
  overflow: hidden;
}
body.desktop .page-search .page-search-top .grid .close-form:hover,
body.desktop .page-search .page-search-top .base-grid .close-form:hover {
  background-color: #ff4e0e;
}
.page-search .page-search-top .grid form,
.page-search .page-search-top .base-grid form {
  float: left;
  position: relative;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-top: 80px;
  transform: translate3D(0, 35px, 0);
  transition: all 0.4s ease-in-out;
}
.page-search .page-search-top .grid form svg,
.page-search .page-search-top .base-grid form svg {
  position: absolute;
  left: 20px;
  bottom: 38px;
  width: 22px;
  height: 22px;
  fill: white;
  opacity: .4;
  z-index: 1;
}
.page-search .page-search-top .grid form svg path,
.page-search .page-search-top .base-grid form svg path {
  fill: white;
}
.page-search .page-search-top .grid form input[type="text"],
.page-search .page-search-top .base-grid form input[type="text"] {
  float: left;
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  width: 100%;
  border: none;
  background: none;
  border-radius: 0;
  padding: 0 0 0 70px;
  font-size: 48px;
  color: white;
  height: 80px;
}
.page-search .page-search-top .grid form input[type="text"]::-webkit-input-placeholder,
.page-search .page-search-top .base-grid form input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.page-search .page-search-top .grid form input[type="text"]:-moz-placeholder,
.page-search .page-search-top .base-grid form input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.page-search .page-search-top .grid form input[type="text"]::-moz-placeholder,
.page-search .page-search-top .base-grid form input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.page-search .page-search-top .grid form input[type="text"]:-ms-input-placeholder,
.page-search .page-search-top .base-grid form input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.page-search .page-search-top .grid form .submit,
.page-search .page-search-top .base-grid form .submit {
  position: absolute;
  left: 20px;
  bottom: 38px;
  width: 22px;
  height: 22px;
  opacity: 0;
  z-index: 2;
}
.page-search .page-search-top .grid .search-loader,
.page-search .page-search-top .base-grid .search-loader {
  position: absolute;
  display: none;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #ff6c37;
  border-radius: 50%;
  animation: loader-rotate 0.7s linear infinite;
  right: 16px;
  top: calc(50% + 6px);
  margin: -25px auto 0 auto;
}
body.search-filter-loader .page-search .page-search-top .grid .search-loader,
body.search-filter-loader .page-search .page-search-top .base-grid .search-loader {
  display: block;
}
.page-search .search-results-wrapper {
  position: absolute;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  top: 270px;
  left: 0;
  width: 100%;
  height: calc(100% - 270px);
  background-color: white;
  transform: translate3D(0, 100%, 0);
  transition: all 0.2s ease-in-out;
}
.page-search .search-results-wrapper .grid,
.page-search .search-results-wrapper .base-grid {
  padding-top: 60px;
  flex-flow: column wrap;
}
.page-search .search-results-wrapper .grid p.results-for,
.page-search .search-results-wrapper .base-grid p.results-for {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  color: rgba(2, 58, 79, 0.8);
}
.page-search .search-results-wrapper .grid p.results-for span,
.page-search .search-results-wrapper .base-grid p.results-for span {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
}
.page-search .search-results-wrapper .grid p,
.page-search .search-results-wrapper .base-grid p {
  padding: 0;
}
.page-search .search-results-wrapper .grid #search-filter-container,
.page-search .search-results-wrapper .base-grid #search-filter-container {
  margin: 65px -35px 0 -35px;
  min-height: 0;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper {
  padding: 0 35px;
  margin-bottom: 45px;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper:nth-child(4n+5),
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper:nth-child(4n+5) {
  clear: left;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner {
  position: relative;
  width: 100%;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner h4,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner h4 {
  position: relative;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 18px;
  color: #ff6c37;
  padding-bottom: 20px;
  padding-right: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner h4:before,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner h4:before {
  position: absolute;
  right: 25px;
  content: attr(data-title);
  color: rgba(2, 58, 79, 0.3);
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner h4:after,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner h4:after {
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #E9E9E9;
  width: 100%;
  content: "";
  bottom: 0;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner span,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner span {
  position: absolute;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 18px;
  top: 0;
  right: 0;
  color: rgba(2, 58, 79, 0.3);
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner ul,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner ul {
  float: left;
  width: 100%;
  margin: 30px 0 0;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner ul li,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner ul li {
  display: none;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner ul li a,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner ul li a {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  color: rgba(2, 58, 79, 0.8);
  line-height: 22px;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner ul li a:hover,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner ul li a:hover {
  text-decoration: underline;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner ul li:nth-child(-n+5),
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner ul li:nth-child(-n+5) {
  display: block;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner > a,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner > a {
  color: rgba(2, 58, 79, 0.35);
  font-size: 12px;
  text-decoration: none;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none),
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none) {
  display: block;
  position: absolute;
  border: 1px solid rgba(2, 58, 79, 0.35);
  padding: 8px 12px;
  border-radius: 4px;
  top: -78px;
  right: 0;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none),
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none) {
    top: -58px;
  }
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none):hover,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner > a.show-less-in-parent:not(.none):hover {
  text-decoration: none;
  border-color: #ff6c37;
  color: white;
  background-color: #ff6c37;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner > a:hover,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner > a:hover {
  text-decoration: underline;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper.show-all,
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper.show-all {
  width: 100%;
}
.page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper.show-all ul li:nth-child(n+1),
.page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper.show-all ul li:nth-child(n+1) {
  display: block;
}
.page-search .search-results-wrapper .grid #search-filter-container.show-all-results-col .search-col-wrapper,
.page-search .search-results-wrapper .base-grid #search-filter-container.show-all-results-col .search-col-wrapper {
  display: none;
}
.page-search .search-results-wrapper .grid #search-filter-container.show-all-results-col .search-col-wrapper.show-all,
.page-search .search-results-wrapper .base-grid #search-filter-container.show-all-results-col .search-col-wrapper.show-all {
  display: block;
}
.page-search.open {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.page-search.open .page-search-top .grid form,
.page-search.open .page-search-top .base-grid form {
  transform: translate3D(0, 0, 0);
}
.page-search.open.show-results .search-results-wrapper {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-search.search-results-page {
  opacity: 1;
  visibility: visible;
  background-color: #26292b;
}
.page-search.search-results-page .page-search-top .grid form,
.page-search.search-results-page .page-search-top .base-grid form {
  transform: translate3D(0, 0, 0);
}
.page-search.search-results-page.show-results .search-results-wrapper {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 1280px) {
  .page-search .search-results-wrapper {
    top: 197px;
    height: calc(100% - 197px);
  }
  .page-search .search-results-wrapper .grid p.results-for,
  .page-search .search-results-wrapper .base-grid p.results-for {
    padding: 0 10px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container,
  .page-search .search-results-wrapper .base-grid #search-filter-container {
    margin: 65px -10px 0 -10px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper {
    padding: 0 20px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner h4,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner h4 {
    font-size: 16px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper .search-col-inner span,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper .search-col-inner span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .page-search .page-search-top .grid,
  .page-search .page-search-top .base-grid {
    padding: 0 25px;
  }
  .page-search .page-search-top .grid .close-form,
  .page-search .page-search-top .base-grid .close-form {
    top: 0;
    right: 0;
    height: 48px;
    width: 53px;
  }
  .page-search .search-results-wrapper .grid p,
  .page-search .search-results-wrapper .base-grid p {
    padding: 0 10px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper {
    width: 33.333333%;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper:nth-child(4n+5),
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper:nth-child(4n+5) {
    clear: none;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper:nth-child(3n+4),
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper:nth-child(3n+4) {
    clear: left;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper.show-all ul li,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper.show-all ul li {
    width: 33.333333%;
  }
}
@media only screen and (max-width: 767px) {
  .page-search {
    background-color: #26292b;
    height: 100vh;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    backface-visibility: hidden;
  }
  .page-search .page-search-top {
    position: absolute;
    top: 0;
    left: 0;
    height: 63px;
    background-color: #26292b;
    width: 100%;
    z-index: 5;
    backface-visibility: hidden;
  }
  .page-search .page-search-top .grid,
  .page-search .page-search-top .base-grid {
    padding: 0 68px 0 15px;
  }
  .page-search .page-search-top .grid form,
  .page-search .page-search-top .base-grid form {
    padding-bottom: 0;
    border-bottom-width: 1px;
    margin-top: 5px;
  }
  .page-search .page-search-top .grid form svg,
  .page-search .page-search-top .base-grid form svg {
    left: 0;
    bottom: 9px;
  }
  .page-search .page-search-top .grid form input[type="text"],
  .page-search .page-search-top .base-grid form input[type="text"] {
    font-size: 14px;
    height: 42px;
    padding: 0 0 0 30px;
  }
  .page-search .page-search-top .grid .search-loader,
  .page-search .page-search-top .base-grid .search-loader {
    width: 22px;
    height: 22px;
    border-width: 2px;
    right: 0;
    margin: -12px auto 0 auto;
  }
  .page-search .search-results-wrapper {
    position: relative;
    top: 0;
    height: auto;
    min-height: 100vh;
    z-index: 1;
    padding-top: 63px;
  }
  .page-search .search-results-wrapper .grid,
  .page-search .search-results-wrapper .base-grid {
    padding: 25px 5px;
  }
  .page-search .search-results-wrapper .grid p,
  .page-search .search-results-wrapper .base-grid p {
    padding: 0 10px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container,
  .page-search .search-results-wrapper .base-grid #search-filter-container {
    padding: 20px 5px;
    margin: 15px 0 0;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper {
    width: 100%;
    padding: 0 5px;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper ul,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper ul {
    margin: 20px 0 0 !important;
  }
  .page-search .search-results-wrapper .grid #search-filter-container .search-col-wrapper.show-all ul li,
  .page-search .search-results-wrapper .base-grid #search-filter-container .search-col-wrapper.show-all ul li {
    width: 100%;
  }
}
@keyframes loader-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ********************
=Offices
******************** */
.offices {
  display: flex;
  flex-flow: row wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 60px;
  flex: 1 0 auto;
}
.offices__tile {
  float: left;
  display: flex;
  flex: 0 1 auto;
  width: 33.3333%;
  margin-bottom: 30px;
  padding: 0 15px;
}
.offices__tile--open .offices__tile-inner {
  border-color: #C1C1C1;
}
.offices__tile--open .offices__title {
  color: #ff6c37;
}
.offices__tile--open .offices__toggle {
  background: #D8D8D8;
}
.offices__tile--open .offices__toggle:after {
  transform: translate3d(-50%, -50%, 0) rotate(-90deg);
}
.offices__tile--open .offices__employees {
  max-height: 400px;
}
.offices__tile-inner {
  flex: 1;
  border: 0;
  background: white;
  border-radius: 4px;
  max-width: 100%;
  transition: border .25s ease;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.offices__tile-image-container {
  overflow: hidden;
  position: relative;
  height: 185px;
  background: #f7f9fa;
}
.offices__tile-image-container--has-placeholder:before {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  background: url('/wp-content/themes/nedapsecurity/static/images/icons/asterisk-grey.svg') center center / 90px no-repeat;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  opacity: .6;
}
.offices__tile-image {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.offices__content {
  padding: 35px;
}
.offices__title {
  position: relative;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ff6c37;
  margin-bottom: 17px;
  cursor: pointer;
}
.offices__title:hover {
  color: #ff4e0e;
}
.offices__title:hover .offices__toggle {
  background: #D8D8D8;
}
.offices__title--no-action {
  color: #ff6c37;
  cursor: default;
  pointer-events: none;
}
.offices__toggle {
  display: none;
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0px;
  top: calc(50% - 16px);
  border: 1px solid #D8D8D8;
  border-radius: 50%;
  transition: background .25s ease;
}
.offices__toggle:before {
  position: absolute;
  width: 11px;
  height: 2px;
  background: #26292b;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  content: '';
}
.offices__toggle:after {
  position: absolute;
  width: 2px;
  height: 11px;
  background: #26292b;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  content: '';
  transition: transform .25s ease;
}
.offices__text {
  display: block;
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  overflow: hidden;
  font-size: 16px;
  line-height: 26px;
  color: rgba(2, 58, 79, 0.8);
  text-overflow: ellipsis;
}
.offices__text--bold {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
}
.offices__text--margin-top {
  margin-top: 36px;
}
.offices a:hover {
  color: #ff6c37;
}
.offices__employees {
  overflow: hidden;
  max-height: 0px;
  height: 100%;
  background: rgba(216, 216, 216, 0.35);
  transition: max-height 0.5s ease;
}
.offices__employee {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  padding: 10px 40px;
  border-bottom: 1px solid #E0E0E0;
}
.offices__employee:last-child {
  border-bottom: 0;
}
.offices__employee-avatar {
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 25px;
  background-color: rgba(216, 216, 216, 0.85);
}
.offices__employee-avatar--has-placeholder {
  position: relative;
}
.offices__employee-avatar--has-placeholder:after {
  position: absolute;
  left: 2px;
  bottom: -7px;
  width: 46px;
  height: 48px;
  background: url("/wp-content/themes/nedapsecurity/static/images/icons/man-user.svg") center center / 46px no-repeat;
  content: "";
  opacity: .2;
}
.offices__employee-name-function {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.offices__employee-name {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
}
.offices__employee-function {
  font-size: 14px;
}
@media only screen and (max-width: 1170px) {
  .offices__tile {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .offices {
    margin-left: 0;
    margin-right: 0;
  }
  .offices__tile {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
  .offices__content {
    padding: 20px;
  }
}
.employees {
  display: flex;
  flex-flow: row wrap;
  margin: 60px -15px;
  flex: 1 0 auto;
}
@media only screen and (max-width: 1024px) {
  .employees {
    margin: 20px -15px;
  }
}
@media only screen and (max-width: 960px) {
  .employees {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 640px) {
  .employees {
    margin: 20px 0 0 0;
  }
}
/* ********************
=Footer
******************** */
.footer {
  display: flex;
  flex-direction: column;
}
.footer__section {
  display: flex;
  flex-direction: row;
}
.footer__section--top {
  background: #38393A;
  background: #094054;
  padding: 80px 0;
}
.footer__section--mid {
  background: #2C2E2F;
  background: #023a4f;
  padding: 70px 0 85px 0;
}
.footer__section--bottom {
  background: #212223;
  background: #013243;
  padding: 20px 0;
}
.footer__newsletter {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
}
.footer__form-message {
  color: white;
  opacity: 0.6;
  font-size: 14px;
}
.footer__form {
  position: relative;
  padding-right: 165px;
  margin-bottom: 20px;
}
.footer__form form {
  display: flex;
}
.footer__form form .gform_body {
  flex-grow: 1;
  margin-right: 20px;
}
.footer__form form .gform_body input[type="email"] {
  background: #032e3e;
  color: rgba(255, 255, 255, 0.3);
  border-color: #26292b;
}
.footer__form form .gform_body input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 430px) {
  .footer__form form .gform_body {
    width: 100%;
    margin-right: 0px;
  }
}
@media only screen and (max-width: 430px) {
  .footer__form form .gform_footer input[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 11px 22px 11px;
    min-height: 45px;
  }
}
@media only screen and (max-width: 430px) {
  .footer__form form .gform_footer {
    width: 100%;
  }
}
.footer__form form .privacy-policy {
  position: absolute;
  bottom: 0;
  bottom: -25px;
  left: 5px;
}
.footer__form form .privacy-policy .validation_message {
  margin: 0;
  font-size: 12px;
}
.footer__form form .privacy-policy .ginput_container_checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.footer__form form .privacy-policy .ginput_container_checkbox input[type="checkbox"] {
  margin: 0px;
  margin-right: 10px;
}
@media only screen and (max-width: 430px) {
  .footer__form form .privacy-policy .ginput_container_checkbox input[type="checkbox"] {
    margin-top: 6px;
  }
}
.footer__form form .privacy-policy .ginput_container_checkbox label {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.2);
}
.footer__form form .privacy-policy .ginput_container_checkbox label a {
  font-size: 12px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: underline;
}
@media only screen and (max-width: 430px) {
  .footer__form form .privacy-policy .ginput_container_checkbox {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1147px) {
  .footer__form form .privacy-policy {
    bottom: -45px;
  }
}
@media only screen and (max-width: 700px) {
  .footer__form form .privacy-policy {
    bottom: -20px;
  }
}
@media only screen and (max-width: 573px) {
  .footer__form form .privacy-policy {
    position: relative;
    left: 0px;
    bottom: 0;
    padding: 0px 10px;
  }
}
@media only screen and (max-width: 430px) {
  .footer__form form {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1147px) {
  .footer__form {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__form {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .footer__form {
    padding-right: 0px;
  }
}
.footer__title {
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  color: white;
  margin-bottom: 7px;
}
.footer__title--menu-title {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.2);
}
.footer__text {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  padding-right: 165px;
}
.footer__subtext {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.2);
}
.footer__social {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
}
.footer__iso {
  opacity: 0.8;
}
.footer__iso svg {
  width: 120px;
  margin-top: 20px;
}
@media only screen and (max-width: 700px) {
  .footer__iso svg {
    margin-top: 10px;
  }
}
.footer__menu-container {
  display: flex;
  flex-direction: column;
  flex: 0 1 25%;
  align-items: flex-start;
}
.footer__menu a {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.4);
}
.footer__menu a:hover {
  color: white;
}
.footer__menu--bottom {
  margin-right: 60px;
}
.footer__menu--bottom a {
  font-size: 14px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.3);
  padding-right: 20px;
}
.footer__menu--bottom li:last-child a {
  padding-right: 0;
}
.footer__menu--bottom ul {
  display: flex;
  flex-flow: row nowrap;
}
.footer__right {
  display: flex;
  flex-direction: row;
}
.footer__copyright {
  font-family: 'aller';
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.3);
}
.footer input[type="submit"] {
  background: #ff6c37;
  border-color: #ff6c37;
  cursor: pointer;
  color: white;
}
.footer input[type="submit"]:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
@media only screen and (max-width: 1440px) {
  .footer__section--top {
    padding: 40px 0;
  }
  .footer__section--mid {
    padding: 35px 0 42px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__text {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer__title {
    font-size: 22px;
    line-height: 30px;
  }
  .footer__title--menu-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .footer__menu a {
    line-height: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .footer__section {
    flex-direction: column;
  }
  .footer__section > .base-grid {
    flex-direction: column;
  }
  .footer__section--top {
    padding: 20px 0;
  }
  .footer__section--mid {
    padding: 20px 0;
  }
  .footer__section--mid > .base-grid {
    flex-flow: row wrap;
  }
  .footer__section--bottom {
    padding: 20px 0 60px;
  }
  .footer__title {
    font-size: 18px;
    line-height: 26px;
  }
  .footer__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
    padding-right: 0;
  }
  .footer__subtext {
    margin-bottom: 15px;
  }
  .footer__menu-container {
    margin-bottom: 15px;
    width: 50%;
    flex: 0 1 50%;
  }
  .footer__menu a {
    font-size: 15px;
    line-height: 24px;
  }
  .footer__menu--bottom {
    margin-right: 0;
  }
  .footer__menu--bottom a {
    font-size: 14px;
    line-height: 28px;
  }
  .footer__right {
    flex-flow: column nowrap;
    align-items: center;
  }
}
/* ********************
=YouTube modal
******************** */
.youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.youtube-modal--show {
  opacity: 1;
  visibility: visible;
}
.youtube-modal--show .youtube-modal__auto-size-container {
  transform: translateY(-50%);
  transition: all 0.4s 0.3s ease-in-out;
}
.youtube-modal__auto-size-container {
  position: relative;
  top: 50%;
  padding-bottom: 56.25%;
  transform: translateY(-45%);
  transition: all 0.4s ease-in-out;
}
.youtube-modal__player {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.youtube-modal__close {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.youtube-modal__close:before,
.youtube-modal__close:after {
  position: absolute;
  width: 50px;
  height: 4px;
  top: 18px;
  left: 16px;
  background: white;
  content: "";
  transform: rotate(-45deg);
}
.youtube-modal__close:after {
  transform: rotate(45deg);
}
/* ********************
=Password form
******************** */
.post-password-form {
  padding: 115px 0 200px 0;
}
.post-password-form p {
  line-height: 20px;
}
.post-password-form p:first-child {
  margin-bottom: 20px;
}
.post-password-form p input[type="password"] {
  margin: 0px 10px 10px 20px;
}
.post-password-form p input[type="submit"] {
  font-family: 'aller';
  font-weight: 700;
  font-family: 'Objectivity-Bold';
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  min-height: 52px;
  padding: 16px 22px 14px;
  border-radius: 4px;
  border: 1px solid #ff6c37;
  transition: border .15s ease, background .15s ease, color .15s ease, border .15s ease;
  background: #ff6c37;
  border-color: #ff6c37;
  cursor: pointer;
  color: white;
}
.post-password-form p input[type="submit"]:hover {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
@media only screen and (max-width: 1275px) {
  .post-password-form {
    padding: 60px 0 100px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .post-password-form {
    padding: 60px 0 40px 0;
  }
}
@media only screen and (max-width: 640px) {
  .post-password-form {
    padding: 60px 0 20px 0;
  }
  .post-password-form p input[type="password"],
  .post-password-form p input[type="submit"] {
    display: block;
    width: 100%;
  }
  .post-password-form p input[type="password"] {
    margin: 10px 0px;
  }
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left {
  max-width: 100%;
  width: 600px;
  margin-left: 0;
  margin-right: 0;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item {
  flex-basis: calc(49.5%);
  max-width: calc(49.5%);
  position: relative;
  display: block;
  height: 200px;
  margin-bottom: 1rem;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  background-color: transparent;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item:hover .button {
  background: #ff4e0e;
  border-color: #ff4e0e;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item h4 {
  color: #fff;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 100%;
  height: auto;
  z-index: 2;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-position: center;
  border-radius: 4px 4px 0 0;
  z-index: 1;
}
body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item .button {
  display: block;
  text-align: center;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  body.page-template-template-whitepaper-confirmation .page-content .base-grid--has-sidebar-left .c-whitepaper__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
