/* ------------------------------------------------------
                    general styles
------------------------------------------------------ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fade {
  transform: translateY(40px);
  opacity: 0;
  transition-delay: 0.3s;
  transition: 0.3s ease;
}

.inView {
  transform: inherit;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.btns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.btns .btn {
  margin-right: 20px;
  margin-bottom: 20px;
}
.btns .btn:last-of-type {
  margin-right: 0px;
  margin-bottom: 0px;
}
.btns:empty {
  display: none;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 15px 50px;
  border-radius: 50px;
  transition: 0.3s ease-out;
  z-index: 2;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #ffffff;
  background-color: #000000;
}
.btn:hover {
  color: #000000;
  background-color: #ffffff;
}

.title-row {
  padding-bottom: 60px;
}
.title-row h2 {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.outline-title {
  z-index: 0;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 200px;
  -webkit-text-stroke: #404040 1px;
  line-height: 200px;
  color: transparent;
}

article {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Open Sans", sans-serif;
}
article h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 60px;
  line-height: 60px;
}
article h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 40px;
}
article h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 200;
  line-height: 30px;
}
article h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
}
article p {
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
}
article ul,
article ol {
  padding-left: 20px;
  font-size: 19px;
  font-weight: 200;
  line-height: 30px;
}
article a {
  transition: 0.2s ease;
  text-decoration: underline;
  color: #e6342b;
}
article a:hover {
  text-decoration: none;
}
article .btn {
  text-decoration: none;
}
article hr {
  margin-bottom: 40px;
  border-style: solid;
}
article blockquote {
  padding-left: 20px;
  margin-bottom: 40px;
  border-left: 1px solid #e6342b;
}

/* === header === */
header {
  position: fixed;
  top: 0px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  transition: 0.2s ease;
  z-index: 4;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto auto;
  width: 71.4285714286%;
}
header .header-inner svg {
  position: absolute;
  top: 0px;
  width: auto;
  height: 110px;
  transition: 0.2s ease;
  z-index: 2;
}
header .header-inner svg path {
  fill: #e6342b;
}
header .header-inner nav .menu {
  list-style: none;
}
header .header-inner nav .menu .menu-item {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  transition: 0.2s ease;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
}
header .header-inner nav .menu .menu-item a {
  color: #000000;
  text-decoration: none;
}
header .header-inner nav .menu .menu-item:after {
  content: "";
  display: flex;
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  transition: 0.2s ease;
  background-color: #000000;
}
header .header-inner nav .menu .menu-item:hover:after {
  width: 100%;
}
header .header-inner nav .menu .menu-item .sub-menu {
  display: none;
  position: absolute;
  left: -20px;
  top: 100%;
  padding: 20px 20px 20px 20px;
  width: max-content;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.8);
}
header .header-inner nav .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin-left: 0px;
  margin-bottom: 15px;
  width: 100%;
  text-transform: none;
  font-size: 17px;
}
header .header-inner nav .menu .menu-item .sub-menu .menu-item a {
  color: #000000;
}
header .header-inner nav .menu .menu-item .sub-menu .menu-item:after {
  background-color: #000000;
}
header .header-inner nav .menu .menu-item .sub-menu .menu-item:last-of-type {
  margin-bottom: 0px;
}
header .header-inner nav .menu .current-menu-item:after {
  width: 100%;
}
header .header-inner nav .menu .btn {
  border-color: #e6342b;
}
header .header-inner nav .menu .btn a {
  color: #e6342b;
}
header .header-inner nav .menu .btn:hover {
  background-color: #e6342b;
}
header .header-inner nav .menu .btn:hover a {
  color: #ffffff;
}
header .header-inner nav .menu .btn:hover:after {
  width: 0px;
}
header .header-inner #menu-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 4;
  display: none;
}
header .header-inner #menu-toggle span {
  display: block;
  background: #444444;
  border-radius: 5px;
  transition: 0.2s ease;
}
header .header-inner #menu-toggle #hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
}
header .header-inner #menu-toggle #hamburger span {
  width: 30px;
  height: 3px;
  position: relative;
  margin-bottom: 7px;
}
header .header-inner #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.5s;
}
header .header-inner #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.625s;
}
header .header-inner #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 0.75s;
  margin-bottom: 0px;
}
header .header-inner #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
header .header-inner #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 3px;
  position: absolute;
  top: 0%;
  left: 14px;
  transition-delay: 0s;
}
header .header-inner #menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 0%;
  top: 14px;
  transition-delay: 0.25s;
}
header .header-inner #menu-toggle.open #hamburger span {
  width: 0%;
}
header .header-inner #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
header .header-inner #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
header .header-inner #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
header .header-inner #menu-toggle.open #cross span:nth-child(1) {
  height: 30px;
  transition-delay: 0.625s;
}
header .header-inner #menu-toggle.open #cross span:nth-child(2) {
  width: 30px;
  transition-delay: 0.375s;
}

.home header {
  background-color: rgba(255, 255, 255, 0);
}
.home header .header-inner svg path {
  fill: #ffffff;
}
.home header .header-inner nav .menu .menu-item a {
  color: #ffffff;
}
.home header .header-inner nav .menu .menu-item:after {
  background-color: #ffffff;
}
.home header .header-inner #menu-toggle span {
  background-color: #ffffff;
}
.home header .header-inner #menu-toggle #cross span {
  background-color: #444444;
}

.header-sticky {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-sticky .header-inner svg {
  height: 50px;
}
.header-sticky .header-inner nav .menu .menu-item {
  font-size: 18px;
}

.home .header-sticky {
  background-color: rgb(255, 255, 255);
}
.home .header-sticky .header-inner svg path {
  fill: #e6342b;
}
.home .header-sticky .header-inner nav .menu .menu-item a {
  color: #000000;
}
.home .header-sticky .header-inner nav .menu .menu-item:after {
  background-color: #000000;
}
.home .header-sticky .header-inner #menu-toggle span {
  background-color: #000000;
}

.mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
}
.mobile-menu-wrapper nav {
  margin: auto auto;
  width: 85.7142857143%;
  font-family: "Open Sans", sans-serif;
}
.mobile-menu-wrapper nav .menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 90px;
  width: 100%;
  max-width: 400px;
  list-style: none;
}
.mobile-menu-wrapper nav .menu .menu-item-has-children {
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: 100% 2px;
}
.mobile-menu-wrapper nav .menu .menu-item {
  margin-left: 0px;
  margin-bottom: 20px;
  width: 100%;
  font-weight: 700;
}
.mobile-menu-wrapper nav .menu .menu-item a {
  color: #444444;
}
.mobile-menu-wrapper nav .menu .menu-item:hover a {
  color: #e6342b;
}
.mobile-menu-wrapper nav .menu .menu-item:after {
  display: none;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu {
  position: relative;
  top: 10px;
  padding: 10px 0px 10px 10px;
  list-style: none;
  background-color: inherit;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item {
  font-weight: 400;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item:last-of-type {
  margin-bottom: 0px;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item a {
  color: #444444;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item:hover a {
  color: #e6342b;
}
.mobile-menu-wrapper nav .menu .btn {
  width: auto;
}

.hero {
  position: relative;
  padding-top: 74px;
  max-height: 500px;
  height: 90vh;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(230, 52, 43, 0.8) 0%, rgba(174, 23, 43, 0.8) 80%, rgba(173, 23, 43, 0.8) 100%);
}
.hero .background-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center;
}
.hero .hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
  margin: auto auto;
  width: 71.4285714286%;
  height: 100%;
}
.hero .hero-inner .column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}
.hero .hero-inner .column:last-of-type {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
}
.hero .hero-inner .column:last-of-type article {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .hero-inner .column:last-of-type article h2,
.hero .hero-inner .column:last-of-type article h3,
.hero .hero-inner .column:last-of-type article h4 {
  padding: 5px 10px;
  margin-bottom: 0px;
  background-color: #b72326;
}
.hero .hero-inner .column article {
  color: #ffffff;
}
.hero .hero-inner .column article p {
  font-size: 20px;
  font-weight: 200;
}
.hero .hero-inner .column article a {
  text-decoration: none;
  color: #ffffff;
}
.hero .hero-inner .column .btns .btn {
  margin-top: 0px;
}
.hero .hero-inner .column .btns .btn:hover {
  color: #000000;
}
.hero .hero-inner .column #breadcrumbs {
  font-size: 18px;
}
.hero .hero-inner .column #breadcrumbs a {
  text-decoration: none;
  color: #ffffff;
}
.hero .hero-inner .column img {
  max-width: 100%;
}

.home .hero {
  max-height: 700px;
}
.home .hero .column:last-of-type {
  width: auto;
}

.home .hero:before,
.page-template-page-solarpanels .hero:before {
  background: linear-gradient(90deg, rgba(230, 52, 43, 0.76) 0%, rgb(230, 52, 43) 80%);
}
.home .hero .column:last-of-type,
.page-template-page-solarpanels .hero .column:last-of-type {
  justify-content: flex-end;
  align-self: flex-end;
  padding: 40px;
  height: auto;
  background-color: #ffffff;
}
.home .hero .column:last-of-type img,
.page-template-page-solarpanels .hero .column:last-of-type img {
  margin-bottom: inherit;
}

.archive .hero .hero-inner .column article .btns .btn {
  background-color: #e6342b;
}

.page-template-page-zij-instromers .hero .hero-inner .column:last-of-type {
  justify-content: flex-end;
}
.page-template-page-zij-instromers .hero .hero-inner .column:last-of-type img {
  margin-bottom: inherit;
  max-height: 90%;
}

.text-solarpanel {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 14.2857142857%;
  margin-bottom: -120px;
  padding-left: 14.2857142857%;
  background-color: #f4f4f4;
}
.text-solarpanel:after {
  width: 100%;
}
.text-solarpanel article {
  padding: 90px;
  width: 50%;
  background-color: #ffffff;
}
.text-solarpanel article .btns {
  margin-top: 20px;
}
.text-solarpanel img {
  width: 46%;
  height: auto;
}

.solarpanel-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 120px;
  padding-right: 14.2857142857%;
  padding-bottom: 120px;
  padding-left: 14.2857142857%;
  background-color: #f4f4f4;
}
.solarpanel-text:after {
  width: 100%;
}
.solarpanel-text article {
  width: 50%;
}
.solarpanel-text article ul {
  padding-left: 0px;
  list-style: none;
}
.solarpanel-text article ul li {
  position: relative;
  padding-left: 30px;
}
.solarpanel-text article ul li:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 100%;
  background-image: url("../../img/checkmark.svg");
  background-size: 20px;
  background-position: 50% 10px;
  background-repeat: no-repeat;
}
.solarpanel-text article .btns {
  margin-top: 20px;
}
.solarpanel-text img {
  width: 40%;
  height: auto;
}

.text-sidebar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 120px;
  padding-bottom: 120px;
  margin: auto auto;
  width: 71.4285714286%;
}
.text-sidebar article {
  margin-right: 40px;
  margin-bottom: 40px;
  max-width: 640px;
}
.text-sidebar aside {
  padding: 70px 50px;
  max-width: 470px;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-family: "Open Sans", sans-serif;
}
.text-sidebar aside h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 28px;
}
.text-sidebar aside h3 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 24px;
}
.text-sidebar aside h4 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 22px;
}
.text-sidebar aside p {
  font-size: 20px;
  font-weight: 300;
}
.text-sidebar aside ol,
.text-sidebar aside ul {
  list-style: none;
  font-size: 20px;
}
.text-sidebar aside ol li,
.text-sidebar aside ul li {
  position: relative;
  padding-left: 30px;
}
.text-sidebar aside ol li:before,
.text-sidebar aside ul li:before {
  content: "";
  position: absolute;
  left: 0px;
  width: 20px;
  height: 100%;
  background-image: url("../../img/checkmark.svg");
  background-size: contain;
  background-position: 0px 5px;
  background-repeat: no-repeat;
}
.text-sidebar aside .btns {
  margin-top: 40px;
}
.text-sidebar aside .btns .btn {
  background-color: #e6342b;
}
.text-sidebar aside .btns .btn:hover {
  color: #ffffff;
  background-color: #000000;
}

.home .text-sidebar article p {
  font-size: 25px;
  font-weight: 300;
}

.text {
  padding-top: 120px;
  padding-bottom: 120px;
}
.text .text-inner {
  margin: auto auto;
  width: 71.4285714286%;
}

.page-template-page-job-alert .text .text-inner article {
  max-width: 800px;
}

