@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
  line-break: after-white-space;
  -moz-user-select: auto;
       user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background-color: #FFF;
  font-family: "Spline Sans", helvetica, arial, sans-serif;
  line-height: 1.25;
  font-weight: 300;
  overflow-x: hidden;
  margin: auto;
}

h1, h2, h3, h4 {
  margin: 0 0 0.3em;
  color: #000;
  font-weight: 400;
  line-height: 1.1;
}
h1.mb-large, h2.mb-large, h3.mb-large, h4.mb-large {
  margin-bottom: 1em;
}

h1 {
  font-size: 3.6rem;
  color: #9A9A9A;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.6rem;
}

h4 {
  font-size: 2rem;
}

a {
  color: #F2882E;
}

p {
  margin: 0 0 1em;
}

@media all and (min-width: 750px) {
  h1 {
    font-size: 5rem;
    margin-top: 0.75em;
  }
  h2 {
    font-size: 3.4rem;
  }
}
@media all and (min-width: 1024px) {
  h1 {
    font-size: clamp(9rem, 8vw, 12rem);
  }
  h2 {
    font-size: 3.8rem;
  }
}
ul, ol {
  margin: 1em 0;
  margin-left: 2.6rem;
}

ul {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}

nav ul, nav ol {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-content {
  width: 96%;
  margin: 20px auto;
  max-width: 1400px;
}
.main-content img, .main-content figure {
  border-radius: 5px;
}
.main-content figure figcaption {
  font-size: 1.4rem;
  color: #9A9A9A;
  margin-top: 0.6em;
}
.main-content .block {
  margin-bottom: 50px;
}
.main-content .block figure {
  margin-bottom: 20px;
}
.main-content form .honeypot {
  position: absolute;
  left: -9999px;
}
.main-content form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.main-content form .form-group label {
  font-size: 2rem;
}
.main-content form .form-group input:not(submit) {
  border: 1px solid #9A9A9A;
  width: 100%;
  max-width: 535px;
  padding: 8px;
  border-radius: 5px;
  height: 62px;
}
.main-content form .form-group-textarea {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.main-content form .form-group-textarea label {
  font-size: 2rem;
}
.main-content form .form-group-textarea textarea {
  border: 1px solid #9A9A9A;
  width: 100%;
  max-width: 535px;
  padding: 8px;
  border-radius: 5px;
  height: 110px;
}
.main-content form .form-group .button {
  display: flex;
  margin-right: auto;
}
@media (min-width: 750px) {
  .main-content {
    margin-top: 180px;
  }
  .main-content .block {
    margin-bottom: 80px;
  }
}

.button {
  display: inline-block;
  align-items: center;
  flex-grow: 0;
  padding-left: 12px;
  padding-right: 55px;
  min-width: 200px;
  background-color: #000;
  height: 44px;
  font-size: 1.8rem;
  line-height: 44px;
  border-radius: 22px;
  color: #FFF;
  background-image: url("/assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: right 11px top 11px;
  margin: 0.5em 10px 0.5em 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.button.button-secondary {
  background-color: #E2E1E1;
  color: #000;
}
.button.button-tertiary {
  background-color: #FFF;
  color: #000;
}
.button:hover {
  transform: scaleX(1.05);
}

.main-content figure {
  opacity: 0;
}
.main-content figure.fade-in {
  animation: slideIn 0.8s ease 0.3s forwards;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}
.site-header {
  margin: 0 2%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #9A9A9A;
}
.site-header .site-logo {
  height: 40px;
}
.site-header .logo-main {
  display: none;
}
.site-header .main-menu {
  display: none;
}
.site-header .lang-switcher a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9A9A9A;
  height: 50px;
  width: 40px;
  text-transform: uppercase;
}
.site-header .lang-switcher a.current-lang {
  color: #000;
}
@media all and (min-width: 500px) {
  .site-header .lang-switcher {
    padding-right: 80px;
  }
}
@media all and (min-width: 750px) {
  .site-header {
    justify-content: space-between;
    position: fixed;
    top: 0;
    height: 120px;
    width: 96%;
    z-index: 100;
    background-color: #FFF;
    transform-style: preserve-3d;
  }
  .site-header .site-logo {
    height: 60px;
  }
  .site-header .lang-switcher {
    padding-right: 10px;
  }
  .site-header .main-menu {
    display: flex;
  }
  .site-header .main-menu > ul > li {
    height: 120px;
    display: flex;
    align-items: center;
  }
  .site-header .main-menu li.has-submenu {
    position: relative;
  }
  .site-header .main-menu li.has-submenu a {
    margin-right: 8px;
  }
  .site-header .main-menu li.has-submenu .mega-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    height: 210px;
    background: #FFF;
    pointer-events: none;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
  }
  .site-header .main-menu li.has-submenu:before {
    content: "";
    position: absolute;
    width: 28%;
    height: 140px;
    transform: translateX(-100%);
    pointer-events: none;
  }
  .site-header .main-menu li.has-submenu:hover .submenu {
    opacity: 1;
    pointer-events: all;
  }
  .site-header .main-menu li.has-submenu:hover .mega-bg {
    opacity: 1;
    pointer-events: all;
  }
  .site-header .main-menu li.has-submenu:hover:before {
    pointer-events: all;
  }
  .site-header .main-menu li .submenu-icon {
    width: 10px;
    height: 10px;
    margin-right: 16px;
  }
  .site-header .main-menu li .submenu {
    display: flex;
    flex-direction: column;
    left: 0;
    height: auto;
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 15;
    width: 200px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    padding: 14px 0;
  }
  .site-header .main-menu li .submenu li {
    display: flex;
    margin-right: auto;
    padding: 14px 0;
  }
  .site-header .main-menu li .submenu li a {
    align-self: flex-start;
  }
  .site-header .main-menu li > a {
    padding: 5px 0;
    margin-left: 20px;
    position: relative;
    color: #000;
  }
  .site-header .main-menu li > a:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #F2882E;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .site-header .main-menu li > a:hover::before {
    transform: scaleX(1);
  }
  .site-header .main-menu li.current-page > a {
    color: #F2882E;
  }
  .site-header.slideUp {
    transform: translateY(-100%);
    transition: transform 0.5s ease-out;
  }
  .site-header.slideUp .submenu, .site-header.slideUp .mega-bg {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .site-header.slideDown {
    transform: translateY(0);
    transition: transform 0.5s ease-out;
  }
}
@media all and (min-width: 1024px) {
  .site-header .main-menu li a {
    margin: 0 24px;
  }
}

.site-footer {
  display: flex;
  flex-direction: column;
  width: 96%;
  margin: auto;
  border-top: 1px solid #9A9A9A;
  background-image: url("/assets/images/mpc_logo.png");
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center bottom 60px;
  padding-top: 64px;
}
.site-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  margin-bottom: 80px;
  text-transform: uppercase;
  width: 100%;
}
.site-footer .footer-columns .column {
  margin-bottom: 40px;
  width: 50%;
}
.site-footer .footer-columns h4 {
  margin-top: 0;
  color: #000;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.site-footer .footer-columns p {
  margin-top: 0.5rem;
  line-height: 2;
}
.site-footer .footer-columns a {
  color: #515151;
  line-height: 2;
  position: relative;
}
.site-footer .footer-columns a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #9A9A9A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.site-footer .footer-columns a:hover::before {
  transform: scaleX(1);
}
.site-footer .footer-menu ul {
  display: flex;
  flex-direction: column;
}
.site-footer .rights {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
@media all and (min-width: 500px) {
  .site-footer {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .site-footer .site-info {
    width: 100%;
  }
  .site-footer .footer-menus {
    display: flex;
    align-items: flex-end;
    width: 100%;
  }
  .site-footer .footer-menus .footer-menu {
    width: 50%;
  }
}
@media all and (min-width: 750px) {
  .site-footer {
    background-position: bottom 80px right 40px;
  }
  .site-footer .footer-columns {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .site-footer .footer-columns .column {
    width: 33%;
  }
  .site-footer .footer-columns .column.column-navigation {
    order: -1;
  }
  .site-footer .footer-menus {
    width: 67%;
  }
}
@media all and (min-width: 1024px) {
  .site-footer {
    background-position: left 0px top 64px;
  }
  .site-footer .footer-columns {
    padding-left: 15%;
  }
  .site-footer .footer-columns .column {
    width: 20%;
  }
  .site-footer .footer-columns .column.column-privacy {
    margin-left: auto;
  }
}

.mobile-menu .toggle-menu {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E2E1E1;
  color: #FFF;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu span {
  height: 16px;
}
.mobile-menu nav {
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav ul .submenu-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #9A9A9A;
}
.mobile-menu nav ul .submenu-button img {
  margin-left: 2px;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}
.mobile-menu nav ul .submenu-button.open img {
  transform: rotate(0deg);
}
.mobile-menu nav ul .submenu-button img {
  width: 16px;
  height: 16px;
}
.mobile-menu nav ul.main-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #E2E1E1;
  background: linear-gradient(180deg, rgb(226, 225, 225) 0%, rgb(213, 210, 210) 100%);
  padding-top: 8px;
  padding-bottom: 8px;
  transition: all 0.3s ease;
}
.mobile-menu nav ul.main-menu.submenu-open > li > a {
  opacity: 0.5;
}
.mobile-menu nav ul.main-menu > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-menu nav ul.main-menu a {
  display: flex;
  color: #515151;
  padding: 12px 12px 12px 16px;
  font-size: 3rem;
  transition: opacity 0.2s ease;
}
.mobile-menu nav ul.submenu {
  width: 100%;
  display: none;
}
.mobile-menu nav ul.submenu.open {
  display: flex;
}
.mobile-menu nav ul.submenu a {
  padding-left: 36px;
}
.mobile-menu.closed nav .main-menu {
  display: none;
}
.mobile-menu.closed .hideIfClosed {
  display: none;
}
.mobile-menu.open .toggle-menu {
  box-shadow: none;
  background: transparent;
}
.mobile-menu.open .hideIfOpen {
  display: none;
}
@media all and (min-width: 500px) {
  .mobile-menu .toggle-menu {
    position: absolute;
    top: 10px;
    box-shadow: none;
    background: transparent;
  }
  .mobile-menu nav {
    position: static;
  }
  .mobile-menu nav .main-menu {
    position: absolute;
    top: 65px;
    bottom: auto;
  }
}
@media all and (min-width: 750px) {
  .mobile-menu {
    display: none;
  }
}

.hero-block figure {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-block figure video, .hero-block figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.hero-block figure .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero-block figure .button {
  z-index: 3;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.hero-block figure .headline {
  font-size: 3.2rem;
  position: absolute;
  z-index: 4;
  bottom: 70px;
  left: 20px;
  color: #FFF;
  max-width: 67%;
}
@media all and (min-width: 750px) {
  .hero-block figure .headline {
    font-size: 7rem;
  }
}
@media all and (min-width: 1024px) {
  .hero-block figure {
    max-height: 800px;
  }
  .hero-block figure .headline {
    font-size: clamp(10rem, 10vw, 12rem);
    bottom: 90px;
    left: 40px;
  }
  .hero-block figure .button {
    bottom: 40px;
    left: 40px;
  }
}

.blurbs-block article {
  margin-bottom: 40px;
}
.blurbs-block article a figure {
  position: relative;
  margin-bottom: 10px;
}
.blurbs-block article a figure .arrow {
  position: absolute;
  width: 44px;
  bottom: 12px;
  right: 12px;
  transition: transform 0.2s ease;
}
.blurbs-block article a h4 {
  color: #000;
  margin-bottom: 0.5em;
}
.blurbs-block article a:hover .arrow {
  transform: scale(1.2);
}
.blurbs-block article p {
  margin-top: 0;
  color: #9A9A9A;
  font-size: 1.4rem;
}
@media all and (min-width: 750px) {
  .blurbs-block {
    display: flex;
    gap: 4%;
  }
  .blurbs-block article {
    flex: 1 1 32%;
    margin-bottom: 0;
  }
  .blurbs-block article figure {
    height: 40vw;
    max-height: 500px;
  }
  .blurbs-block article figure img:not(.arrow) {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.compare-block {
  border-radius: 5px;
  padding: 20px;
  background-color: #E2E1E1;
  display: flex;
  flex-direction: column;
}
.compare-block .info {
  order: 1;
}
.compare-block .info .button {
  margin-bottom: 2rem;
}
.compare-block .info p {
  color: #9A9A9A;
}
.compare-block .images {
  display: flex;
  justify-content: space-between;
}
.compare-block .images figure {
  width: 48%;
}
.compare-block .images figure figcaption {
  color: #000;
}
@media all and (min-width: 750px) {
  .compare-block {
    flex-direction: row;
    padding: 30px;
  }
  .compare-block .info {
    order: 0;
    width: 33%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
  }
  .compare-block .info h3 {
    font-size: 3.4rem;
  }
  .compare-block .info .button {
    margin-right: auto;
  }
  .compare-block .info p {
    margin-top: auto;
  }
  .compare-block .info p:last-of-type {
    margin-bottom: 0;
  }
  .compare-block .images {
    width: 67%;
  }
  .compare-block .images figure {
    margin-bottom: 0;
  }
}

.block.sidebyside-block article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block.sidebyside-block article .text-small {
  font-size: 1.4rem;
  color: #9A9A9A;
}
.block.sidebyside-block article .buttons {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.block.sidebyside-block article .buttons .button {
  margin-right: auto;
}
@media all and (max-width: 750px) {
  .block.sidebyside-block figure.format-square {
    height: 96vw;
  }
  .block.sidebyside-block figure.format-portrait {
    height: 130vw;
  }
  .block.sidebyside-block figure.format-landscape {
    height: 67vw;
  }
}
@media all and (min-width: 750px) {
  .block.sidebyside-block article {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .block.sidebyside-block article.format-portrait .content {
    padding-left: 50px;
  }
  .block.sidebyside-block article.format-portrait .content > * {
    max-width: 650px;
  }
  .block.sidebyside-block article.format-portrait .content .text-small p {
    max-width: 350px;
  }
  .block.sidebyside-block article.reverse {
    flex-direction: row-reverse;
  }
  .block.sidebyside-block article.reverse .content {
    margin-left: 0;
    margin-right: 2%;
  }
  .block.sidebyside-block article figure {
    width: 49%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .block.sidebyside-block article figure.format-square {
    width: 49%;
    height: 49%;
  }
  .block.sidebyside-block article figure.format-landscape {
    width: 66%;
    height: 40vw;
    max-height: 580px;
  }
  .block.sidebyside-block article figure.format-portrait {
    width: 33%;
    height: 50vw;
    max-height: 600px;
  }
  .block.sidebyside-block article .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: auto;
    margin-left: 2%;
  }
  .block.sidebyside-block article .content.no-button .text {
    margin-top: auto;
  }
}
@media all and (min-width: 1024px) {
  .block.sidebyside-block article.format-portrait {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .block.sidebyside-block article.format-portrait .content {
    display: flex;
    margin-left: auto;
    padding-left: 0;
    width: 60%;
    flex-grow: 0;
  }
  .block.sidebyside-block article figure.format-portrait {
    height: 42vw;
  }
  .block.sidebyside-block article .content h3 {
    font-size: 4.4rem;
  }
}

.contact-block .info-area {
  margin-bottom: 30px;
  font-size: 2rem;
}
.contact-block .info-area h3 {
  color: #000;
}
.contact-block .info-area a {
  color: #515151;
}
.contact-block .button {
  margin-top: 16px;
}
@media all and (min-width: 750px) {
  .contact-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .contact-block .form-area {
    width: 49%;
  }
  .contact-block .info-area {
    width: 49%;
  }
  .contact-block .info-area h3 {
    margin-top: 0;
    font-size: 4.4rem;
  }
  .contact-block .info-area p {
    max-width: 550px;
    font-size: 3.6rem;
  }
}
@media all and (min-width: 1024px) {
  .contact-block .form-area {
    width: 49%;
    padding-right: 20px;
  }
  .contact-block .info-area {
    width: 49%;
  }
}

.preamble-block .intro {
  color: #9A9A9A;
  font-size: 1.6rem;
  margin-bottom: 0.3em;
  width: 75%;
}
.preamble-block .preamble p {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 400;
}
.preamble-block .preamble p u {
  color: #F2882E;
}
@media all and (min-width: 500px) {
  .preamble-block .intro {
    width: 50%;
  }
}
@media all and (min-width: 750px) {
  .preamble-block {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .preamble-block .intro {
    width: 34%;
    padding-right: 20px;
    margin-top: 0;
  }
  .preamble-block .intro p {
    width: 66%;
  }
  .preamble-block .preamble {
    width: 60%;
    max-width: 700px;
  }
  .preamble-block .button-container {
    position: absolute;
    bottom: 20px;
  }
}
@media all and (min-width: 1024px) {
  .preamble-block .preamble p {
    font-size: 4.4rem;
  }
}

.extendedtext-block .intro {
  font-size: 1.6rem;
  color: #9A9A9A;
}
@media all and (min-width: 500px) {
  .extendedtext-block .content {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .extendedtext-block .content a.button {
    margin-top: 20px;
  }
}
@media all and (min-width: 750px) {
  .extendedtext-block {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .extendedtext-block .intro {
    width: 35%;
    padding-right: 2%;
  }
  .extendedtext-block .intro p {
    width: 66%;
  }
  .extendedtext-block .content {
    width: 65%;
    -moz-columns: 1;
         columns: 1;
  }
  .extendedtext-block .content a.button {
    margin-top: 30px;
  }
}
@media all and (min-width: 1024px) {
  .extendedtext-block .intro {
    width: 25%;
  }
  .extendedtext-block .content {
    width: 70%;
    -moz-columns: 2;
         columns: 2;
  }
}

.certificates-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.certificates-block .cert {
  width: 25%;
  margin: 20px 1%;
  text-align: center;
}
@media all and (min-width: 750px) {
  .certificates-block .cert {
    width: 12%;
  }
}

@media all and (min-width: 750px) {
  .image-block figure {
    height: 40vw;
    max-height: 600px;
  }
  .image-block figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
