@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --orange: #ffa239;
  --dark-slate-grey: #2d5975;
  --steel-blue: #3b99d9;
  --steel-blue-2: #2e80b6;
  --dark-khaki: #a8d069;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --goldenrod: #e2a62b;
  --khaki: #face6a;
  --sandy-brown-2: #e4b962;
  --salmon: #fd7072;
  --indian-red: #cf404d;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray: #2d3e4f;
  --dark-slate-gray-2: #404047;
  --white-smoke-2: #f0f0f0;
  --white-smoke-3: #edeff2;
  --cadet-blue: #668cad;
  --pale-turquoise: #bfe0ff;
  --light-sky-blue: #69b9ff;
  --dodger-blue: #2e9dff;
  --black: #192024;
  --dim-gray-3: #676770;
  --light-slate-gray: #8e8e9c;
  --gainsboro: #e0e0e0;
}

body {
  color: #6a859c;
  background-color: #edeff2;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #676770;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  color: #676770;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: #676770;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

a {
  color: var(--orange);
  text-decoration: underline;
}

li {
  text-align: left;
  font-size: 14px;
}

.button {
  background-color: var(--dark-slate-grey);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: var(--orange);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button.tab {
  background-color: #92a0ad;
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover, .button.tab.w--current {
  background-color: #2e80b6;
}

.button.inleiding {
  color: #192024;
  background-color: #edeff2;
  border: 1px solid #000;
}

.button.inleiding:hover {
  color: #edeff2;
  background-color: #676770;
}

.navigation-link {
  color: #676770;
  transition: all .3s ease-in-out;
}

.navigation-link:hover {
  color: #2e9dff;
}

.navigation-bar {
  border-bottom: 10px solid var(--orange);
  background-color: #fff;
  width: 100%;
  transition: all .2s;
  display: block;
  position: static;
  inset: 0;
}

.navigation-bar:hover {
  filter: grayscale(0%);
}

.hamburger-button {
  color: var(--dark-slate-grey);
  font-size: 40px;
}

.brand-text {
  color: #69b9ff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.brand-link {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section {
  text-align: center;
  background-color: #fff;
  padding: 80px 10px;
  position: static;
}

.section.accent {
  background-color: var(--dark-slate-grey);
}

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

.section.orange.blue-kader {
  border-top: 10px #676770;
  border-bottom: 10px none var(--dark-slate-grey);
  background-color: #ffa239;
}

.section.blue {
  background-color: var(--dark-slate-grey);
}

.section.blue.orange-kader-boven {
  border-top: 10px solid var(--orange);
}

.section.orange-kader {
  border-bottom: 10px solid var(--orange);
}

.section.orange-kader-boven {
  border-top: 10px solid var(--orange);
}

.white-box {
  text-align: center;
  background-color: #fff;
  border: 1px solid #dcebf7;
  border-radius: 5px;
  padding: 15px;
}

.white-box.transparent {
  background-color: #0000;
  border-style: none;
}

.hero-section {
  padding-top: 242px;
  padding-bottom: 242px;
}

.hero-section.centered {
  opacity: 1;
  text-align: center;
  background-image: linear-gradient(#00000024, #00000024), url('../images/in2leasing-slideshow-A.jpg');
  background-position: 0 0, 78%;
  background-size: auto, auto;
  border-bottom: 4px #69b9ff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 99px;
  padding-bottom: 99px;
  display: block;
}

.hero-heading {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #000;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}

.hero-subheading {
  color: #edeff2;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #676770;
  margin-bottom: 40px;
  margin-left: 103px;
  margin-right: 103px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}

.hollow-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.hollow-button.all-caps {
  text-transform: uppercase;
}

.hollow-button.all-caps:hover {
  color: #f0f0f0;
  background-color: #9b9b9b;
  border-style: solid;
  border-color: #ecf0f1;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  direction: ltr;
  color: #676770;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.section-heading.centered.white {
  color: #fff;
}

.section-heading.centered.reviews {
  color: #edeff2;
  font-size: 24px;
}

.section-subheading.center {
  color: #8e8e9c;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.section-subheading.center.off-white {
  color: #e8e8e8;
  padding-bottom: 0;
}

.section-title-group {
  margin-bottom: 60px;
}

.section-title-group.contact {
  margin-bottom: 0;
}

.form-field {
  border: 0 solid #000;
  border-radius: 3px;
  height: 45px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px #4040474d;
}

.form-field.text-area {
  height: 110px;
}

.footer {
  background-color: #ffa239;
  border-style: none;
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  border-top: 1px solid var(--dark-slate-grey);
  background-color: var(--dark-slate-grey);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-text {
  color: #bdbdbd;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.grid-image {
  background-color: #69b9ff;
  border: 10px solid #fff;
  border-radius: 50%;
  width: 35%;
  margin: 20px auto;
  padding: 20px;
  display: block;
  box-shadow: 0 0 0 1px #2e9dff;
}

.info-icon {
  float: left;
}

.footer-link {
  color: #668cad;
  border-bottom: 1px solid #d5d5e0;
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #008cffd6;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

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

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.video {
  width: 60%;
}

.container {
  text-align: center;
  justify-content: center;
  margin-top: 47px;
  display: flex;
}

.container-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-2 {
  background-image: linear-gradient(to bottom, var(--dark-slate-grey), var(--dark-slate-grey));
  height: 7px;
}

.div-block {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 34px;
  display: flex;
}

.icon {
  position: relative;
  top: 13px;
}

.body {
  color: var(--dark-slate-grey);
  padding-top: 132px;
  font-family: Lato, sans-serif;
}

.top-bar {
  background-image: linear-gradient(to bottom, var(--orange), var(--orange));
  height: 5px;
}

.container-3 {
  z-index: 1;
  background-color: #7a7a7a00;
  border: 1px #ecf0f15e;
  border-radius: 0;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px;
  display: block;
  position: static;
  top: -2px;
  left: 0;
}

.image {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-3 {
  background-color: var(--orange);
  height: 10px;
}

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

.image-2 {
  margin-top: 46px;
}

.heading, .heading-2, .heading-3, .paragraph {
  color: #fff;
}

.paragraph.contact {
  text-align: center;
  margin-bottom: 30px;
}

.paragraph.blue {
  color: var(--dark-slate-grey);
}

.paragraph.footer-2 {
  text-align: center;
  line-height: 20px;
}

.paragraph.gray {
  color: #676770;
  text-align: center;
}

.container-4 {
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  display: block;
}

.navbar {
  border-style: none none solid;
  border-width: 1px 1px 10px;
  border-color: black black var(--orange);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.menu-button {
  padding: 8px;
  font-size: 40px;
  top: 30px;
}

.menu-button.w--open {
  background-color: var(--dark-slate-grey);
}

.nav-menu {
  background-color: var(--dark-slate-grey);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: block;
}

.nav-link {
  color: #fff;
  text-align: center;
  display: block;
}

.nav-link.w--current {
  color: #fff;
}

.paragraph-2 {
  color: #edeff2;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.paragraph-3 {
  color: #edeff2;
  padding-left: 130px;
  padding-right: 130px;
}

.slide {
  padding-top: 20px;
}

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

.heading-4 {
  color: var(--dark-slate-grey);
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 700;
}

.row.first {
  margin-bottom: 80px;
}

.heading-5 {
  color: #edeff2;
  font-family: "Fa solid 900", sans-serif;
  font-size: 60px;
}

.paragraph-4 {
  color: #edeff2;
  text-align: left;
  font-size: 24px;
}

.row-2, .row-inleiding {
  margin-bottom: 20px;
}

.container-5 {
  margin-top: 84px;
}

.container-6 {
  margin-top: 40px;
}

.heading-6 {
  color: var(--dark-slate-grey);
  text-align: right;
  font-family: "Fa solid 900", sans-serif;
}

.paragraph-5 {
  color: #676770;
  text-align: left;
  margin-top: 0;
  padding-left: 18px;
  font-size: 16px;
}

.container-7 {
  border-top: 1px solid var(--dark-slate-grey);
  margin-top: 80px;
  padding-top: 60px;
  padding-left: 0;
  padding-right: 0;
}

.paragraph-6 {
  color: #676770;
  text-align: left;
  margin-top: 0;
  font-weight: 300;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.text-block {
  color: var(--orange);
  text-align: center;
}

.heading-7 {
  color: var(--dark-slate-grey);
}

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

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

.container-8 {
  margin-top: 70px;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

@media screen and (max-width: 991px) {
  .navigation-link {
    color: #ffffff85;
  }

  .navigation-link.w--current {
    color: #fff;
  }

  .hamburger-button.w--open, .navigation-menu {
    background-color: #3b99d9;
  }

  .hero-section.centered {
    background-image: linear-gradient(#0000, #0000), url('../images/in2leasing-slideshow-A.jpg');
    background-position: 0 0, 41%;
    background-size: auto, auto;
    padding-top: 144px;
    padding-bottom: 144px;
  }

  .section-heading.centered.reviews {
    font-size: 16px;
  }

  .grid-image {
    width: 50%;
    padding: 15px;
  }

  .nav-link.w--current {
    color: #fff;
  }

  .paragraph-3 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .slide-nav {
    padding-top: 15px;
  }

  .heading-4 {
    font-size: 14px;
    font-weight: 700;
  }

  .paragraph-4 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .button.full-width {
    margin-left: auto;
    margin-right: auto;
  }

  .button.tab {
    font-size: 12px;
  }

  .white-box {
    margin-bottom: 30px;
  }

  .hero-section.centered {
    background-image: linear-gradient(#0000, #0000), url('../images/in2leasing-slideshow-A.jpg');
    background-position: 0 0, -396px;
    background-size: auto, cover;
    padding-top: 119px;
    padding-bottom: 119px;
  }

  .hero-heading {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
  }

  .hero-subheading {
    font-size: 24px;
  }

  .hollow-button.all-caps {
    margin-top: 13px;
  }

  .section-heading.centered.reviews {
    font-size: 14px;
    line-height: 30px;
  }

  .form-field.text-area {
    display: block;
  }

  .grid-image {
    width: 20%;
    padding: 20px;
  }

  .spc {
    margin-bottom: 30px;
  }

  .heading, .paragraph {
    text-align: center;
  }

  .paragraph-3 {
    font-size: 12px;
  }

  .slider {
    margin-bottom: 61px;
  }

  .heading-4 {
    font-size: 18px;
  }

  .row.first {
    margin-bottom: 0;
  }

  .column {
    margin-bottom: 20px;
  }

  .paragraph-4 {
    text-align: center;
  }

  .heading-6 {
    text-align: center;
    margin-top: 20px;
  }

  .paragraph-5, .paragraph-6 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 25px;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 10px;
  }

  .hero-section.centered {
    background-image: linear-gradient(#0000, #0000), url('../images/in2leasing-slideshow-A.jpg');
    background-position: 0 0, -280px 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-heading {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-subheading {
    margin-left: 48px;
    margin-right: 48px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 40px;
  }

  .hollow-button.all-caps {
    font-size: 12px;
  }

  .hollow-button.all-caps.w--current {
    font-size: 10px;
  }

  .section-heading.centered {
    font-size: 16px;
  }

  .section-heading.centered.bedankt {
    font-size: 24px;
  }

  .section-subheading.center {
    line-height: 30px;
  }

  .section-subheading.center.bedankt {
    font-size: 14px;
  }

  .grid-image {
    width: 35%;
  }

  .container-3 {
    padding: 0;
  }

  .div-block-2 {
    flex-direction: column;
    display: flex;
  }

  .paragraph-2 {
    margin-top: 20px;
    line-height: 15px;
  }

  .paragraph-3 {
    padding-left: 27px;
    padding-right: 27px;
    font-size: 12px;
    line-height: 15px;
  }

  .slide {
    padding-top: 2px;
  }

  .icon-2 {
    font-size: 10px;
    right: -48px;
  }

  .icon-3 {
    font-size: 10px;
    left: -47px;
  }

  .heading-6 {
    text-align: center;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}