* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables */

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --tertiary-color: #CACACA;

    --primary-font: 'din-2014', sans-serif;
}

button {
    border: none;
    cursor: pointer;
    background: none;
}

html {
    font-size: 62.5%;
    font-family: var(--primary-font);
    color: var(--primary-color);
    height: 100%;
    background-color: #FCF8F5;
}

body {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.container {
    /* padding: 0 15px; */
    padding: 0 5vw;
    width: 100%;
    max-width: calc(1600px + 10vw);
    margin: 0 auto;
}

.row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media(min-width: 744px) {
    .container {
        /* padding: 0 50px; */
    }
    .row {
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
    }
}

@media(min-width: 1280px) {
    .container {
        /* padding: ; */
    }
    .row {
        -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
    }
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
    line-height: 1.2;
    font-weight: 700;
}

.heading-1 {
    font-size: 3.6rem;
}
.heading-2 {
    font-size: 3.2rem;
}
.heading-3 {
    font-size: 2.8rem;
}
.heading-4 {
    font-size: 2.4rem;
}
.heading-5 {
    font-size: 2.0rem;
}
.heading-6 {
    font-size: 1.6rem;
}

.body-reg,
.body-lg,
.body-sm {
    line-height: 1.4;
}

.body-sm {
    font-size: 1.6rem;
}
.body-reg {
    font-size: 1.6rem;
}
.body-lg {
    font-size: 2.0rem;
}
.default-link {
    /*color: #808080;*/
    color: #000000;
    text-decoration:none;
}
.default-link:hover {
    text-decoration: underline;
}

@media(min-width: 744px) {
    .heading-1 {
        font-size: 7rem;
    }
    .heading-2 {
        font-size: 6rem;
    }
    .heading-3 {
        font-size: 4rem;
    }
    .heading-4 {
        font-size: 3.2rem;
    }
    .heading-5 {
        font-size: 2.8rem;
    }
    .heading-6 {
        font-size: 1.6rem;
    }
    .body-sm {
        font-size: 2rem;
    }
    .body-reg {
        font-size: 2.4rem;
    }
    .body-lg {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
    .heading-1 {
        font-size: 3.6rem;
    }
}

.btn {
    font-size: 1.4rem;
    line-height: 4.4rem;
    font-weight: 700;
    padding: 0 3rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none;
}
.btn .arrow {

}

.btn--primary {
    border: 1px SOLID var(--primary-color);
    color: var(--primary-color);
    border-radius: 100px;
    height: 4.4rem;
}
.btn--primary:hover {
    background-color: var(--primary-color);
    color: #FCF8F5;
}
.btn--secondary {
    border: 1px SOLID var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 100px;
    height: 4.4rem;
}
.btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

.footer {
    z-index: 20;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

.page-title {
    padding: 11rem 0 4rem;
}
@media(min-width: 744px) {
    .page-title {
        padding: 20rem 0 10rem;
    }
}

.page-title__title {

}

.page-title__body {
    margin-top: 4rem;
    width: 100%;
    max-width: 662px;
}

@media(min-width: 744px) {
    .page-title__body {
        margin-top: 10rem;
    }
}

@media(min-width: 1280px) {
    .page-title__body {
        margin-top: 10rem;
    }
}
@media(min-width: 1440px) {
    .page-title__body {
        max-width: none;
        width: calc((100% - 15px) / 2);
    }
}

.page-intro {
    width: 100%;
}

@media(min-width: 1280px) {
    .page-intro {
        width: 50%;
    }
}

.page-section {
    padding: 6rem 0;
}
.page-section--highlight {
    background: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .page-section {
        padding: 10.4rem 0;
    }
}

@media(min-width: 1280px) {
    .page-section {
        padding: 12.4rem 0;
    }
}


.page-introduction {
    background: var(--tertiary-color);
    color: var(--secondary-color);
    padding: 6rem 0;
}

@media(min-width: 744px) {
    .page-introduction {
        padding: 8.4rem 0;
    }
}

@media(min-width: 1280px) {
    .page-introduction {
        padding: 13.4rem 0;
    }
}

.page-introduction .container {

}

.page-introduction__image {
    width: 100%;
    margin-top: 6rem;
    max-width: 485px;
}
.page-introduction__img {
    width: 100%;
    mix-blend-mode: multiply;
}

@media(min-width: 744px) {
    .page-introduction__image {
        margin-top: 8.4rem;
    }
}

@media(min-width: 1280px) {
    .page-introduction .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .page-introduction__text {
        width: calc((100% - 15px) / 12 * 5);
    }

    .page-introduction__image {
        margin-top: 0;
        width: calc((100% - 15px) / 12 * 4);
        max-width: none;
    }

    .page-introduction__image {
        /* padding-left: calc(100% / 24); */
        /* padding-right: calc(100% / 24); */
    }

    .page-introduction__text {
        /* padding-left: calc(100% / 12); */
        /* padding-right: calc(100% / 24); */
    }
}

.page-introduction__body {
    margin-top: 2.2rem;
}

@media(min-width: 744px) {
    .page-introduction__body {
        margin-top: 6rem;
    }
}

.no-scroll {
    overflow: hidden;
}
.app-nav {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    padding-top: 5px;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0);
    background-color: transparent;
    -webkit-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    /* background-color: #FCF8F5; */
}

.app-nav.is-bg {
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.075);
    background-color: #FCF8F5;
}

.app-nav.app-nav--alt.is-bg .app-nav-link,
.app-nav.app-nav--alt.is-bg .app-nav__svg {
    color: var(--primary-color);
}

.app-nav.app-nav--alt.is-bg .app-nav__btn span {
    background-color: var(--primary-color);
}

.app-nav__container {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: calc(1600px + 10vw);
    margin: 0 auto;
    padding: 0 5vw 0;
}

@media(min-width:744px) {
    .app-nav {
        height: 90px;
    }

    .app-nav__container {
        height: 90px;
    }
}
@media(min-width:1024px) {
    .app-nav__container {
        /* align-items: end; */
    }
}

.app-nav__logo {
    width: 180px;
    height: 14.53px;
    z-index: 10;
}
@media(max-width:1024px) {
    .app-nav__logo {
        margin: 5px 0px 0;
    }
}

.app-nav__svg {
    width: 180px;
    height: 14.53px;
    color: black;
}

.app-nav--alt .app-nav__svg {
    color: var(--secondary-color);
}

.app-nav__svg.visible {
    color: var(--secondary-color);
}

.home .app-nav__svg.visible {
    color: var(--secondary-color);
}
.home .app-nav__btn.toggle span {
    background: var(--secondary-color);
}

@media(min-width: 744px) {
    .app-nav__logo {
        width: 337px;
        height: 27.2px;
    }
    .app-nav__svg {
        width: 337px;
        height: 27.2px;
    }
}

.app-nav__btn {
    margin-top: 15px;
    z-index: 100;
    width: 48px;
    height: 48px;
    background: transparent;
    color: var(--primary-color);
}
@media(max-width: 743px) {
    .app-nav__btn {
        margin-top: 2px;
    }
}
@media (min-width: 1024px) {
    .app-nav__btn {
        display: none;
    }
}
.app-nav__btn span {
    display: block;
    height: 4px;
    width: 28px;
    background: var(--primary-color);
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.app-nav--alt .app-nav__btn span {
    background: var(--secondary-color);
}

.app-nav__btn.toggle span {
    background: var(--secondary-color)
}

.app-nav__btn.toggle span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);

}

