﻿:root {
  --background: #000;
  --primary: #fff;
  --blue: #1E3A8A;
  --secundary: #1CB5E0;
  --gray: #EEEEEE;
  --red: #CF0A0A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0 !important;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--background);
  font-size: 1rem;
  color: var(--primary);
  font-family: "Poppins", Verdana, sans-serif;
  font-weight: 400;
}

header {
  background: var(--background);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
header .logo {
  font-size: 1.5rem;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .logo span {
  font-weight: 700;
}

.header--nohd {
  background-color: transparent;
  box-shadow: none;
}
.header--open {
  box-shadow: none;
}

.icon-menu {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--blue);
  position: relative;
  padding: 15px 0 0 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 5px;
  /*
      &:hover {
        ::before {
          width: 14px;
        }

        ::after {
          width: 19px;
        }
      }
  */
}
.icon-menu ::before {
  width: 20px;
  content: "";
  display: block;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s;
}
.icon-menu ::after {
  width: 16px;
  margin-top: 6px;
  content: "";
  display: block;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s;
}
.icon-menu--open {
  background: #fff;
  padding: 19px 0 0 9px;
}
.icon-menu--open ::before {
  width: 22px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}
.icon-menu--open ::after {
  width: 22px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #000;
  margin-top: -2px;
}
.icon-menu--open:hover {
  background: var(--blue);
}
.icon-menu--open:hover ::after, .icon-menu--open:hover ::before {
  background: #fff;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}
.hidden-text {
  opacity: 0;
  transition-delay: 1.5s;
  filter: blur(2px);
  transition: all 1s;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  overflow: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
table tr:first-child {
  font-weight: bold;
}
table td {
  padding: 10px;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.clients .client img {
  border: 0;
}
.clients .client:nth-child(2) {
  transition-delay: 100ms;
}
.clients .client:nth-child(3) {
  transition-delay: 200ms;
}
.clients .client:nth-child(4) {
  transition-delay: 300ms;
}
.clients .client:nth-child(5) {
  transition-delay: 400ms;
}

.menu-content {
  display: flex;
  flex-direction: row;
}
.menu-overflow {
  background: var(--background);
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: -1;
  position: fixed;
  width: 100%;
  left: 100%;
  top: 0;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: all 0.8s ease;
}
.menu-overflow-right {
  height: 100vh;
  width: 33.333%;
  background: var(--blue);
  position: fixed;
  top: 0;
  z-index: 2;
}
.menu-overflow-right--open {
  right: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: all 0.5s ease;
}
.menu-overflow-open {
  left: 0;
  z-index: 2;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  transition: all 1.2s ease;
}

main {
  padding-top: 90px;
  background: white;
  color: #000;
}

.main--nohd {
  padding-top: 0px;
}

.nav {
  display: flex;
  width: 100%;
  height: 100%;
}
.nav-contact {
  width: 66.66%;
  padding-top: 200px;
}
.nav-items {
  display: flex;
  justify-content: center;
  padding-top: 200px;
  padding-inline: 5rem;
  width: 100%;
  background: #000;
  /*&--open {

    ul {
      opacity: 1;

      li {
        animation: fadeUp .4s ease forwards;
        transition: opacity .3s;
        will-change: transform,opacity;

        &:nth-child(2) {
          animation-delay: 200ms;
        }

        &:nth-child(3) {
          animation-delay: 200ms;
        }
      }
    }
  }*/
}
.nav-items ul {
  list-style: none;
  text-align: center;
}
.nav-items ul li {
  animation-delay: 1s;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.nav-items ul li a {
  background: linear-gradient(90deg, var(--blue), var(--blue) 50%, #fff 0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.3s ease;
}
.nav-items ul li a, .nav-items ul li a:hover, .nav-items ul li a:active, .nav-items ul li a:focus {
  color: #fff;
  text-decoration: none;
}
.nav-items ul li a:hover, .nav-items ul li a:hover:hover, .nav-items ul li a:active:hover, .nav-items ul li a:focus:hover {
  background-position: 0 100%;
}

h1, h2 {
  margin: 0;
}

h1 {
  font-size: 3rem;
  line-height: 1;
}

h2 {
  font-size: 3rem;
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

section {
  padding-block: 3rem;
  padding-inline: 2rem;
}

.featured-header {
  padding-bottom: 10px;
}
.featured-header h3 {
  font-size: 1.7rem;
}
.featured-header h5 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 10px;
}
.featured-body img {
  width: 100%;
}

.page {
  padding: 5rem;
  background: #000;
  color: #fff;
  /*  h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 2rem;
  }*/
}
.page a, .page a:hover, .page a:visited, .page a:active, .page a:focus {
  color: #fff;
}
.page-contact input[type=submit] {
  background: black;
}
.page-icon img {
  max-width: 400px;
  height: auto;
}
.page-icon--r {
  text-align: right;
}
.page-white {
  background: #fff;
  color: #000;
}
.page-white a, .page-white a:hover, .page-white a:visited, .page-white a:active {
  color: var(--blue);
}
.page-blue {
  background: #7db8ca;
  color: #fff;
}
.page-lightblue {
  background: #76bed6;
  color: #fff;
}
.page-purple {
  background: #7f9bc0;
}
.page-orange {
  background: var(--blue);
  color: #fff;
}

.blocks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.blocks .block {
  border: 1px solid #e3e9ef;
  padding: 1.5rem 2.5rem;
  width: 33.3333%;
}
.blocks .block-img {
  height: 100px;
  width: auto;
  align-content: center;
}
.blocks .block ul {
  padding-left: 25px;
  margin-bottom: 20px;
}
.blocks .block h2 {
  color: var(--blue);
  margin-bottom: 2rem;
  font-size: 2rem;
}
.blocks .block h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #051923;
}
.blocks .block p {
  color: #718096;
}
.blocks .block-lg {
  width: 50%;
}

.contact-status {
  padding: 5px;
  display: block;
  border: 1px solid #fff;
  margin-block: 20px;
}

.pro {
  display: flex;
  /*ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li {
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 25px;
    font-size: 15px;

    h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
  }*/
}
.pro ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
.pro ul li::marker {
  color: var(--blue);
}
.pro-a {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
.pro-a h2 {
  animation-delay: 1.2s !important;
}
.pro-a h3 {
  animation-delay: 1.4s !important;
}
.pro-a span {
  animation-delay: 1.6s !important;
}
.pro-content {
  margin-top: 20px;
}
.pro-content p {
  margin-bottom: 20px;
}
.pro-text {
  font-size: 1.2rem;
  padding-inline: 5rem;
}
.pro-text h3 {
  font-family: "Raleway", sans-serif;
}
.pro-text h2 {
  margin-bottom: 0.5rem;
}
.pro-text h3 {
  margin-bottom: 1rem;
}
.intro {
  padding: 5rem;
}
.intro-services, .intro-about {
  background: #000;
  color: #fff;
}
.intro-services h3, .intro-services h5, .intro-about h3, .intro-about h5 {
  margin-bottom: 1rem;
}
.intro-services h5, .intro-about h5 {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.welcome {
  background-image: url(/img/bridge.jpg);
  background-size: cover;
  background-position: center;
  height: min(85svh, 800px);
  display: flex;
  align-content: center;
  justify-content: end;
  color: #000;
}
.welcome-left {
  justify-content: start;
  padding-left: 5rem;
}
.welcome-home {
  background-image: url(/img/mortgages-netherlands-l.jpg);
  height: min(60svh, 700px);
}
.welcome-work {
  background-image: url(/img/our-work.jpg);
}
.welcome-about {
  background-image: url(/img/dutch-circle-over-ons.jpg);
  height: min(65svh, 650px);
}
.welcome-contact {
  background-image: url(/img/dutch-circle-contactons.jpg);
  height: min(65svh, 650px);
}
.welcome-services {
  background-image: url(/img/dutch-circle-referenties.jpg);
  height: min(65svh, 650px);
}
.welcome-text {
  width: 50%;
  padding-top: 200px;
  color: #fff;
  padding-right: 10%;
}
.welcome-text-home {
  padding-top: 145px;
}
.welcome-text h3 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  margin-bottom: 10px;
}
.welcome-text h1 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0px;
}

.mn-btn {
  position: relative;
  color: #fff;
  padding: 10px 35px;
  border-radius: 100px;
  transition: all 0.3s ease-out;
  border: 1px solid var(--blue);
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.mn-btn-sm {
  padding: 5px 15px;
}
.mn-btn-lg {
  padding: 15px 45px;
  cursor: pointer;
  font-size: 20px;
}
.mn-btn-black {
  color: #000;
}
.mn-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(90deg);
  width: 16px;
  height: 16px;
  background: url(/img/arrow-top.svg) 50%/contain no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}
.mn-btn:hover {
  margin-left: -10px;
  padding-right: 73px;
}
.mn-btn:hover:after {
  opacity: 1;
}
.mn-btn-white {
  border-color: white;
  color: white;
}
.mn-btn-white:after {
  background: url(/img/arrow-white-top.svg) 50%/contain no-repeat;
}

.work-content, .about-content, .services-content {
  font-size: 1.1rem;
  padding-left: 2rem;
  padding-block: 1rem;
  max-width: 60rem;
  line-height: 1.8rem;
}

.service a, .service a:active, .service a:focus, .service a:visited, .service a:hover {
  text-decoration: none;
}

.sm-title {
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--blue);
  display: inline-block;
  padding-left: 15px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.sm-title:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--blue);
  right: 0px;
  left: 0;
  top: 6px;
}

.reference {
  border-radius: 2rem;
  background: #e9ecef;
  padding: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  min-height: 200px;
}
.reference:hover {
  transition: all 0.2s ease-in-out;
}
.reference-bottom {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.reference-bottom h6 {
  font-size: 14px;
  font-weight: 700;
  padding-left: 10px;
}
.reference-bottom img {
  width: 40px;
  border-radius: 50%;
}

.columns {
  display: grid;
  gap: 1rem;
}
.columns-ac {
  align-items: center;
}
.columns-fit300 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.columns-2 {
  grid-template-columns: 1fr 1fr;
}
.columns-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.columns-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.columns-6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.columns-nopd {
  padding: 0;
}
.columns-wb {
  border: 1px solid var(--primary);
}
.columns > * h2 {
  margin-bottom: 0.2rem;
}

@media (prefers-reduced-motion: no-preference) {
  .work, .about, .services {
    opacity: 0.8;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: cover 100px;
  }
  /**/
  @keyframes fade-in {
    to {
      opacity: 1;
    }
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(0.05deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  display: flex;
}
.footer-left {
  width: 50%;
}

footer {
  background: #051b2e;
  padding: 5rem;
  display: flex;
}
footer h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
footer ul {
  padding-left: 0px;
}
footer ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
footer a, footer a:hover, footer a:active, footer a:visited {
  color: #fff;
  text-decoration: none;
}
footer a:hover, footer a:hover:hover, footer a:active:hover, footer a:visited:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1100px) {
  footer {
    padding: 1rem;
    display: flex;
    flex-direction: row;
  }
  .footer {
    flex-direction: column;
  }
  .blocks .block {
    width: 100%;
  }
  .blocks .block h2 {
    margin-bottom: 1rem;
  }
}
/* typical phone screen resolution */
@media only screen and (max-width: 667px) {
  header {
    padding-inline: 1rem;
  }
  .nav {
    width: 100%;
  }
  .nav-items {
    padding-top: 150px;
  }
  .nav-items ul li {
    font-size: 1.5rem;
  }
  .blocks .block {
    width: 100%;
  }
  .blocks .block h2 {
    margin-bottom: 1rem;
  }
  .welcome {
    height: min(75svh, 500px);
  }
  .welcome-home {
    background-image: url("/img/mortgages-netherlands-s.jpg");
  }
  .welcome-about {
    background-image: url("/img/dutch-circle-over-ons-xs.jpg");
  }
  .welcome-contact {
    background-image: url("/img/dutch-circle-contact-xs.jpg");
  }
  .welcome-services {
    background-image: url("/img/dutch-circle-referenties-xs.jpg");
  }
  .welcome-text {
    display: none;
    color: #000;
    width: 100%;
    padding-top: 50px;
  }
  .welcome-text h1 {
    color: #000;
  }
  .columns > div {
    padding: 0rem;
  }
  .columns-2 {
    grid-template-columns: 1fr;
  }
  .columns-6 {
    display: flex;
    flex-direction: column;
  }
  .columns-pro {
    padding: 1rem !important;
  }
  .pro {
    flex-direction: column;
  }
  .pro-icon img {
    width: 100%;
  }
  .pro-text {
    padding-inline: 0rem;
    font-size: 16px;
  }
  .pro-text h1, .pro-text h2 {
    line-height: 1;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .page {
    padding: 1rem;
  }
  .page h1 {
    font-size: 2rem;
  }
  .page-icon {
    display: none;
  }
  .clients {
    padding-top: 2rem;
  }
  section {
    padding-block: 1rem;
    padding-inline: 1rem;
  }
  .dc-btn {
    width: 100%;
  }
  .reference .pb-2 {
    padding: 10px;
  }
  .reference-bottom {
    padding-left: 10px;
    padding-bottom: 10px;
  }
}
.works {
  height: 400px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}
.works .card {
  width: 80px;
  border-radius: 0.75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}
.works .card > .row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}
.works .card > .row > .icon {
  background: #223;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.works .card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0.3s;
  transition: all 0.3s ease;
}
.works .description p {
  color: #fff;
  padding-top: 5px;
}
.works .description h4 {
  text-transform: uppercase;
}
.works input {
  display: none;
}
.works input:checked + label {
  width: 350px;
}
.works input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.works .card[for=c1] {
  background-image: url("/img/bourgondie-ref-1.jpg");
}
.works .card[for=c2] {
  background-image: url("/img/bourgondie-ref-2.png");
}
.works .card[for=c3] {
  background-image: url("/img/bourgondie-ref-1.jpg");
}
.works .card[for=c3] .description {
  color: #000;
}
.works .card[for=c3] .description p {
  color: #000;
}
.works .card[for=c4] {
  background-image: url("img4.jpeg");
}

.form-item {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem;
}
.form-item input[type=text] {
  font-size: 1rem;
  height: 50px;
  border-radius: 10px;
  padding-left: 10px;
  color: #000;
}
.form-item textarea {
  border-radius: 10px;
  height: 300px;
  font-size: 1rem;
  padding-left: 10px;
  padding-top: 10px;
  font-family: "Poppins", sans-serif;
}

.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}

input[type=submit] {
  background: black !important;
}