.image-text,
.text-image {
  display: flex;
  flex-direction: row;
  position: relative;
}
.image-text .image-wrapper,
.text-image .image-wrapper {
  position: relative;
  align-self: stretch;
  height: auto;
  width: 50%;
}
.image-text .image-wrapper img,
.text-image .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-text .content,
.text-image .content {
  padding: 100px 80px;
  width: 50%;
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.image-text .content article,
.text-image .content article {
  max-width: 700px;
  color: #ffffff;
}
.image-text .content article .btn,
.text-image .content article .btn {
  margin-top: 40px;
}
.image-text .outline-title,
.text-image .outline-title {
  position: absolute;
  right: 0px;
  bottom: -30px;
  -webkit-text-stroke: 1px #ffffff;
}

.image-text .image-wrapper .partner {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 200px;
  height: auto;
}

.text-video {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  margin: auto auto;
}
.text-video .video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  align-self: stretch;
  margin-right: 14.2857142857%;
  height: auto;
  width: 35.7142857143%;
}
.text-video .video-wrapper iframe {
  width: 100%;
  max-height: 400px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.text-video .video-wrapper .btn {
  color: #000000;
  background-color: #ffcc00;
}
.text-video .content {
  margin-left: 14.2857142857%;
  width: 35.7142857143%;
}
.text-video .content article {
  max-width: 700px;
}
.text-video .content article .btn {
  margin-top: 40px;
}
.text-video .outline-title {
  position: absolute;
  right: 0px;
  bottom: -30px;
  -webkit-text-stroke: 1px #ffffff;
}

.quote {
  padding-top: 400px;
  margin-top: -400px;
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.quote blockquote {
  margin: auto auto;
  width: 57.1428571429%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 200;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .quote blockquote {
    font-size: 25px;
  }
}

.video-video {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.video-video .video-video-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: auto auto;
  width: 71.4285714286%;
}
.video-video .video-video-inner .col {
  position: relative;
  width: 50%;
}
.video-video .video-video-inner .col h4 {
  position: absolute;
  left: 50%;
  padding: 12px 50px;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.video-video .video-video-inner .col:first-of-type h4 {
  color: #000000;
  background-color: #ffcc00;
}
.video-video .video-video-inner .col:last-of-type h4 {
  color: #ffcc00;
  background-color: #000000;
}
.video-video .video-video-inner .col iframe {
  width: 100%;
  max-height: 400px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.video-video .btns {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  margin: auto auto;
  width: 71.4285714286%;
}

.page-template-page-about .image-text:nth-child(2), .page-template-page-about .image-text:nth-child(3),
.page-template-page-about .text-image:nth-child(2),
.page-template-page-about .text-image:nth-child(3) {
  padding-top: 100px;
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
}
.page-template-page-about .image-text:nth-child(2):nth-child(3), .page-template-page-about .image-text:nth-child(3):nth-child(3),
.page-template-page-about .text-image:nth-child(2):nth-child(3),
.page-template-page-about .text-image:nth-child(3):nth-child(3) {
  background-color: #f4f4f4;
}
.page-template-page-about .image-text:nth-child(2) .image-wrapper, .page-template-page-about .image-text:nth-child(3) .image-wrapper,
.page-template-page-about .text-image:nth-child(2) .image-wrapper,
.page-template-page-about .text-image:nth-child(3) .image-wrapper {
  width: 35.7142857143%;
}
.page-template-page-about .image-text:nth-child(2) .image-wrapper .partner, .page-template-page-about .image-text:nth-child(3) .image-wrapper .partner,
.page-template-page-about .text-image:nth-child(2) .image-wrapper .partner,
.page-template-page-about .text-image:nth-child(3) .image-wrapper .partner {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 200px;
  height: auto;
}
.page-template-page-about .image-text:nth-child(2) .content, .page-template-page-about .image-text:nth-child(3) .content,
.page-template-page-about .text-image:nth-child(2) .content,
.page-template-page-about .text-image:nth-child(3) .content {
  width: 35.7142857143%;
  background: inherit;
}
.page-template-page-about .image-text:nth-child(2) .content article, .page-template-page-about .image-text:nth-child(3) .content article,
.page-template-page-about .text-image:nth-child(2) .content article,
.page-template-page-about .text-image:nth-child(3) .content article {
  color: #000000;
}
.page-template-page-about .image-text:nth-child(2) .content article .btns .btn, .page-template-page-about .image-text:nth-child(3) .content article .btns .btn,
.page-template-page-about .text-image:nth-child(2) .content article .btns .btn,
.page-template-page-about .text-image:nth-child(3) .content article .btns .btn {
  background-color: #e6342b;
}
.page-template-page-about .image-text:nth-child(2) .content article .btns .btn:hover, .page-template-page-about .image-text:nth-child(3) .content article .btns .btn:hover,
.page-template-page-about .text-image:nth-child(2) .content article .btns .btn:hover,
.page-template-page-about .text-image:nth-child(3) .content article .btns .btn:hover {
  color: #ffffff;
  background-color: #000000;
}
.page-template-page-about .image-text:nth-child(5),
.page-template-page-about .text-image:nth-child(5) {
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.page-template-page-about .image-text:nth-child(5) .outline-title,
.page-template-page-about .text-image:nth-child(5) .outline-title {
  top: -40px;
  right: inherit;
  bottom: inherit;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.page-template-page-about .image-text:nth-child(5) .content,
.page-template-page-about .text-image:nth-child(5) .content {
  padding-top: 200px;
  background: none;
}
.page-template-page-about .image-text:nth-child(5) .content article,
.page-template-page-about .text-image:nth-child(5) .content article {
  max-width: 500px;
}
.page-template-page-about .image-text .content {
  padding-right: 0px;
}
.page-template-page-about .text-image .content {
  padding-left: 0px;
}

.text-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.text-slider .content {
  position: relative;
  z-index: 2;
  width: 42.8571428571%;
}
.text-slider .content article {
  padding: 100px 80px 100px 0px;
}
.text-slider .slider-wrapper {
  position: relative;
  width: 28.5714285714%;
}
.text-slider .slider-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.text-slider .slider-wrapper .swiper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.text-slider .slider-wrapper .swiper:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -200%;
  width: 200%;
  height: 100%;
  z-index: 2;
  background-color: #ffffff;
}
.text-slider .slider-wrapper .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.text-slider .slider-wrapper .swiper .swiper-wrapper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  opacity: 1;
  background: linear-gradient(180deg, rgba(230, 52, 43, 0.8) 0%, rgba(174, 23, 43, 0.8) 80%, rgba(173, 23, 43, 0.8) 100%);
}
.text-slider .slider-wrapper .swiper .swiper-wrapper .swiper-slide-active:after {
  opacity: 0;
}
.text-slider .slider-wrapper .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.text-slider .slider-wrapper .swiper-button-prev img {
  width: 15px;
}
.text-slider .slider-wrapper .swiper-button-prev:after {
  display: none;
}
.text-slider .slider-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.text-slider .slider-wrapper .swiper-button-next img {
  width: 15px;
}
.text-slider .slider-wrapper .swiper-button-next:after {
  display: none;
}

.werkgebieden {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  padding-bottom: 120px;
  margin: auto auto;
  width: 71.4285714286%;
}
.werkgebieden .post {
  position: relative;
  height: 300px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.werkgebieden .post img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.werkgebieden .post .post-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 50px;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(230, 52, 43, 0.8) 0%, rgba(174, 23, 43, 0.8) 80%, rgba(173, 23, 43, 0.8) 100%);
}
.werkgebieden .post .post-inner h3 {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 700;
}
.werkgebieden .post .post-inner p {
  text-decoration: underline;
  font-size: 20px;
  font-weight: 400;
}

.vacatures {
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  background-color: #ebebeb;
}
.vacatures:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40%;
  z-index: 0;
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.vacatures .title-row {
  margin: auto auto;
  width: 71.4285714286%;
  text-align: center;
}
.vacatures .post-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  position: relative;
  margin: auto auto;
  z-index: 1;
  width: 71.4285714286%;
}
.vacatures .post-wrapper .post {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.vacatures .post-wrapper .post .wp-post-image {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.vacatures .post-wrapper .post .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 40px;
  height: 300px;
  font-family: "Open Sans", sans-serif;
}
.vacatures .post-wrapper .post .description .title p {
  display: inline-block;
  margin-right: 20px;
  color: #e6342b;
  font-size: 22px;
}
.vacatures .post-wrapper .post .description .title h3 {
  margin-top: 5px;
  font-size: 28px;
}
.vacatures .post-wrapper .post .description .btn {
  align-self: flex-start;
  margin-top: 40px;
  background-color: #e6342b;
}
.vacatures .post-wrapper .post .description .btn:hover {
  color: #ffffff;
  background-color: #000000;
}

.cta {
  position: relative;
  padding-top: 120px;
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.cta .cta-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: auto auto;
  width: 71.4285714286%;
  z-index: 1;
}
.cta .cta-inner article {
  align-self: center;
  width: 50%;
  color: #ffffff;
}
.cta .cta-inner img {
  align-self: flex-end;
  width: 50%;
  height: auto;
}
.cta .outline-title {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
  -webkit-text-stroke: #404040 1px;
}

.page-template-page-about .cta {
  margin-top: inherit;
}
.page-template-page-about .video-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.page-template-page-about .video-popup .background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(230, 52, 43, 0.9) 0%, rgb(174, 23, 43) 80%, rgba(173, 23, 43, 0.9) 100%);
}
.page-template-page-about .video-popup iframe {
  z-index: 4;
}
.page-template-page-about .video-popup-open {
  display: flex;
}

.post-type-archive-collega .image-text:nth-child(1n) {
  flex-direction: row-reverse;
}
.post-type-archive-collega .image-text:nth-child(1n) .content {
  background: linear-gradient(90deg, rgb(230, 52, 43) 0%, rgb(174, 23, 43) 80%, rgb(173, 23, 43) 100%);
}
.post-type-archive-collega .image-text:nth-child(1n) .content article {
  color: #ffffff;
}
.post-type-archive-collega .image-text:nth-child(2n) {
  flex-direction: row;
}
.post-type-archive-collega .image-text:nth-child(2n) .content {
  background: #ffffff;
}
.post-type-archive-collega .image-text:nth-child(2n) .content article {
  color: #000000;
}

.archive .filter-wrapper,
.category .filter-wrapper,
.search .filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 120px;
  margin: auto auto;
  width: 71.4285714286%;
  font-family: "Open Sans", sans-serif;
}
.archive .filter-wrapper .filter,
.category .filter-wrapper .filter,
.search .filter-wrapper .filter {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.archive .filter-wrapper .filter p,
.category .filter-wrapper .filter p,
.search .filter-wrapper .filter p {
  margin-right: 40px;
  font-size: 20px;
  font-weight: 700;
}
.archive .filter-wrapper .filter .menu,
.category .filter-wrapper .filter .menu,
.search .filter-wrapper .filter .menu {
  display: flex;
  gap: 50px;
  list-style: none;
}
.archive .filter-wrapper .filter .menu .menu-item,
.category .filter-wrapper .filter .menu .menu-item,
.search .filter-wrapper .filter .menu .menu-item {
  font-size: 20px;
}
.archive .filter-wrapper .filter .menu .menu-item a,
.category .filter-wrapper .filter .menu .menu-item a,
.search .filter-wrapper .filter .menu .menu-item a {
  display: flex;
  align-items: center;
}
.archive .filter-wrapper .filter .menu .menu-item a:before,
.category .filter-wrapper .filter .menu .menu-item a:before,
.search .filter-wrapper .filter .menu .menu-item a:before {
  content: "";
  margin-right: 20px;
  border: 10px solid #f4f4f4;
  width: 20px;
  height: 20px;
  transition: 0.2s ease;
  background-color: #f4f4f4;
}
.archive .filter-wrapper .filter .menu .menu-item:hover a:before,
.category .filter-wrapper .filter .menu .menu-item:hover a:before,
.search .filter-wrapper .filter .menu .menu-item:hover a:before {
  background-color: #e6342b;
}
.archive .filter-wrapper .filter .menu .current-menu-item a:before,
.category .filter-wrapper .filter .menu .current-menu-item a:before,
.search .filter-wrapper .filter .menu .current-menu-item a:before {
  border: 10px solid #f4f4f4;
  background-color: #e6342b;
}
.archive .filter-wrapper form,
.category .filter-wrapper form,
.search .filter-wrapper form {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 50px;
  background-color: #f4f4f4;
}
.archive .filter-wrapper form label,
.category .filter-wrapper form label,
.search .filter-wrapper form label {
  display: inherit;
}
.archive .filter-wrapper form input,
.category .filter-wrapper form input,
.search .filter-wrapper form input {
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
  height: 100%;
  border: none;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  background-color: transparent;
}
.archive .filter-wrapper form input:focus,
.category .filter-wrapper form input:focus,
.search .filter-wrapper form input:focus {
  outline: none;
}
.archive .filter-wrapper form input[type=submit],
.category .filter-wrapper form input[type=submit],
.search .filter-wrapper form input[type=submit] {
  display: none;
}
.archive .post-wrapper,
.category .post-wrapper,
.search .post-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
  margin: auto auto;
  z-index: 1;
  width: 71.4285714286%;
}
.archive .post-wrapper .post,
.category .post-wrapper .post,
.search .post-wrapper .post {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.archive .post-wrapper .post .wp-post-image,
.category .post-wrapper .post .wp-post-image,
.search .post-wrapper .post .wp-post-image {
  height: 240px;
  width: 100%;
  transition: 0.2s ease;
  object-fit: cover;
  object-position: center;
}
.archive .post-wrapper .post .description,
.category .post-wrapper .post .description,
.search .post-wrapper .post .description {
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex-direction: column;
  padding: 50px 40px;
  height: 200px;
  font-family: "Open Sans", sans-serif;
}
.archive .post-wrapper .post .description .title p,
.category .post-wrapper .post .description .title p,
.search .post-wrapper .post .description .title p {
  display: inline-block;
  margin-right: 20px;
  transition: 0.2s ease;
  color: #e6342b;
  font-size: 22px;
}
.archive .post-wrapper .post .description .title h3,
.category .post-wrapper .post .description .title h3,
.search .post-wrapper .post .description .title h3 {
  margin-top: 5px;
  transition: 0.2s ease;
  font-size: 28px;
}
.archive .post-wrapper .post .description .btn,
.category .post-wrapper .post .description .btn,
.search .post-wrapper .post .description .btn {
  align-self: flex-start;
  margin-top: 40px;
  background-color: #e6342b;
}
.archive .post-wrapper .post .description .btn:hover,
.category .post-wrapper .post .description .btn:hover,
.search .post-wrapper .post .description .btn:hover {
  color: #ffffff;
  background-color: #000000;
}
.archive .post-wrapper .post:hover .title,
.category .post-wrapper .post:hover .title,
.search .post-wrapper .post:hover .title {
  color: #e6342b;
}

.single-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 20px;
  padding-top: 120px;
  padding-bottom: 120px;
  margin: auto auto;
  width: 71.4285714286%;
}
.single-content .single-content-inner {
  max-width: 700px;
  width: 70%;
}
.single-content .single-content-inner .flexible {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.single-content .single-content-inner .flexible .text {
  padding-top: 0px;
  padding-bottom: 10px;
}
.single-content .single-content-inner .flexible .text .text-inner {
  margin: inherit;
  width: inherit;
}
.single-content .single-content-inner .flexible .text .text-inner article {
  max-width: 800px;
}
.single-content .single-content-inner .flexible .image img {
  max-width: 800px;
  width: 100%;
}
.single-content aside {
  position: sticky;
  top: 40px;
  max-width: 480px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
}
.single-content aside .card {
  padding: 70px 60px;
  margin-bottom: 80px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.single-content aside .card p {
  font-size: 22px;
  font-weight: 300;
  color: #e6342b;
}
.single-content aside .card h3 {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
}
.single-content aside .card ul {
  font-size: 20px;
  list-style: none;
}
.single-content aside .card ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
  font-weight: 400;
  color: #000000;
}
.single-content aside .card ul li span {
  display: inline-block;
  width: 50%;
  font-weight: 700;
  color: #e6342b;
}
.single-content aside .card .btn {
  margin-top: 40px;
  background-color: #e6342b;
}
.single-content aside .contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-content aside .contact img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}
.single-content aside .contact .content h4 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #ad172b;
}
.single-content aside .contact .content p {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}
.single-content aside .contact .content a {
  text-decoration: underline;
  font-size: 20px;
  color: #e6342b;
}
.single-content aside .contact .content .icon {
  margin-right: 5px;
  width: 20px;
  height: auto;
  border-radius: 0px;
}