.app-nav__btn.toggle span:nth-child(2) {
    opacity: 0;
}

.app-nav__btn.toggle span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.app-nav-links {
    visibility: hidden;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 120px 5vw;
    background: #CACACA;
    z-index: 0;
    gap: 1rem;
    overflow: auto;
}

@media (min-width: 744px) {
    .app-nav-links {
        padding-top: 200px;
    }
}
.app-nav-links.visible {
    visibility: visible;
}
.app-nav-link {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.03em;
    display: inline-block;
    text-decoration: none;
    color: var(--secondary-color);
}

.app-nav-link:hover {
    /* color: ; */
}

@media (min-width: 1024px) {
    .app-nav-links {
        visibility: visible;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
        background:none;
        padding: 0;
        padding: 10px 0 0;
    }
    .app-nav-link {
        font-size: 17px;
        line-height: 48px;
        color: var(--primary-color);
    }
    .app-nav--alt .app-nav-link {
        color: var(--secondary-color);
    }
    .app-nav-link:nth-of-type(1) {
        display: none;
    }
}

/* Homepage hero section */

.MB-101,
.MB-170B {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /*height: -webkit-fill-available;*/
    max-height: 100vh;
    max-height: -webkit-fill-available;
    /*height: calc(var(--vh, 1vh) * 100);*/
    /*max-height: calc(var(--vh, 1vh) * 100);*/
}

/*@media (orientation: portrait) {*/
/*    .MB-101,*/
/*    .MB-170B {*/
/*        height: 100vh;*/
/*        max-height: 100vh;*/
/*    }*/
/*}*/

/*@media (orientation: landscape) {*/
/*    .MB-101,*/
/*    .MB-170B {*/
/*        height: calc(100vh - 40px);*/
/*        max-height: calc(100vh - 40px);*/
/*    }*/
/*}*/

.MB-101__title,
.MB-170B__title {
    position: absolute;
    bottom: 5rem;
    width: 100%;
    left: 5vw;
    color: var(--secondary-color);
    z-index: 102;
}

.MB-101__title-wrapper,
.MB-170B__title-wrapper {
    width: 100%;
    max-width: calc(1600px + 10vw);
    margin: 0 auto;
}

.MB-101__video,
.MB-170B__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*height: -webkit-fill-available;*/
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center bottom;
    object-position: center bottom;
}

/* Video home page */
.MB-101__video-wrapper {
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*height: -webkit-fill-available;*/
    max-height: 100vh;
    max-height: -webkit-fill-available;
    /*padding-bottom: calc(var(--aspect-ratio, .5625) * 100%);*/
}

/*.MB-101__video-container {*/
/*    position: relative;*/
/*    padding-bottom: 56.25%;*/
/*    padding-top: 25px;*/
/*    height: 0;*/
/*}*/

.MB-101__video-wrapper .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.MB-101__video-wrapper .swiper-slide {
    position: relative;
}

.MB-101__video-wrapper .swiper-slide__heading {
    z-index: 101;
    position: absolute;
    left: 5vw;
    bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 10vw;
    text-decoration: none;
    color: #ffffff;
    text-align: left;
}

.MB-101__video-wrapper .swiper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.MB-101__video-wrapper .swiper-pagination {
    z-index: 5;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.MB-101__video-wrapper .swiper .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 0;
}

.circular-progress {
    --size: 20px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 2px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
}

.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    /*r: var(--radius);*/
    stroke-width: var(--stroke-width);
    fill: transparent;
    stroke-linecap: round;
}

.circular-progress circle.fg {
    opacity: 0;
}

.circular-progress circle.bg {
    opacity: 0.55;
    /*r: 2.5;*/
    stroke: transparent;
    fill: #fff;
}

.circular-progress circle.fg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: var(--half-size) var(--half-size);
    -ms-transform-origin: var(--half-size) var(--half-size);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    -webkit-transition: stroke-dasharray 0.3s linear 0s;
    -o-transition: stroke-dasharray 0.3s linear 0s;
    transition: stroke-dasharray 0.3s linear 0s;
    stroke: #fff;
}

.MB-101__video-wrapper .swiper .swiper-pagination-bullet-active .circular-progress {
    /*-webkit-animation: progress-animation 10s linear 0s 1 forwards;*/
    /*animation: progress-animation 10s linear 0s 1 forwards;*/
    animation-name: progress-animation;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    /*animation-fill-mode: forwards;*/
    animation-play-state: paused;
}

