/**
* calculate the max width based on input
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 2rem;
  font-weight: bold;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0;
}
@media screen and (min-width: 90em) {
  p {
    font-size: 1.8rem;
  }
}
p * {
  font-size: inherit;
}
p:not(:last-of-type) {
  margin-bottom: 3rem;
}

h1 {
  font-size: 3.4rem;
  font-size: clamp(3.4rem, 3vw, 8rem);
}

h2 {
  font-size: 3rem;
  font-size: clamp(3rem, 2vw, 5.8rem);
}

h3 {
  font-size: 2.6rem;
  font-size: clamp(2.6rem, 2vw, 3.8rem);
}

h4 {
  font-size: 2rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

h5,
h6 {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.block__title {
  font-size: 3.2rem;
  font-size: clamp(3.2rem, 3vw, 4.4rem);
  line-height: 100%;
}

.block__subtitle {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 100%;
  font-weight: 300;
  color: #E8314B;
}

html,
body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 300;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0 0;
  font-size: 1.8rem;
}
body:not(.auth) {
  padding: 10rem 0 0;
}
body.preload {
  animation: none;
  transition: none;
}
body.preload * {
  animation: none;
  transition: none;
}
body.logged-in .header {
  top: 32px;
}

* {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

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

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

p,
ul,
ol {
  margin: 0 0;
  margin-bottom: 0;
}

ul,
ol {
  display: inline-block;
  padding-left: 2rem;
}

::-moz-selection {
  color: #E8314B;
  background: transparent;
}

::selection {
  color: #E8314B;
  background: transparent;
}

.image--cover,
.image--contain {
  width: 100%;
  height: 100%;
}

.image--cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.svg--primary path {
  fill: #E8314B;
}

.svg--white path {
  fill: #FFFFFF;
}

p img,
picture img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 10rem;
  top: 0;
  z-index: 10;
  transition: all 0.125s linear;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.header__brand {
  position: relative;
  transition: all 0.125s linear;
}
.header__brand .brand__link {
  display: flex;
  align-items: center;
  width: 17.5rem;
  height: auto;
}
@media screen and (min-width: 64em) {
  .header__brand .brand__link {
    width: 22.5rem;
  }
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
}
@media screen and (min-width: 64em) {
  .header__wrapper {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 64em) {
  .header__actions {
    gap: 2rem;
    margin-left: 4rem;
  }
}

@media screen and (max-width: 84.9375em) {
  .action__button {
    display: none !important;
  }
}

.header__main {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex: 1;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__navigation {
  display: flex;
  gap: 2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 84.9375em) {
  .header__navigation {
    display: none !important;
  }
}
@media screen and (min-width: 64em) {
  .header__navigation {
    gap: 3rem;
  }
}

.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  cursor: pointer;
  transition: all 0.125s linear;
  z-index: 15;
  background-color: #000000;
}
.header__toggle .navigation__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.6rem;
  height: 1.4rem;
  transition: all 0.125s linear;
}
.header__toggle .navigation__toggle .line {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
  transition: all 0.125s linear;
}
.header__toggle.toggle--open .navigation__toggle .line {
  opacity: 0;
}
.header__toggle.toggle--open .navigation__toggle .line:first-child {
  transform: rotate(45deg);
  top: 6px;
  opacity: 1;
}
.header__toggle.toggle--open .navigation__toggle .line:last-child {
  transform: rotate(-45deg);
  bottom: 6px;
  opacity: 1;
}
@media screen and (min-width: 85em) {
  .header__toggle {
    display: none !important;
  }
}

.header__slideout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80vw;
  background-color: #FFFFFF;
  color: #000000;
  z-index: 1;
  padding: 5rem 4rem;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.header__slideout .sidebar__menu {
  overflow-x: auto;
}
.header__slideout .sidebar__menu li {
  list-style: none;
  font-size: 2.8rem;
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 2.2;
}
.header__slideout .sidebar__menu .navigation__link--children .link__icon svg {
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}
.header__slideout .sidebar__menu .navigation__link--children .menu__list {
  max-height: 0;
  transition: max-height 0.6s ease;
  overflow: hidden;
  padding: 0;
  display: block;
}
.header__slideout .sidebar__menu .navigation__link--children.open .link__icon svg {
  transform: rotate(0deg);
}
.header__slideout .sidebar__menu .navigation__link--children.open .menu__list {
  opacity: 1;
  visibility: visible;
  max-height: 90rem;
}
.header__slideout.navigation--open {
  transform: translateX(0);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 64em) {
  .header__slideout {
    width: 30vw;
  }
}

.content {
  padding: 5rem 0;
}

.content__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 200rem;
  padding: 0 2rem;
}
@media screen and (min-width: 64em) {
  .content__wrapper {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}

.content__wrapper--small {
  margin: 0 auto;
  width: 100%;
  max-width: 140rem;
  padding: 0 2rem;
}
@media screen and (min-width: 64em) {
  .content__wrapper--small {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}

.column--block.__smaller .content__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 140rem;
  padding: 0 2rem;
}
@media screen and (min-width: 64em) {
  .column--block.__smaller .content__wrapper {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}
.column--block .content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.column--block h2 {
  color: #E8314B;
}

.column__item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 64em) {
  .content__row {
    flex-direction: row;
  }
}
@media screen and (min-width: 64em) {
  .content__row {
    gap: 5rem;
  }
}
.content__row > .content__column {
  flex: 1;
}
.content__row.section--title {
  flex-direction: column;
}

@media screen and (min-width: 64em) {
  .image--block .content__row {
    align-items: center;
  }
}
.image--block .content__row.row__reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 64em) {
  .image--block .content__row.row__reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 64em) {
  .image--block .content__row:last-child {
    gap: 10rem;
  }
}
.image--block .image {
  width: 100%;
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.1);
}
.image--block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

.c2a--block {
  background: #E8314B;
  color: #FFFFFF;
}
.c2a--block .block__subtitle {
  color: #FFFFFF;
}
.c2a--block .content__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 140rem;
  padding: 0 2rem;
}
@media screen and (min-width: 64em) {
  .c2a--block .content__wrapper {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}
@media screen and (min-width: 64em) {
  .c2a--block .c2a__content {
    position: relative;
  }
  .c2a--block .c2a__content .content__row {
    gap: 5rem;
  }
}

.media__block {
  padding: 0;
}
.media__block .wp-video {
  width: 100% !important;
}
.media__block.extra--image .image--wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .media__block.extra--image .image--wrapper {
    aspect-ratio: 16/6;
  }
}
.media__block.extra--image.position--top img {
  -o-object-position: top;
     object-position: top;
}
.media__block.extra--image.position--bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}

.footer {
  padding: 10rem 0 5rem;
  background-color: #000000;
  position: relative;
  color: #FFFFFF;
}
.footer .icon__group {
  gap: 4rem;
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 64em) {
  .footer .icon__group {
    justify-content: flex-start;
  }
}
.footer .icon__group .icon {
  padding: 0;
  background: transparent;
  color: #e1e1e1;
  width: 0;
}
.footer .button__box {
  margin: 0;
  justify-content: center;
}
.footer .button__box > .button {
  flex: 1;
  justify-content: center;
}
@media screen and (min-width: 64em) {
  .footer .button__box {
    justify-content: flex-end;
  }
  .footer .button__box > .button {
    flex: 0 0 auto;
  }
}

.footer__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 200rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 64em) {
  .footer__wrapper {
    padding: 0 calc(7.5rem + 1.5625vw);
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
}

.footer__row {
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 3rem;
}
@media screen and (min-width: 64em) {
  .footer__row {
    flex-direction: row;
  }
}

.column--gap {
  gap: 2rem;
}
@media screen and (min-width: 64em) {
  .column--gap {
    gap: 4rem;
  }
}

.footer__title {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__logo {
  max-width: 19rem;
}
.footer__logo svg .primary {
  fill: #FFFFFF;
}

.footer__author {
  display: flex;
  justify-content: center;
}
.footer__author .author__link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__author .author__logo {
  width: 10rem;
}
.footer__author .author__logo path {
  fill: #FFFFFF;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__info .contact__item {
  padding-left: 7rem;
  position: relative;
}
.contact__info .contact__item.item__location::before {
  content: "\f015";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.contact__info .contact__item.item__mail::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.contact__info .contact__item.item__phone::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.contact__info .contact__item:before {
  color: #E8314B;
  position: absolute !important;
  left: 0;
  top: 0;
  font-size: 2.5rem;
}
.contact__info .contact__item.item__extra-info {
  padding: 0;
  margin-top: 3rem;
}

.banner__section {
  display: flex;
  height: auto;
  height: 260px;
  background: #E8314B;
  position: relative;
  padding-top: 11.6rem;
}
@media screen and (min-width: 64em) {
  .banner__section {
    height: 400px;
  }
}
.banner__section .bg--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 1;
}
.banner__section .content__wrapper {
  display: flex;
  align-items: flex-end;
}
.banner__section:not(.home--banner) {
  border-bottom: 30px solid #e1e1e1;
  padding-bottom: 0;
}
.banner__section:not(.home--banner) .banner__title {
  top: 30px;
}
.banner__section.home--banner {
  height: 80vh;
  min-height: 400px;
  max-height: 700px;
  border: 0;
}

.banner__title {
  color: #FFFFFF;
  z-index: 1;
  position: relative;
  max-width: 100rem;
}
@media screen and (min-width: 64em) {
  .banner__title {
    width: 85%;
  }
}
.banner__title h1 {
  font-size: 4.4rem;
  font-size: clamp(4.4rem, 5vw, 7rem);
  color: #FFFFFF;
}
.banner__title h2 {
  font-size: 3.5rem;
  font-size: clamp(3.5rem, 3vw, 5rem);
  color: #e1e1e1;
}
.banner__title h1,
.banner__title h2 {
  line-height: 1;
}

.grid--listing {
  display: grid;
  gap: 2rem;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
@media screen and (min-width: 48em) {
  .grid--listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .grid--listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 85em) {
  .grid--listing {
    grid-template-columns: repeat(4, 1fr);
  }
}

.default__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #f6f6f6;
  position: relative;
  padding-bottom: 8rem;
}
.default__item .thumbnail {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.default__item .thumbnail img {
  transition: transform 0.4s ease;
}
.default__item .grid__item--content {
  padding: 2rem 3rem;
}
.default__item:hover .thumbnail img {
  transform: scale(1.1);
}
.default__item .read-more {
  display: flex;
  align-items: center;
  position: absolute;
  left: 3rem;
  bottom: 2rem;
}

.navigation--row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 64em) {
  .navigation--row {
    flex-direction: row;
  }
}
.navigation--row .navigation__link,
.navigation--row .navigation__link--children {
  color: #000000;
}
.navigation--row .navigation__link .menu__list .navigation__link,
.navigation--row .navigation__link--children .menu__list .navigation__link {
  color: #000000;
}
.navigation--row .navigation__link {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  padding: 2rem 0;
  letter-spacing: 2px;
}
@media screen and (min-width: 85em) {
  .navigation--row .navigation__link {
    letter-spacing: 2px;
  }
}
.navigation--row .navigation__link--children {
  position: relative;
}
.navigation--row .navigation__link--children .menu__list {
  position: absolute;
  top: 6rem;
  right: 0;
  padding: 0;
  box-shadow: 0.25rem 0.25rem 2rem rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  min-width: 100%;
  background: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
}
.navigation--row .navigation__link--children .menu__list li {
  white-space: nowrap;
}
.navigation--row .navigation__link--children .menu__list .navigation__link {
  padding: 1rem 2rem;
}
.navigation--row .navigation__link--children:hover .menu__list, .navigation--row .navigation__link--children:focus .menu__list, .navigation--row .navigation__link--children:active .menu__list {
  opacity: 1;
  visibility: visible;
}
.navigation--row li {
  list-style: none;
}
@media screen and (min-width: 85em) {
  .navigation--row {
    gap: 4rem;
  }
}

.navigation__link--parent {
  display: flex;
  align-items: center;
}

.navigation__link--children .navigation__link {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
  padding-right: 1.5rem;
}
.navigation__link--children .link__icon {
  display: flex;
  width: 1.4rem;
  height: 2rem;
}
.navigation__link--children .menu__list .navigation__link--parent .navigation__link {
  width: 100%;
}
@media screen and (max-width: 84.9375em) {
  .navigation__link--children .menu__list .navigation__link--parent:hover, .navigation__link--children .menu__list .navigation__link--parent:focus, .navigation__link--children .menu__list .navigation__link--parent:active {
    text-decoration: underline;
  }
}
@media screen and (min-width: 85em) {
  .navigation__link--children .menu__list .navigation__link--parent:hover, .navigation__link--children .menu__list .navigation__link--parent:focus, .navigation__link--children .menu__list .navigation__link--parent:active {
    background-color: #f4f4f4;
  }
}
@media screen and (min-width: 85em) {
  .navigation__link--children .menu__list {
    opacity: 0;
    visibility: hidden;
  }
}

.navigation__pages {
  display: flex;
  justify-content: center;
  padding: 3rem 0 5rem;
}
.navigation__pages .page__link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 4rem;
  width: 4rem;
  background-color: #e1e1e1;
  border-radius: 4.8rem;
}
.navigation__pages .page__link:hover, .navigation__pages .page__link:focus, .navigation__pages .page__link:active {
  background-color: #c8c8c8;
}
.navigation__pages .page__link.link--disabled {
  opacity: 0.4;
  pointer-events: none;
}
.navigation__pages .page__link .link__icon {
  display: flex;
  height: 2.8rem;
  width: 2.8rem;
}
@media screen and (min-width: 85em) {
  .navigation__pages .page__link {
    height: 5.2rem;
    width: 5.2rem;
    border-radius: 7.4rem;
  }
}

.button {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-size: clamp(1rem, 3vw, 1.3rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 5.4rem;
  padding: 0 3rem;
  transition: background-color 0.25s linear;
}

.button__solid--primary {
  background-color: #E8314B;
  color: #FFFFFF;
}
.button__solid--primary:hover, .button__solid--primary:focus, .button__solid--primary:active {
  background-color: #cf1731;
}

.button__box {
  display: flex;
  margin-top: 5rem;
}

.icon__group {
  display: flex;
  gap: 2rem;
}
.icon__group .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  font-size: 2.2rem;
  background: #e1e1e1;
  color: #E8314B;
  transition: all 0.4s ease;
  border-radius: 100%;
}
.icon__group .icon:hover {
  background: #c8c8c8;
}

.box__icon {
  align-items: center;
}
.box__icon .box__name {
  flex: 1;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5rem auto;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0px 0.5rem;
  background: transparent;
  color: #000000;
  border-radius: 100%;
}
.pagination .page-numbers.current {
  background: #E8314B;
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 600;
}
.pagination .page-numbers:not(.current) {
  border: 1px solid #000000;
}
.pagination .page-numbers:not(.current):hover {
  background: #000000;
  color: #FFFFFF;
}
@media screen and (min-width: 64em) {
  .pagination .page-numbers {
    width: 5rem;
    height: 5rem;
  }
}

.with_frm_style .frm_form_field input:not([type=radio]), .with_frm_style .frm_form_field textarea:not([type=radio]),
.frm_style_formidable-stijlen.with_frm_style .frm_form_field input:not([type=radio]),
.frm_style_formidable-stijlen.with_frm_style .frm_form_field textarea:not([type=radio]) {
  min-height: 5.4rem;
  color: #000000;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  border: 0;
  background-color: #e1e1e1;
}
.with_frm_style .frm_form_field textarea,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field textarea {
  border-radius: 3rem !important;
  padding: 3rem 2rem;
}
.with_frm_style .frm_form_field label,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field label {
  color: #000000;
  padding: 0;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.with_frm_style .frm_form_field.frm_label_float_top label,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field.frm_label_float_top label {
  font-size: 1.4rem;
}
.with_frm_style .frm_form_field .frm_radio label,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label {
  position: relative;
  padding-left: 3.5rem;
  cursor: pointer;
  display: inline-block;
}
.with_frm_style .frm_form_field .frm_radio label input[type=radio],
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label input[type=radio] {
  display: none !important;
}
.with_frm_style .frm_form_field .frm_radio label::before, .with_frm_style .frm_form_field .frm_radio label::after,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label::before,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  background-color: #e1e1e1;
}
.with_frm_style .frm_form_field .frm_radio label::after,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label::after {
  transform: scale(0);
  background-color: white;
  opacity: 0;
}
.with_frm_style .frm_form_field .frm_radio label.checked::after,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field .frm_radio label.checked::after {
  opacity: 1;
  transform: scale(0.7);
}
.with_frm_style .frm_form_field.vertical_radio > .frm_opt_container,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field.vertical_radio > .frm_opt_container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 64em) {
  .with_frm_style .frm_form_field.vertical_radio > .frm_opt_container,
.frm_style_formidable-stijlen.with_frm_style .frm_form_field.vertical_radio > .frm_opt_container {
    flex-direction: row;
  }
}
.with_frm_style .frm_submit button,
.frm_style_formidable-stijlen.with_frm_style .frm_submit button {
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  height: 5.2rem;
  padding: 0 3rem;
  border-radius: 2.5rem;
  transition: background-color 0.25s linear, box-shadow 0.4s ease;
  background: #E8314B;
  border: 0;
  margin: 0;
  box-shadow: none;
  font-weight: 300;
}
.with_frm_style .frm_submit button:hover, .with_frm_style .frm_submit button:focus, .with_frm_style .frm_submit button:active,
.frm_style_formidable-stijlen.with_frm_style .frm_submit button:hover,
.frm_style_formidable-stijlen.with_frm_style .frm_submit button:focus,
.frm_style_formidable-stijlen.with_frm_style .frm_submit button:active {
  background-color: #cf1731;
  color: #FFFFFF;
}
