/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/
body {
  margin: 0;
  font-family: "area-normal", sans-serif;
  color: #3c3583;
}

/*
|--------------------------------------------------------------------------
| Classes + Layout
|--------------------------------------------------------------------------
*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex-columns {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .flex-columns {
    flex-direction: column;
  }
}
.flex-columns .col {
  position: relative;
}
.flex-columns img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.flex-columns.align-center {
  align-items: center;
}
.flex-columns.justify-center {
  justify-content: center;
}

.mt-0 {
  margin-top: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-8 {
  border-radius: 8px;
}

.d-none {
  display: none !important;
}

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

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/
.button {
  display: block;
  width: fit-content;
  padding: 20px 30px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s;
}
.button:hover {
  cursor: pointer;
}
.button.button-primary {
  background: #3c3583;
  color: #f9eca3;
}
.button.button-primary:hover {
  background: #5148b1;
}
.button.button-secondary {
  background: #f9eca3;
  color: #3c3583;
}
.button.button-secondary:hover {
  background: #faf0b5;
}
.button.button-ghost {
  border: 1px solid #a2cbed;
  color: #a2cbed;
}
.button.button-ghost:hover {
  background: #a2cbed;
  color: #ffffff;
}
.button.button-outline {
  border: 1px solid #3c3583;
  color: #3c3583;
}
.button.button-outline:hover {
  background: #3c3583;
  color: #ffffff;
}
.button.loadmore {
  background: white;
  color: #3c3583;
  margin: 0 auto;
}
.button.loadmore:hover {
  background: #faf0b5;
}
.button.blue-text {
  color: #a2cbed;
}

/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
header.header:not(.short) + section {
  margin-top: -300px;
}
@media screen and (max-width: 1024px) {
  header.header:not(.short) + section {
    margin-top: -105px;
  }
}
header.header.short .background {
  padding-bottom: 40px;
}
header.header.short .flex-container {
  margin-bottom: 0;
}
header.header .background {
  padding: 40px 0 310px 0;
  background: #f9eca3;
}
@media screen and (max-width: 1024px) {
  header.header .background {
    grid-template-columns: none;
    padding: 40px 0 170px 0;
  }
}
header.header svg {
  fill: #f9eca3;
}
header.header a.button {
  margin-bottom: 20px;
}
header.header .flex-container {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  header.header .flex-container {
    grid-template-columns: none;
    margin-bottom: 60px;
  }
}
header.header .flex-container .logo-link {
  position: relative;
  width: fit-content;
}
header.header .flex-container .logo-image {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 1024px) {
  header.header .flex-container .logo-image {
    max-width: 75px;
  }
}
header.header .flex-container .logo-image:hover {
  animation: wiggle 0.4s ease-in-out;
}
header.header .flex-container .toggle {
  position: absolute;
  top: 28px;
  right: 0;
  display: none;
  width: 32px;
  z-index: 2;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  header.header .flex-container .toggle {
    display: block;
  }
}
header.header .flex-container .toggle:hover .dash {
  background: #5148b1;
}
header.header .flex-container .toggle .dash {
  display: block;
  height: 3px;
  background: #3c3583;
  transition: all 0.2s;
  width: 100%;
}
header.header .flex-container .toggle .dash-1, header.header .flex-container .toggle .dash-2 {
  margin-bottom: 7px;
}
header.header .flex-container .toggle.open:hover .dash {
  background: #faf0b5;
}
header.header .flex-container .toggle.open .dash {
  background: #f9eca3;
}
header.header .flex-container .toggle.open .dash-1 {
  transform: rotate(45deg) translateY(8px) translateX(8px);
}
header.header .flex-container .toggle.open .dash-2 {
  width: 100%;
  transform: rotate(135deg) translateY(-1px) translateX(0px);
}
header.header .flex-container .toggle.open .dash-3 {
  display: none;
}
header.header .flex-container .menu-hoofdmenu-container {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 1024px) {
  header.header .flex-container .menu-hoofdmenu-container {
    display: none;
  }
}
header.header .flex-container .menu-hoofdmenu-container .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header.header .flex-container .menu-hoofdmenu-container .menu .menu-item {
  margin-right: 40px;
}
header.header .flex-container .menu-hoofdmenu-container .menu .menu-item:last-child {
  margin-right: 0;
}
header.header .flex-container .menu-hoofdmenu-container .menu .menu-item a {
  text-decoration: none;
  color: #3c3583;
  font-weight: 600;
  transition: all 0.2s;
}
header.header .flex-container .menu-hoofdmenu-container .menu .menu-item a:hover {
  color: #5148b1;
}
header.header .main-title {
  margin: 0 0 40px 0;
  font-size: 60px;
  color: #3c3583;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  header.header .main-title {
    font-size: 32px;
  }
}
header.header .main-title span {
  font-style: italic;
}
header.header .lead-in {
  margin: 0 0 40px 0;
  font-size: 24px;
  color: #3c3583;
}
@media screen and (max-width: 1024px) {
  header.header .lead-in {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  header.header .effect {
    display: none;
  }
}

footer.footer {
  padding: 120px 0;
  background: #3c3583;
}
@media screen and (max-width: 1024px) {
  footer.footer {
    padding: 60px 0;
  }
}
footer.footer .columns {
  display: grid;
  grid-template-columns: 620px 1fr;
  grid-gap: 60px;
}
@media screen and (max-width: 1024px) {
  footer.footer .columns {
    grid-template-columns: none;
  }
}
footer.footer .columns .column.column-last {
  display: flex;
  flex-direction: column;
}
footer.footer .columns .column .mini-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}
@media screen and (max-width: 1024px) {
  footer.footer .columns .column .mini-columns {
    grid-template-columns: none;
  }
}
footer.footer .columns .column .mini-columns .logo-image {
  display: block;
  width: 100%;
  max-width: 144px;
}
@media screen and (max-width: 1024px) {
  footer.footer .columns .column .mini-columns .logo-image {
    max-width: 60px;
  }
}
footer.footer .columns .column .mini-columns .logo-image:hover {
  animation: wiggle 0.4s ease-in-out;
}
footer.footer .columns .column .mini-columns .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer.footer .columns .column .mini-columns .menu .menu-item {
  margin-right: 40px;
}
footer.footer .columns .column .mini-columns .menu .menu-item:last-child {
  margin-right: 0;
}
footer.footer .columns .column .mini-columns .menu .menu-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  transition: all 0.2s;
}
footer.footer .columns .column .mini-columns .menu .menu-item a:hover {
  color: rgba(255, 255, 255, 0.4);
}
footer.footer .columns .column .mini-columns .address-lines {
  margin: 0 0 26px 0;
  padding: 0;
  list-style-type: none;
}
footer.footer .columns .column .mini-columns .address-lines:last-child {
  margin-bottom: 0;
}
footer.footer .columns .column .mini-columns .address-lines .address-line {
  color: #ffffff;
}
footer.footer .columns .column .mini-columns .address-lines .address-line.company-name {
  font-weight: 900;
}
footer.footer .columns .column .mini-columns .address-lines .address-line .link {
  color: #ffffff;
  transition: all 0.2s;
}
footer.footer .columns .column .mini-columns .address-lines .address-line .link:hover {
  color: rgba(255, 255, 255, 0.4);
}
footer.footer .columns .column .channels {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  justify-content: right;
}
@media screen and (max-width: 1024px) {
  footer.footer .columns .column .channels {
    justify-content: left;
  }
}
footer.footer .columns .column .channels .channel {
  margin-right: 15px;
}
footer.footer .columns .column .channels .channel:last-child {
  margin-right: 0;
}
footer.footer .columns .column .channels .channel .channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c3583;
  background: #f9eca3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
}
footer.footer .columns .column .channels .channel .channel-link:hover {
  background: #faf0b5;
}
footer.footer .columns .column .bottom-aligner {
  align-self: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  footer.footer .columns .column .bottom-aligner {
    margin-top: 60px;
  }
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal {
  display: flex;
  margin: 0 0 5px 0;
  padding: 0;
  list-style-type: none;
  justify-content: right;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item {
  margin-right: 8px;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item:last-child {
  margin-right: 0;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item:last-child a:after {
  display: none;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item a {
  text-decoration: none;
  font-size: 12px;
  color: #a2cbed;
  transition: all 0.2s;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item a:hover {
  color: #b5d5f1;
}
footer.footer .columns .column .bottom-aligner .menu#menu-legal .menu-item a:after {
  content: "|";
  margin-left: 8px;
}
footer.footer .columns .column .bottom-aligner .copyright {
  font-size: 12px;
  color: #a2cbed;
  text-align: right;
}

#mobile-nav {
  position: fixed;
  display: none;
  flex-direction: column;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3c3583;
  z-index: 1;
  padding: 40px 15px;
}
#mobile-nav.open {
  display: flex;
}
#mobile-nav .logo-link {
  display: block;
  width: fit-content;
}
#mobile-nav .logo-link .logo-image {
  display: block;
  width: 100%;
  max-width: 75px;
}
#mobile-nav .logo-link .logo-image:hover {
  animation: wiggle 0.4s ease-in-out;
}
#mobile-nav .menu-hoofdmenu-container {
  display: flex;
  flex: 1;
  align-items: center;
}
#mobile-nav .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: fit-content;
  margin: 0 auto;
}
#mobile-nav .menu .menu-item {
  margin-bottom: 30px;
}
#mobile-nav .menu .menu-item:last-child {
  margin-bottom: 0;
}
#mobile-nav .menu .menu-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
  color: #f9eca3;
  line-height: 1;
  transition: all 0.2s;
}
#mobile-nav .menu .menu-item a:hover {
  color: #faf0b5;
}
#mobile-nav .bottom-aligner {
  margin-top: auto;
}
#mobile-nav .bottom-aligner .address-lines {
  margin: 0 0 30px 0;
  padding: 0;
  list-style-type: none;
}
#mobile-nav .bottom-aligner .address-lines .address-line {
  color: #ffffff;
}
#mobile-nav .bottom-aligner .address-lines .address-line .link {
  color: #ffffff;
  transition: all 0.2s;
}
#mobile-nav .bottom-aligner .address-lines .address-line .link:hover {
  color: rgba(255, 255, 255, 0.4);
}
#mobile-nav .bottom-aligner .channels {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  #mobile-nav .bottom-aligner .channels {
    justify-content: left;
  }
}
#mobile-nav .bottom-aligner .channels .channel {
  margin-right: 15px;
}
#mobile-nav .bottom-aligner .channels .channel:last-child {
  margin-right: 0;
}
#mobile-nav .bottom-aligner .channels .channel .channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c3583;
  background: #f9eca3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
}
#mobile-nav .bottom-aligner .channels .channel .channel-link:hover {
  background: #faf0b5;
}

section.call-to-action {
  padding: 80px 0;
  background: #3c3583;
}
@media screen and (max-width: 1024px) {
  section.call-to-action {
    padding: 60px 0;
  }
}
section.call-to-action .grid-container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 60px;
}
@media screen and (max-width: 1024px) {
  section.call-to-action .grid-container {
    grid-template-columns: none;
    grid-gap: 30px;
  }
}
section.call-to-action .grid-container .title {
  margin: 0;
  color: #f9eca3;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  section.call-to-action .grid-container .title {
    font-size: 32px;
    text-align: center;
  }
}
section.call-to-action .grid-container .button-container {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 1024px) {
  section.call-to-action .grid-container .button-container {
    justify-content: center;
  }
}

section.key-values {
  padding: 80px 0;
  background: #e6afca;
  overflow-x: scroll;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
@media screen and (max-width: 1024px) {
  section.key-values {
    padding: 60px 0;
  }
}
section.key-values::-webkit-scrollbar {
  display: none;
}
section.key-values .values {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 150px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.key-values .values {
    display: block;
  }
}
section.key-values .values .value {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  color: #3c3583;
  white-space: nowrap;
}
section.key-values .values .value:last-child:after {
  display: none;
}

section.content-image {
  padding: 80px 0;
  background: #a2cbed;
  overflow-x: hidden;
}
section.content-image .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px;
}
@media screen and (max-width: 1024px) {
  section.content-image .columns {
    grid-template-columns: none;
    grid-gap: 80px;
  }
}
section.content-image .columns .column {
  display: flex;
  align-items: center;
}
section.content-image .columns .column .title {
  margin: 0 0 35px 0;
  color: #3c3583;
  font-size: 48px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.content-image .columns .column .title {
    font-size: 32px;
  }
}
section.content-image .columns .column .text {
  margin: 0 0 35px 0;
  color: #3c3583;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  section.content-image .columns .column .text {
    font-size: 20px;
  }
}
section.content-image .columns .column.column-last {
  display: flex;
  justify-content: flex-end;
}
section.content-image .columns .column.column-last .image-wrap {
  position: relative;
  max-width: 472px;
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  section.content-image .columns .column.column-last .image-wrap {
    margin: 0 auto;
  }
}
section.content-image .columns .column.column-last .image-wrap .image {
  display: block;
  width: 100%;
  border-radius: 20px;
}
section.content-image .columns .column.column-last .image-wrap .ring-of-bomondo {
  position: absolute;
  top: -40px;
  right: -40px;
  max-width: 180px;
  animation: spin 15s linear infinite;
}

section.newsletter {
  padding: 80px 0;
  background: #f9eca3;
}
@media screen and (max-width: 1024px) {
  section.newsletter {
    padding: 40px 0;
  }
}
section.newsletter .inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 60px;
  padding: 40px;
  background: #3c3583;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  section.newsletter .inner {
    padding: 30px;
    grid-template-columns: none;
  }
}
section.newsletter .inner .icon {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  section.newsletter .inner .icon {
    max-width: 200px;
    margin: 0 auto;
  }
}
section.newsletter .inner .flex-wrap {
  display: flex;
  align-items: center;
}
section.newsletter .inner .flex-wrap .title {
  margin: 0 0 30px 0;
  color: #f9eca3;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  section.newsletter .inner .flex-wrap .title {
    font-size: 32px;
    text-align: center;
  }
}
section.newsletter .inner .flex-wrap .text {
  margin: 0 0 30px 0;
  color: #f9eca3;
}
@media screen and (max-width: 1024px) {
  section.newsletter .inner .flex-wrap .text {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  section.newsletter .inner .flex-wrap .button {
    margin: 0 auto;
  }
}
section.newsletter .channels {
  margin: 30px 0 0 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1024px) {
  section.newsletter .channels {
    grid-template-columns: none;
    grid-gap: 15px;
  }
}
section.newsletter .channels .channel {
  display: block;
  padding: 15px;
  background: #3c3583;
  border-radius: 20px;
  transition: all 0.2s;
}
section.newsletter .channels .channel:hover {
  background: #5148b1;
}
section.newsletter .channels .channel .channel-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  color: #f9eca3;
}
section.newsletter .channels .channel .channel-link .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: #a2cbed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #3c3583;
}

.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-body .gform_fields {
  row-gap: 10px;
}
.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-body .gform_fields label {
  display: none;
}
.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-body .gform_fields input {
  border-radius: 8px;
  padding: 22px 12px;
}
.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-footer {
  justify-content: end;
}
.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-footer input.gform_button.button {
  background: #f9eca3;
  color: #3c3583;
  display: block;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.gform_wrapper.newsletter-form_wrapper form.newsletter-form .gform-footer input.gform_button.button:hover {
  background: #3c3583;
  color: #f9eca3;
  border: 1px solid #f9eca3;
}

section.video .image {
  display: block;
  width: 100%;
}

.intro-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.intro-slider {
  width: 100%;
  height: 100%;
}

.intro-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.intro-mask img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

section.clients {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  section.clients {
    padding: 40px 0;
  }
}
section.clients .title {
  margin: 0 0 60px 0;
  color: #3c3583;
  font-size: 48px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.clients .title {
    font-size: 32px;
    text-align: center;
  }
}
section.clients .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.services {
  padding: 80px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  section.services {
    padding: 40px 0;
  }
}
section.services .main-title {
  margin: 0 0 60px 0;
  color: #3c3583;
  font-size: 48px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.services .main-title {
    font-size: 32px;
    text-align: center;
  }
}
section.services .items-wrap {
  position: relative;
}
section.services .items-wrap .items {
  width: 2000px;
}
@media screen and (max-width: 1024px) {
  section.services .items-wrap .items {
    width: 1000px;
  }
}
section.services .items-wrap .items .item {
  display: block;
  max-width: 370px;
  text-decoration: none;
  margin-right: 40px;
  color: #3c3583;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  section.services .items-wrap .items .item {
    margin-right: 20px;
  }
}
section.services .items-wrap .items .item:hover .body {
  background: #b5d5f1;
}
section.services .items-wrap .items .item .image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: #3c3583;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
section.services .items-wrap .items .item .image-wrap .image {
  display: block;
  max-height: 120px;
}
section.services .items-wrap .items .item .body {
  padding: 30px;
  background: #a2cbed;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.2s;
}
section.services .items-wrap .items .item .body .title {
  margin: 0 0 20px 0;
  font-size: 24px;
  color: #3c3583;
  font-weight: 900;
}
section.services .items-wrap .items .item .body .text {
  margin: 0;
  color: #3c3583;
}
section.services .items-wrap .next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 60px);
  right: 0;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: rgba(60, 53, 131, 0.8);
  font-size: 30px;
  color: #f9eca3;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  section.services .items-wrap .next {
    height: 60px;
    width: 60px;
    top: calc(50% - 30px);
    font-size: 22px;
    text-align: center;
  }
}
section.services .items-wrap .next:hover {
  background: rgba(60, 53, 131, 0.6);
}

/*
|--------------------------------------------------------------------------
| Gutenburg page size / layout settings
|--------------------------------------------------------------------------
*/
.container > .alignfull,
.main-content > .alignfull {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* reset (toevoegen aan gutenburg stylesheet)*/
.wp-block-columns:not(.alignwide):not(.alignfull) p,
.alignwide p,
.alignwide p {
  padding-bottom: 20px;
}
.wp-block-columns:not(.alignwide):not(.alignfull) p strong,
.alignwide p strong,
.alignwide p strong {
  font-weight: 900;
}
.wp-block-columns:not(.alignwide):not(.alignfull) ul,
.alignwide ul,
.alignwide ul {
  margin-top: 0;
}

.wp-block-column p {
  margin: 0;
}

.wp-block-image img {
  width: 100%;
  border-radius: 8px;
}

/*
|--------------------------------------------------------------------------
| Sidebar settings
|--------------------------------------------------------------------------
*/
/* if - sidebar is actief  */
.content-sidebar.has-sidebar .alignfull {
  margin-left: calc(-50vw + 50% + calc((370px + 2rem) / 2));
  margin-right: calc(-50vw + 50% - calc((370px + 2rem) / 2));
}
@media (max-width: 768px) {
  .content-sidebar.has-sidebar .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.content-sidebar.has-sidebar .main-content {
  max-width: 800px;
}

.content-sidebar.has-sidebar .alignwide {
  max-width: 900px;
}

.content-sidebar {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.content-sidebar .main-content {
  flex: 1;
}
.content-sidebar .sidebar {
  width: 370px;
}
@media (max-width: 768px) {
  .content-sidebar {
    flex-direction: column-reverse;
  }
  .content-sidebar .sidebar {
    width: 100%;
  }
}

/*
|--------------------------------------------------------------------------
| Achrive (overview) Page
|--------------------------------------------------------------------------
*/
.page-template-page-cases header .background {
  background: #e6afca;
}
.page-template-page-cases header .button.button-primary {
  color: #e6afca;
}
.page-template-page-cases header svg {
  fill: #e6afca;
}

section.cases {
  margin-bottom: 80px;
}
section.cases .cases-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
section.cases .cases-row.columns-2 .case-item {
  flex: 0 0 calc(50% - 10px);
}
section.cases .cases-row.columns-3 .case-item {
  flex: 0 0 calc(33.333% - 13.33px);
}
@media (max-width: 768px) {
  section.cases .cases-row {
    flex-direction: column;
  }
}
section.cases .cases-row .case-item {
  overflow: hidden;
  transition: transform 0.2s ease;
}
section.cases .cases-row .case-item a img {
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  z-index: 1;
}
@media (max-width: 768px) {
  section.cases .cases-row .case-item a img {
    height: auto;
  }
}
section.cases .cases-row .case-item .case-content {
  padding: 15px;
}
section.cases .cases-row .case-item .case-content h3 {
  font-size: 1.2rem;
  color: #3c3583;
  margin: 0;
}
section.cases .cases-row .case-item .case-content p.case-cat {
  font-size: 0.95rem;
  color: #e6afca;
  margin: 0;
}
section.cases .cases-row .case-item:hover {
  transform: translateY(-4px);
}

/*
|--------------------------------------------------------------------------
| Single Page
|--------------------------------------------------------------------------
*/
.single-cases header.header + section {
  margin-top: -500px;
}
@media (max-width: 768px) {
  .single-cases header.header + section {
    margin-top: -240px;
  }
}
.single-cases header.header .background {
  background: #a2cbed;
}
.single-cases header.header svg {
  fill: #a2cbed;
}

section.cases-single .hero {
  margin-bottom: 50px;
}
section.cases-single .hero h1 {
  font-size: 60px;
  font-weight: 600;
  color: #3c3583;
}
@media (max-width: 768px) {
  section.cases-single .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
section.cases-single .hero .featured-image > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
section.cases-single .sidebar .widget {
  position: sticky;
  top: 50px;
  width: 370px;
}
section.cases-single .sidebar .widget p {
  margin: 0;
}
@media (max-width: 768px) {
  section.cases-single .sidebar .widget {
    position: relative !important;
    top: 0px !important;
    width: 100%;
  }
}

/*
|--------------------------------------------------------------------------
| Post navigation
|--------------------------------------------------------------------------
*/
.post-nav {
  background: #a2cbed;
  padding: 20px 10px 50px;
}
.post-nav .container h3 {
  font-size: 24px;
  padding-bottom: 15px;
}
.post-nav .container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .post-nav .container ul {
    flex-direction: column;
  }
}
.post-nav .container ul li img {
  border-radius: 8px;
  width: 220px;
  height: auto;
}
.post-nav .container ul li a {
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  color: white;
  font-size: 20px;
}
.post-nav .container ul li.next {
  text-align: right;
}
.post-nav .container ul span {
  display: block;
  color: #3c3583;
}
.post-nav .container ul span.title {
  font-weight: 800;
}

.cases-slider {
  padding: 80px 0;
  background: #3c3583;
}
@media screen and (max-width: 1024px) {
  .cases-slider {
    padding: 60px 0;
  }
}
.cases-slider * {
  transition: all 0.2s;
}
.cases-slider .title {
  margin: 0 0 60px 0;
  font-size: 48px;
  color: #a2cbed;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .cases-slider .title {
    font-size: 32px;
  }
}
.cases-slider .cases-wrap {
  position: relative;
  margin-bottom: 30px;
}
.cases-slider .cases-wrap .slick-track {
  display: flex;
  align-items: center;
}
.cases-slider .cases-wrap .slick-track .case {
  position: relative;
  display: flex;
  align-items: center;
  width: 1000px;
  transition: all 0.2s;
}
@media screen and (max-width: 1400px) {
  .cases-slider .cases-wrap .slick-track .case {
    width: 800px;
  }
}
@media screen and (max-width: 1000px) {
  .cases-slider .cases-wrap .slick-track .case {
    width: 500px;
  }
}
@media screen and (max-width: 775px) {
  .cases-slider .cases-wrap .slick-track .case {
    width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .cases-slider .cases-wrap .slick-track .case {
    width: 350px;
  }
}
@media screen and (max-width: 500px) {
  .cases-slider .cases-wrap .slick-track .case {
    width: 250px;
  }
}
.cases-slider .cases-wrap .slick-track .case:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3c3583;
  opacity: 0.4;
  transition: all 0.2s;
}
.cases-slider .cases-wrap .slick-track .case.slick-center {
  width: 1200px;
}
@media screen and (max-width: 1400px) {
  .cases-slider .cases-wrap .slick-track .case.slick-center {
    width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  .cases-slider .cases-wrap .slick-track .case.slick-center {
    width: 700px;
  }
}
@media screen and (max-width: 775px) {
  .cases-slider .cases-wrap .slick-track .case.slick-center {
    width: 500px;
  }
}
@media screen and (max-width: 600px) {
  .cases-slider .cases-wrap .slick-track .case.slick-center {
    width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .cases-slider .cases-wrap .slick-track .case.slick-center {
    width: 300px;
  }
}
.cases-slider .cases-wrap .slick-track .case.slick-center:after {
  opacity: 0;
}
.cases-slider .cases-wrap .slick-track .case .case-image {
  display: block;
  width: 100%;
  border-radius: 30px;
}
.cases-slider .cases-wrap .next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 60px);
  right: calc((100vw - 1200px) / 2 - 70px);
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: rgba(60, 53, 131, 0.8);
  font-size: 30px;
  color: #f9eca3;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .cases-slider .cases-wrap .next {
    height: 60px;
    width: 60px;
    top: calc(50% - 30px);
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (max-width: 1400px) {
  .cases-slider .cases-wrap .next {
    right: calc((100vw - 900px) / 2 - 70px);
  }
}
@media screen and (max-width: 1000px) {
  .cases-slider .cases-wrap .next {
    right: calc((100vw - 700px) / 2 - 40px);
  }
}
@media screen and (max-width: 775px) {
  .cases-slider .cases-wrap .next {
    right: calc((100vw - 500px) / 2 - 38px);
  }
}
@media screen and (max-width: 600px) {
  .cases-slider .cases-wrap .next {
    right: calc((100vw - 400px) / 2 - 38px);
  }
}
@media screen and (max-width: 500px) {
  .cases-slider .cases-wrap .next {
    right: calc((100vw - 250px) / 2 - 63px);
  }
}
.cases-slider .cases-wrap .next:hover {
  background: rgba(60, 53, 131, 0.6);
}
.cases-slider .attributes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}
@media screen and (max-width: 1024px) {
  .cases-slider .attributes {
    grid-template-columns: none;
    grid-gap: 30px;
  }
}
.cases-slider .attributes .customer {
  font-size: 20px;
  color: #a2cbed;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .cases-slider .attributes .customer {
    text-align: center;
  }
}
.cases-slider .attributes .task {
  color: #a2cbed;
}
@media screen and (max-width: 1024px) {
  .cases-slider .attributes .task {
    text-align: center;
  }
}
.cases-slider .attributes .dots {
  width: fit-content;
  margin: 0 auto;
}
.cases-slider .attributes .dots .slick-dots {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cases-slider .attributes .dots .slick-dots li {
  margin-right: 8px;
}
.cases-slider .attributes .dots .slick-dots li:last-child {
  margin-right: 0;
}
.cases-slider .attributes .dots .slick-dots li.slick-active .page {
  opacity: 1;
}
.cases-slider .attributes .dots .slick-dots li .page {
  width: 8px;
  height: 8px;
  background: #a2cbed;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
}
.cases-slider .attributes .button-wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .cases-slider .attributes .button-wrap {
    justify-content: center;
  }
}

section.contact {
  padding: 40px 0 0 0;
  background: #f9eca3;
  overflow-x: hidden;
}
section.contact .columns {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-gap: 120px;
}
@media screen and (max-width: 1024px) {
  section.contact .columns {
    grid-template-columns: none;
    grid-gap: 20px;
  }
}
section.contact .columns .column .title {
  margin: 0 0 35px 0;
  color: #3c3583;
  font-size: 48px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .title {
    font-size: 32px;
  }
}
section.contact .columns .column .text {
  margin: 0 0 30px 0;
  color: #3c3583;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .text {
    font-size: 20px;
  }
}
section.contact .columns .column .contact-detail-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .contact-detail-lists {
    grid-template-columns: none;
    grid-gap: 30px;
  }
}
section.contact .columns .column .contact-detail-lists .contact-details {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.contact .columns .column .contact-detail-lists .contact-details .contact-detail {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .contact-detail-lists .contact-details .contact-detail {
    font-size: 20px;
  }
}
section.contact .columns .column .contact-detail-lists .contact-details .contact-detail .link {
  color: #d14c26;
  transition: all 0.2s;
}
section.contact .columns .column .contact-detail-lists .contact-details .contact-detail .link:hover {
  color: #df6d4d;
}
section.contact .columns .column .map {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: 450px;
}
section.contact .columns .column .info-heading {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 900;
}
section.contact .columns .column .info {
  margin: 0 0 15px 0;
}
section.contact .columns .column .info.info-last {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .desktop-form {
    display: none;
  }
}
section.contact .columns .column .mobile-form {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .mobile-form {
    display: block;
  }
}
section.contact .columns .column .gform_validation_errors {
  display: none;
}
section.contact .columns .column .gform-theme--foundation .gform_fields {
  row-gap: 20px !important;
}
section.contact .columns .column .gform_wrapper {
  padding: 30px 20px;
  background: #a2cbed;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  section.contact .columns .column .gform_wrapper {
    margin-bottom: 40px;
  }
}
section.contact .columns .column .gform_wrapper .gform_heading {
  display: none;
}
section.contact .columns .column .gform_wrapper .gfield_label {
  margin-bottom: 3px;
  color: #3c3583;
}
section.contact .columns .column .gform_wrapper input,
section.contact .columns .column .gform_wrapper textarea {
  border-radius: 8px;
  border: 0;
  outline: 0;
  padding: 20px 10px;
}
section.contact .columns .column .gform_wrapper input:focus,
section.contact .columns .column .gform_wrapper textarea:focus {
  border: 3px solid #3c3583;
}
section.contact .columns .column input[type=submit] {
  display: block !important;
  width: fit-content !important;
  background: #3c3583 !important;
  color: #ffffff !important;
  padding: 20px 30px !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
  outline: 0 !important;
}
section.contact .columns .column input[type=submit]:hover {
  background: #5148b1 !important;
}