.MB-101__video-wrapper .swiper .swiper-pagination-bullet-active .circular-progress circle.bg {
    opacity: 1;
}

.MB-101__video-wrapper .swiper .swiper-pagination-bullet-active .circular-progress circle.fg {
    opacity: 1;
}

@property --progress {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

@-webkit-keyframes progress-animation {
    from {
        --progress: 0;
    }
    to {
        --progress: 100;
    }
}

@keyframes progress-animation {
    from {
        --progress: 0;
    }
    to {
        --progress: 100;
    }
}
/* end ::: Video home page */

.MB-101__video-overlay,
.MB-170B__video-overlay {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Black with 75% opacity */
    pointer-events: none; /* Allows interaction with the video controls */
}

.MB-101__slider {
    position: relative;
}

.MB-101__slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    z-index: 1;
}

.MB-101__slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.MB-101__slide.active {
    opacity: 1;
    position: relative;
}

.MB-101__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.MB-101__slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    z-index: 2;
}

.MB-101__slider-pagination .dot {
    width: 8px;
    cursor: pointer;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    /*cursor: pointer;*/
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.MB-101__slider-pagination .dot.active {
    width: 12px;
    height: 12px;
}

/* Homepage intro section */

.MB-102 {
    background: var(--tertiary-color);
    color: var(--secondary-color);
    padding: 6rem 0;
}

@media(min-width: 744px) {
    .MB-102 {
        padding: 8.4rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-102 {
        padding: 13.4rem 0;
    }
}

.MB-102 .container {

}

.MB-102__image {
    width: 100%;
    margin-top: 6rem;
    max-width: 485px;
}

.MB-102__img {
    width: 115%;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 744px) {
    .MB-102__img {
        width: 100%;
    }
}

@media(min-width: 744px) {
    .MB-102__image {
        margin-top: 8.4rem;
    }
}

@media(min-width: 1280px) {
    .MB-102 .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .MB-102__text {
        width: calc((100% - 15px) / 12 * 5);
    }

    .MB-102__image {
        margin-top: 0;
        width: calc((100% - 15px) / 12 * 4);
        max-width: none;
    }

    .MB-102__image {
        /* padding-left: calc(100% / 24); */
        /* padding-right: calc(100% / 24); */
    }

    .MB-102__text {
        /* padding-left: calc(100% / 12); */
        /* padding-right: calc(100% / 24); */
    }
}

.MB-102__body {
    margin-top: 2.2rem;
}

@media(min-width: 744px) {
    .MB-102__body {
        margin-top: 6rem;
    }
}

/* Homepage featured projects section */

.MB-103 {

}

.MB-103__heading {
    padding-top: 6rem;
}
@media(min-width: 744px) {
    .MB-103__heading {
        padding-top: 10.4rem;
    }
}
@media(min-width: 1280px) {
    .MB-103__heading {
        padding-top: 12.4rem;
    }
}

.MB-103__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap:4.4rem;
    margin-top: 5rem;
}
@media (min-width: 744px) {
    .MB-103__content {
        gap:12rem;
        margin-top: 6rem;
    }
}
@media (min-width: 1280px) {
    .MB-103__content {
        margin-top: 14rem;
        gap:16rem;
    }
}

.MB-103__footer {
    margin: 6rem 0 0;
    padding-bottom: 6rem;
}
@media(min-width: 744px) {
    .MB-103__footer {
        margin: 12rem 0 0;
        padding-bottom: 12rem;
    }
}
@media(min-width: 1280px) {
    .MB-103__footer {
        margin: 16rem 0 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
        padding-bottom: 16rem;
    }

    .MB-103__action {
        -ms-grid-column: 6;
        -ms-grid-column-span: 7;
        grid-column: 6 / span 7;
    }
}

/* Homepage 'Big Idea' section */

.MB-104 {
    padding: 6rem 0;
    background: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-104 {
        padding: 10.4rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-104 {
        padding: 12.4rem 0;
    }
}

.MB-104__content {
    width: 100%;
    -ms-grid-column-span: 12;
    grid-column: span 12;
    max-width: 75.5rem;
}
@media(min-width: 1280px) {
    .MB-104__content {
        -ms-grid-column-span: 6;
        grid-column: span 6;
    }
}

.MB-104__heading {

}

.MB-104__text {
    margin-top: 3.2rem;
}

@media(min-width: 744px) {
    .MB-104__text {
        margin-top: 4.8rem;
    }
}

.MB-104__link {
    margin-top: 3.2rem;
}

@media(min-width: 744px) {
    .MB-104__link {
        margin-top: 6.8rem;
    }
}

.MB-105 {

}

.MB-105__heading {
    padding-top: 6rem;
}
@media(min-width: 744px) {
    .MB-105__heading {
        padding-top: 10.4rem;
    }
}
@media(min-width: 1280px) {
    .MB-105__heading {
        padding-top: 12.4rem;
    }
}

.MB-105__content {

}

.MB-105__mobile-posts {
    display: block;
    /*margin-bottom: 6rem;*/
    padding-bottom: 6rem;
}

@media(min-width: 744px) {
    .MB-105__mobile-posts {
        display: none;
    }
}

@media screen and (max-width: 744px) {
    .MB-105__mobile-posts {
        overflow: hidden;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        position: relative;
        left: -5vw;
        width: calc(100% + 10vw);
        padding-left: 5vw;
        padding-bottom: 2.5vw;
    }

    .MB-105__mobile-posts::-webkit-scrollbar {
        display: none; /* WebKit browsers */
    }
}

.MB-105__desktop-posts {
    display: none;
    margin-top: 6rem;
    /*margin-bottom: 6rem;*/
    padding-bottom: 6rem;
}

@media(min-width: 744px) {
    .MB-105__desktop-posts {
        display: block;
        /*margin-bottom: 12rem;*/
        padding-bottom: 12rem;
    }
}
@media(min-width: 1280px) {
    .MB-105__desktop-posts {
        /*margin-bottom: 16rem;*/
        padding-bottom: 16rem;
    }
}

.MB-105__footer {
    margin-top: 4.2rem;
}

.MB-110,
.MB-120,
.MB-130,
.MB-140,
.MB-150,
.MB-160,
.MB-170 {
    padding-top: 12.4rem;
}
@media(min-width: 744px) {
    .MB-110,
    .MB-120,
    .MB-130,
    .MB-140,
    .MB-150,
    .MB-160,
    .MB-170 {
        padding-top: 20rem;
    }
}

.MB-110__title,
.MB-120__title,
.MB-130__title,
.MB-140__title,
.MB-150__title {

}

.MB-110__text,
.MB-120__text,
.MB-130__text,
.MB-140__text,
.MB-150__text {
    margin-top: 4rem;
    width: 100%;
    max-width: 662px;
}

@media(min-width: 744px) {
    .MB-110__text,
    .MB-120__text,
    .MB-130__text,
    .MB-140__text,
    .MB-150__text {
        margin-top: 10rem;
    }
}

@media(min-width: 1280px) {
    .MB-110__text,
    .MB-120__text,
    .MB-130__text,
    .MB-140__text,
    .MB-150__text {
        margin-top: 10rem;
    }
}
@media(min-width: 1440px) {
    .MB-110__text,
    .MB-120__text,
    .MB-130__text,
    .MB-140__text,
    .MB-150__text {
        max-width: none;
        width: calc((100% - 15px) / 2);
    }
}

.MB-111 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-111 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-111 {
        margin-top: 11rem;
    }
}

.MB-111__img {
    width: 100%;
}

.MB-112 {
    width: 100%;
    max-width: 1006px;
    margin-top: 6rem;
    padding: 0 5vw;
}

@media(min-width: 744px) {
    .MB-112 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-112 {
        margin-top: 11rem;
    }
}

.MB-113 {
    width: 100%;
    margin-top: 6rem;
    padding: 0 5vw;
}

@media(min-width: 744px) {
    .MB-113 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-113 {
        margin-top: 11rem;
    }
}

.MB-113__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}
@media(min-width: 744px) {
    .MB-113__grid {
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}
.MB-113__item {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
}
.MB-113__item:nth-of-type(3),
.MB-113__item:nth-of-type(4) {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
}

.MB-114 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-114 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-114 {
        margin-top: 13rem;
    }
}

