.umb-block-grid__layout-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, -webkit-min-content);
    grid-auto-rows: minmax(50px, min-content);
    -moz-column-gap: var(--umb-block-grid--column-gap, 0);
    column-gap: var(--umb-block-grid--column-gap, 0);
    row-gap: var(--umb-block-grid--row-gap, 0);
}
.umb-block-grid__layout-item {
    position: relative;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--item-column-span, 1) * 3), var(--umb-block-grid--grid-columns));
    grid-row: span var(--umb-block-grid--item-row-span, 1);
    width: 100%;
}


.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, -webkit-min-content);
    grid-auto-rows: minmax(50px, min-content);
    -moz-column-gap: var(--umb-block-grid--areas-column-gap, 60px);
    column-gap: var(--umb-block-grid--areas-column-gap, 60px);
    row-gap: var(--umb-block-grid--areas-row-gap, 0);
}
.umb-block-grid__area {
    position: relative;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--area-column-span, 1) * 3), var(--umb-block-grid--grid-columns));
    grid-row: span var(--umb-block-grid--area-row-span, 1);
}

#page {
    background: url("/media/bfcp4zd3/bg_h.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
}

.marquee {
    overflow:hidden;
}

a.scale img {
    transition: all 0.5s;
    scale: 1;
}

a.scale:hover img {
    scale: 1.1;
}

a.text-decoration-on-hover {
    text-decoration: none;
}

a.text-decoration-on-hover:hover {
    text-decoration: underline;
}

a.text-decoration-on-hover:hover p {
    text-decoration: none;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.sameHeight {
    overflow: hidden;
}

.sameHeight .umb-block-grid__layout-container {
    display:flex;
    height: 100%;
    flex-wrap:wrap;
}

.sameHeight .umb-block-grid__area, .sameHeight .imageBlock, .sameHeight .umb-block-grid__area .umb-block-grid__layout-item > div, .sameHeight .TextBlock-container {
    height: 100%;
    width: 100%;
}

.sameHeight img.w-100 {
    object-fit: cover;
    height: 100%;
}

.removeGutter .umb-block-grid__area-container {
    column-gap: 0 !important;
}

.align-items-center > div {
    align-items: center;
}

.TextBlock-container.align-items-center {
    display:flex;
}

.pattern.pos-bottom-left {
    position: absolute;
    bottom: -13%;
    left: 5%;
}

.yellow-line-top:before {
    content: url("/media/42qi0q0d/yellow-top-line.svg");
    display:block;
    margin-bottom: 0rem;
}

.yellow-line-top,
p.yellow-line-top + p {
    width: 680px;
    max-width: 100%;
}

.switchBlock ul, .TextBlock-container ul {
  padding-left: 0;
}

.switchBlock ul li, .TextBlock-container ul li  {
  list-style: none;
  padding-left: 2rem;
  background-image: url('/icons/check_circle.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px;
  border-top: solid 1px #E1E1E1;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 500;
}

.switchBlock ul li:last-child, .TextBlock-container ul li:last-child {
    border-bottom: solid 1px #E1E1E1;
}

.switchBlock ul li p, .TextBlock-container ul li p {
    margin-bottom: 0;
}



@media (max-width:560px) { 

    .umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
        -moz-column-gap: var(--umb-block-grid--areas-column-gap, 30px);
        column-gap: var(--umb-block-grid--areas-column-gap, 30px);
    }
}