.collega-template-default aside .card h4 {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
  font-size: 24px;
}
.collega-template-default aside .card h4:last-of-type {
  margin-bottom: 0px;
}

.text-locations {
  padding-top: 120px;
  padding-bottom: 120px;
}
.text-locations .text-locations-inner {
  display: flex;
  gap: 50px;
  margin: auto auto;
  width: 71.4285714286%;
}
.text-locations .text-locations-inner .content {
  width: 50%;
}
.text-locations .text-locations-inner article {
  max-width: 800px;
}
.text-locations .text-locations-inner .locations {
  width: 50%;
}
.text-locations .text-locations-inner .locations .contact {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
  width: 100%;
}
.text-locations .text-locations-inner .locations .contact img {
  margin-right: 20px;
  margin-bottom: 10px;
  max-height: 100px;
}

.text-form,
.form-image {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ebebeb;
}
.text-form .text-form-inner,
.text-form .form-image-inner,
.form-image .text-form-inner,
.form-image .form-image-inner {
  display: flex;
  justify-content: space-between;
  margin: auto auto;
  width: 71.4285714286%;
}
.text-form .text-form-inner .content,
.text-form .form-image-inner .content,
.form-image .text-form-inner .content,
.form-image .form-image-inner .content {
  position: relative;
  width: 50%;
}
.text-form .text-form-inner .content article h3,
.text-form .form-image-inner .content article h3,
.form-image .text-form-inner .content article h3,
.form-image .form-image-inner .content article h3 {
  color: #ad172b;
}
.text-form .text-form-inner .content .cta-wrapper,
.text-form .form-image-inner .content .cta-wrapper,
.form-image .text-form-inner .content .cta-wrapper,
.form-image .form-image-inner .content .cta-wrapper {
  position: absolute;
  top: 100px;
  right: 10%;
}
.text-form .text-form-inner .content .cta-wrapper .cta-cirkle,
.text-form .form-image-inner .content .cta-wrapper .cta-cirkle,
.form-image .text-form-inner .content .cta-wrapper .cta-cirkle,
.form-image .form-image-inner .content .cta-wrapper .cta-cirkle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  background-color: #e6342b;
}
.text-form .text-form-inner .content .cta-wrapper .cta-cirkle h4,
.text-form .form-image-inner .content .cta-wrapper .cta-cirkle h4,
.form-image .text-form-inner .content .cta-wrapper .cta-cirkle h4,
.form-image .form-image-inner .content .cta-wrapper .cta-cirkle h4 {
  font-size: 25px;
  color: #ffffff;
}
.text-form .text-form-inner .content .cta-wrapper .cta-cirkle p,
.text-form .form-image-inner .content .cta-wrapper .cta-cirkle p,
.form-image .text-form-inner .content .cta-wrapper .cta-cirkle p,
.form-image .form-image-inner .content .cta-wrapper .cta-cirkle p {
  font-size: 20px;
  color: #ffffff;
}
.text-form .text-form-inner .content .cta-wrapper img,
.text-form .form-image-inner .content .cta-wrapper img,
.form-image .text-form-inner .content .cta-wrapper img,
.form-image .form-image-inner .content .cta-wrapper img {
  position: absolute;
  right: -40px;
  bottom: 20px;
}
.text-form .text-form-inner .content .share,
.text-form .form-image-inner .content .share,
.form-image .text-form-inner .content .share,
.form-image .form-image-inner .content .share {
  margin-top: 20px;
}
.text-form .text-form-inner .content .share p,
.text-form .form-image-inner .content .share p,
.form-image .text-form-inner .content .share p,
.form-image .form-image-inner .content .share p {
  font-weight: 700;
}
.text-form .text-form-inner .content .share .icons,
.text-form .form-image-inner .content .share .icons,
.form-image .text-form-inner .content .share .icons,
.form-image .form-image-inner .content .share .icons {
  margin-top: 10px;
}
.text-form .text-form-inner .content .share .icons img,
.text-form .form-image-inner .content .share .icons img,
.form-image .text-form-inner .content .share .icons img,
.form-image .form-image-inner .content .share .icons img {
  display: inline-block;
  margin-right: 20px;
  max-height: 20px;
  max-width: 20px;
}
.text-form .text-form-inner .form-wrapper,
.text-form .form-image-inner .form-wrapper,
.form-image .text-form-inner .form-wrapper,
.form-image .form-image-inner .form-wrapper {
  width: 50%;
}
.text-form .text-form-inner .image-wrapper,
.text-form .form-image-inner .image-wrapper,
.form-image .text-form-inner .image-wrapper,
.form-image .form-image-inner .image-wrapper {
  position: relative;
  align-self: stretch;
  height: auto;
  max-width: 500px;
  width: 50%;
}
.text-form .text-form-inner .image-wrapper:before,
.text-form .form-image-inner .image-wrapper:before,
.form-image .text-form-inner .image-wrapper:before,
.form-image .form-image-inner .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.text-form .text-form-inner .image-wrapper img,
.text-form .form-image-inner .image-wrapper img,
.form-image .text-form-inner .image-wrapper img,
.form-image .form-image-inner .image-wrapper img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.text-form .form-image-inner,
.form-image .form-image-inner {
  align-items: center;
  gap: 50px;
}

