/**
 * Design Tokens / SCSS Variables
 * Gebaseerd op Groef branding
 */
.cta-block {
  position: relative;
  padding: 0;
  min-height: 498px;
}
.cta-block__container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  min-height: 498px;
  overflow: hidden;
  position: relative;
}
.cta-block__divider {
  width: 80px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 0;
}
.cta-block__image {
  position: relative;
  overflow: hidden;
  flex: 0 0 50%;
  min-height: 15rem;
}
.cta-block__image img {
  position: absolute;
  top: -19.24%;
  left: 0;
  width: 100%;
  height: 178.77%;
  max-width: none;
}
.cta-block__content {
  padding: 65px 73px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 643px;
  min-height: 498px;
  position: relative;
}
.cta-block__title {
  font-family: "Inria Serif", serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 78px;
  letter-spacing: -1.44px;
  width: 447px;
  text-align: left;
}
.cta-block__description {
  font-family: "Inria Serif", serif;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: -0.54px;
  width: 441px;
  margin-bottom: 0;
  text-align: left;
}
.cta-block__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  background: transparent;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 41px;
  min-width: 221px;
  height: 54px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .cta-block__container {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .cta-block__image {
    min-height: 15rem;
  }
  .cta-block__content {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 32px 16px;
  }
  .cta-block__title, .cta-block__description {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 700px) {
  .cta-block__container {
    flex-direction: column;
    padding: 0;
  }
  .cta-block__image, .cta-block__content {
    width: 100%;
    min-height: 15rem;
    height: auto;
    padding: 24px 8px;
  }
  .cta-block__title {
    font-size: 28px;
    line-height: 1.2;
    width: 100%;
  }
  .cta-block__description {
    font-size: 15px;
    line-height: 1.4;
    width: 100%;
  }
  .cta-block__button {
    min-width: 120px;
    font-size: 13px;
    padding: 10px 20px;
    height: auto;
  }
}

.cta-block--white {
  background: #fff;
  color: #1a1a1a;
}
.cta-block--white .cta-block__content {
  background: #fff;
  color: #1a1a1a;
}
.cta-block--white .cta-block__divider {
  background: #1a1a1a;
}
.cta-block--white .cta-block__title,
.cta-block--white .cta-block__description {
  color: #1a1a1a;
}
.cta-block--white .cta-block__button {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.cta-block--white .cta-block__button:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.cta-block--black {
  background: #1a1a1a;
  color: #fff;
}
.cta-block--black .cta-block__content {
  background: #1a1a1a;
  color: #fff;
}
.cta-block--black .cta-block__divider {
  background: #ffffff;
}
.cta-block--black .cta-block__title,
.cta-block--black .cta-block__description {
  color: #fff;
}
.cta-block--black .cta-block__button {
  border-color: #fff;
  color: #fff;
}
.cta-block--black .cta-block__button:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.cta-block--brown {
  background: #3e2e16;
  color: #fff;
}
.cta-block--brown .cta-block__divider {
  background: #ffffff;
}
.cta-block--brown .cta-block__content {
  background: #3e2e16;
  color: #fff;
}
.cta-block--brown .cta-block__title,
.cta-block--brown .cta-block__description {
  color: #fff;
}
.cta-block--brown .cta-block__button {
  border-color: #fff;
  color: #fff;
}
.cta-block--brown .cta-block__button:hover {
  background: #fff;
  color: #3e2e16;
  border-color: #fff;
}
/*# sourceMappingURL=cta-block.css.map */