body.page-template-page-about header.header .background {
  padding: 40px 0 100px 0;
}

section.about .kern-waardes {
  padding: 80px 0;
}
section.about .kern-waardes h2 {
  font-size: 48px;
  padding-bottom: 40px;
}
section.about .kern-waardes img {
  max-width: 200px;
}
section.about .kern-waardes .col {
  text-align: center;
}
section.about .kern-waardes .col h3 {
  font-size: 24px;
  font-weight: 900;
  max-width: 270px;
  margin: 0 auto;
  padding: 20px 0;
}

.key-values-yellow-bg .key-values {
  background: #f9eca3;
}

.key-values-white-bg .key-values {
  background: white;
}
.key-values-white-bg .key-values .values .value:after {
  background: url(/wp-content/themes/bomondo/public/img/logo-blue.svg);
  background-repeat: no-repeat;
}

section.team {
  background: #e6afca;
  padding: 100px 0;
  overflow: hidden;
}
section.team .carousel .items-wrap {
  position: relative;
}
section.team .carousel .items-wrap .items {
  width: 2000px;
}
@media screen and (max-width: 1024px) {
  section.team .carousel .items-wrap .items {
    width: 1000px;
  }
}
section.team .carousel .items-wrap .items .item {
  display: block;
  text-decoration: none;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  section.team .carousel .items-wrap .items .item {
    margin-right: 20px;
  }
}
section.team .carousel .items-wrap .items .item img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: left 0 top -40px;
  border-radius: 8px;
}
section.team .carousel .items-wrap .next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 60px);
  right: 0;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: rgba(60, 53, 131, 0.8);
  font-size: 30px;
  color: #f9eca3;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  section.team .carousel .items-wrap .next {
    height: 60px;
    width: 60px;
    top: calc(50% - 30px);
    font-size: 22px;
    text-align: center;
  }
}
section.team .carousel .items-wrap .next:hover {
  background: rgba(60, 53, 131, 0.6);
}
section.team .team-wrap {
  display: flex;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
section.team .team-wrap a {
  text-decoration: none;
  padding-bottom: 20px;
}
section.team .team-wrap a img {
  max-width: 285px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  section.team .team-wrap a img {
    max-width: 160px;
  }
}
section.team .team-wrap .team-content h3, section.team .team-wrap .team-content p {
  margin: 0;
}
@media (max-width: 768px) {
  section.team .team-wrap .team-content h3 {
    font-size: 15px;
  }
  section.team .team-wrap .team-content p {
    font-size: 12px;
  }
}

section.page-404 {
  padding: 40px 0 80px 0;
  background: #f9eca3;
}
section.page-404 .error-404 {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px auto;
}
section.page-404 .notice {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  section.page-404 .notice {
    font-size: 20px;
  }
}
section.page-404 .button {
  margin: 0 auto;
}

.fragment-image-label .image-wrap {
  position: relative;
  max-width: 100%;
  width: 425px;
}
.fragment-image-label .image-wrap .labeled {
  position: relative;
  max-width: 472px;
}
.fragment-image-label .image-wrap .labeled img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.fragment-image-label .image-wrap .labeled .ring-of-bomondo {
  position: absolute;
  top: -40px;
  right: -40px;
  max-width: 180px;
  animation: spin 15s linear infinite;
}
@media (max-width: 768px) {
  .fragment-image-label .image-wrap .labeled .ring-of-bomondo {
    right: 0px;
  }
}
.fragment-image-label img.overlay {
  position: absolute;
  top: 30%;
  left: 75px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .fragment-image-label img.overlay {
    display: none;
  }
}
