@import url("https://fonts.googleapis.com/css?family=Open+Sans");
h1, h2, h3, h4, h5, h6, p {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: 'Montserrat-bold';
  src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
  font-family: 'Montserrat-black';
  src: url(../fonts/Montserrat-Black.ttf);
}

@font-face {
  font-family: 'Montserrat-extra-bold';
  src: url(../fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
  font-family: 'Open-sans-regular';
  src: url(../fonts/OpenSans.ttf);
}

@font-face {
  font-family: 'Open-sans-bold';
  src: url(../fonts/OpenSans-Bold.ttf);
}

@font-face {
  font-family: 'Open-sans-semibold';
  src: url(../fonts/OpenSans-SemiBold.ttf);
}

@font-face {
  font-family: 'ElegantIcons';
  src: url(../fonts/ElegantIcons.ttf);
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-15 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}

.btn {
  outline: none;
  border: none;
  border-radius: 0;
  font-family: "Open-sans-bold";
  text-transform: uppercase;
  -webkit-transition: .15s ease-in;
  transition: .15s ease-in;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
  text-align: left;
}

.btn:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.btn-outline.text {
  border: 1px solid #D54729;
  margin: -1px;
  color: #D54729;
  text-transform: uppercase;
  padding: 12px 25px;
  margin: -1px;
}

.btn.btn-outline.white {
  color: white;
  border: 1px solid white;
}

.btn.btn-outline.white:hover {
  border: 1px solid #D54729;
}

.btn.btn-outline.text:hover {
  background-color: #D54729;
  color: white;
}

.btn.btn-outline.text:hover .arrow svg path {
  fill: white;
}

.btn.btn-outline.icon {
  border: 1px solid #D54729;
  margin: -1px;
}

.btn.btn-outline.icon:hover {
  border: 1px solid white;
}

.btn.btn-primary {
  color: white;
  text-transform: uppercase;
  background-color: #D54729;
  padding: 12px 25px;
  border: 1px solid transparent;
  margin: -1px;
}

.btn.btn-primary:hover {
  color: #D54729;
  border: 1px solid #D54729;
  background-color: white;
}

.btn.btn-primary:hover .arrow svg path {
  fill: #D54729;
}

.btn-primary:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

header {
  position: fixed;
  z-index: 102;
  width: 100%;
  top: 0;
  left: 0;
}

header .info-header {
  background-color: black;
  height: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .info-header .info-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: white;
}

header .info-header .info-header-wrapper .phone {
  margin-right: 1rem;
}

header > .menu {
  background-color: white;
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
}

header > .menu .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 90px;
}

header > .menu .menu-wrapper .logo-col img {
  max-width: 188px;
}

header > .menu .menu-wrapper .hamburger {
  display: none;
  cursor: pointer;
}

header > .menu .menu-wrapper .hamburger img {
  width: 30px;
}