.MB-114__container {

}

@media(min-width: 1280px) {
    .MB-114__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-114__heading {

}

@media(min-width: 1280px) {
    .MB-114__heading {
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1 / span 5;
    }
}

.MB-114__contents {
    margin-top: 4rem;
}

@media(min-width: 744px) {
    .MB-114__contents {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-114__contents {
        -ms-grid-column: 6;
        -ms-grid-column-span: 7;
        grid-column: 6 / span 7;
        margin-top: 0;
    }
}

.MB-114__item {
    margin-top: 4rem;
}

@media (min-width: 744px) {
    .MB-114__item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 8rem;
    }
}

@media (min-width: 1280px) {
    .MB-114__item {
        -ms-grid-columns: (1fr)[7];
        grid-template-columns: repeat(7, 1fr);
    }
}

.MB-114__item:nth-of-type(1) {
    margin-top: 0rem;
}

.MB-114__item-content {

}

@media (min-width: 744px) {
    .MB-114__item-content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / span 1;
        padding-right: 10%;
    }
}

@media (min-width: 1280px) {
    .MB-114__item-content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-column: 1 / span 4;
    }
}

.MB-114__title {

}

.MB-114__subtitle {

}

.MB-114__summary {
    margin-top: 2.4rem;
}

.MB-114__cover {
    position: relative;
    margin-top: 4rem;
}

@media (min-width: 744px) {
    .MB-114__cover {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / span 1;
        margin-top: 0rem;
    }
}

@media (min-width: 1280px) {
    .MB-114__cover {
        -ms-grid-column: 5;
        -ms-grid-column-span: 3;
        grid-column: 5 / span 3;
    }
}