.nf-form-cont {
  font-family: "Open Sans", sans-serif;
}
.nf-form-cont h3 {
  margin-bottom: 30px;
  font-size: 40px;
  color: #e6342b;
}
.nf-form-cont .nf-before-form-content {
  display: none;
}
.nf-form-cont .nf-form-wrap form .nf-form-content {
  padding: 0px;
}
.nf-form-cont .nf-form-wrap form .nf-form-content input,
.nf-form-cont .nf-form-wrap form .nf-form-content textarea,
.nf-form-cont .nf-form-wrap form .nf-form-content select {
  padding: 10px 20px;
  border: none;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
}
.nf-form-cont .nf-form-wrap form .nf-form-content .list-select-wrap select {
  background: #ffffff url("../../img/arrow-down-red.svg") calc(100% - 10px) 50%/15px no-repeat;
}
.nf-form-cont .nf-form-wrap form .nf-form-content .list-select-wrap .nf-field-element > div {
  display: none;
}
.nf-form-cont .nf-form-wrap form .nf-field-container {
  margin-bottom: 10px;
}
.nf-form-cont .nf-form-wrap form label {
  font-size: 20px;
}
.nf-form-cont .nf-form-wrap form .checkbox-wrap .nf-field-label {
  min-height: 30px;
}
.nf-form-cont .nf-form-wrap form .checkbox-wrap .nf-field-label label {
  margin-left: 40px;
  font-weight: 400;
}
.nf-form-cont .nf-form-wrap form .checkbox-wrap .nf-field-label label:before {
  content: "";
  top: 5px;
  left: -35px;
  border: none;
  width: 20px;
  height: 20px;
  background-color: #e6342b;
}
.nf-form-cont .nf-form-wrap form .checkbox-wrap .nf-field-label label:after {
  top: 0px;
  left: -40px;
  border: none;
  width: 30px;
  height: 30px;
  background-color: #f4f4f4;
}
.nf-form-cont .nf-form-wrap form input[type=button] {
  display: inline-block;
  position: relative;
  padding: 15px 50px;
  margin-top: 30px;
  border-radius: 50px;
  height: auto;
  transition: 0.3s ease-out;
  z-index: 2;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #ffffff;
  background-color: #e6342b;
}
.nf-form-cont .nf-form-wrap form input[type=button]:hover {
  background-color: #000000;
}