header > .menu .menu-wrapper .menu-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu),
header > .menu .menu-wrapper .header-buttons {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children a::after,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children a::after {
  font-family: 'ElegantIcons';
  content: '3';
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children li a::after,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children li a::after {
  content: '';
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) > li,
header > .menu .menu-wrapper .header-buttons > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-right: 2.25rem;
  position: relative;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) > li a,
header > .menu .menu-wrapper .header-buttons > li a {
  color: black;
  text-transform: uppercase;
  font-family: "Open-sans-bold";
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children > ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: -15px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background: rgba(248, 248, 248, 0.51);
  -webkit-backdrop-filter: blur(50px) brightness(150%);
          backdrop-filter: blur(50px) brightness(150%);
  padding: 1rem 1.75rem 1.5rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  list-style-type: none;
  width: 190px;
  border-bottom: 4px solid #D54729;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu li:not(:last-child),
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children > ul.sub-menu li:not(:last-child) {
  padding-bottom: 1rem;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu li a,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children > ul.sub-menu li a {
  color: #5A5A5A;
  font-family: "Open-sans-semibold";
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children:hover .sub-menu,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children:hover .sub-menu {
  opacity: 100%;
  visibility: visible;
  z-index: 99;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children:hover .sub-menu li.current-menu-item a,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children:hover .sub-menu li.current-menu-item a {
  color: #D54729;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children:hover a:after,
header > .menu .menu-wrapper .header-buttons li.menu-item-has-children:hover a:after {
  -webkit-transform: rotate(180deg) translateY(calc(50% - 1px));
          transform: rotate(180deg) translateY(calc(50% - 1px));
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.current-menu-item a,
header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.current-menu-ancestor a,
header > .menu .menu-wrapper .header-buttons li.current-menu-item a,
header > .menu .menu-wrapper .header-buttons li.current-menu-ancestor a {
  color: #D54729;
}

header > .menu .menu-wrapper .header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header > .menu .menu-wrapper .header-buttons .sub-menu {
  margin-bottom: 0;
  width: auto !important;
  left: -1.75rem !important;
}

header > .menu .menu-wrapper .header-buttons li.wpml {
  padding-right: 3rem;
}

header > .menu .menu-wrapper .header-buttons li {
  list-style: none;
}

header > .menu .menu-wrapper .header-buttons li img {
  width: 27px;
  height: 27px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}

header > .menu .menu-wrapper .header-buttons li.menu-item-has-children a::after {
  color: black;
}

header .mobile-menu {
  display: none;
  background-color: white;
  position: fixed;
  height: calc(100vh - 110px);
  width: 100%;
  top: 110px;
  left: 0;
}

header .mobile-menu .wrapper {
  padding: 2rem 1rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: scroll;
}

header .mobile-menu .language-switcher {
  padding-bottom: 3rem;
  padding-top: 1rem;
}

header .mobile-menu .language-switcher li.wpml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 90px;
}

header .mobile-menu .language-switcher li.wpml .active img {
  border: 2px solid #D54729;
}

header .mobile-menu .language-switcher li.wpml .sub-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

header .mobile-menu .language-switcher li.wpml img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}

header .mobile-menu .language-switcher li.wpml img:hover {
  border: 2px solid #D54729;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

header .mobile-menu .main-menu ul:not(.sub-menu) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.menu-item-has-children a::after {
  font-family: 'ElegantIcons';
  content: 'L';
  position: absolute;
  font-size: 22px;
  font-weight: bolder;
  color: #D54729;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  top: 2px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.menu-item-has-children li a::after {
  content: '';
}

header .mobile-menu .main-menu ul:not(.sub-menu) > li {
  display: block;
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .mobile-menu .main-menu ul:not(.sub-menu) > li a {
  color: black;
  text-transform: uppercase;
  font-family: "Open-sans-bold";
  font-size: 20px;
  position: relative;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu {
  display: none;
  list-style-type: none;
  text-align: center;
  padding-left: 0;
  padding-top: 1rem;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu li:not(:last-child) {
  padding-bottom: 1rem;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu a {
  color: #5A5A5A;
  font-size: 18px;
}

header .mobile-menu .main-menu ul:not(.sub-menu) li.current-menu-item a {
  color: #D54729;
}

@media screen and (max-width: 1200px) {
  header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li {
    padding-right: 1.75rem;
  }
  header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li a {
    font-size: 0.75rem;
  }
  header > .menu .menu-wrapper .header-buttons button {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 992px) {
  header .mobile-menu {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  header .menu .menu-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .menu .menu-wrapper .logo-col,
  header .menu .menu-wrapper .hamburger {
    display: block;
    width: auto;
  }
  header .menu .menu-wrapper .menu-col {
    display: none;
  }
  header .menu .menu-wrapper .header-buttons {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  header .menu .menu-wrapper {
    min-height: 70px;
  }
  header .menu .menu-wrapper .logo-col img {
    max-width: 140px;
  }
}

.service-detail.banner,
.portfolio.banner,
.contact.banner,
.about.banner,
.portfolio-single.banner,
.single.banner,
.quotation.banner {
  position: relative;
  min-height: 25rem;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.service-detail.banner .hero-overlay .breadcrumbs,
.portfolio.banner .hero-overlay .breadcrumbs,
.contact.banner .hero-overlay .breadcrumbs,
.about.banner .hero-overlay .breadcrumbs,
.portfolio-single.banner .hero-overlay .breadcrumbs,
.single.banner .hero-overlay .breadcrumbs,
.quotation.banner .hero-overlay .breadcrumbs {
  color: white;
  margin-bottom: 1.5rem;
}

.service-detail.banner .hero-overlay .breadcrumbs a,
.portfolio.banner .hero-overlay .breadcrumbs a,
.contact.banner .hero-overlay .breadcrumbs a,
.about.banner .hero-overlay .breadcrumbs a,
.portfolio-single.banner .hero-overlay .breadcrumbs a,
.single.banner .hero-overlay .breadcrumbs a,
.quotation.banner .hero-overlay .breadcrumbs a {
  opacity: .56;
}

.service-detail.banner .hero-overlay p.description,
.portfolio.banner .hero-overlay p.description,
.contact.banner .hero-overlay p.description,
.about.banner .hero-overlay p.description,
.portfolio-single.banner .hero-overlay p.description,
.single.banner .hero-overlay p.description,
.quotation.banner .hero-overlay p.description {
  margin-top: 1.5rem;
  max-width: 600px;
  color: white;
}

.service-detail.banner .hero-overlay h1,
.portfolio.banner .hero-overlay h1,
.contact.banner .hero-overlay h1,
.about.banner .hero-overlay h1,
.portfolio-single.banner .hero-overlay h1,
.single.banner .hero-overlay h1,
.quotation.banner .hero-overlay h1 {
  text-transform: uppercase;
  color: white;
}

@media screen and (max-width: 576px) {
  .service-detail.banner,
  .portfolio.banner,
  .contact.banner,
  .about.banner,
  .portfolio-single.banner,
  .single.banner,
  .quotation.banner {
    padding-top: 4rem;
    min-height: unset;
  }
}

footer .footer {
  background-color: black;
  border-top: 8px solid #D54729;
  width: 100%;
  padding: 5em 0;
}

footer .footer .card-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

footer .footer .card-wrapper .card {
  background: url("../img/background-orange.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: block;
  padding: 3em;
  border-radius: 10px;
}

footer .footer .card-wrapper .card p {
  font-weight: 300;
  margin-top: 1em;
  font-size: 14px;
  line-height: 26px;
}

footer .footer .card-wrapper .card a {
  margin-top: 1rem;
}

footer .footer .card-wrapper .card .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

footer .footer .card-wrapper .card .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

footer .footer .card-wrapper .card .arrow svg path {
  fill: white;
}

footer .footer .card-wrapper .block {
  position: absolute;
  right: -1em;
  top: -1em;
  opacity: 0.5;
}

footer .footer .footer-description-card {
  color: white;
  font-weight: 300;
  margin-top: 1em;
  font-size: 14px;
  line-height: 30px;
}

footer .footer .office-address {
  margin-top: 1rem;
}

footer .footer .office-address p {
  color: white;
}

footer .copyright {
  padding: .8rem 0;
}

.logo-row {
  margin-bottom: 2rem;
}

.logo--footer img {
  max-width: 15em;
}

.footer-title {
  color: white;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-menu {
  margin-top: 1em;
  line-height: 30px;
}

.footer-menu ul {
  margin-top: 0.5em;
  list-style: none;
  padding: 0;
}

.btn-outline--white {
  margin-top: 1em !important;
  border-color: white !important;
  color: white !important;
}

@media screen and (max-width: 992px) {
  footer .footer .request-quote-footer {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .footer-col {
    margin-top: 2em;
  }
  footer .footer .card-wrapper .card {
    padding: 2em;
  }
}

@media screen and (max-width: 576px) {
  footer .request-quote-footer .card-wrapper {
    width: 95%;
  }
}

.home.hero {
  position: relative;
  height: calc(85vh - 130px);
  background-position: center;
  background-size: cover;
}

.home.hero .hero-overlay {
  width: 100%;
  padding-top: calc(38vh - 130px);
}

.home.hero .hero-overlay .hero-cta {
  width: 100%;
}

.home.hero .hero-overlay .hero-cta .spinner__text {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 800px;
  color: #D54729;
}

.home.hero .hero-overlay .hero-cta .spinner__text--top,
.home.hero .hero-overlay .hero-cta .spinner__text--bottom {
  display: inline-block;
  -webkit-animation: 4s ease 2s infinite running none;
          animation: 4s ease 2s infinite running none;
}

.home.hero .hero-overlay .hero-cta .spinner__text--top {
  -webkit-animation-name: spinTop;
          animation-name: spinTop;
}

.home.hero .hero-overlay .hero-cta .spinner__text--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  -webkit-animation-name: spinBottom;
          animation-name: spinBottom;
}

@-webkit-keyframes spinTop {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  /* Spin finishes after 20% of animation duration (1s) */
  20% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  /* Nothing from 20% until 100% of animation duration (4s) */
  /* This makes it looks like there's a delay between each animation */
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes spinTop {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  /* Spin finishes after 20% of animation duration (1s) */
  20% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  /* Nothing from 20% until 100% of animation duration (4s) */
  /* This makes it looks like there's a delay between each animation */
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes spinBottom {
  /* Similar to spinTop's logic */
  0% {
    opacity: 1;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes spinBottom {
  /* Similar to spinTop's logic */
  0% {
    opacity: 1;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.home.hero .hero-overlay .hero-cta .cta-title {
  color: white;
}

.home.hero .hero-overlay .hero-cta .cta-description {
  color: white;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.home.hero .hero-overlay .hero-cta .cta-button {
  color: white;
  font-family: "Montserrat-bold";
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home.hero .hero-overlay .hero-cta .cta-button button {
  margin-left: 1rem;
  padding: 12px;
}

.home.hero .hero-overlay .hero-cta .cta-button svg {
  display: block;
}

.home.about {
  background-color: #FAFAFA;
}

.home.about .about-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-right: 6rem;
}

.home.about .about-images {
  position: relative;
  padding-left: 2rem;
}

.home.about .about-images .stripes {
  position: absolute;
  left: 15px;
  top: -15px;
  opacity: 80%;
  z-index: 99;
  width: 200px;
  opacity: .33;
}

.home.about .about-images .about-image {
  width: 100%;
  position: absolute;
  top: 30px;
  right: 0;
  max-width: 540px;
}

.home.about a .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.home.about a .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.home.about a .arrow svg path {
  fill: white;
}

.home.services {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background: white;
}

.home.services .services-title {
  margin-bottom: 2rem;
}

.home.services .services-description {
  margin-bottom: 4rem;
}

.home.services .services-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home.services .services-row .service {
  position: relative;
  min-height: 220px;
}

.home.services .services-row .service .service-content {
  height: 100%;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 35px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.home.services .services-row .service .service-content img {
  max-width: 55px;
  margin-bottom: 1.5rem;
}

.home.services .services-row .service .service-content h3 {
  color: white;
}

.home.services .services-row .service .service-content:hover {
  box-shadow: 0px 12px 24px -12px rgba(213, 71, 41, 0.5);
  -webkit-box-shadow: 0px 12px 24px -12px rgba(213, 71, 41, 0.5);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.home.our-work {
  padding-top: 6rem;
  margin-bottom: 20rem;
  background: linear-gradient(129deg, rgba(213, 71, 41, 0.91) 0%, rgba(148, 50, 29, 0.91) 30%, rgba(107, 36, 21, 0.91) 100%), url("../img/our-work-1.png");
  background-position: center;
  background-size: cover;
  height: 500px;
}

.home.our-work .our-work-title {
  margin-bottom: 2rem;
}

.home.our-work .our-work-description {
  max-width: 750px;
  color: white;
}

.home.our-work .swiper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.home.our-work .swiper-buttons .swiper-prev,
.home.our-work .swiper-buttons .swiper-next {
  width: 45px;
  height: 45px;
  background: white;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.home.our-work .swiper-buttons .swiper-prev .arrow,
.home.our-work .swiper-buttons .swiper-next .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.home.our-work .swiper-buttons .swiper-prev .arrow svg,
.home.our-work .swiper-buttons .swiper-next .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.home.our-work .swiper-buttons .swiper-prev:hover,
.home.our-work .swiper-buttons .swiper-next:hover {
  background-color: #D54729;
}

.home.our-work .swiper-buttons .swiper-prev:hover svg path,
.home.our-work .swiper-buttons .swiper-next:hover svg path {
  fill: white;
}

.home.our-work .swiper-buttons .swiper-prev {
  margin-right: 1rem;
}

.home.our-work .swiper-buttons .swiper-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home.our-work a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home.our-work a .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.home.our-work a .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.home.our-work a .arrow svg path {
  fill: white;
}

@media screen and (max-width: 1200px) {
  .home.about .about-description {
    padding-right: 0;
  }
  .home.about .about-images {
    margin-top: 4rem;
  }
  .home.about .about-images .about-image {
    max-width: 450px;
    position: relative;
  }
  .home.services {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .home.services .services-description {
    margin-bottom: 3rem;
  }
  .home.services .services-row .service {
    min-height: unset;
    padding-bottom: 2rem;
  }
  .home.services .services-row .service .service-content {
    padding-top: 55px;
  }
}

@media screen and (max-width: 992px) {
  .home.hero .hero-overlay .hero-cta .spinner__text {
    width: auto;
  }
}

.about.info {
  background-color: #FAFAFA;
}

.about.info .core_values_title {
  color: black;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  margin-top: 3rem;
}

.about.info .core-values {
  margin-top: 2rem;
}

.about.info .core-values .core-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.about.info .core-values .core-value .core-value-icon {
  background-color: white;
  border-radius: 100px;
  display: inline-block;
  width: 55px;
  height: 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about.info .core-values .core-value .core-value-icon img {
  max-width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 30px;
}

.about.info .core-values .core-value span {
  margin-left: 0.5em;
  display: inline-block;
  font-weight: 500;
}

.about.info .about-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-right: 6rem;
}

.about.info .about-images {
  position: relative;
  padding-left: 2rem;
}

.about.info .about-images .stripes {
  position: absolute;
  right: 15px;
  bottom: -15px;
  opacity: 80%;
  z-index: 98;
  width: 200px;
  opacity: .33;
}

.about.info .about-images .about-image {
  width: 100%;
  position: absolute;
  position: relative;
  z-index: 99;
  max-width: 540px;
}

.about.companies {
  background-color: #FAFAFA;
  padding-bottom: 3rem;
}

.about.companies .companies-row {
  opacity: .25;
  max-width: 850px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about.companies .companies-row img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about.services {
  background: white;
}

.about.services .services-title {
  margin-bottom: 2rem;
}

.about.services .services-description {
  margin-bottom: 4rem;
  max-width: 900px;
}

.about.services .services-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about.services .services-row .service {
  position: relative;
  min-height: 220px;
}

.about.services .services-row .service .service-content {
  height: 100%;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 35px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.about.services .services-row .service .service-content img {
  max-width: 55px;
  margin-bottom: 1.5rem;
}

.about.services .services-row .service .service-content h3 {
  color: white;
}

.about.services .services-row .service .service-content:hover {
  box-shadow: 0px 12px 24px -12px rgba(213, 71, 41, 0.5);
  -webkit-box-shadow: 0px 12px 24px -12px rgba(213, 71, 41, 0.5);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.about.office {
  background: linear-gradient(129deg, rgba(213, 71, 41, 0.91) 0%, rgba(148, 50, 29, 0.91) 30%, rgba(107, 36, 21, 0.91) 100%), url("../img/our-work-1.png");
  background-position: center;
  background-size: cover;
  height: 500px;
  margin-bottom: 0;
  padding-bottom: 0em !important;
}

.about.office .our-work-title {
  margin-bottom: 2rem;
}

.about.office .office-description {
  max-width: 750px;
  margin-bottom: 1.5rem;
}

.about.office .office-image-col {
  position: relative;
}

.about.office img {
  width: 100%;
  position: absolute;
  top: 30px;
  right: 0;
  max-width: 540px;
  z-index: 99;
}

.about.office .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.about.office .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.about.office .arrow svg path {
  fill: white;
}

@media screen and (max-width: 1400px) {
  .about.info .about-images .stripes {
    bottom: 20px;
    right: -10px;
  }
}

@media screen and (max-width: 1200px) {
  .about.about .about-description {
    padding-right: 0;
  }
  .about.info .about-images .stripes {
    bottom: 80px;
  }
}

@media screen and (max-width: 1050px) {
  .about.info .about-images .stripes {
    right: 5px;
  }
}

@media screen and (max-width: 992px) {
  .about.info .about-images .stripes {
    bottom: 295px;
    right: -8px;
  }
}

@media screen and (max-width: 768px) {
  .about.info .about-images {
    padding-left: 0;
  }
  .about.info .about-images .about-image {
    width: 95%;
  }
  .about.info .about-images .stripes {
    bottom: -15px;
    right: 20px;
    width: 40%;
  }
  .about.services .services-description {
    margin-bottom: 2rem;
  }
  .about.office {
    height: auto;
  }
  .about.office img {
    position: relative;
    top: 0;
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 460px) {
  .about.services .services-row .service {
    min-height: unset;
  }
  .about.services .services-row .service .service-content {
    padding-top: 45px;
  }
}

@media screen and (max-width: 350px) {
  .about.services .services-row .service .service-content {
    padding-top: 40px;
  }
}

.portfolio.categories {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.portfolio.categories .categories-row {
  max-width: 700px;
  margin: 0 auto;
  white-space: nowrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.portfolio.categories .categories-row::-webkit-scrollbar {
  display: none;
}

.portfolio.categories .categories-row .col {
  padding-bottom: .5rem;
}

.portfolio.categories .categories-row .col a {
  color: rgba(0, 0, 0, 0.5);
  padding-bottom: .5rem;
}

.portfolio.categories .categories-row .col a:hover {
  color: #D54729;
  border-bottom: 1.5px solid #D54729;
}

.portfolio.categories .categories-row .col.active-taxonomy a {
  color: #D54729;
  border-bottom: 1.5px solid #D54729;
}

.portfolio.cards {
  padding-bottom: 6rem;
}

.portfolio.cards .portfolio-row .portfolio-item {
  cursor: pointer;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.portfolio.cards .portfolio-row .portfolio-item .top {
  position: relative;
}

.portfolio.cards .portfolio-row .portfolio-item .top img {
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio.cards .portfolio-row .portfolio-item .top .label {
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 100px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-backdrop-filter: blur(50px) brightness(100%);
          backdrop-filter: blur(50px) brightness(100%);
  color: white;
  padding: .8rem 2rem;
  font-family: "Montserrat-extra-bold";
  font-size: 12px;
  text-transform: uppercase;
}

.portfolio.cards .portfolio-row .portfolio-item .bottom .company {
  color: #D54729;
  font-family: "Montserrat-extra-bold";
  padding-top: 1.5rem;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.portfolio.cards .portfolio-row .portfolio-item .bottom .case-title {
  font-family: "Montserrat-bold";
  font-size: 19px;
  line-height: 1.3;
  margin-top: 1rem;
  color: black;
}

.portfolio.cards .portfolio-row .portfolio-item:hover {
  -webkit-box-shadow: 0px 12px 24px -12px rgba(213, 70, 41, 0.238);
          box-shadow: 0px 12px 24px -12px rgba(213, 70, 41, 0.238);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

@media screen and (max-width: 992px) {
  .portfolio.categories {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 520px) {
  .portfolio.categories .container {
    padding-right: 0;
  }
}

.error-page {
  background: linear-gradient(129deg, rgba(213, 71, 41, 0.91) 0%, rgba(148, 50, 29, 0.91) 30%, rgba(107, 36, 21, 0.91) 100%), url("../img/20389-Betuwestraat_Render08.jpg");
  background-size: cover;
}

.error-page .wrapper {
  min-height: calc(100vh - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.error-page .wrapper .title {
  position: relative;
}

.error-page .wrapper .title .stripes {
  position: absolute;
  top: 0;
  opacity: .33;
}

.error-page .wrapper h1 {
  opacity: .42;
  padding-bottom: 1.5rem;
}

.error-page .wrapper p {
  padding-top: 1rem;
  max-width: 550px;
}

@media screen and (max-width: 992px) {
  .error-page .wrapper .title .stripes {
    right: -20px;
    width: 40px;
  }
  .error-page .wrapper h1 {
    font-size: 50px;
  }
}

@media screen and (min-width: 992px) {
  .error-page .wrapper .title .stripes {
    right: -35px;
    width: 60px;
  }
  .error-page .wrapper h1 {
    font-size: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .error-page .wrapper .title .stripes {
    right: -40px;
    width: 80px;
  }
  .error-page .wrapper h1 {
    font-size: 110px;
  }
}

.got-a-project {
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.got-a-project .title {
  margin-bottom: 2rem;
}

.got-a-project .description {
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.got-a-project .images {
  position: relative;
}

.got-a-project .images .image-1 {
  position: absolute;
  left: 0;
  top: -50px;
  max-width: 325px;
  z-index: 98;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.got-a-project .images .stripes {
  position: absolute;
  left: 18%;
  top: 40%;
  z-index: 1;
  width: 250px;
  opacity: .33;
}

.got-a-project .images .image-2 {
  position: absolute;
  right: 120px;
  top: 100px;
  max-width: 325px;
  z-index: 99;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.got-a-project a .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.got-a-project a .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.got-a-project a .arrow svg path {
  fill: #D54729;
}

.got-a-project.dark {
  background-position: center;
  background-size: cover;
  padding-bottom: 10rem;
  padding-top: 8rem;
  color: white;
}

.got-a-project.dark p,
.got-a-project.dark a {
  color: white !important;
}

.got-a-project.dark a .arrow svg path {
  fill: white;
}

@media screen and (max-width: 1200px) {
  .got-a-project,
  .got-a-project.dark {
    padding-bottom: 8rem;
  }
  .got-a-project .images .image-2,
  .got-a-project .images .image-1 {
    max-width: 300px;
  }
  .got-a-project .images .image-2 {
    right: 60px;
    top: 60px;
  }
  .got-a-project .images .stripes {
    top: 24%;
    left: 10%;
  }
}

@media screen and (max-width: 992px) {
  .got-a-project .description {
    padding-right: 0;
  }
  .got-a-project .images .image-2,
  .got-a-project .images .image-1 {
    max-width: 250px;
  }
  .got-a-project .images .image-2 {
    right: 45px;
  }
  .got-a-project .images .stripes {
    top: 20%;
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .got-a-project {
    padding-top: 7rem;
  }
  .got-a-project .images {
    min-height: 300px;
  }
  .got-a-project .images .image-1 {
    left: 30px;
  }
  .got-a-project .images .image-2 {
    right: 50px;
    top: 15px;
  }
  .got-a-project .images .stripes {
    max-width: 200px;
    left: 180px;
    top: 30px;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .got-a-project .images .image-1 {
    left: 15px;
  }
  .got-a-project .images .stripes {
    left: 50px;
  }
}

@media screen and (max-width: 576px) {
  .got-a-project,
  .got-a-project.dark {
    padding-bottom: 6rem;
  }
  .got-a-project .images .image-1 {
    left: 15px;
  }
  .got-a-project .images .image-2 {
    right: 20px;
  }
  .got-a-project .images .stripes {
    left: 20vw;
  }
}

.service-detail.what-is .description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-right: 4rem;
}

.service-detail.what-is .images {
  position: relative;
}

.service-detail.what-is .images .image {
  width: 100%;
  z-index: 99;
  position: relative;
}

.service-detail.what-is .images .stripes {
  position: absolute;
  left: -15px;
  width: 150px;
  top: -30px;
  opacity: .33;
  z-index: 98;
}

.service-detail.companies {
  padding: 3rem 0;
}

.service-detail.companies .companies-row {
  opacity: .25;
  max-width: 850px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-detail.companies .companies-row img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail.how-we-work {
  background: linear-gradient(129deg, rgba(213, 71, 41, 0.91) 0%, rgba(148, 50, 29, 0.91) 30%, rgba(107, 36, 21, 0.91) 100%), url("../img/our-work-1.png");
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
}

.service-detail.how-we-work p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.service-detail.how-we-work img {
  width: 100%;
  max-width: 475px;
  float: right;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail.cases .description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 750px;
}

.service-detail.cases a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-detail.cases a .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.service-detail.cases a .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.service-detail.cases a .arrow svg path {
  fill: white;
}

@media screen and (max-width: 768px) {
  .service-detail.what-is .images {
    margin-top: 1rem;
  }
  .service-detail.what-is .images .image {
    width: 95%;
    display: block;
    margin-left: auto;
  }
  .service-detail.what-is .images .stripes {
    left: 15px;
    top: -15px;
  }
  .service-detail.what-is .description {
    padding-right: 0;
  }
}

.icon {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.icon_house {
  margin-right: .5rem;
}

.icon_house::before {
  content: "\e074";
}

.home.our-work .swiper,
.service-detail.cases .swiper {
  width: 100%;
}

.home.our-work .swiper .swiper-slide,
.service-detail.cases .swiper .swiper-slide {
  height: 100%;
}

.home.our-work .swiper .swiper-slide .top,
.service-detail.cases .swiper .swiper-slide .top {
  height: 220px;
  position: relative;
}

.home.our-work .swiper .swiper-slide .top img,
.service-detail.cases .swiper .swiper-slide .top img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home.our-work .swiper .swiper-slide .top .label,
.service-detail.cases .swiper .swiper-slide .top .label {
  position: absolute;
  bottom: 0;
  right: 25px;
  border-radius: 100px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-backdrop-filter: blur(50px) brightness(100%);
          backdrop-filter: blur(50px) brightness(100%);
  color: white;
  padding: .6rem 2rem;
  font-family: "Montserrat-extra-bold";
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  text-transform: uppercase;
}

.home.our-work .swiper .swiper-slide .bottom,
.service-detail.cases .swiper .swiper-slide .bottom {
  background-color: #FCFCFC;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
}

.home.our-work .swiper .swiper-slide .bottom .company,
.service-detail.cases .swiper .swiper-slide .bottom .company {
  color: #D54729;
  font-family: "Montserrat-extra-bold";
  padding-top: 2.5rem;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.home.our-work .swiper .swiper-slide .bottom .case-title,
.service-detail.cases .swiper .swiper-slide .bottom .case-title {
  font-family: "Montserrat-bold";
  font-size: 19px;
  line-height: 1.3;
  margin-top: 1rem;
}

.home.our-work .swiper .swiper-slide .bottom a,
.service-detail.cases .swiper .swiper-slide .bottom a {
  margin-top: 2rem;
  width: 100%;
}

.home.our-work .swiper {
  position: absolute;
  bottom: -500px;
}

@media screen and (max-width: 576px) {
  .home.our-work .swiper {
    position: absolute;
    bottom: -500px;
    left: 0;
    padding-left: 16px;
  }
}

.tns-inner {
  margin-left: 0 !important;
}

.contact.banner {
  color: white;
  padding-bottom: 6rem;
}

.contact.banner .description {
  padding-right: 3rem;
}

.contact.banner .contact-row {
  margin-top: 2rem;
}

.contact.banner .contact-row p {
  margin-top: 0;
  color: white;
}

.contact.banner .contact-row h2 {
  font-size: 16px;
  margin-bottom: 1rem;
}

.contact.banner .contact-col {
  position: relative;
}

.contact.banner .contact-col form.contact-form {
  width: 100%;
  position: absolute;
  right: 0;
  background-color: white;
  padding: 2.5rem 2.5rem;
  top: 0;
  z-index: 99;
}

.contact.banner .contact-col form.contact-form .input-row {
  margin-bottom: 1.5rem;
}

.contact.banner .contact-col form.contact-form .input-row textarea {
  height: 150px;
  resize: none;
  border-radius: 0;
  font-size: 14px;
}

.contact.banner .contact-col form.contact-form .input-row label {
  color: black;
  font-weight: bold;
  font-family: "Open-sans-bold";
  padding-bottom: .8rem;
  font-size: 14px;
}

.contact.banner .contact-col form.contact-form .input-row input {
  border-radius: 0;
  padding: .7rem 1rem;
  font-size: 14px;
}

.contact.banner .contact-col form.contact-form .input-row input:focus,
.contact.banner .contact-col form.contact-form .input-row textarea:focus {
  border-color: #D54729;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact.banner .contact-col form.contact-form button {
  width: 100%;
}

.contact.banner .contact-col .send-success {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.contact.banner .contact-col .send-success .success-title {
  color: #D54729;
  text-transform: uppercase;
  font-family: "montserrat-extra-bold";
}

.contact.banner .contact-col .send-success img {
  width: 60px;
  margin-bottom: 1.5rem;
}

.contact.banner button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact.banner button .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.contact.banner button .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.contact.banner button .arrow svg path {
  fill: white;
}

.contact.map {
  height: 600px;
  -webkit-filter: grayscale(100%) invert(92%) contrast(83%);
          filter: grayscale(100%) invert(92%) contrast(83%);
}

.contact.map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .contact.map {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .contact.banner .contact-col form.contact-form {
    position: relative;
    margin-top: 2rem;
  }
  .contact.banner .contact-col form.contact-form .input-row {
    margin-bottom: 0;
  }
  .contact.banner .contact-col form.contact-form .input-row .col,
  .contact.banner .contact-col form.contact-form .input-row .col-md-6 {
    margin-bottom: 1rem;
  }
}

.portfolio-single.banner {
  padding-top: 15rem;
  padding-bottom: 5rem;
}

.portfolio-single.banner .specifications-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.portfolio-single.banner .specifications-col .stripes {
  position: absolute;
  right: 50px;
  top: 0px;
  width: 100px;
  opacity: 40%;
  z-index: 98;
}

.portfolio-single.banner .specifications-col .portfolio-specifications {
  padding: 25px 35px;
  background-color: white;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 450px;
  width: 100%;
  color: black;
  z-index: 99;
}

.portfolio-single.banner .specifications-col .portfolio-specifications > .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.portfolio-single.banner .specifications-col .portfolio-specifications > .row .specification-col {
  position: relative;
  padding: 0 2rem;
  text-transform: uppercase;
}

.portfolio-single.banner .specifications-col .portfolio-specifications > .row .specification-col:not(:last-child):after {
  content: " ";
  position: absolute;
  border-left: 1px rgba(213, 71, 41, 0.38) solid;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 45%;
  margin-top: auto;
  margin-bottom: auto;
}

.portfolio-single.banner .specifications-col .portfolio-specifications > .row .heading {
  font-family: "Montserrat-extra-bold";
  text-transform: uppercase;
  padding-bottom: .5rem;
}

.portfolio-single.content {
  padding: 5rem 0;
}

.portfolio-single.content h2 {
  text-transform: uppercase;
}

.portfolio-single.content p {
  color: black;
  margin: 2rem 0;
}

.portfolio-single.content .images {
  margin-top: 6rem;
  margin-bottom: 3rem;
  position: relative;
}

.portfolio-single.content .images .image-wide {
  width: 100%;
  z-index: 99;
  position: relative;
}

.portfolio-single.content .images .stripes {
  position: absolute;
  right: -55px;
  top: -55px;
  width: 150px;
  opacity: .33;
  z-index: 98;
}

.portfolio-single.content .pswp-gallery a {
  position: relative;
}

.portfolio-single.content .pswp-gallery a img {
  width: 100%;
}

.portfolio-single.content .pswp-gallery a .overlay {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(213, 71, 41, 0.5);
  width: 100%;
  height: 100%;
}

.portfolio-single.content .pswp-gallery a:hover .overlay {
  opacity: 1;
}

.portfolio-single.content .pswp-gallery a:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

@media screen and (max-width: 1200px) {
  .portfolio-single.banner {
    padding-top: 10rem;
  }
}

@media screen and (max-width: 992px) {
  .portfolio-single.banner {
    padding-top: 5rem;
  }
  .portfolio-single.content {
    padding: 2.5rem 0;
  }
  .portfolio-single.banner .specifications-col {
    margin-top: 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .portfolio-single.banner .specifications-col .stripes {
    top: -15px;
    right: 200px;
  }
}

@media screen and (max-width: 830px) {
  .portfolio-single.content .images .stripes {
    right: -30px;
    top: -30px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-single.banner .specifications-col .stripes {
    display: none;
  }
  .portfolio-single.banner .specifications-col .portfolio-specifications {
    min-width: unset;
  }
  .portfolio-single.banner .specifications-col .portfolio-specifications > .row .specification-col:not(:last-child):after {
    border-left: 0;
  }
  .portfolio-single.banner .specifications-col .portfolio-specifications > .row .heading {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .portfolio-single.content .images {
    margin-top: 3rem;
  }
  .portfolio-single.content .images .image-wide {
    width: 95%;
  }
  .portfolio-single.content .images .stripes {
    right: 5px;
    top: -25px;
    width: 110px;
  }
}

.quotation.banner {
  padding-bottom: 14rem;
  z-index: 98;
}

.quotation.banner .hero-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.quotation.form {
  margin-top: -150px;
  z-index: 99;
  position: relative;
}

.quotation.form form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 2.5rem 2.5rem;
  z-index: 99;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.quotation.form form .input-row {
  margin-bottom: 1.5rem;
}

.quotation.form form .input-row textarea {
  height: 150px;
  resize: none;
  border-radius: 0;
  font-size: 14px;
}

.quotation.form form .input-row label {
  color: black;
  font-weight: bold;
  font-family: "Open-sans-bold";
  padding-bottom: .8rem;
  font-size: 14px;
}

.quotation.form form .input-row input,
.quotation.form form .input-row select {
  border-radius: 0;
  padding: .7rem 1rem;
  font-size: 14px;
}

.quotation.form form .input-row input:focus,
.quotation.form form .input-row textarea:focus,
.quotation.form form .input-row select:focus {
  border-color: #D54729;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.quotation.form form button {
  width: 100%;
}

.quotation.form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.quotation.form button .arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.quotation.form button .arrow svg {
  display: block;
  height: 10px;
  width: 10px;
}

.quotation.form button .arrow svg path {
  fill: white;
}

.quotation.form .send-success {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(213, 71, 41, 0.91))), url("../img/20389-Betuwestraat_Render08.jpg");
  background: linear-gradient(rgba(213, 71, 41, 0.91) rgba(213, 71, 41, 0.91)), url("../img/20389-Betuwestraat_Render08.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 1rem;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
}

.quotation.form .send-success .success-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .quotation.form {
    margin-top: -175px;
  }
  .quotation.form form .input-row {
    margin-bottom: 0;
  }
  .quotation.form form .input-row .col-md-6,
  .quotation.form form .input-row .col {
    margin-bottom: 1rem;
  }
}

#cookie-law-info-bar[data-cli-style="cli-style-v2"] {
  padding: 50px 100px;
}

#wt-cli-accept-all-btn, #wt-cli-privacy-save-btn {
  outline: none;
  border: none;
  border-radius: 0;
  font-family: "Open-sans-bold";
  text-transform: uppercase;
  -webkit-transition: .15s ease-in;
  transition: .15s ease-in;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
  text-align: left;
  color: white;
  text-transform: uppercase;
  background-color: #D54729;
  padding: 16px 32px;
}

.cli-plugin-main-button.cli_settings_button {
  padding: 12px 25px;
  font-family: "Open-sans-bold";
  text-transform: uppercase;
}

.cli-plugin-main-button.cli_settings_button:hover {
  background-color: transparent !important;
  color: #D54729 !important;
}

.cli-switch input:checked + .cli-slider {
  background-color: #D54729;
}

body {
  font-family: "Open-sans-regular";
}

a {
  color: white;
  font-size: 0.875rem;
}

a:hover,
.hero .hero-overlay .hero-cta .cta-button:hover,
header > .menu .menu-wrapper .main-menu ul li a:hover,
header .mobile-menu .main-menu ul li a:hover,
header > .menu .menu-wrapper .main-menu ul:not(.sub-menu) li.menu-item-has-children > ul.sub-menu li a:hover {
  -webkit-transition: color .15s ease-in;
  transition: color .15s ease-in;
  color: #D54729;
}

h1,
.h1 {
  font-family: "Montserrat-black";
  color: black;
  margin-bottom: 0;
  text-transform: uppercase;
}

h2,
.h2 {
  font-family: "Montserrat-black";
  margin-bottom: 0;
  text-transform: uppercase;
}

h3,
.h3 {
  color: black;
  font-family: "Montserrat-extra-bold";
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}

h4,
.h4 {
  color: black;
  font-family: "Montserrat-extra-bold";
  margin-bottom: 0;
  text-transform: uppercase;
}

p {
  font-size: 0.875rem;
  line-height: 1.95;
  color: black;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .container.small {
    max-width: 1000px;
  }
}

.black {
  color: black;
}

.white {
  color: white;
}

.main {
  margin-top: 130px;
}

@media screen and (max-width: 576px) {
  .main {
    margin-top: 110px;
  }
}

.orange-color {
  color: #D54729;
}

@media screen and (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 992px;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 992px) {
  body.admin-bar header .mobile-menu {
    top: 156px;
  }
}

@media all and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

.orange-border {
  border-bottom: 8px solid #D54729;
  width: 100%;
}

.padding-section {
  padding: 6rem 0;
}

@media screen and (max-width: 768px) {
  .padding-section {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 576px) {
  .padding-section {
    padding: 3rem 0;
  }
}

.main-template {
  min-height: calc(100vh - 130px);
  padding: 3rem 0;
}
/*# sourceMappingURL=primary.css.map */