.MB-114__linkedin {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.MB-114__img {
    width: 100%;
}

.MB-115 {
    width: 100%;
    margin-top: 6rem;
    padding: 4rem 0;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-115 {
        margin-top: 8rem;
        padding: 8rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-115 {
        padding: 11rem 0;
        margin-top: 11rem;
    }
}

.MB-115__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 1280px) {
    .MB-115__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-115__content {
    width: 100%;
    max-width: 551px;
}

@media(min-width: 1280px) {
    .MB-115__content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1 / span 5;
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.MB-115__heading {
    margin-top: 3.6rem;
}

.MB-115__text {
    margin-top: 3.2rem;
}

.MB-115__image {
    width: 100%;
    max-width: 456px;
    margin-top: 4rem;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

@media(min-width: 1280px) {
    .MB-115__image {
        -ms-grid-column: 8;
        -ms-grid-column-span: 4;
        grid-column: 8 / span 4;
        max-width: none;
    }
}

.MB-116 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-116 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-116 {
        margin: 11rem 0 11rem;
    }
}

.MB-116__container {

}

@media(min-width: 1280px) {
    .MB-116__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-116__contents {
    margin-top: 5.2rem;
}

@media(min-width: 744px) {
    .MB-116__contents {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        row-gap: 9rem;
    }
}

@media(min-width: 1280px) {
    .MB-116__contents {
        margin-top: 0;
        -ms-grid-column: 4;
        -ms-grid-column-span: 9;
        grid-column: 4 / span 9;
    }
}

@media(min-width: 1280px) {
    .MB-116__contents {
        margin-top: ;
    }
}

.MB-116__item {
    margin-top: 5rem;
    width: 100%;
}

@media(min-width: 744px) {
    .MB-116__item {
        margin-top: 0rem;
        width: calc((100% - 2rem) / 2);
        padding-right: 10%;
    }
}

.MB-116__idx {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 1px SOLID var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 3.2rem;
    font-weight: 600;
}

.MB-116__title {
    margin-top: 2rem;
}

.MB-116__summary {
    margin-top: 2rem;
}

.MB-117 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-117 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-117 {
        margin: 11rem 0 11rem;
    }
    .MB-117 .container a {
        margin-left: calc((100% - (11 * 15px)) / 12 + 15px);
    }
}

.MB-121 {
    width: 100%;
    margin-top: 6rem;
    padding: 4rem 0;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-121 {
        margin-top: 8rem;
        padding: 8rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-121 {
        padding: 11rem 0;
        margin-top: 11rem;
    }
}

.MB-121__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 1280px) {
    .MB-121__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        grid-template-areas:
            "col2 col1";
        gap: 15px;
    }
}

.MB-121__content {
    width: 100%;
    max-width: 551px;
}

@media(min-width: 1280px) {
    .MB-121__content {
        grid-area: col2;
        -ms-grid-column: 8;
        -ms-grid-column-span: 4;
        grid-column: 8 / span 4;
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.MB-121__heading {
    margin-top: 3.6rem;
}

.MB-121__text {
    margin-top: 3.2rem;
}

.MB-121__image {
    width: 100%;
    max-width: 456px;
    margin-top: 4rem;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

@media(min-width: 1280px) {
    .MB-121__image {
        grid-area: col1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 4;
        grid-column: 2 / span 4;
        max-width: none;
    }
}

.MB-122 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-122 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-122 {
        margin-top: 11rem;
    }
}
.MB-122__container {

}
.MB-122__heading {

}
.MB-122__text {
    margin-top: 4rem;
    max-width: 662px;
}
@media(min-width: 744px) {
    .MB-122__text {
        margin-top: 6rem;
    }
}

.MB-122__contents {
    margin-top: 4.4rem;
}
@media(min-width: 744px) {
    .MB-122__contents {
        margin-top: 6rem;
    }
}

.MB-123 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-123 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-123 {
        margin-top: 11rem;
    }
}

.MB-123__container {

}

@media(min-width: 1280px) {
    .MB-123__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        gap: 15px;
    }
}

.MB-123__swiper {

}

@media(min-width: 1280px) {
    .MB-123__swiper {
        width: calc((100% - (11 * 15px)) / 12 * 6 + (6 * 15px));
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
    }
}

.MB-123__diagram {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-123__diagram {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-123__diagram {
        margin-top: 0;
        width: calc((100% - (11 * 15px)) / 12 * 5 + (4 * 15px));
    }
}

.MB-124 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-124 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-124 {
        margin: 11rem 0 11rem;
    }
}

.MB-124__container {

}

.MB-124__heading {

}

.MB-124__contents {
    margin-top: 4rem;
}

@media (min-width: 744px) {
    .MB-124__contents {
        margin-top: 8rem;
    }
}

@media (min-width: 1280px) {
    .MB-124__contents {
        margin-top: 16rem;
    }
}

.MB-124__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

@media (min-width: 1280px) {
    .MB-124__list {
        -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .MB-124__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.MB-124__item {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
}

.MB-124__item-img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
}

.MB-131,
.MB-141 {
    width: 100%;
    margin: 6rem 0 8rem;
}

@media(min-width: 744px) {
    .MB-131,
    .MB-141 {
        margin: 8rem 0 12rem;
    }
}

@media(min-width: 1280px) {
    .MB-131,
    .MB-141 {
        margin: 11rem 0 16rem;
    }
}

.MB-151 {

}

.MB-151,
.MB-152 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-151,
    .MB-152 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-151,
    .MB-152 {
        margin-top: 11rem;
    }
}

@media(min-width: 1280px) {
    .MB-151__container,
    .MB-152__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.MB-151__text,
.MB-152__text {
    margin-bottom: 3.6rem;
}

@media(min-width: 744px) {
    .MB-151__text,
    .MB-152__text {
        width: calc(100% / 8 * 5);
    }
}

@media(min-width: 1280px) {
    .MB-151__text,
    .MB-152__text {
        width: calc(100% / 12 * 4);
    }
}

.MB-151__contacts,
.MB-152__file-upload {
    width: 100%;
}
@media(min-width: 1280px) {
    .MB-151__contacts,
    .MB-152__file-upload {
        width: calc(100% / 12 * 6);
    }
}

.MB-151__links {
    margin-bottom: 2.4rem;
}

.MB-151__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.MB-151__address {

}

.MB-152 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-152 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-152 {
        margin: 11rem 0 11rem
    }
}

.MB-152__text-body {
    margin-top: 2.4rem;
}

.MB-152__locale {
    margin-top: 4rem;
}
.MB-152__locale:nth-of-type(1) {
    margin-top: 0rem;
}

.MB-152__locale.MB-152__locale--group .MB-152__input {
    margin-top: 4rem;
}
.MB-152__locale.MB-152__locale--group .MB-152__input:nth-of-type(1) {
    /* margin-top: 0rem; */
}

@media(min-width: 744px) {
    .MB-152__locale.MB-152__locale--group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
    }
}

.MB-152__input {
    border: none;
    outline: none;
    width: 100%;
    border-bottom: 1px SOLID var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    color: #979593;
    font-family: var(--primary-font);
    line-height: 1.5;
    padding: 0.8rem 0;
    background-color: #FCF8F5;
}

.MB-152__input:active {
    color: var(--primary-color);
}

.MB-152__input::-webkit-input-placeholder {
    color: #979593;
}

.MB-152__input::-moz-placeholder {
    color: #979593;
}

.MB-152__input:-ms-input-placeholder {
    color: #979593;
}

.MB-152__input::-ms-input-placeholder {
    color: #979593;
}

.MB-152__input::placeholder {
    color: #979593;
}

.MB-152__locale-label {
    font-size: 16px;
    font-weight: 600;
    color: #979593;
    line-height: 1.5;
    padding-bottom: 1.2rem;
}

.drop-area {
    padding: 40px;
    text-align: center;
    border: 1px SOLID var(--primary-color);
    /* cursor: pointer; */
    margin-bottom: 4rem;
}

.drop-area.dragover {
    border-color: var(--teriary-color);
    background-color: var(--teriary-color);
}

.drop-area p {
    margin: 0;
    font-size: 16px;
}

#fileSelect {
    color: var(--primary-color);
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.MB-160__date {

}

.MB-160__title {
    margin-top: 1.6rem;
}

.MB-160__text {
    margin-top: 3.2rem;
}
@media(min-width: 744px) {
    .MB-160__text {
        margin-top: 5rem;
    }
}

@media(min-width: 1280px) {
    .MB-160__text {
        max-width: calc(100% / 12 * 8);
    }
}

.MB-161 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-161 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-161 {
        margin-top: 11rem;
    }
}

