/*=============================================
=               FONTS		                  =
=============================================*/
@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.woff2") format("woff2"), url("CircularStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Circular";
  src: url("CircularStd-MediumItalic.woff2") format("woff2"), url("/fonts/CircularStd-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Circular";
  src: url("CircularStd-BlackItalic.woff2") format("woff2"), url("/fonts/CircularStd-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Circular";
  src: url("CircularStd-Bold.woff2") format("woff2"), url("/fonts/CircularStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Circular Std Book";
  src: url("CircularStd-BookItalic.woff2") format("woff2"), url("/fonts/CircularStd-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Circular Std Book";
  src: url("CircularStd-Book.woff2") format("woff2"), url("/fonts/CircularStd-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Circular";
  src: url("CircularStd-Black.woff2") format("woff2"), url("/fonts/CircularStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Circular";
  src: url("CircularStd-BoldItalic.woff2") format("woff2"), url("/fonts/CircularStd-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
/*=============================================
=               KLEUREN		                  =
=============================================*/
/*=============================================
=               MEDIA QUERIES		          =
=============================================*/
/*=============================================
=               ANIMATIES		              =
=============================================*/
.slide-in-bottom {
  animation: slide-in-bottom 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fade-in {
  animation: fade-in 2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fade-in-animation {
  animation: simple-fade-in 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.fade-in-animation.delay-2 {
  animation-delay: 0.25s;
}
.fade-in-animation.delay-3 {
  animation-delay: 0.3s;
}
.fade-in-animation.delay-4 {
  animation-delay: 0.4s;
}

.fade-simple-animation {
  animation: simple-fade 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(70px);
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes simple-fade-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes simple-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    filter: blur(1px);
    opacity: 0;
  }
  50% {
    filter: blur(0);
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*=============================================
=               ANIMATIONS		                =
=============================================*/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes openIndex {
  from {
    max-width: 0px;
    opacity: 0;
  }
  to {
    max-width: 550px;
    opacity: 1;
  }
}
@keyframes closeIndex {
  from {
    max-width: 550px;
    opacity: 1;
  }
  to {
    max-width: 0px;
    opacity: 0;
  }
}
@keyframes openMobileIndex {
  from {
    max-height: 0px;
    opacity: 0;
  }
  to {
    max-height: 350px;
    opacity: 1;
  }
}
@keyframes closeMobileIndex {
  from {
    max-height: 350px;
    opacity: 1;
  }
  to {
    max-height: 0px;
    opacity: 0;
  }
}
@keyframes openMobileMenu {
  from {
    max-height: 0px;
    opacity: 0;
  }
  to {
    max-height: 550px;
    opacity: 1;
  }
}
@keyframes closeMobileMenu {
  from {
    max-height: 550px;
    opacity: 1;
  }
  to {
    max-height: 0px;
    opacity: 0;
  }
}
@keyframes fadeToLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomFast {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutBottom {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
}
/*=============================================
=               Clearfix		                  =
=============================================*/
/*=============================================
=               Font Smoothing		            =
=============================================*/
/*=============================================
=               Responsive    	              =
=============================================*/
.Cookies, .Privacy {
  background: #FCFCFC;
  /*=============================================
  =               HEADER		                  =
  =============================================*/
  /*=============================================
  =               FORM		                  =
  =============================================*/
  /*=============================================
  =                  FOOTER   		          =
  =============================================*/
}
.Cookies .container, .Privacy .container {
  max-width: 960px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .Cookies .container, .Privacy .container {
    max-width: 90%;
  }
}
.Cookies header, .Privacy header {
  display: block;
  width: 100%;
  height: 400px;
  background-image: url("../img/landingspage/trial-header-bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  box-sizing: border-box;
}
.Cookies header .container, .Privacy header .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .Cookies header .container, .Privacy header .container {
    max-width: 90%;
  }
}
.Cookies header .navigation, .Privacy header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 400px) {
  .Cookies header .navigation, .Privacy header .navigation {
    justify-content: center;
  }
}
.Cookies header .navigation ul, .Privacy header .navigation ul {
  padding: 0;
  margin: 0;
}
.Cookies header .navigation li, .Privacy header .navigation li {
  list-style-type: none;
  display: inline-block;
}
.Cookies header .navigation li + li, .Privacy header .navigation li + li {
  margin-left: 30px;
}
@media only screen and (max-width: 600px) {
  .Cookies header .navigation li + li, .Privacy header .navigation li + li {
    margin-left: 15px;
  }
}
.Cookies header .navigation a, .Privacy header .navigation a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all ease-out 250ms;
}
.Cookies header .navigation a.dot:hover:after, .Privacy header .navigation a.dot:hover:after {
  transform: translateY(0) scaleY(1) scaleX(1);
  transform-origin: 50% 50%;
  filter: blur(0);
  opacity: 1;
}
.Cookies header .navigation a.dot:after, .Privacy header .navigation a.dot:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3353F2;
  margin: 5px auto 0 auto;
  transition: all 0.4s cubic-bezier(0.5, 0.1, 0, 1);
  transform: translateY(50px) scaleY(2.5) scaleX(0.2);
  transform-origin: 50% 100%;
  filter: blur(40px);
  opacity: 0;
}
.Cookies header .navigation a.login:before, .Privacy header .navigation a.login:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  height: 15px;
  width: 15px;
  background-image: url("../img/landingspage/login-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 7px;
}
.Cookies header .navigation a#cta, .Privacy header .navigation a#cta {
  background-color: #3353F2;
  padding: 15px 25px;
  border-radius: 25px;
}
.Cookies header .navigation a#cta:hover, .Privacy header .navigation a#cta:hover {
  background-color: #253eb6;
}
.Cookies header .navigation .logo, .Privacy header .navigation .logo {
  display: block;
  width: 97px;
  height: 35px;
  background-image: url("../img/landingspage/sheprd-logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 400px) {
  .Cookies header .navigation .links, .Privacy header .navigation .links {
    display: none;
  }
}
.Cookies .header_content, .Privacy .header_content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.Cookies .header_content_text, .Privacy .header_content_text {
  padding-top: 70px;
  color: white;
  max-width: 720px;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  .Cookies .header_content_text h1, .Privacy .header_content_text h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.Cookies .header_content_text p, .Cookies .header_content_text a, .Privacy .header_content_text p, .Privacy .header_content_text a {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #EAEAEA;
  letter-spacing: 0.25px;
  line-height: 21px;
}
@media only screen and (max-width: 550px) {
  .Cookies .header_content_text p, .Cookies .header_content_text a, .Privacy .header_content_text p, .Privacy .header_content_text a {
    font-size: 14px;
  }
}
.Cookies .header_content_text a, .Privacy .header_content_text a {
  color: white;
  text-decoration: none;
}
.Cookies .form, .Privacy .form {
  display: block;
  position: relative;
  top: -20px;
  margin: 0 auto 70px auto;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(243, 243, 243, 0.7);
  box-shadow: 0 2px 33px 0 rgba(0, 0, 0, 0.02);
  padding: 50px 50px 20px 49px;
  border-radius: 2px;
}
.Cookies .form h2, .Privacy .form h2 {
  margin: 0;
  font-weight: normal;
}
.Cookies .form h3, .Privacy .form h3 {
  margin: 0;
  font-weight: normal;
  color: #3c3c3c;
}
.Cookies .form p, .Privacy .form p {
  margin-top: 0.25em;
  margin-bottom: 2em;
  font-family: "Circular Std Book";
  color: grey;
}
.Cookies .form p a, .Privacy .form p a {
  text-decoration: none;
  color: grey;
  font-weight: bold;
}
.Cookies .form ul, .Privacy .form ul {
  margin-top: 0.25em;
  margin-bottom: 2em;
}
.Cookies .form ul li, .Privacy .form ul li {
  font-weight: normal;
  color: grey;
}
.Cookies .form ul li a, .Privacy .form ul li a {
  text-decoration: none;
  color: grey;
  font-weight: bold;
}
.Cookies footer, .Privacy footer {
  display: block;
  background-color: #222222;
  padding: 100px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 550px) {
  .Cookies footer, .Privacy footer {
    padding: 70px 0 30px 0;
  }
}
@media only screen and (max-width: 550px) {
  .Cookies footer img, .Privacy footer img {
    max-width: 100px;
  }
}
.Cookies footer .subfooter, .Privacy footer .subfooter {
  margin: 50px auto 0 auto;
  display: flex;
  font-size: 13.5px;
  color: #6F6F6F;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 550px) {
  .Cookies footer .subfooter, .Privacy footer .subfooter {
    flex-direction: column;
  }
}
.Cookies footer .subfooter p, .Privacy footer .subfooter p {
  margin: 0;
}
.Cookies footer .subfooter span, .Privacy footer .subfooter span {
  font-size: 8px !important;
  margin: 0 8px;
}
@media only screen and (max-width: 550px) {
  .Cookies footer .subfooter span, .Privacy footer .subfooter span {
    margin: 5px 0px;
    color: #323232;
  }
}
.Cookies footer .subfooter a, .Privacy footer .subfooter a {
  margin: 0;
  text-decoration: none;
  color: #6F6F6F;
  position: relative;
}
.Cookies footer .subfooter a.noticed:after, .Privacy footer .subfooter a.noticed:after {
  content: "";
  display: inline-block;
  height: 19px;
  width: 19px;
  margin-left: 5px;
  background-image: url("../img/landingspage/noticed-logo.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -2px;
}
@media only screen and (max-width: 550px) {
  .Cookies footer .subfooter a.noticed:after, .Privacy footer .subfooter a.noticed:after {
    top: 0;
  }
}

/*=============================================
=               GENERAL		                  =
=============================================*/
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100vw;
  font-family: "Circular";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.Home {
  /*=============================================
  =               COOKIE MELDING		          =
  =============================================*/
  /*=============================================
  =               VIDEO POPUP		              =
  =============================================*/
  /*=============================================
  =               HEADER		                  =
  =============================================*/
  /*=============================================
  =               FEATURES		              =
  =============================================*/
  /*=============================================
  =                 YOURS  		              =
  =============================================*/
  /*=============================================
  =                 CASES  		              =
  =============================================*/
  /*=============================================
  =                 PRICING  		              =
  =============================================*/
  /*=============================================
  =                 GET STARTED  		          =
  =============================================*/
  /*=============================================
  =                 COMING SOON  		          =
  =============================================*/
  /*=============================================
  =                  FOOTER   		          =
  =============================================*/
}
.Home .cookies {
  opacity: 0;
  position: fixed;
  z-index: 101;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(180deg, transparent 1%, rgba(0, 0, 0, 0.231372549));
  padding: 50px 0 10px 10px;
  transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.Home .cookies.closed {
  opacity: 0;
  bottom: -200px;
}
.Home .cookies__block {
  padding: 10px 15px 15px 15px;
  background: #252525;
  border-radius: 6px;
  display: inline-block;
}
.Home .cookies__block p {
  font-size: 13.5px;
  color: #ffffff;
  letter-spacing: 0.11px;
  text-align: center;
  line-height: 40px;
  margin: 0;
}
.Home .cookies__block__buttons a {
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 14px;
  letter-spacing: 0.25px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 450px) {
  .Home .cookies__block__buttons a {
    width: calc(50% - 4.5px);
  }
}
.Home .cookies__block__buttons a + a {
  margin-left: 5px;
}
@media only screen and (max-width: 450px) {
  .Home .cookies__block__buttons a + a:last-child {
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.Home .cookies__block__buttons a.grey {
  background: #2f2f2f;
}
.Home .cookies__block__buttons a.grey:hover {
  background: #4c4c4c;
}
.Home .cookies__block__buttons a.purple {
  background: #3353f2;
}
.Home .cookies__block__buttons a.purple:hover {
  background: #253eb6;
}
.Home .video-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
}
.Home .player-wrapper {
  position: relative;
}
.Home .player-close {
  cursor: pointer;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  z-index: 99;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  padding: 23px;
  transform: scale(1) translateX(50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 800px) {
  .Home .player-close {
    right: initial;
    top: initial;
    bottom: 0;
    left: 50%;
    transform: scale(1) translateX(-50%) translateY(150%);
  }
}
.Home .player-close img {
  width: 9px;
  height: 9px;
  transform-origin: 50% 50%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.Home .player-close:hover {
  transform: translateX(50%) translateY(-50%) scale(1.2);
}
@media only screen and (max-width: 800px) {
  .Home .player-close:hover {
    transform: translateX(-50%) translateY(150%) scale(1.2);
  }
}
.Home .player-close:hover img {
  transform: scale(0.8);
}
.Home .plyr--video {
  width: 75vw;
}
@media only screen and (min-width: 1920px) {
  .Home .plyr--video {
    width: 60vw;
  }
}
@media only screen and (max-width: 800px) {
  .Home .plyr--video {
    width: 90vw;
  }
}
.Home .plyr__control--overlaid {
  background: #3353F2 !important;
}
.Home .plyr--full-ui input[type=range] {
  color: #3353F2 !important;
}
.Home .plyr--video .plyr__control.plyr__tab-focus,
.Home .plyr--video .plyr__control:hover,
.Home .plyr--video .plyr__control[aria-expanded=true] {
  background: #3353F2 !important;
}
.Home header {
  display: block;
  width: 100%;
  height: 780px;
  background-color: #222222;
  background-image: url("../img/landingspage/header-bg--black2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: calc(50% + 844px) 50%;
  position: relative;
  padding-top: 70px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1400px) {
  .Home header {
    background-image: none !important;
  }
}
@media only screen and (max-width: 1150px) {
  .Home header {
    overflow: hidden;
  }
}
.Home header .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .Home header .container {
    max-width: 90%;
  }
}
.Home header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  opacity: 0;
}
.Home header .navigation ul {
  padding: 0;
  margin: 0;
}
.Home header .navigation li {
  list-style-type: none;
  display: inline-block;
}
@media only screen and (max-width: 550px) {
  .Home header .navigation li.li-features, .Home header .navigation li.li-pricing {
    display: none;
  }
}
@media only screen and (max-width: 375px) {
  .Home header .navigation li.li-login {
    display: none;
  }
}
.Home header .navigation li + li {
  margin-left: 30px;
}
@media only screen and (max-width: 600px) {
  .Home header .navigation li + li {
    margin-left: 15px;
  }
}
.Home header .navigation a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all ease-out 250ms;
}
.Home header .navigation a.dot:hover:after {
  transform: translateY(0) scaleY(1) scaleX(1);
  transform-origin: 50% 50%;
  filter: blur(0);
  opacity: 1;
}
.Home header .navigation a.dot:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3353F2;
  margin: 5px auto 0 auto;
  transition: all 0.4s cubic-bezier(0.5, 0.1, 0, 1);
  transform: translateY(50px) scaleY(2.5) scaleX(0.2);
  transform-origin: 50% 100%;
  filter: blur(40px);
  opacity: 0;
}
.Home header .navigation a.login:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  height: 15px;
  width: 15px;
  background-image: url("../img/landingspage/login-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 7px;
}
.Home header .navigation a#cta {
  background-color: #3353F2;
  padding: 15px 25px;
  border-radius: 25px;
}
.Home header .navigation a#cta:hover {
  background-color: #253eb6;
}
.Home header .logo {
  display: block;
  width: 97px;
  height: 35px;
  background-image: url("../img/landingspage/sheprd-logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .header_black {
  height: 780px;
  width: calc(50vw + 170px);
  background-color: #222222;
  position: absolute;
  left: 0;
  top: 0;
}
.Home .header_content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1150px) {
  .Home .header_content {
    position: initial;
    left: initial;
    top: initial;
    transform: translateY(0);
    text-align: center;
    margin-top: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .Home .header_content {
    margin-top: 70px;
  }
}
.Home .header_content_text {
  max-width: 570px;
  opacity: 0;
}
@media only screen and (max-width: 1280px) {
  .Home .header_content_text {
    max-width: 480px;
  }
}
@media only screen and (max-width: 1150px) {
  .Home .header_content_text {
    max-width: 90%;
    margin: 0 auto;
  }
}
.Home .header_content_text h1 {
  font-size: 86px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1.5px;
  line-height: 90px;
  margin: 0;
}
@media only screen and (max-width: 1280px) {
  .Home .header_content_text h1 {
    font-size: 56px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .Home .header_content_text h1 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .Home .header_content_text h1 {
    font-size: 32px;
    line-height: 34px;
  }
}
.Home .header_content_text p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #8f8f8f;
  letter-spacing: 0.25px;
  line-height: 21px;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .Home .header_content_text p {
    font-size: 14px;
  }
}
.Home .header_content_text p.subtitle {
  font-family: "Circular";
  font-size: 18px;
  color: #d8d8d8;
  letter-spacing: 0.25px;
  margin: 1.5em 0 0.5em 0;
}
@media only screen and (max-width: 600px) {
  .Home .header_content_text p.subtitle {
    font-size: 16px;
  }
}
.Home .header_content_text .cta {
  cursor: pointer;
  background-color: #ffffff;
  display: inline-block;
  color: #222222;
  font-size: 14px;
  letter-spacing: 0.25px;
  border-radius: 25px;
  position: relative;
  padding: 15px 25px;
  margin-top: 2em;
  /* &:before {
      content: "";
      display: block;
      position: absolute;
      top: calc(50% - 14px);
      left: 9px;
      width: 28px;
      height: 28px;
      background-image: url("../img/play-icon.svg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  } */
}
.Home .header_images {
  display: flex;
  position: absolute;
  right: -268px;
  top: 137px;
  transition: all 0.5s cubic-bezier(0.5, 0.1, 0, 1);
}
@media only screen and (max-width: 1400px) {
  .Home .header_images {
    right: -395px;
  }
}
@media only screen and (max-width: 1150px) {
  .Home .header_images {
    position: initial;
    right: initial;
    top: initial;
    margin: 15px auto 0 auto;
    justify-content: center;
  }
}
@media only screen and (max-width: 750px) {
  .Home .header_images {
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 550px) {
  .Home .header_images {
    margin-top: 50px auto 0 auto;
  }
}
.Home .header_images img {
  box-shadow: 0 0 20px -9px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1150px) {
  .Home .header_images img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1151px) {
  .Home .header_images_responsive {
    display: none;
  }
}
.Home .header_images_responsive--desktop {
  display: none;
}
@media (min-width: 801px) and (max-width: 1150px) {
  .Home .header_images_responsive--desktop {
    display: block;
  }
}
.Home .header_images_responsive--tablet {
  display: none;
}
@media (min-width: 551px) and (max-width: 800px) {
  .Home .header_images_responsive--tablet {
    display: block;
  }
}
.Home .header_images_responsive--mobile {
  display: none;
}
@media (min-width: 0px) and (max-width: 550px) {
  .Home .header_images_responsive--mobile {
    display: block;
  }
}
.Home .header_images .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 1150px) {
  .Home .header_images .column {
    display: none;
  }
}
.Home .header_images .column + .column {
  margin-left: 20px;
}
.Home .header_images .column.first {
  position: relative;
  top: 80px;
}
.Home .header_images .column.third {
  position: relative;
  top: 30px;
}
.Home .header_images_filepreview {
  display: flex;
  flex-direction: column;
  animation-delay: 0.7s;
}
.Home .header_images .filetree {
  animation-delay: 1s;
  box-shadow: 0 0 20px -9px rgba(0, 0, 0, 0.4);
}
.Home .header_images .space {
  animation-delay: 0.85s;
}
.Home .header_images .preview-img {
  max-width: 314px;
}
.Home .header_images .quicktransfer {
  margin-top: 20px;
  animation-delay: 1.2s;
}
.Home .header_images .fileinfo {
  margin-top: 30px;
  animation-delay: 1.1s;
}
.Home .header_merken {
  opacity: 0;
  margin-top: 40px;
  max-width: 850px;
}
@media only screen and (max-width: 1270px) {
  .Home .header_merken {
    max-width: 750px;
  }
}
@media only screen and (max-width: 1150px) {
  .Home .header_merken.desktop {
    display: none;
  }
}
.Home .header_merken.mobile {
  max-width: 90% !important;
  margin: 50px auto 0 auto;
}
@media only screen and (min-width: 1151px) {
  .Home .header_merken.mobile {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  .Home .header_merken.mobile {
    display: none;
  }
}
.Home .header_merken p {
  font-size: 10.5px;
  color: #252525;
  letter-spacing: 0.75px;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.3;
}
@media only screen and (max-width: 1150px) {
  .Home .header_merken p {
    display: none;
  }
}
.Home .header_merken__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1150px) {
  .Home .header_merken__logos {
    opacity: 0.15;
  }
}
@media only screen and (max-width: 850px) {
  .Home .header_merken__logos img {
    transform: scale(0.8);
  }
}
.Home .features {
  background-image: url("../img/landingspage/grid-bg.jpg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 100%;
  position: relative;
  padding-top: 125px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1150px) {
  .Home .features {
    top: 0;
    padding-top: 0;
  }
}
.Home .features .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1280px) {
  .Home .features .container {
    max-width: 90%;
  }
}
@media only screen and (max-width: 950px) {
  .Home .features .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features .container {
    max-width: 90%;
  }
}
.Home .features_title {
  padding-top: 100px;
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
  opacity: 0;
}
@media only screen and (max-width: 550px) {
  .Home .features_title {
    padding-top: 70px;
  }
}
.Home .features_title h2 {
  font-weight: bold;
  font-size: 36px;
  color: #252525;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin: 0;
}
@media only screen and (max-width: 550px) {
  .Home .features_title h2 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
  }
}
.Home .features_title p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #838383;
  letter-spacing: 0.25px;
  line-height: 21px;
}
.Home .features_content {
  margin-top: 75px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 950px) {
  .Home .features_content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features_content {
    margin-top: 50px;
  }
}
.Home .features_content_buttons {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
}
@media only screen and (max-width: 950px) {
  .Home .features_content_buttons {
    flex-direction: row;
    align-items: first baseline;
    margin-right: 0;
    margin-bottom: 25px;
    width: 100%;
    overflow-x: scroll;
    padding-left: 5%;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features_content_buttons {
    padding: 0;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
  }
}
.Home .features_content_buttons .btn {
  padding: 25px;
  box-sizing: border-box;
  width: 320px;
  border-radius: 8px;
  border: 1px solid #fff;
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1);
}
@media only screen and (max-width: 950px) {
  .Home .features_content_buttons .btn {
    flex: 0 0 auto;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features_content_buttons .btn {
    width: 100%;
    background: rgba(249, 249, 249, 0.5);
    border: 1px solid #f6f6f6;
  }
}
@media only screen and (max-width: 950px) {
  .Home .features_content_buttons .btn + .btn {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features_content_buttons .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
.Home .features_content_buttons .btn.active {
  background: rgba(249, 249, 249, 0.5);
  border: 1px solid #f6f6f6;
  cursor: default !important;
}
.Home .features_content_buttons .btn.active .title {
  color: #3353F2;
}
@media only screen and (max-width: 550px) {
  .Home .features_content_buttons .btn.active .title {
    color: #2d2d2d;
  }
}
.Home .features_content_buttons .btn.active .desc {
  color: #263169;
  opacity: 0.8;
}
@media only screen and (max-width: 550px) {
  .Home .features_content_buttons .btn.active .desc {
    color: #727272;
  }
}
.Home .features_content_buttons .btn:hover {
  background: rgba(249, 249, 249, 0.5);
  border: 1px solid #f6f6f6;
  cursor: pointer;
}
.Home .features_content_buttons .btn + .btn {
  margin-top: 5px;
}
.Home .features_content_buttons .btn.filemanagement-btn .title:before {
  content: "";
  display: inline-block;
  height: 17px;
  width: 17px;
  background-image: url("../img/landingspage/filemanagement-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.filemanagement-btn.active .title:before {
    background-image: url("../img/landingspage/filemanagement-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn.collectshare-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 17px;
  background-image: url("../img/landingspage/collectshare-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.collectshare-btn.active .title:before {
    background-image: url("../img/landingspage/collectshare-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn.quicktransfer-btn .title:before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 18px;
  background-image: url("../img/landingspage/quicktransfer-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.quicktransfer-btn.active .title:before {
    background-image: url("../img/landingspage/quicktransfer-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn.crop-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url("../img/landingspage/crop-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.crop-btn.active .title:before {
    background-image: url("../img/landingspage/crop-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn.facerecognition-btn .title:before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 18px;
  background-image: url("../img/landingspage/facerecognition-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.facerecognition-btn.active .title:before {
    background-image: url("../img/landingspage/facerecognition-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn.notifications-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 13.5px;
  background-image: url("../img/landingspage/notifications-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content_buttons .btn.notifications-btn.active .title:before {
    background-image: url("../img/landingspage/notifications-btn-icon-active.svg");
  }
}
.Home .features_content_buttons .btn .title {
  font-weight: bold;
  font-size: 16px;
  color: #2d2d2d;
  letter-spacing: 0.1px;
  margin: 0;
}
.Home .features_content_buttons .btn .title:before {
  margin-right: 8px;
  position: relative;
  top: 1px;
}
.Home .features_content_buttons .btn .desc {
  font-size: 14px;
  font-weight: 500;
  color: #727272;
  letter-spacing: 0.05px;
  line-height: 20px;
  margin: 0.5em 0 0 0;
}
.Home .features_content_buttons .btn .discover-how-mobile {
  font-size: 10px;
  font-weight: 800;
  color: #b9b9b9;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  /* @include MQ-min(551px){
      display: none;
  } */
}
.Home .features_content_buttons .btn .discover-how-mobile:before {
  content: "";
  display: inline-block;
  background-image: url("../img/landingspage/discover-how-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 22px;
  width: 22px;
  position: relative;
  top: 7px;
  margin-right: 7px;
}
.Home .features_content_slides {
  width: 100%;
}
@media only screen and (max-width: 950px) {
  .Home .features_content_slides {
    padding: 0 5% 0 5%;
  }
}
@media only screen and (max-width: 550px) {
  .Home .features_content_slides {
    display: none !important;
  }
}
.Home .features_content_slides .slick-track {
  display: flex;
}
@media only screen and (max-width: 1280px) {
  .Home .features_content_slides .slick-track {
    height: 52vw;
  }
}
.Home .features_content_slides .slick-list {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  box-shadow: 0 3px 30px -10px rgba(0, 0, 0, 0.5);
}
.Home .features_content_slides video {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.Home .features_content_slides video.ie-browser {
  height: calc(100% - 36px) !important;
  width: auto !important;
}
@media only screen and (max-width: 950px) {
  .Home .features_content_slides video.ie-browser {
    height: calc(100% - 2.6vw) !important;
  }
}
.Home .features_content.collectshare-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 17px;
  background-image: url("../img/landingspage/collectshare-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content.collectshare-btn.active .title:before {
    background-image: url("../img/landingspage/collectshare-btn-icon-active.svg");
  }
}
.Home .features_content.quicktransfer-btn .title:before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 18px;
  background-image: url("../img/landingspage/quicktransfer-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content.quicktransfer-btn.active .title:before {
    background-image: url("../img/landingspage/quicktransfer-btn-icon-active.svg");
  }
}
.Home .features_content.crop-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url("../img/landingspage/crop-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content.crop-btn.active .title:before {
    background-image: url("../img/landingspage/crop-btn-icon-active.svg");
  }
}
.Home .features_content.facerecognition-btn .title:before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 18px;
  background-image: url("../img/landingspage/facerecognition-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content.facerecognition-btn.active .title:before {
    background-image: url("../img/landingspage/facerecognition-btn-icon-active.svg");
  }
}
.Home .features_content.notifications-btn .title:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 13.5px;
  background-image: url("../img/landingspage/notifications-btn-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 551px) {
  .Home .features_content.notifications-btn.active .title:before {
    background-image: url("../img/landingspage/notifications-btn-icon-active.svg");
  }
}
.Home .features_content .title {
  font-weight: bold;
  font-size: 16px;
  color: #2d2d2d;
  letter-spacing: 0.1px;
  margin: 0;
}
.Home .features_content .title:before {
  margin-right: 8px;
  position: relative;
  top: 1px;
}
.Home .features_content .desc {
  font-size: 14px;
  font-weight: 500;
  color: #727272;
  letter-spacing: 0.05px;
  line-height: 20px;
  margin: 0.5em 0 0 0;
}
.Home .features_content .discover-how-mobile {
  font-size: 10px;
  font-weight: 800;
  color: #b9b9b9;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  /* @include MQ-min(551px){
      display: none;
  } */
}
.Home .features_content .discover-how-mobile:before {
  content: "";
  display: inline-block;
  background-image: url("../img/landingspage/discover-how-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 22px;
  width: 22px;
  position: relative;
  top: 7px;
  margin-right: 7px;
}
.Home_slides {
  width: 100%;
}
@media only screen and (max-width: 950px) {
  .Home_slides {
    padding: 0 5% 0 5%;
  }
}
@media only screen and (max-width: 550px) {
  .Home_slides {
    display: none !important;
  }
}
.Home_slides .slick-track {
  display: flex;
}
@media only screen and (max-width: 1280px) {
  .Home_slides .slick-track {
    height: 52vw;
  }
}
.Home_slides .slick-list {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  box-shadow: 0 3px 30px -10px rgba(0, 0, 0, 0.5);
}
.Home_slides video {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.Home_slides video.ie-browser {
  height: calc(100% - 36px) !important;
  width: auto !important;
}
@media only screen and (max-width: 950px) {
  .Home_slides video.ie-browser {
    height: calc(100% - 2.6vw) !important;
  }
}
@media only screen and (max-width: 1100px) {
  .Home_slides video {
    position: relative;
  }
}
.Home_slides .slide {
  height: 755px !important;
  overflow: hidden;
}
.Home_slides .slide:before {
  content: "";
  display: block;
  width: 1278px;
  background-image: url("../img/landingspage/videos/sheprd-safari-bar.png");
  background-size: cover;
  height: 36px;
}
@media only screen and (max-width: 950px) {
  .Home_slides .slide:before {
    width: 90vw;
    height: 2.6vw;
  }
}
.Home .yours {
  background: #222222;
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  .Home .yours {
    padding: 70px 0;
  }
}
.Home .yours .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 950px) {
  .Home .yours .container {
    max-width: 90%;
  }
}
.Home .yours h3 {
  font-weight: normal;
  font-size: 21px;
  color: #e7e7e7;
  letter-spacing: 0.25px;
  margin: 0 0 1.5em 0;
  opacity: 0;
}
.Home .yours h3 span {
  font-weight: bold;
  color: #ffffff;
}
.Home .yours .title {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.1px;
  margin: 0;
}
.Home .yours .desc {
  border: 0 solid #252525;
  font-size: 14px;
  color: #c2c2c2;
  letter-spacing: 0.05px;
  line-height: 20px;
  margin: 0.5em 0 0 0;
}
.Home .yours_content {
  display: flex;
  opacity: 0;
}
@media only screen and (max-width: 1150px) {
  .Home .yours_content {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
}
@media only screen and (max-width: 550px) {
  .Home .yours_content {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.Home .yours_content_box {
  background: #252525;
  border: 1px solid #303030;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 30px 40px;
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1);
  cursor: default;
}
@media only screen and (max-width: 1150px) {
  .Home .yours_content_box {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 550px) {
  .Home .yours_content_box {
    width: 100%;
  }
}
.Home .yours_content_box + .yours_content_box {
  margin-left: 15px;
}
@media only screen and (max-width: 550px) {
  .Home .yours_content_box + .yours_content_box {
    margin-top: 15px;
    margin-left: 0;
  }
}
.Home .yours_content_box:hover {
  background: #252525;
  border: 1px solid #3f3f3f;
}
.Home .yours_content_box .title:before {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 10px auto;
}
@media only screen and (max-width: 1150px) {
  .Home .yours_content_box.branding {
    margin-left: 0;
  }
}
.Home .yours_content_box.branding .title:before {
  background-image: url("../img/landingspage/branding-before.svg");
  width: 15px;
  height: 19px;
}
.Home .yours_content_box.myspace .title:before {
  background-image: url("../img/landingspage/myspace-before.svg");
  width: 23px;
  height: 23px;
}
@media only screen and (max-width: 1150px) {
  .Home .yours_content_box.userroles {
    margin-left: 0;
    margin-top: 15px;
  }
}
.Home .yours_content_box.userroles .title:before {
  background-image: url("../img/landingspage/roles-before.svg");
  width: 17px;
  height: 15px;
}
@media only screen and (max-width: 1150px) {
  .Home .yours_content_box.password {
    margin-top: 15px;
  }
}
.Home .yours_content_box.password .title:before {
  background-image: url("../img/landingspage/password-before.svg");
  width: 13px;
  height: 16px;
}
.Home .cases {
  display: flex;
  width: 100%;
  height: 80vh;
  background-color: #222222;
}
@media only screen and (max-width: 1000px) {
  .Home .cases {
    height: auto;
    flex-direction: column;
  }
}
.Home .cases_nav {
  position: absolute;
  z-index: 99;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1000px) {
  .Home .cases_nav {
    bottom: 30px;
  }
}
.Home .cases_nav_btn {
  display: flex;
  float: left;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: rgb(34, 34, 34);
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1);
}
@media only screen and (max-width: 1000px) {
  .Home .cases_nav_btn {
    background-color: rgb(34, 34, 34);
  }
}
.Home .cases_nav_btn:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.Home .cases_nav__next {
  margin-left: 25px;
}
.Home .cases_header_nav {
  height: 100%;
  width: 40%;
  position: relative;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_header_nav {
    width: 100%;
    height: 50vw;
  }
}
@media only screen and (max-width: 550px) {
  .Home .cases_header_nav {
    height: 100vw;
  }
}
@media only screen and (max-width: 400px) {
  .Home .cases_header_nav {
    height: 150vw;
  }
}
.Home .cases_header {
  height: 100%;
  width: 100%;
}
.Home .cases_header .slick-list {
  height: 100%;
  width: 100%;
}
.Home .cases_header .slick-track {
  height: 100%;
}
.Home .cases_header .header {
  display: flex !important;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .cases_header .hedgren {
  background-image: url("../img/landingspage/case-hedgren-bg.jpg");
}
.Home .cases_header .port-of-antwerp {
  background-image: url("../img/landingspage/case-portofantwerp-bg.jpg");
}
.Home .cases_header .ethnicraft {
  background-image: url("../img/landingspage/case-ethnicraft-bg.jpg");
}
.Home .cases_header .luminus {
  background-image: url("../img/landingspage/case-luminus-bg.jpg");
}
.Home .cases_content {
  height: 100%;
  width: 60%;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content {
    height: 75vw;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .Home .cases_content {
    height: 120vw;
  }
}
@media only screen and (max-width: 400px) {
  .Home .cases_content {
    height: 150vw;
  }
}
.Home .cases_content .slick-list {
  height: 100%;
  width: 100%;
}
.Home .cases_content .slick-track {
  height: 100%;
}
.Home .cases_content_visuals {
  width: 100%;
  height: 50%;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content_visuals {
    order: 2;
  }
}
.Home .cases_content_visuals .visual {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}
.Home .cases_content_visuals .ethnicraft {
  background-image: url("../img/landingspage/visual-ethnicraft.jpg");
}
.Home .cases_content_visuals .luminus {
  background-image: url("../img/landingspage/visual-luminus.jpg");
}
.Home .cases_content_visuals .hedgren {
  background-image: url("../img/landingspage/visual-hedgren.jpg");
}
.Home .cases_content_visuals .port-of-antwerp {
  background-image: url("../img/landingspage/visual-portofantwerp.jpg");
}
.Home .cases_content_testimonials {
  width: 100%;
  height: 50%;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content_testimonials {
    order: 1;
  }
}
.Home .cases_content_testimonials_titel, .Home .cases_content_testimonials_quote {
  height: 100%;
  width: 50%;
  float: left;
  opacity: 0;
}
@media only screen and (max-width: 550px) {
  .Home .cases_content_testimonials_titel {
    display: none !important;
  }
}
@media only screen and (max-width: 550px) {
  .Home .cases_content_testimonials_quote {
    width: 100%;
  }
}
.Home .cases_content_testimonials_quote {
  background: #222222;
}
.Home .cases_content_testimonials .titel {
  display: flex !important;
  text-align: center;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.Home .cases_content_testimonials .titel.ethnicraft {
  color: #252525;
  background: #e6e3de;
}
.Home .cases_content_testimonials .titel.port-of-antwerp {
  color: #252525;
  background: #dc1437;
}
.Home .cases_content_testimonials .titel.luminus {
  color: #252525;
  background: #e97935;
}
.Home .cases_content_testimonials .titel.hedgren {
  color: #252525;
  background: #b3a9a2;
}
.Home .cases_content_testimonials .titel p {
  font-weight: bold;
  font-size: 3vw;
  line-height: 2.8vw;
  color: #252525;
  letter-spacing: 0.2px;
  max-width: 80%;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content_testimonials .titel p {
    font-size: 42px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .cases_content_testimonials .titel p {
    font-size: 32px;
    line-height: 34px;
  }
}
.Home .cases_content_testimonials .titel p:before {
  content: "";
  display: block;
  margin: 0 auto 15px auto;
  width: 14px;
  height: 9px;
  background-image: url("../img/landingspage/quote-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .cases_content_testimonials .quote {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.Home .cases_content_testimonials .quote__content {
  width: 80%;
}
.Home .cases_content_testimonials .quote--desc {
  font-family: "Circular Std Book";
  font-size: 1.3vw;
  color: #ffffff;
  letter-spacing: 0.15px;
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content_testimonials .quote--desc {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1000px) {
  .Home .cases_content_testimonials .quote--desc {
    font-size: 16px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .cases_content_testimonials .quote--desc {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 450px) {
  .Home .cases_content_testimonials .quote--desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.Home .cases_content_testimonials .quote--author {
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.25px;
}
.Home .cases_content_testimonials .quote--author:before {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #444;
  width: 25px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}
.Home .pricing {
  background-image: url("../img/landingspage/grid-bg.jpg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 100%;
  position: relative;
  padding-top: 75px;
  padding-bottom: 70px;
  /*=============================================
  =                 YOURS  		              =
  =============================================*/
  /*=============================================
  =                 CASES  		              =
  =============================================*/
  /*=============================================
  =                 PRICING  		              =
  =============================================*/
}
@media only screen and (max-width: 950px) {
  .Home .pricing {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing {
    padding-top: 0;
  }
}
.Home .pricing .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .container {
    width: 90%;
  }
}
.Home .pricing_title {
  padding-top: 75px;
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
  opacity: 0;
}
.Home .pricing_title h2 {
  font-weight: bold;
  font-size: 36px;
  color: #252525;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin: 0;
}
@media only screen and (max-width: 550px) {
  .Home .pricing_title h2 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
  }
}
.Home .pricing_title p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #838383;
  letter-spacing: 0.25px;
  line-height: 21px;
}
.Home .pricing_switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Home .pricing_switcher ul {
  padding: 20px 30px;
  margin: 0;
  border-radius: 8px;
  display: flex;
  background-color: #000;
}
.Home .pricing_switcher li {
  cursor: pointer;
  list-style: none;
}
.Home .pricing_switcher li span {
  color: #525252;
  display: flex;
  transition: color 0.3s ease;
}
.Home .pricing_switcher li span:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  margin: 0 10px 0 0;
  background-image: url("../img/landingspage/icon--monthly--inactive.svg");
  transition: all 0.3s ease;
}
.Home .pricing_switcher li:hover span, .Home .pricing_switcher li.active span {
  color: #fff;
}
.Home .pricing_switcher li:hover span:before, .Home .pricing_switcher li.active span:before {
  background-image: url("../img/landingspage/icon--monthly--active.svg");
}
.Home .pricing_switcher li + li {
  margin: 0 0 0 30px;
}
.Home .pricing_switcher #annually span:before {
  background-image: url("../img/landingspage/icon--annually--inactive.svg");
}
.Home .pricing_switcher #annually:hover span:before, .Home .pricing_switcher #annually.active span:before {
  background-image: url("../img/landingspage/icon--annually--active.svg");
}
.Home .pricing_switcher_content {
  opacity: 0;
  margin: 10px 0 0 0;
  font-size: 12px;
  color: rgba(82, 82, 82, 0.5);
  transition: opacity 0.5s ease;
}
.Home .pricing_switcher_content.active {
  opacity: 1;
  transition: opacity 0.5s ease 0.5s;
}
.Home .pricing_content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 50px;
  opacity: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content {
    align-items: center;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing_content {
    flex-direction: column;
  }
}
.Home .pricing_content_head {
  height: 90px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.Home .pricing_content_head.white h4 {
  color: #2d2d2d;
}
.Home .pricing_content_head.white p {
  color: #2d2d2d;
}
.Home .pricing_content_head.black h4 {
  color: #ffffff;
}
.Home .pricing_content_head.black p {
  color: #ffffff;
}
.Home .pricing_content_head .monthly,
.Home .pricing_content_head .annually {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.Home .pricing_content_head .monthly.active,
.Home .pricing_content_head .annually.active {
  opacity: 1;
  transition: opacity 0.5s ease 0.5s;
}
.Home .pricing_content_head .annually div {
  display: inline-block;
}
.Home .pricing_content_head .annually .discount {
  position: relative;
  opacity: 0.2;
  font-size: 21px;
  display: flex;
  margin: 0 auto;
  padding: 0 3px;
}
.Home .pricing_content_head .annually .discount:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: black;
  left: 0;
  top: 50%;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content_head {
    margin-bottom: 20px;
  }
}
.Home .pricing_content_head h4 {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.5px;
  margin: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content_head h4 {
    font-size: 24px;
  }
}
.Home .pricing_content_head p {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: -0.5px;
  margin: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content_head p {
    font-size: 24px;
  }
}
.Home .pricing_content_head p span {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.3px;
  vertical-align: super;
  margin: 4px 0 0 5px;
}
.Home .pricing_content_features p {
  font-family: "Circular Std Book";
  font-size: 14px;
  letter-spacing: 0.25px;
  display: block;
  min-width: 225px;
  padding: 0 20px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content_features p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing_content_features p.empty {
    display: none;
  }
}
.Home .pricing_content_features p.storagespace.black:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-storagespace-white.svg");
}
.Home .pricing_content_features p.storagespace.white:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-storagespace-black.svg");
}
.Home .pricing_content_features p.userroles.black:before {
  width: 16px;
  height: 12px;
  background-image: url("../img/landingspage/pricing-userroles-white.svg");
}
@media only screen and (max-width: 1100px) {
  .Home .pricing_content_features p.userroles {
    position: relative;
  }
}
.Home .pricing_content_features p .slide {
  height: 755px !important;
  overflow: hidden;
}
.Home .pricing_content_features p .slide:before {
  content: "";
  display: block;
  width: 1278px;
  background-image: url("../img/landingspage/videos/sheprd-safari-bar.png");
  background-size: cover;
  height: 36px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing_content_features p .slide:before {
    width: 90vw;
    height: 2.6vw;
  }
}
.Home .pricing .yours {
  background: #222222;
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  .Home .pricing .yours {
    padding: 70px 0;
  }
}
.Home .pricing .yours .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .yours .container {
    max-width: 90%;
  }
}
.Home .pricing .yours h3 {
  font-weight: normal;
  font-size: 21px;
  color: #e7e7e7;
  letter-spacing: 0.25px;
  margin: 0 0 1.5em 0;
  opacity: 0;
}
.Home .pricing .yours h3 span {
  font-weight: bold;
  color: #ffffff;
}
.Home .pricing .yours .title {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.1px;
  margin: 0;
}
.Home .pricing .yours .desc {
  border: 0 solid #252525;
  font-size: 14px;
  color: #c2c2c2;
  letter-spacing: 0.05px;
  line-height: 20px;
  margin: 0.5em 0 0 0;
}
.Home .pricing .yours_content {
  display: flex;
  opacity: 0;
}
@media only screen and (max-width: 1150px) {
  .Home .pricing .yours_content {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .yours_content {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.Home .pricing .yours_content_box {
  background: #252525;
  border: 1px solid #303030;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 30px 40px;
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1);
  cursor: default;
}
@media only screen and (max-width: 1150px) {
  .Home .pricing .yours_content_box {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .yours_content_box {
    width: 100%;
  }
}
.Home .pricing .yours_content_box + .yours_content_box {
  margin-left: 15px;
}
@media only screen and (max-width: 550px) {
  .Home .pricing .yours_content_box + .yours_content_box {
    margin-top: 15px;
    margin-left: 0;
  }
}
.Home .pricing .yours_content_box:hover {
  background: #252525;
  border: 1px solid #3f3f3f;
}
.Home .pricing .yours_content_box .title:before {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 10px auto;
}
@media only screen and (max-width: 1150px) {
  .Home .pricing .yours_content_box.branding {
    margin-left: 0;
  }
}
.Home .pricing .yours_content_box.branding .title:before {
  background-image: url("../img/landingspage/branding-before.svg");
  width: 15px;
  height: 19px;
}
.Home .pricing .yours_content_box.myspace .title:before {
  background-image: url("../img/landingspage/myspace-before.svg");
  width: 23px;
  height: 23px;
}
@media only screen and (max-width: 1150px) {
  .Home .pricing .yours_content_box.userroles {
    margin-left: 0;
    margin-top: 15px;
  }
}
.Home .pricing .yours_content_box.userroles .title:before {
  background-image: url("../img/landingspage/roles-before.svg");
  width: 17px;
  height: 15px;
}
@media only screen and (max-width: 1150px) {
  .Home .pricing .yours_content_box.password {
    margin-top: 15px;
  }
}
.Home .pricing .yours_content_box.password .title:before {
  background-image: url("../img/landingspage/password-before.svg");
  width: 13px;
  height: 16px;
}
.Home .pricing .cases {
  display: flex;
  width: 100%;
  height: 80vh;
  background-color: #222222;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases {
    height: auto;
    flex-direction: column;
  }
}
.Home .pricing .cases_nav {
  position: absolute;
  z-index: 99;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_nav {
    bottom: 30px;
  }
}
.Home .pricing .cases_nav_btn {
  display: flex;
  float: left;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: rgb(34, 34, 34);
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1);
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_nav_btn {
    background-color: rgb(34, 34, 34);
  }
}
.Home .pricing .cases_nav_btn:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.Home .pricing .cases_nav__next {
  margin-left: 25px;
}
.Home .pricing .cases_header_nav {
  height: 100%;
  width: 40%;
  position: relative;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_header_nav {
    width: 100%;
    height: 50vw;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .cases_header_nav {
    height: 100vw;
  }
}
@media only screen and (max-width: 400px) {
  .Home .pricing .cases_header_nav {
    height: 150vw;
  }
}
.Home .pricing .cases_header {
  height: 100%;
  width: 100%;
}
.Home .pricing .cases_header .slick-list {
  height: 100%;
  width: 100%;
}
.Home .pricing .cases_header .slick-track {
  height: 100%;
}
.Home .pricing .cases_header .header {
  display: flex !important;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .pricing .cases_header .hedgren {
  background-image: url("../img/landingspage/case-hedgren-bg.jpg");
}
.Home .pricing .cases_header .port-of-antwerp {
  background-image: url("../img/landingspage/case-portofantwerp-bg.jpg");
}
.Home .pricing .cases_header .ethnicraft {
  background-image: url("../img/landingspage/case-ethnicraft-bg.jpg");
}
.Home .pricing .cases_header .luminus {
  background-image: url("../img/landingspage/case-luminus-bg.jpg");
}
.Home .pricing .cases_content {
  height: 100%;
  width: 60%;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content {
    height: 75vw;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .cases_content {
    height: 120vw;
  }
}
@media only screen and (max-width: 400px) {
  .Home .pricing .cases_content {
    height: 150vw;
  }
}
.Home .pricing .cases_content .slick-list {
  height: 100%;
  width: 100%;
}
.Home .pricing .cases_content .slick-track {
  height: 100%;
}
.Home .pricing .cases_content_visuals {
  width: 100%;
  height: 50%;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content_visuals {
    order: 2;
  }
}
.Home .pricing .cases_content_visuals .visual {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}
.Home .pricing .cases_content_visuals .ethnicraft {
  background-image: url("../img/landingspage/visual-ethnicraft.jpg");
}
.Home .pricing .cases_content_visuals .luminus {
  background-image: url("../img/landingspage/visual-luminus.jpg");
}
.Home .pricing .cases_content_visuals .hedgren {
  background-image: url("../img/landingspage/visual-hedgren.jpg");
}
.Home .pricing .cases_content_visuals .port-of-antwerp {
  background-image: url("../img/landingspage/visual-portofantwerp.jpg");
}
.Home .pricing .cases_content_testimonials {
  width: 100%;
  height: 50%;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content_testimonials {
    order: 1;
  }
}
.Home .pricing .cases_content_testimonials_titel, .Home .pricing .cases_content_testimonials_quote {
  height: 100%;
  width: 50%;
  float: left;
  opacity: 0;
}
@media only screen and (max-width: 550px) {
  .Home .pricing .cases_content_testimonials_titel {
    display: none !important;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .cases_content_testimonials_quote {
    width: 100%;
  }
}
.Home .pricing .cases_content_testimonials_quote {
  background: #222222;
}
.Home .pricing .cases_content_testimonials .titel {
  display: flex !important;
  text-align: center;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.Home .pricing .cases_content_testimonials .titel.ethnicraft {
  color: #252525;
  background: #e6e3de;
}
.Home .pricing .cases_content_testimonials .titel.port-of-antwerp {
  color: #252525;
  background: #dc1437;
}
.Home .pricing .cases_content_testimonials .titel.luminus {
  color: #252525;
  background: #e97935;
}
.Home .pricing .cases_content_testimonials .titel.hedgren {
  color: #252525;
  background: #b3a9a2;
}
.Home .pricing .cases_content_testimonials .titel p {
  font-weight: bold;
  font-size: 3vw;
  line-height: 2.8vw;
  color: #252525;
  letter-spacing: 0.2px;
  max-width: 80%;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content_testimonials .titel p {
    font-size: 42px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .cases_content_testimonials .titel p {
    font-size: 32px;
    line-height: 34px;
  }
}
.Home .pricing .cases_content_testimonials .titel p:before {
  content: "";
  display: block;
  margin: 0 auto 15px auto;
  width: 14px;
  height: 9px;
  background-image: url("../img/landingspage/quote-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .pricing .cases_content_testimonials .quote {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.Home .pricing .cases_content_testimonials .quote__content {
  width: 80%;
}
.Home .pricing .cases_content_testimonials .quote--desc {
  font-family: "Circular Std Book";
  font-size: 1.3vw;
  color: #ffffff;
  letter-spacing: 0.15px;
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content_testimonials .quote--desc {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .cases_content_testimonials .quote--desc {
    font-size: 16px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .cases_content_testimonials .quote--desc {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 450px) {
  .Home .pricing .cases_content_testimonials .quote--desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.Home .pricing .cases_content_testimonials .quote--author {
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.25px;
}
.Home .pricing .cases_content_testimonials .quote--author:before {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #444;
  width: 25px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}
.Home .pricing .pricing {
  background-image: url("../img/landingspage/grid-bg.jpg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 100%;
  position: relative;
  padding-top: 75px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .Home .pricing .pricing {
    padding-top: 0;
  }
}
.Home .pricing .pricing .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .Home .pricing .pricing .container {
    width: 90%;
  }
}
.Home .pricing .pricing_title {
  padding-top: 75px;
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
  opacity: 0;
}
.Home .pricing .pricing_title h2 {
  font-weight: bold;
  font-size: 36px;
  color: #252525;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin: 0;
}
@media only screen and (max-width: 550px) {
  .Home .pricing .pricing_title h2 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
  }
}
.Home .pricing .pricing_title p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #838383;
  letter-spacing: 0.25px;
  line-height: 21px;
}
.Home .pricing .pricing_content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 50px;
  opacity: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_content {
    align-items: center;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .pricing_content {
    flex-direction: column;
  }
}
.Home .pricing .pricing_content_head {
  text-align: center;
  margin-bottom: 40px;
}
.Home .pricing .pricing_content_head.white h4 {
  color: #2d2d2d;
}
.Home .pricing .pricing_content_head.white p {
  color: #2d2d2d;
}
.Home .pricing .pricing_content_head.black h4 {
  color: #ffffff;
}
.Home .pricing .pricing_content_head.black p {
  color: #ffffff;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_content_head {
    margin-bottom: 20px;
  }
}
.Home .pricing .pricing_content_head h4 {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.5px;
  margin: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_content_head h4 {
    font-size: 24px;
  }
}
.Home .pricing .pricing_content_head p {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: -0.5px;
  margin: 0;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_content_head p {
    font-size: 24px;
  }
}
.Home .pricing .pricing_content_head p span {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.3px;
  vertical-align: super;
  margin-left: 5px;
}
.Home .pricing .pricing_content_features p {
  font-family: "Circular Std Book";
  font-size: 14px;
  letter-spacing: 0.25px;
  display: block;
  min-width: 225px;
  padding: 0 20px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_content_features p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .pricing_content_features p.empty {
    display: none;
  }
}
.Home .pricing .pricing_content_features p.storagespace.black:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-storagespace-white.svg");
}
.Home .pricing .pricing_content_features p.storagespace.white:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-storagespace-black.svg");
}
.Home .pricing .pricing_content_features p.userroles.black:before {
  width: 16px;
  height: 12px;
  background-image: url("../img/landingspage/pricing-userroles-white.svg");
}
.Home .pricing .pricing_content_features p.userroles.white:before {
  width: 16px;
  height: 12px;
  background-image: url("../img/landingspage/pricing-userroles-black.svg");
}
.Home .pricing .pricing_content_features p.quicktransfer.black:before {
  width: 15px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-quicktransfer-white.svg");
}
.Home .pricing .pricing_content_features p.quicktransfer.white:before {
  width: 15px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-quicktransfer-black.svg");
}
.Home .pricing .pricing_content_features p.myspace.black:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-myspace-white.svg");
}
.Home .pricing .pricing_content_features p.myspace.white:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-myspace-black.svg");
}
.Home .pricing .pricing_content_features p.cropping.black:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-cropping-white.svg");
}
.Home .pricing .pricing_content_features p.cropping.white:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-cropping-black.svg");
}
.Home .pricing .pricing_content_features p.faceobject.black:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-faceobject-white.svg");
}
.Home .pricing .pricing_content_features p.faceobject.white:before {
  width: 14px;
  height: 14px;
  background-image: url("../img/landingspage/pricing-faceobject-black.svg");
}
.Home .pricing .pricing_content_features p.password.black:before {
  width: 12px;
  height: 15px;
  left: 2px;
  background-image: url("../img/landingspage/pricing-password-white.svg");
}
.Home .pricing .pricing_content_features p.password.white:before {
  width: 12px;
  height: 15px;
  left: 2px;
  background-image: url("../img/landingspage/pricing-password-black.svg");
}
.Home .pricing .pricing_content_features p + p {
  padding-top: 1em;
}
.Home .pricing .pricing_content_features p span {
  font-family: "Circular";
  font-weight: 700;
}
.Home .pricing .pricing_content_features.white {
  color: #535353;
}
.Home .pricing .pricing_content_features.white p:before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 2px;
}
.Home .pricing .pricing_content_features.white p.empty:before {
  content: "-";
}
.Home .pricing .pricing_content_features.white p + p {
  border-top: 1px dashed #efefef;
}
.Home .pricing .pricing_content_features.black {
  color: #ffffff;
}
.Home .pricing .pricing_content_features.black p:before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 2px;
}
.Home .pricing .pricing_content_features.black p.empty:before {
  content: "-";
}
.Home .pricing .pricing_content_features.black p + p {
  border-top: 1px dashed #404040;
}
.Home .pricing .pricing_suffolk {
  background: #ffffff;
  border-left: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 50px 40px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_suffolk {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .pricing_suffolk {
    width: 100%;
    border-bottom: none;
    border-right: 1px solid #f2f2f2;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}
.Home .pricing .pricing_merino {
  background: #252525;
  box-shadow: 0 -1px 9px 0 rgba(0, 0, 0, 0.1), -4px 0 0 0 rgba(0, 0, 0, 0.03), 4px 0 233px 0 rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  padding: 60px 40px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_merino {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .pricing_merino {
    width: 100%;
  }
}
.Home .pricing .pricing_lincoln {
  background: #ffffff;
  border-right: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 50px 40px;
}
@media only screen and (max-width: 950px) {
  .Home .pricing .pricing_lincoln {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .pricing .pricing_lincoln {
    width: 100%;
  }
}
.Home .getstarted {
  border-top: 1px solid #f6f6f6;
  background-color: #fefefe;
  text-align: center;
  padding: 200px 0 0 0;
  position: relative;
  top: -200px;
}
.Home .getstarted h3 {
  font-weight: bold;
  font-size: 56px;
  color: #252525;
  letter-spacing: 0.75px;
  margin: 0;
  opacity: 0;
}
@media only screen and (max-width: 950px) {
  .Home .getstarted h3 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 750px) {
  .Home .getstarted h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 550px) {
  .Home .getstarted h3 {
    font-size: 26px;
    letter-spacing: 0.25px;
  }
}
.Home .getstarted p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #838383;
  letter-spacing: 0.25px;
  line-height: 21px;
  max-width: 650px;
  margin: 0.5em auto 0 auto;
  opacity: 0;
}
@media only screen and (max-width: 750px) {
  .Home .getstarted p {
    max-width: 80%;
  }
}
@media only screen and (max-width: 550px) {
  .Home .getstarted p {
    max-width: 90%;
  }
}
.Home .getstarted a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.28px;
  background-color: #3353F2;
  border-radius: 35px;
  text-decoration: none;
  padding: 25px 65px;
  margin-top: 120px;
  transition: all ease-out 250ms;
  opacity: 0;
}
.Home .getstarted a:hover {
  background-color: #253eb6;
}
.Home .getstarted a:before {
  content: "";
  display: block;
  position: absolute;
  top: -82px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 82px;
  background-image: url("../img/landingspage/cta-before.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Home .comingsoon {
  position: relative;
  margin-top: -70px;
  bottom: -12px;
}
@media only screen and (max-width: 1200px) {
  .Home .comingsoon {
    max-width: 90%;
    margin: -70px auto 0 auto;
  }
}
@media only screen and (max-width: 800px) {
  .Home .comingsoon {
    margin: -100px auto 0 auto;
  }
}
@media only screen and (max-width: 550px) {
  .Home .comingsoon {
    margin: -120px auto 0 auto;
  }
}
.Home .comingsoon_title {
  margin: 0 auto 50px auto;
  max-width: 650px;
  text-align: center;
}
.Home .comingsoon_title h2 {
  font-weight: bold;
  font-size: 36px;
  color: #252525;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin: 0;
  opacity: 0;
}
.Home .comingsoon_title p {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #838383;
  letter-spacing: 0.25px;
  line-height: 21px;
  opacity: 0;
}
.Home .comingsoon_devices {
  display: block;
  text-align: center;
  opacity: 0;
}
.Home .comingsoon_devices img {
  max-width: 1120px;
}
@media only screen and (max-width: 1200px) {
  .Home .comingsoon_devices img {
    max-width: 100%;
  }
}
.Home footer {
  display: block;
  background-color: #222222;
  padding: 100px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 550px) {
  .Home footer {
    padding: 70px 0 30px 0;
  }
}
@media only screen and (max-width: 550px) {
  .Home footer img {
    max-width: 100px;
  }
}
.Home footer .subfooter {
  margin: 50px auto 0 auto;
  display: flex;
  font-size: 13.5px;
  color: #6f6f6f;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 550px) {
  .Home footer .subfooter {
    flex-direction: column;
  }
}
.Home footer .subfooter p {
  margin: 0;
}
.Home footer .subfooter span {
  font-size: 8px !important;
  margin: 0 8px;
}
@media only screen and (max-width: 550px) {
  .Home footer .subfooter span {
    margin: 5px 0px;
    color: #323232;
  }
}
.Home footer .subfooter a {
  margin: 0;
  text-decoration: none;
  color: #6f6f6f;
  position: relative;
}
.Home footer .subfooter a.noticed:after {
  content: "";
  display: inline-block;
  height: 19px;
  width: 19px;
  margin-left: 5px;
  background-image: url("../img/landingspage/noticed-logo.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -2px;
}
@media only screen and (max-width: 550px) {
  .Home footer .subfooter a.noticed:after {
    top: 0;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  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 {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  max-width: 100%;
}

.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;
}

.Trial {
  background: #FCFCFC;
  /*=============================================
  =               HEADER		                  =
  =============================================*/
  /*=============================================
  =               FORM		                  =
  =============================================*/
  /*=============================================
  =                  FOOTER   		          =
  =============================================*/
}
.Trial header {
  display: block;
  width: 100%;
  height: 400px;
  background-image: url("../img/landingspage/trial-header-bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  box-sizing: border-box;
}
.Trial header .container {
  max-width: 1280px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .Trial header .container {
    max-width: 90%;
  }
}
.Trial header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 400px) {
  .Trial header .navigation {
    justify-content: center;
  }
}
.Trial header .navigation ul {
  padding: 0;
  margin: 0;
}
.Trial header .navigation li {
  list-style-type: none;
  display: inline-block;
}
.Trial header .navigation li + li {
  margin-left: 30px;
}
@media only screen and (max-width: 600px) {
  .Trial header .navigation li + li {
    margin-left: 15px;
  }
}
.Trial header .navigation a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all ease-out 250ms;
}
.Trial header .navigation a.dot:hover:after {
  transform: translateY(0) scaleY(1) scaleX(1);
  transform-origin: 50% 50%;
  filter: blur(0);
  opacity: 1;
}
.Trial header .navigation a.dot:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3353F2;
  margin: 5px auto 0 auto;
  transition: all 0.4s cubic-bezier(0.5, 0.1, 0, 1);
  transform: translateY(50px) scaleY(2.5) scaleX(0.2);
  transform-origin: 50% 100%;
  filter: blur(40px);
  opacity: 0;
}
.Trial header .navigation a.login:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  height: 15px;
  width: 15px;
  background-image: url("../img/landingspage/login-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 7px;
}
.Trial header .navigation a#cta {
  background-color: #3353F2;
  padding: 15px 25px;
  border-radius: 25px;
}
.Trial header .navigation a#cta:hover {
  background-color: #253eb6;
}
.Trial header .navigation .logo {
  display: block;
  width: 97px;
  height: 35px;
  background-image: url("../img/landingspage/sheprd-logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 400px) {
  .Trial header .navigation .links {
    display: none;
  }
}
.Trial .header_content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.Trial .header_content_text {
  padding-top: 70px;
  color: white;
  max-width: 720px;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  .Trial .header_content_text h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.Trial .header_content_text p, .Trial .header_content_text a {
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #EAEAEA;
  letter-spacing: 0.25px;
  line-height: 21px;
}
@media only screen and (max-width: 550px) {
  .Trial .header_content_text p, .Trial .header_content_text a {
    font-size: 14px;
  }
}
.Trial .header_content_text a {
  color: white;
  text-decoration: none;
}
.Trial .form {
  display: block;
  width: 100%;
  position: relative;
  top: -20px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 480px) {
  .Trial .form {
    padding-bottom: 150px;
  }
}
.Trial form {
  max-width: 640px;
  margin: 0 auto;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(243, 243, 243, 0.7);
  box-shadow: 0 2px 33px 0 rgba(0, 0, 0, 0.02);
  padding: 40px 50px 0px;
  border-radius: 2px;
}
@media only screen and (max-width: 650px) {
  .Trial form {
    max-width: 90%;
    padding: 30px 40px 0;
  }
}
@media only screen and (max-width: 480px) {
  .Trial form {
    padding: 15px 20px 0;
  }
}
.Trial form > div {
  margin-top: 10px;
}
.Trial form #error {
  color: #b42020;
}
.Trial form #success {
  color: #10a600;
}
.Trial form input {
  background: #FAFAFA;
  border: 1px solid #E1E1E1;
  font-family: "Circular Std Book";
  font-size: 16px;
  color: #222222;
  letter-spacing: 0.3px;
  padding: 25px 25px 23px 50px;
  background-repeat: no-repeat;
  background-position: left 25px center;
  transition: all 0.5s ease-out;
  border-radius: 2px;
}
@media only screen and (max-width: 480px) {
  .Trial form input {
    font-size: 14px;
    padding: 20px 20px 18px 50px;
  }
}
.Trial form input[type=submit] {
  color: white;
  background-color: #3353F2;
  padding: 20px 80px 18px 80px;
  border-radius: 70px;
  display: block;
  outline: none;
  border: none;
  margin: 25px auto 0 auto;
  position: relative;
  z-index: 99;
  top: 25px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.28px;
  transition: all 0.5s ease-out;
}
.Trial form input[type=submit]:focus, .Trial form input[type=submit]:hover {
  background-color: #253eb6;
}
.Trial form input:focus, .Trial form input:active {
  border: 1px solid rgba(51, 83, 242, 0.2);
}
.Trial form input.half {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 480px) {
  .Trial form input.half {
    width: 100%;
  }
}
.Trial form input.half + .half {
  margin-left: 6px;
}
@media only screen and (max-width: 480px) {
  .Trial form input.half + .half {
    margin-top: 10px;
    margin-left: 0;
  }
}
.Trial form input.full {
  width: 100%;
}
.Trial form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #878787;
}
.Trial form input::-moz-placeholder { /* Firefox 19+ */
  color: #878787;
}
.Trial form input:-ms-input-placeholder { /* IE 10+ */
  color: #878787;
}
.Trial form input:-moz-placeholder { /* Firefox 18- */
  color: #878787;
}
.Trial form input.input-first-name, .Trial form input.input-last-name {
  background-image: url("../img/landingspage/input-name-bg.svg");
  background-size: 14px 14px;
}
.Trial form input.input-company {
  background-image: url("../img/landingspage/input-company-bg.svg");
  background-size: 14px 13px;
}
.Trial form input.input-email {
  background-image: url("../img/landingspage/input-email-bg.svg");
  background-size: 15px 11px;
}
.Trial form input.input-phone {
  background-image: url("../img/landingspage/input-phone-bg.svg");
  background-size: 15px 16px;
}
.Trial form p {
  font-size: 14px;
  color: #535353;
  letter-spacing: 0.25px;
}
.Trial form p.desc {
  font-family: "Circular Std Book";
  color: #B2B2B2;
  letter-spacing: 0.25px;
  line-height: 19px;
}
.Trial footer {
  display: block;
  background-color: #222222;
  padding: 100px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 99;
}
.Trial footer:before {
  content: "";
  display: block;
  width: 187px;
  height: 145px;
  background-image: url("../img/landingspage/trial-footer-before.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -145px;
  left: 50%;
  margin-left: -95px;
}
@media only screen and (max-width: 480px) {
  .Trial footer:before {
    width: 120px;
    height: 92px;
    top: -92px;
    margin-left: -60px;
  }
}
@media only screen and (max-width: 550px) {
  .Trial footer {
    padding: 70px 0 30px 0;
  }
}
@media only screen and (max-width: 550px) {
  .Trial footer img {
    max-width: 100px;
  }
}
.Trial footer .subfooter {
  margin: 50px auto 0 auto;
  display: flex;
  font-size: 13.5px;
  color: #6F6F6F;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 550px) {
  .Trial footer .subfooter {
    flex-direction: column;
  }
}
.Trial footer .subfooter p {
  margin: 0;
}
.Trial footer .subfooter span {
  font-size: 8px !important;
  margin: 0 8px;
}
@media only screen and (max-width: 550px) {
  .Trial footer .subfooter span {
    margin: 5px 0px;
    color: #323232;
  }
}
.Trial footer .subfooter a {
  margin: 0;
  text-decoration: none;
  color: #6F6F6F;
  position: relative;
}
.Trial footer .subfooter a.noticed:after {
  content: "";
  display: inline-block;
  height: 19px;
  width: 19px;
  margin-left: 5px;
  background-image: url("../img/landingspage/noticed-logo.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -2px;
}
@media only screen and (max-width: 550px) {
  .Trial footer .subfooter a.noticed:after {
    top: 0;
  }
}