footer {
  padding-top: 90px;
  padding-bottom: 200px;
  font-family: "Open Sans", sans-serif;
  background-color: #000000;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
  margin: auto auto;
  width: 71.4285714286%;
}
footer .footer-inner .footer-item {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
footer .footer-inner .footer-item:last-of-type {
  grid-column: span 2;
}
footer .footer-inner .footer-item img {
  margin-top: -90px;
  height: 120px;
  width: auto;
}
footer .footer-inner .footer-item p {
  margin-bottom: 30px;
}
footer .footer-inner .footer-item p:last-of-type {
  margin-bottom: 0px;
}
footer .footer-inner .footer-item ul,
footer .footer-inner .footer-item ol {
  list-style: none;
}
footer .footer-inner .footer-item ul li,
footer .footer-inner .footer-item ol li {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1699px) {
  .vacatures .post-wrapper {
    width: 85.7142857143%;
  }
  .vacatures .post-wrapper .post .description {
    padding: 20px 30px;
  }
  .single-content .single-content-inner {
    width: 50%;
  }
}
@media only screen and (max-width: 1599px) {
  .vacatures .post-wrapper {
    width: 85.7142857143%;
  }
  .vacatures .post-wrapper .post .description {
    padding: 20px 30px;
  }
  .post-type-archive-vacature .filter-wrapper .filter,
  .category .filter-wrapper .filter {
    align-items: flex-start;
    flex-direction: column;
  }
  .post-type-archive-vacature .filter-wrapper .filter p,
  .category .filter-wrapper .filter p {
    margin-bottom: 20px;
  }
  .post-type-archive-vacature .filter-wrapper .filter .menu,
  .category .filter-wrapper .filter .menu {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .post-type-archive-vacature .post-wrapper,
  .category .post-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-type-archive-vacature .post-wrapper .post .description,
  .category .post-wrapper .post .description {
    padding: 20px 30px;
    height: auto;
  }
}
@media only screen and (max-width: 1499px) {
  .text-form .text-form-inner .content .cta-wrapper,
  .text-form .form-image-inner .content .cta-wrapper,
  .form-image .text-form-inner .content .cta-wrapper,
  .form-image .form-image-inner .content .cta-wrapper {
    top: 200px;
    right: 20%;
  }
}
@media only screen and (max-width: 1399px) {
  .single-content .single-content-inner {
    width: 100%;
  }
  .single-content aside {
    margin-top: 40px;
  }
  .single-content aside .card {
    padding: 20px;
  }
}
@media only screen and (max-width: 1299px) {
  header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  header .header-inner svg {
    height: 80px;
  }
  header .header-inner nav {
    display: none;
  }
  header .header-inner #menu-toggle {
    display: block;
  }
  .vacatures .post-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer-inner .footer-item:first-of-type {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 1099px) {
  .outline-title {
    z-index: 0;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 200px;
    -webkit-text-stroke: #404040 1px;
    line-height: 200px;
    color: transparent;
  }
  .btn {
    font-size: 18px;
  }
  article {
    font-family: "Open Sans", sans-serif;
  }
  article h1 {
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    line-height: 40px;
  }
  article h2 {
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    line-height: 35px;
  }
  article h3 {
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 30px;
  }
  article h4 {
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 30px;
  }
  article p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 200;
    line-height: 30px;
  }
  article p:last-of-type {
    margin-bottom: 0px;
  }
  article ul,
  article ol {
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
  }
  article a {
    transition: 0.2s ease;
    text-decoration: underline;
    color: #e6342b;
  }
  article a:hover {
    text-decoration: none;
  }
  article .btn {
    text-decoration: none;
  }
  article hr {
    margin-bottom: 40px;
    border-style: solid;
  }
  article blockquote {
    margin-bottom: 40px;
  }
  .nf-form-cont h3 {
    font-size: 30px;
  }
  .nf-form-cont .nf-form-wrap form label {
    font-size: 18px;
  }
  .nf-form-cont .nf-form-wrap form input {
    font-size: 18px;
  }
  .hero .hero-inner .column article h1 {
    margin-bottom: 0px;
  }
  .home .hero .hero-inner .column article p {
    font-size: 20px;
  }
  .home .text-sidebar article {
    margin-right: 0px;
  }
  .home .text-sidebar article p {
    font-size: 20px;
  }
  .outline-title {
    font-size: 80px;
    line-height: 100px;
  }
  .image-text,
  .text-image {
    flex-direction: column;
  }
  .image-text .image-wrapper,
  .text-image .image-wrapper {
    width: 100%;
    height: auto;
  }
  .image-text .image-wrapper:before,
  .text-image .image-wrapper:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .image-text .image-wrapper img,
  .text-image .image-wrapper img {
    top: 0px;
  }
  .image-text .content,
  .text-image .content {
    padding: 80px 0px;
    width: 100%;
  }
  .image-text .content article,
  .text-image .content article {
    margin: auto auto;
    width: 85.7142857143%;
  }
  .text-video {
    flex-direction: column;
  }
  .text-video .content {
    margin: auto auto;
    width: 85.7142857143%;
  }
  .text-video .video-wrapper {
    margin: auto auto;
    width: 85.7142857143%;
  }
  .text-video .video-wrapper iframe {
    max-width: inherit;
  }
  .video-video .video-video-inner {
    flex-direction: column;
    gap: 80px;
    width: 85.7142857143%;
  }
  .video-video .video-video-inner .col {
    width: 100%;
  }
  .video-video .video-video-inner .col h4 {
    padding: 12px 20px;
    font-size: 20px;
  }
  .video-video .btns {
    width: 85.7142857143%;
  }
  .post-type-archive-collega .image-text:nth-child(2), .post-type-archive-collega .image-text:nth-child(3),
  .post-type-archive-collega .text-image:nth-child(2),
  .post-type-archive-collega .text-image:nth-child(3),
  .page-template-page-about .image-text:nth-child(2),
  .page-template-page-about .image-text:nth-child(3),
  .page-template-page-about .text-image:nth-child(2),
  .page-template-page-about .text-image:nth-child(3) {
    flex-direction: column;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .post-type-archive-collega .image-text:nth-child(2) .image-wrapper, .post-type-archive-collega .image-text:nth-child(3) .image-wrapper,
  .post-type-archive-collega .text-image:nth-child(2) .image-wrapper,
  .post-type-archive-collega .text-image:nth-child(3) .image-wrapper,
  .page-template-page-about .image-text:nth-child(2) .image-wrapper,
  .page-template-page-about .image-text:nth-child(3) .image-wrapper,
  .page-template-page-about .text-image:nth-child(2) .image-wrapper,
  .page-template-page-about .text-image:nth-child(3) .image-wrapper {
    height: auto;
    width: 100%;
  }
  .post-type-archive-collega .image-text:nth-child(2) .image-wrapper:before, .post-type-archive-collega .image-text:nth-child(3) .image-wrapper:before,
  .post-type-archive-collega .text-image:nth-child(2) .image-wrapper:before,
  .post-type-archive-collega .text-image:nth-child(3) .image-wrapper:before,
  .page-template-page-about .image-text:nth-child(2) .image-wrapper:before,
  .page-template-page-about .image-text:nth-child(3) .image-wrapper:before,
  .page-template-page-about .text-image:nth-child(2) .image-wrapper:before,
  .page-template-page-about .text-image:nth-child(3) .image-wrapper:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .post-type-archive-collega .image-text:nth-child(2) .image-wrapper img, .post-type-archive-collega .image-text:nth-child(3) .image-wrapper img,
  .post-type-archive-collega .text-image:nth-child(2) .image-wrapper img,
  .post-type-archive-collega .text-image:nth-child(3) .image-wrapper img,
  .page-template-page-about .image-text:nth-child(2) .image-wrapper img,
  .page-template-page-about .image-text:nth-child(3) .image-wrapper img,
  .page-template-page-about .text-image:nth-child(2) .image-wrapper img,
  .page-template-page-about .text-image:nth-child(3) .image-wrapper img {
    top: 0px;
  }
  .post-type-archive-collega .image-text:nth-child(2) .content, .post-type-archive-collega .image-text:nth-child(3) .content,
  .post-type-archive-collega .text-image:nth-child(2) .content,
  .post-type-archive-collega .text-image:nth-child(3) .content,
  .page-template-page-about .image-text:nth-child(2) .content,
  .page-template-page-about .image-text:nth-child(3) .content,
  .page-template-page-about .text-image:nth-child(2) .content,
  .page-template-page-about .text-image:nth-child(3) .content {
    padding: 80px 0px;
    width: 100%;
  }
  .post-type-archive-collega .image-text:nth-child(2) .content article, .post-type-archive-collega .image-text:nth-child(3) .content article,
  .post-type-archive-collega .text-image:nth-child(2) .content article,
  .post-type-archive-collega .text-image:nth-child(3) .content article,
  .page-template-page-about .image-text:nth-child(2) .content article,
  .page-template-page-about .image-text:nth-child(3) .content article,
  .page-template-page-about .text-image:nth-child(2) .content article,
  .page-template-page-about .text-image:nth-child(3) .content article {
    margin: auto auto;
    max-width: inherit;
    width: 85.7142857143%;
  }
  .post-type-archive-collega .image-text:nth-child(5) .content,
  .post-type-archive-collega .text-image:nth-child(5) .content,
  .page-template-page-about .image-text:nth-child(5) .content,
  .page-template-page-about .text-image:nth-child(5) .content {
    padding: 80px 0px;
  }
  .post-type-archive-collega .image-text:nth-child(5) .content article,
  .post-type-archive-collega .text-image:nth-child(5) .content article,
  .page-template-page-about .image-text:nth-child(5) .content article,
  .page-template-page-about .text-image:nth-child(5) .content article {
    margin: auto auto;
    max-width: inherit;
    width: 85.7142857143%;
  }
  .post-type-archive-collega .image-text:nth-child(1n),
  .post-type-archive-collega .text-image:nth-child(1n),
  .page-template-page-about .image-text:nth-child(1n),
  .page-template-page-about .text-image:nth-child(1n) {
    flex-direction: column;
  }
  .post-type-archive-collega .image-text:nth-child(2n),
  .post-type-archive-collega .text-image:nth-child(2n),
  .page-template-page-about .image-text:nth-child(2n),
  .page-template-page-about .text-image:nth-child(2n) {
    flex-direction: column;
  }
  .post-type-archive-collega .image-text:nth-child(3n),
  .post-type-archive-collega .text-image:nth-child(3n),
  .page-template-page-about .image-text:nth-child(3n),
  .page-template-page-about .text-image:nth-child(3n) {
    flex-direction: column;
  }
  .text-slider {
    flex-direction: column;
    padding-top: 0px;
  }
  .text-slider .content {
    width: 100%;
  }
  .text-slider .content article {
    padding: 20px 0px;
    margin: auto auto;
    width: 85.7142857143%;
  }
  .text-slider .slider-wrapper {
    width: 85.7142857143%;
  }
  .text-form .form-image-inner,
  .form-image .form-image-inner {
    flex-direction: column;
  }
  .text-form .form-image-inner .form-wrapper,
  .form-image .form-image-inner .form-wrapper {
    width: 100%;
  }
  .text-form .form-image-inner .image-wrapper,
  .form-image .form-image-inner .image-wrapper {
    width: 100%;
  }
  .cta .cta-inner article {
    padding-bottom: 40px;
  }
  .text-solarpanel,
  .solarpanel-text {
    align-items: center;
    flex-direction: column;
    padding-right: 7.1428571429%;
    padding-left: 7.1428571429%;
  }
  .text-solarpanel article,
  .solarpanel-text article {
    padding: 40px;
    width: 100%;
  }
  .text-solarpanel img,
  .solarpanel-text img {
    max-width: 600px;
    width: 100%;
  }
  .quote blockquote {
    width: 71.4285714286%;
  }
}
@media only screen and (max-width: 999px) {
  header .header-inner {
    width: 85.7142857143%;
  }
  .hero .hero-inner {
    width: 85.7142857143%;
  }
  .text-sidebar {
    width: 85.7142857143%;
  }
  .text .text-inner,
  .text-locations .text-inner {
    width: 85.7142857143%;
  }
  .text .text-locations-inner,
  .text-locations .text-locations-inner {
    flex-direction: column;
    width: 85.7142857143%;
  }
  .text .text-locations-inner .content,
  .text-locations .text-locations-inner .content {
    width: 100%;
  }
  .text .text-locations-inner .locations,
  .text-locations .text-locations-inner .locations {
    width: 100%;
  }
  .single-content {
    width: 85.7142857143%;
  }
  .single-content .single-content-inner {
    max-width: inherit;
    width: 100%;
  }
  .text-form .text-form-inner,
  .form-image .text-form-inner {
    flex-wrap: wrap;
    gap: 40px;
    width: 85.7142857143%;
  }
  .text-form .text-form-inner .content,
  .form-image .text-form-inner .content {
    width: 100%;
  }
  .text-form .text-form-inner .content .cta-wrapper,
  .form-image .text-form-inner .content .cta-wrapper {
    position: relative;
    top: inherit;
    right: inherit;
    margin-top: 40px;
  }
  .text-form .text-form-inner .content .cta-wrapper img,
  .form-image .text-form-inner .content .cta-wrapper img {
    left: 250px;
    transform: rotate(80deg) scale(1, -1);
  }
  .text-form .text-form-inner .form-wrapper,
  .form-image .text-form-inner .form-wrapper {
    width: 100%;
  }
  .vacatures .post-wrapper {
    width: 85.7142857143%;
  }
  .cta .cta-inner {
    width: 85.7142857143%;
  }
  .post-type-archive-vacature .filter-wrapper,
  .category .filter-wrapper {
    padding-top: 40px;
    width: 85.7142857143%;
  }
  .post-type-archive-vacature .post-wrapper,
  .category .post-wrapper {
    width: 85.7142857143%;
  }
  .text-form .form-image-inner,
  .form-image .form-image-inner {
    width: 85.7142857143%;
  }
  footer .footer-inner {
    width: 85.7142857143%;
  }
}
@media only screen and (max-width: 899px) {
  .hero {
    max-height: 300px;
  }
  .hero .hero-inner .column {
    width: 100%;
  }
  .hero .hero-inner .column:last-of-type {
    display: none;
  }
  .hero .hero-inner .column h1 {
    font-size: 35px;
  }
  .post-type-archive-vacature .filter-wrapper .filter .menu,
  .category .filter-wrapper .filter .menu {
    flex-direction: column;
    gap: 20px;
  }
  .post-type-archive-vacature .filter-wrapper .filter .menu .menu-item,
  .category .filter-wrapper .filter .menu .menu-item {
    font-size: 18px;
  }
  .post-type-archive-vacature .filter-wrapper form input,
  .category .filter-wrapper form input {
    font-size: 18px;
  }
  .vacatures .post-wrapper {
    display: flex;
    flex-direction: column;
  }
  .vacatures .post-wrapper .post .description {
    height: auto;
  }
  .cta .cta-inner article {
    width: 100%;
  }
  .cta .cta-inner img {
    display: none;
  }
  .post-type-archive-vacature .post-wrapper,
  .category .post-wrapper {
    display: flex;
    flex-direction: column;
  }
  .post-type-archive-vacature .post-wrapper .post .description,
  .category .post-wrapper .post .description {
    height: auto;
  }
  .image-text .image-wrapper .partner {
    top: 20px;
    right: 20px;
    width: 100px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .footer-inner .footer-item {
    font-size: 12px;
  }
  footer .footer-inner .footer-item img {
    margin-top: 0px;
    height: 50px;
  }
  footer .footer-inner .footer-item:first-of-type {
    grid-column: inherit;
  }
  footer .footer-inner .footer-item:last-of-type {
    grid-column: inherit;
  }
}
@media only screen and (max-width: 599px) {
  .text-video .video-wrapper iframe {
    max-height: 200px;
  }
  .video-video .video-video-inner .col iframe {
    max-height: 200px;
  }
}
/* 
* Floating button
*/
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 2;
}
.floating-btn .flBtn {
  display: block;
  background-color: rgb(230, 52, 43);
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
}
.floating-btn .flBtn i {
  margin: auto;
  color: #fff;
  font-size: 24px;
}
.floating-btn .flBtn:hover {
  background-color: rgb(171, 22, 44);
}

.floating-form {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #ebebeb;
  z-index: 3;
  padding: 50px 50px;
  width: 450px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  margin-right: -450px;
  transition: ease-in-out 0.4s;
}
@media screen and (max-width: 450px) {
  .floating-form {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .floating-form {
    padding: 50px 30px;
  }
}
.floating-form.visible {
  margin-right: 0;
}
.floating-form .exit-floating-form {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.floating-form .exit-floating-form:hover {
  opacity: 0.5;
}
.floating-form .nf-form-title {
  font-size: 25px;
  color: #e6342b;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
.floating-form .nf-form-cont .nf-form-wrap form .checkbox-wrap .nf-field-label {
  margin: 10px 0px;
}
.floating-form .nf-form-cont .nf-form-wrap form label {
  font-size: 16px;
}

/*# sourceMappingURL=style.css.map */