.MB-161__container {

}

@media(min-width: 1280px) {
    .MB-161__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-161__image {

}

@media(min-width: 1280px) {
    .MB-161__image {
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1 / span 5;
    }
}

.MB-161__img {
    width: 100%;
}

.MB-161__text {
    margin-top: 6rem;
}

@media(min-width: 1280px) {
    .MB-161__text {
        -ms-grid-column: 7;
        -ms-grid-column-span: 6;
        grid-column: 7 / span 6;
        margin-top: 0;
    }
}

.MB-162 {
    width: 100%;
    margin-top: 6rem;
    padding: 6rem 0;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-162 {
        margin-top: 8rem;
        padding: 8rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-162 {
        margin-top: 11rem;
        padding: 11rem 0;
    }
}

.MB-162 {
    width: 100%;
    margin-top: 6rem;
    padding: 4rem 0;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-162 {
        margin-top: 8rem;
        padding: 8rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-162 {
        padding: 11rem 0;
        margin-top: 11rem;
    }
}

.MB-162__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 1280px) {
    .MB-162__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-162__content {
    width: 100%;
    /* max-width: 551px; */
}

@media(min-width: 1280px) {
    .MB-162__content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 7;
        grid-column: 1 / span 7;
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.MB-162__heading {
    margin-top: 3.6rem;
}

.MB-162__text {
    margin-top: 3.2rem;
}

.MB-162__image {
    width: 100%;
    max-width: 456px;
    margin-top: 4rem;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

@media(min-width: 1280px) {
    .MB-162__image {
        -ms-grid-column: 9;
        -ms-grid-column-span: 4;
        grid-column: 9 / span 4;
        max-width: none;
    }
}

.MB-163 {
    width: 100%;
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-163 {
        margin-top: 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-163 {
        margin-top: 11rem;
    }
}

.MB-163__container {
    width: 100%;
}

@media(min-width: 744px) {
    .MB-163__container {

    }
}

.MB-163__col {
    margin-top: 4rem;
}

.MB-163__col:nth-of-type(1) {
    margin-top: 0;
}

@media(min-width: 1280px) {
    .MB-163__container {
        position: relative;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        grid-template-areas: "col1 col3 col2";
        gap: 15px;
    }

    .MB-163__col--1 {
        grid-area: col1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / span 3;
        padding-right: 20px;
    }

    .MB-163__col--2 {
        grid-area: col2;
        -ms-grid-column: 8;
        -ms-grid-column-span: 5;
        grid-column: 8 / span 5;
    }

    .MB-163__col--3 {
        padding-right: 20px;
        grid-area: col3;
        -ms-grid-column: 4;
        -ms-grid-column-span: 3;
        grid-column: 4 / span 3;
    }

    .MB-163__col {
        margin-top: 0rem;
    }
    .MB-163__container > .MB-121__content {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-163__container > .MB-121__image {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

.MB-164 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-164 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-164 {
        margin: 11rem 0 11rem;
    }
}

.MB-164__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.MB-170 {

}

.MB-171 {
    margin-top: 3.2rem;
    position: relative;
    width: 100%;
    padding-bottom: 50%;
}
.MB-171__img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
}

.MB-172 {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

@media(min-width: 744px) {
    .MB-172 {
        padding: 8rem 0;
    }
}

@media(min-width: 1280px) {
    .MB-172 {
        padding: 11rem 0;
    }
}

.MB-172__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 1280px) {
    .MB-172__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        grid-template-areas:
            "col2 col1";
        gap: 15px;
    }
    .MB-172__container > .MB-121__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-172__container > .MB-121__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-172__container > .MB-163__col--1 {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-172__container > .MB-163__col--2 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

.MB-172__content {
    width: 100%;
    max-width: 551px;
}

@media(min-width: 1280px) {
    .MB-172__content {
        grid-area: col2;
        -ms-grid-column: 7;
        -ms-grid-column-span: 6;
        grid-column: 7 / span 6;
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.MB-172__heading {
    margin-top: 3.6rem;
}

.MB-172__text {
    margin-top: 3.2rem;
}

.MB-172__text {
    line-height: 1.4;
    font-size: 1.6rem;
    margin-top: 2.4rem;
}

.MB-172__text p + p {
    margin-top: 2rem;
}

@media(min-width: 744px) {
    .MB-172__text {
        font-size: 2rem;
    }
    .MB-172__text p + p {
        margin-top: 2rem;
    }
}

.MB-172__image {
    width: 100%;
    max-width: 456px;
    margin-top: 4rem;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

@media(min-width: 1280px) {
    .MB-172__image {
        grid-area: col1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1 / span 5;
        max-width: none;
        -ms-grid-row-align: start;
        align-self: start;
    }
}

@media(max-width: 1279px) {
    .MB-172__image img {
        width: 100% !important;
        max-width: 100%;
    }
}

.MB-173 {
    /*margin-top: 6rem;*/
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media(min-width: 744px) {
    .MB-173 {
        /*margin-top: 8rem;*/
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-173 {
        /*margin-top: 11rem;*/
        padding-top: 11rem;
        padding-bottom: 11rem;
    }
}

@media(min-width: 1240px) {
    .MB-173__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-173__col-1 {
    margin-bottom: 6rem;
}

@media(min-width: 1240px) {
    .MB-173__col-1 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1 / span 6;
    }
}

.MB-173__award {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.MB-173__award-logo {
    width: 120px;
    padding-bottom: 120px;
    position: relative;
}

.MB-173__award-logo-img {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.MB-173__col-2 {

}

@media(min-width: 1240px) {
    .MB-173__col-2 {
        -ms-grid-column: 8;
        -ms-grid-column-span: 5;
        grid-column: 8 / span 5;
    }
}

.MB-173__text {
    margin-top: 4rem;
    line-height: 1.4;
    font-size: 1.6rem;
}

.MB-173__text p + p {
    margin-top: 2rem;
}

@media(min-width: 744px) {
    .MB-173__text {
        margin-top: 7.2rem;
        font-size: 2rem;
    }
    .MB-172__text p + p {
        margin-top: 2rem;
    }
}

.MB-174 {
    margin-top: 6rem;
    margin-bottom: 12rem;
}

@media(min-width: 744px) {
    .MB-174 {
        margin-top: 8rem;
        margin-bottom: 14rem;
    }
}
@media(min-width: 1240px) {
    .MB-174 {
        margin-top: 11rem;
        /* margin-top: 17rem; */
    }
}

.MB-174__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media(min-width: 744px) {
    .MB-174__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.MB-174__col {
    text-align: center;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem;
    max-width: 400px;
}

@media(min-width: 744px) {
    .MB-174__col {
        margin-top: 0rem;
    }
}

.MB-174__caption {
    position: absolute;
    vertical-align: top;
    bottom: -6rem;
    height: 4rem;
}

.MB-174__plus {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 9rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media(min-width: 744px) {
    .MB-174__plus {
        margin-top: 0;
        max-width: 100px;
    }
}

@media(min-width: 744px) {
    .MB-174__col {
        /* width: 28%; */
    }
}

.MB-175 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-175 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-175 {
        margin-top: 17rem;
    }
}

.MB-176 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-176 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-176 {
        margin-top: 11rem;
    }
}

.MB-176__img {
    width: 100%;
}

@media(max-width: 743px) {
    .MB-176 video {
        /*height: 200px !important;*/
        object-fit: cover;
        object-position: center bottom;
    }
}

.MB-177 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-177 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-177 {
        margin-top: 11rem;
    }
}

.MB-177__swiper-wrapper {
    margin-top: 100px;
}

.MB-177__slide {
    background: #FCF8F5;
    width: 100%;
}

.MB-177__image {
    margin-top: 4rem;
    position: relative;
    width: 100%;
    padding-bottom: calc(100% / 16 * 9);
}

.MB-177__img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
}

.MB-178 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-178 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-178 {
        margin-top: 11rem;
    }
}

.MB-178__container {

}

.MB-178__img {
    width: 100%;
}

.MB-178__caption {
    width: 100%;
    max-width: 662px;
    margin-top: 4rem;
}

@media(min-width: 1280px) {
    .MB-178__caption {
        width: 50%;
        max-width: none;
    }
}

.MB-178__text {
    margin-top: 2rem;
}

.MB-179 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-179 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-179 {
        margin-top: 11rem;
    }
}

.MB-179__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

@media(min-width: 744px) {
    .MB-179__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.MB-179__item {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
}

.MB-179__image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.MB-179__img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
}

.MB-179__caption {
    margin-top: 2.4rem;
}


.MB-180 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-180 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-180 {
        margin-top: 11rem;
    }
}

.MB-180__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

@media(min-width: 744px) {
    .MB-180__container {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.MB-180__image {
    width: 100%;
}

.MB-180__img {
    width: 100%;
}

.MB-182 {
    width: 100%;
    margin: 6rem 0 6rem;
}

@media(min-width: 744px) {
    .MB-182 {
        margin: 8rem 0 8rem;
    }
}

@media(min-width: 1280px) {
    .MB-182 {
        margin: 11rem 0 11rem;
    }
}

.MB-176 + .MB-176,
.MB-176 + .MB-180,
.MB-180 + .MB-176 {
    margin-top: 1.5rem;
}

.MB-183 {
    margin-top: 6rem;
}

@media(min-width: 744px) {
    .MB-183 {
        margin-top: 8rem;
    }
}
@media(min-width: 1240px) {
    .MB-183 {
        margin-top: 11rem;
    }
}

.MB-183__swiper-wrapper {
    margin-top: 100px;
}

.MB-183__slide {
    background: #FCF8F5;
    width: 100%;
}

@media (min-width: 744px) {
    .MB-183__slide {
        display: -ms-grid !important;
        display: grid !important;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }

    .MB-183__image {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1 / span 6;
    }

    .MB-183__text {
        -ms-grid-column: 7;
        -ms-grid-column-span: 6;
        grid-column: 7 / span 6;
    }
}

@media (min-width: 1280px) {
    .MB-183__text {
        -ms-grid-column: 8;
        -ms-grid-column-span: 5;
        grid-column: 8 / span 5;
    }
}

.MB-183__image {
    margin-top: 4rem;
    position: relative;
    width: 100%;
    padding-bottom: calc(100%);
}

.MB-183__text {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.MB-183__img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
}
.MB-183__body {
    line-height: 1.4;
    font-size: 1.6rem;
    margin-top: 2.4rem;
}

.MB-183__body p + p {
    margin-top: 1.6rem;
}

@media(min-width: 744px) {
    .MB-183__body {
        font-size: 2rem;
    }
}

.MB-301 {
    position: relative;
    margin-top: 4rem;
}

@media(min-width: 744px) {
    .MB-301 {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(8, 1fr);
        grid-template-areas:
            "col2 col1";
        gap: 20px;
        margin-top: 10rem;
    }
    .MB-301:nth-of-type(1) {
        margin-top: 0;
    }
    .MB-301 > .MB-121__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301 > .MB-121__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301 > .MB-163__col--1 {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301 > .MB-163__col--2 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301 > .MB-172__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301 > .MB-172__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
}

@media(min-width: 1280px) {
    .MB-301 {
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}

.MB-301__date {
    margin-bottom: 1.6rem;
}

@media(min-width: 1280px) {
    .MB-301__date {
        position: absolute;
        top: 0;
        left: calc((100% - (11 * 15px)) / 12 + 15px);
    }
}

.MB-301__content {

}
@media(min-width: 744px) {
    .MB-301__content {
        grid-area: col1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 5;
        grid-column: 4 / span 5;
    }
}
@media(min-width: 1280px) {
    .MB-301__content {
        grid-area: col1;
        -ms-grid-column: 8;
        -ms-grid-column-span: 5;
        grid-column: 8 / span 5;
    }
}

.MB-301__title {

}

.MB-301__summary {
    margin-top: 2.4rem;
}
@media(min-width: 744px) {
    .MB-301__summary {
        margin-top: 3.6rem;
    }
}

.MB-301__link {
    margin-top: 3.6rem;
}

.MB-301__cover {
    grid-area: col2;
    margin-top: 4rem;
}

@media(min-width: 744px) {
    .MB-301__cover {
        margin-top: 0;
    }
}

.MB-301__cover-link {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.MB-301__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
}

@media(min-width: 744px) {
    .MB-301__cover {
        grid-area: col2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / span 3;
        margin-top: 0;
    }
}

@media(min-width: 1280px) {
    .MB-301__cover {
        grid-area: col2;
        -ms-grid-column: 4;
        -ms-grid-column-span: 3;
        grid-column: 4 / span 3;
    }
}

@media (min-width: 1280px) {
    .MB-121__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-121__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-163__col--1 {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-163__container > .MB-163__col--1 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__col--2 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__container > .MB-163__col--2 {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-163__col--3 {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-172__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__container > .MB-172__content {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-172__container > .MB-172__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-172__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-163__container > .MB-172__image {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-172__container > .MB-172__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-163__container > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-172__container > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-163__container > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-172__container > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-172__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-172__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-163__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .MB-172__container > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

@media (min-width: 744px) {
    .MB-301 > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301 > .MB-301__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .MB-301 > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301 > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .MB-301 > .MB-301__cover {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

.project-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap:4.4rem;
    margin-top: 5rem;
}
@media (min-width: 744px) {
    .project-list {
        gap:12rem;
        margin-top: 6rem;
    }
}
@media (min-width: 1280px) {
    .project-list {
        margin-top: 14rem;
        gap:16rem;
    }
}
.project-item {

}
@media (min-width: 1280px) {
    .project-item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
    }
}
.project-item__content {
    margin-bottom: 2.2rem;
}
@media (min-width: 744px) {
    .project-item__content {
        margin-bottom: 6.4rem;
    }
}
@media (min-width: 1280px) {
    .project-item__content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-column: 1 / span 4;
    }
}
.project-item__summary {
    margin-top: 2.2rem;
}
.project-item__link {
    margin-top: 2.2rem;
}
.project-item__cover {
    width: 100%;
}
@media (min-width: 1280px) {
    .project-item__cover {
        -ms-grid-column: 6;
        -ms-grid-column-span: 7;
        grid-column: 6 / span 7;
    }
}
.project-item__figure {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: calc(100% / 16 * 12);
}

.project-item__img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.article-list {

}

.article-list__item {
    margin-top: 4.4rem;
}

@media screen and (max-width: 744px) {
    .article-list__item {
        vertical-align: top;
        white-space: normal;
        display: inline-block;
        width: calc(100% - 5vw);
        margin-right: 3.5vw;
    }
}

.article-list__item-title {
    margin-top: 1.6rem;
}

.article-list__item-summary {
    margin-top: 2.4rem;
}

.article-list__cover {
    margin-top: 4.4rem;
    display: block;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.article-list__img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.article-list__item-link {
    margin-top: 4.4rem;
}

.MB-105__mobile-posts-wrapper {
    position: relative;
}

.MB-105__mobile-posts {
    /*display: flex;*/
    /*overflow-x: scroll;*/
    scroll-behavior: smooth;
}

.scroll-progress-bar__wrapper {
    display: none;
    position: relative;
    bottom: -30px;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.25);
}
@media screen and (max-width: 744px) {
    .scroll-progress-bar__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #000;
    width: 0;
    /*transition: width 0.3s ease;*/
}

.MB-102,.MB-103,.MB-104,.MB-105 {
    z-index: 2;
    position: relative;
}

.MB-103, .MB-105 {
    background-color: #ffffff;
    background-color: #FCF8F5;
}

footer {
    z-index: 10;
    position: relative;
}

.MB-105 .swiper-slide {
    background-color: #fff;
    background-color: #FCF8F5;
}

.MB-105 .swiper-button-custom-next,
.MB-105 .swiper-button-custom-prev {
    background-color: #fff;
    background-color: #FCF8F5;
}

.scroll-down {
    z-index: 1000;
    position: absolute;
    right: 5vw;
    bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255, 0.55);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
    background-color: transparent;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.scroll-down.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-down svg {
    opacity: 0.55;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scroll-down:hover {
    border-color: rgba(255,255,255, 1);
    background-color: #fff;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.scroll-down:hover svg {
    opacity: 1;
    fill: #000;
}

@media screen and (max-width: 744px) {
    .scroll-down {
        width: 45px;
        height: 45px;
        bottom: calc(5rem + 7px);
    }
}

.MB-170B__media {
    display: block;
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.MB-170B img,
.MB-170B .MB-170B__media, {
    .MB-170B img.MB-170B__media {
        position: relative;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;}
}

@media screen and (max-width: 744px) {
    .footer .container {
        display: block;
    }
}

.img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
}
