/*
|-----------------------------------------------------------------------------------------------------------------------
| Mast
|-----------------------------------------------------------------------------------------------------------------------
*/

.mast {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--mst-hgt);
    padding: 0 1.5rem;
    z-index: 1;
}

.mast .wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Menu
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1279px) {

    .menu-controller {
        width: 48px;
        height: 48px;
        border-radius: var(--rad-1);
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath fill='%23fff' d='M24 2v3H0V2h24zM0 23h8v-3H0v3zm0-9h16v-3H0v3z'/%3E%3C/svg%3E");
        background-size: 24px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .menu-controller:hover {
        background-color: var(--blk-2);
    }

    .menu-canvas {
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        padding: 2rem;
        border-left: solid 2px var(--blk-2);
        background-color: var(--blk-3);
        font-weight: 500;
        color: var(--wht-1);
        z-index: 1;
        transition: right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        overflow-y: auto;
        scrollbar-width: none;
    }

    .menu-canvas.page-menu-open {
        right: 0;
    }

    .menu-canvas .wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .menu-canvas > div:not(:last-of-type) {
        padding-bottom: 1rem;
        border-bottom: solid 1px var(--blk-2);
    }

    .menu-canvas a,
    .menu-canvas .menu-item {
        display: flex;
        justify-content: flex-start;
        padding: .5rem;
        border-radius: 50%;
        background-color: transparent;
        font-family: var(--fnt-btn);
        font-size: var(--siz-1);
        font-weight: 500;
        color: var(--wht-1);
        transition: color 0.2s ease;
        width: 100%;
    }

    .menu-canvas .menu-item svg {
        display: none;
    }

    .menu-canvas a:hover {
        background-color: unset;
    }

    .menu-canvas a:active,
    .menu-canvas .menu-item:active {
        outline: unset;
    }

    .menu-canvas a:has(svg) svg {
        display: none;
    }

    .menu-canvas .inner a {
        font-weight: unset;
        text-align: left;
        color: var(--wht-3);
    }

    .menu-canvas .inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        padding-left: 1rem;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-canvas .inner-open {
        max-height: 300px;
    }

    .menu-canvas .inner a,
    .menu-canvas .inner .menu-item {
        display: block;
        width: 100%;
        padding: .5rem;
        margin: 0;
    }
}

@media screen and (min-width: 1280px) {

    .menu-controller {
        display: none;
    }

    .menu-canvas {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: .75rem;
        width: 100%;
        height: 60px;
        top: 1rem;
        margin-left: 102px;
        margin-right: 51px;
        padding: 0 51px;
        background-color: var(--grn-1);
        font-weight: 500;
        letter-spacing: .025ch;
        color: var(--wht-1);
        user-select: none;
        -webkit-user-select: none;
        z-index: 1;
    }

    .menu-canvas:before,
    .menu-canvas:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        pointer-events: none;
    }

    .menu-canvas:before {
        content: url('../images/menu/left.svg');
        left: -50px;
    }

    .menu-canvas:after {
        content: url('../images/menu/left.svg');
        top: 0;
        right: -60px;
        transform: rotate(180deg);
    }

    .menu-canvas section {
        display: flex;
        flex-direction: row;
    }

    .menu-canvas a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--btn-hgt);
        padding: 0 1rem;
        border-radius: calc(var(--btn-hgt) / 2);
        background-color: var(--grn-1);
        color: var(--wht-1);
        transition: var(--trn);
    }

    .menu-canvas a.active {
        background-color: var(--grn-3);
    }

    .menu-canvas a:hover {
        background-color: var(--grn-2);
    }

    .menu-canvas section:last-of-type {
        gap: .75rem;
    }

    .menu-canvas.page-menu-open::-webkit-scrollbar {
        display: none;
    }

    .menu-canvas .wrapper {
        position: relative;
    }

    .menu-canvas .inner {
        display: none;
        background-color: var(--blk-3);
    }

    .menu-canvas .inner.inner-open {
        position: absolute;
    }

    .menu-canvas .inner.inner-open {
        display: flex;
        flex-direction: column;
        right: 0;
        min-width: 200px;
        width: fit-content;
        max-width: 250px;
        top: calc(var(--mst-hgt) - 1rem);
        outline: solid 4px var(--blk-3);
        border: solid 2px var(--blk-0);
        border-radius: var(--rad-2);
        box-shadow: var(--shd-1);
        animation: fadeDown .15s var(--log);
    }

    .menu-canvas .inner.inner-open:before {
        content: url('data:image/svg+xml,<svg viewBox="0 0 29 13" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M12.021.879a2.998 2.998 0 0 1 4.242 0l12.021 12.02H0L12.021.879z" fill="var(--blk-0)"/></svg>');
        position: absolute;
        width: 18px;
        height: 8px;
        top: -15px;
        right: 15px;
    }

    .menu-canvas .menu-item {
        background-color: transparent;
        font-family: var(--fnt-btn);
        font-weight: 500;
        color: var(--wht-1);
    }

    .menu-canvas .menu-item:hover {
        background-color: var(--blk-1);
    }

    .menu-canvas .menu-item:has(svg) {
        background-color: var(--blk-1);
    }

    .menu-canvas .menu-item:has(svg):hover {
    }

    .menu-canvas .inner .menu-item {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        height: var(--btn-hgt);
        padding: 0 1.5rem 0 1.25rem;
        border-radius: 0;
        text-overflow: ellipsis;
    }

    .menu-canvas .inner .menu-item:hover {
        background-color: var(--blk-1);
    }

    .menu-canvas .inner .menu-item:active,
    .menu-canvas .inner .menu-item:focus {
        outline: none;
        background-color: var(--blk-0);
    }

    .menu-canvas .inner .menu-item:first-child {
        margin-top: .5rem;
    }

    .menu-canvas .inner .menu-item:last-child {
        margin-bottom: .5rem;
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Hero
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    article.hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .7), rgba(0, 0, 0, .4)), url('../images/photos/small/reception.avif');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    article.hero {
        position: relative;
        width: 100%;
        height: clamp(800px, 100vh, 1000px);
        padding: 0 1.5rem;
        /*top: var(--mst-hgt);*/
    }

    article.hero .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        padding: 8rem 0;
    }

    article.hero h1 {
        font-size: var(--siz-4);
        font-weight: 500;
        color: var(--wht-1);
    }

    article.hero p {
        font-size: var(--siz-2);
        color: var(--wht-1);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (min-width: 768px) {

    article.hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        background-image: linear-gradient(to right, rgba(0, 0, 0, .9), rgba(0, 0, 0, .6), transparent, rgba(0, 0, 0, .3)), url('../images/photos/large/reception.avif');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    article.hero {
        position: relative;
        width: 100%;
        height: clamp(800px, 100vh, 1000px);
        padding: 0 3rem;
    }

    article.hero .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        max-width: 1280px;
        padding: 6rem 0 10rem 0;
        top: var(--mst-hgt);
    }

    article.hero h1 {
        width: 55%;
        font-size: var(--siz-5);
        font-weight: 500;
        color: var(--wht-1);
    }

    article.hero p {
        width: 55%;
        font-size: var(--siz-2);
        color: var(--wht-1);
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Hero
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    article.alt-hero {
        position: relative;
        width: 100%;
        min-height: calc(100vh - var(--mst-hgt));
        padding: 0 1.5rem;
        top: var(--mst-hgt);
    }

    article.alt-hero .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        padding: 8rem 0;
    }

    article.alt-hero h1 {
        font-size: var(--siz-4);
        font-weight: 500;
        color: var(--wht-1);
    }

    article.alt-hero p {
        font-size: var(--siz-2);
        color: var(--wht-1);
    }
}

@media screen and (min-width: 768px) {

    article.alt-hero {
        position: relative;
        width: 100%;
        min-height: calc(100vh - var(--mst-hgt));
        padding: 0 3rem;
        top: var(--mst-hgt);
    }

    article.alt-hero .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        width: 100%;
        max-width: 1280px;
        padding: 6rem 0 10rem 0;
    }

    article.alt-hero h1 {
        font-size: var(--siz-5);
        font-weight: 500;
        text-align: center;
        text-wrap: balance;
        color: var(--wht-1);
    }

    article.alt-hero p {
        width: 70%;
        font-size: var(--siz-2);
        text-align: center;
        text-wrap: balance;
        color: var(--wht-1);
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Plain
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    article.plain {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        padding: 4rem 1.5rem;
        background-color: var(--wht-0);
    }

    article.plain .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
        max-width: 1280px;
    }

    article.plain h1 {
        font-size: var(--siz-3);
        font-weight: 500;
        text-align: center;
        color: var(--blk-3);
    }

    article.plain p {
        font-size: var(--siz-1);
        text-align: center;
        color: var(--blk-1);
    }
}

@media screen and (min-width: 768px) {

    article.plain {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4rem;
        width: 100%;
        padding: 8rem 3rem;
        background-color: var(--wht-0);
    }

    article.plain .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
        max-width: 1280px;
        z-index: 1;
    }

    article.plain h1 {
        width: 70%;
        font-size: var(--siz-4);
        font-weight: 500;
        text-align: center;
        color: var(--blk-3);
    }

    article.plain p {
        width: 55%;
        font-size: var(--siz-1);
        text-align: center;
        color: var(--blk-1);
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Copy
|-----------------------------------------------------------------------------------------------------------------------
*/

article.copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    padding: 4rem 1.5rem;
    background-color: var(--wht-0);
}

article.copy .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1280px;
}

article.copy h1 {
    font-size: var(--siz-3);
    font-weight: 500;
    color: var(--blk-3);
}

article.copy h2 {
    font-size: var(--siz-2);
    font-weight: 500;
    color: var(--blk-3);
}

article.copy p {
    font-size: var(--siz-1);
    color: var(--blk-1);
}

article.copy ul li {
    line-height: 1.2;
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Light strip
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    article.light-strip {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 0 1.5rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--grn-1);
    }

    article.light-strip .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    article.light-strip .text-wrapper,
    article.light-strip .masked-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 4rem 0;
    }

    article.light-strip h1 {
        font-size: var(--siz-3);
        font-weight: 500;
        text-align: center;
        color: var(--wht-0);
    }

    article.light-strip p {
        font-size: var(--siz-1);
        text-align: center;
        color: var(--wht-0);
    }

    article.light-strip hr {
        position: relative;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, .5), transparent);
    }
}

@media screen and (min-width: 768px) {

    article.light-strip {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-height: 400px;
        padding: 0 3rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--grn-1);
    }

    article.light-strip .wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        max-width: 1280px;
    }

    article.light-strip .text-wrapper,
    article.light-strip .masked-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 6rem 0;
    }

    article.light-strip .text-wrapper {
        position: relative;
        max-width: 50%;
    }

    article.light-strip h1 {
        font-size: var(--siz-4);
        font-weight: 500;
        color: var(--wht-0);
    }

    article.light-strip p {
        font-size: var(--siz-1);
        color: var(--wht-0);
    }

    article.light-strip hr {
        position: relative;
        margin: .5rem 0;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, rgba(255, 255, 255, .35) 0%, transparent);
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Dark strip
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    article.dark-strip {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 0 1.5rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--lim-1);
    }

    article.dark-strip .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    article.dark-strip .text-wrapper,
    article.dark-strip .masked-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 4rem 0;
    }

    article.dark-strip h1 {
        font-size: var(--siz-3);
        font-weight: 500;
        text-align: center;
        color: var(--wht-0);
    }

    article.dark-strip p {
        font-size: var(--siz-1);
        text-align: center;
        color: var(--wht-0);
    }

    article.dark-strip hr {
        position: relative;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, .5), transparent);
    }
}

@media screen and (min-width: 768px) {

    article.dark-strip {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-height: 400px;
        padding: 0 3rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--lim-1);
    }

    article.dark-strip .wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        max-width: 1280px;
    }

    article.dark-strip .text-wrapper,
    article.dark-strip .masked-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 50%;
        padding: 6rem 0;
    }

    article.dark-strip .text-wrapper {
        position: relative;
        margin-left: 50%;
    }

    article.dark-strip h1 {
        font-size: var(--siz-4);
        font-weight: 500;
        color: var(--wht-0);
    }

    article.dark-strip p {
        font-size: var(--siz-1);
        color: var(--wht-0);
    }

    article.dark-strip hr {
        position: relative;
        margin: .5rem 0;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, rgba(255, 255, 255, .35) 0%, transparent);
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Footer strip
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1279px) {

    article.footer-strip {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 3rem 1.5rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--blk-3);
    }

    article.footer-strip .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    article.footer-strip .text-wrapper {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin-top: 0;
        margin-bottom: 3rem;
    }

    article.footer-strip h1 {
        font-size: var(--siz-3);
        font-weight: 500;
        text-align: center;
        color: var(--wht-0);
    }

    article.footer-strip p {
        font-size: var(--siz-1);
        text-align: center;
        color: var(--wht-0);
    }

    article.footer-strip hr {
        position: relative;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, .5), transparent);
    }
}

@media screen and (min-width: 1280px) {

    article.footer-strip {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 400px;
        padding: 0 3rem 3rem 3rem;
        background-image: url("../images/backgrounds/tiles.svg");
        background-size: 100%;
        background-position: center 0;
        background-repeat: repeat-y;
        background-color: var(--blk-);
    }

    article.footer-strip .wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1280px;
    }

    article.footer-strip .text-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 6rem 1rem;
    }

    article.footer-strip h1 {
        font-size: var(--siz-4);
        font-weight: 500;
        color: var(--wht-0);
    }

    article.footer-strip p {
        font-size: var(--siz-1);
        color: var(--wht-0);
    }

    article.footer-strip hr {
        position: relative;
        margin: .5rem 0;
        height: .25rem;
        right: -.25rem;
        left: -.25rem;
        border-radius: .125rem;
        background: linear-gradient(to right, rgba(255, 255, 255, .35) 0%, transparent);
    }

    .footer-strip .copyright {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Mask
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    .masked-wrapper {
        position: absolute;
        width: 270px;
        aspect-ratio: 1 / 1;
        margin: auto;
        top: -8%;
    }

    .masked-wrapper .masked-outline {
        position: absolute;
        inset: 0;
        background: #fff;
        -webkit-mask-image: url("../images/strip-box-outline.svg");
        mask-image: url("../images/strip-box-outline.svg");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        z-index: 1;
    }

    .masked-wrapper .masked-image {
        position: absolute;
        inset: .5rem;
        background-size: cover;
        background-position: center;
        -webkit-mask-image: url("../images/strip-box.svg");
        mask-image: url("../images/strip-box.svg");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        z-index: 2;
    }

    .text-wrapper {
        position: relative;
        margin-top: 12rem;
    }

    #woman-inspecting-board.masked-wrapper .masked-image {
        background-image: url("../images/photos/small/woman-inspecting-board.avif");
    }

    #schoolgirl-writing-at-desk.masked-wrapper .masked-image {
        background-image: url("../images/photos/small/schoolgirl-writing-at-desk.avif");
    }

    #hands-at-keyboard.masked-wrapper .masked-image {
        background-image: url("../images/photos/small/hands-at-keyboard.avif");
    }
}

@media screen and (min-width: 768px) {

    .masked-wrapper {
        position: absolute;
        width: clamp(270px, 45vw, 600px);
        aspect-ratio: 1 / 1;
        margin: auto;
    }

    .light-strip .masked-wrapper {
        left: 50%;
    }

    .dark-strip .masked-wrapper {
        right: 50%;
    }

    .masked-wrapper .masked-outline {
        position: absolute;
        inset: 0;
        background: #fff;
        -webkit-mask-image: url("../images/strip-box-outline.svg");
        mask-image: url("../images/strip-box-outline.svg");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        z-index: 1;
    }

    .masked-wrapper .masked-image {
        position: absolute;
        inset: 1.5rem;
        background-size: cover;
        background-position: center;
        -webkit-mask-image: url("../images/strip-box.svg");
        mask-image: url("../images/strip-box.svg");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        z-index: 2;
    }

    #woman-inspecting-board.masked-wrapper .masked-image {
        background-image: url("../images/photos/large/woman-inspecting-board.avif");
    }

    #schoolgirl-writing-at-desk.masked-wrapper .masked-image {
        background-image: url("../images/photos/large/schoolgirl-writing-at-desk.avif");
    }

    #hands-at-keyboard.masked-wrapper .masked-image {
        background-image: url("../images/photos/large/hands-at-keyboard.avif");
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Page
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    .open-menu {
        display: none;
    }
}

@media screen and (min-width: 768px) {

    .open-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-family: var(--fnt-std);
    }

    .open-menu > .open-menu-wrapper {
        display: flex;
        flex-direction: column;
        font-family: var(--fnt-std);
        font-weight: 500;
        color: var(--wht-1);
    }

    .open-menu > .open-menu-wrapper > ul > li {
        list-style-type: none;
        padding: 0;
        margin: .25rem 0 0 -1rem;
        color: var(--wht-3);
    }

    .open-menu > .open-menu-wrapper > ul > li > a {
        display: flex;
        flex-direction: column;
        gap: .25rem;
        color: var(--wht-3);
    }
    .open-menu > .open-menu-wrapper > ul > li > a:hover {
        color: var(--wht-1);
    }
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Figure
|-----------------------------------------------------------------------------------------------------------------------
*/

a > figure > h2 {
    color: var(--blk-3);
}

a:hover > figure {
    outline: solid 2px var(--grn-1);
}

figure {
    padding: 3rem;
    margin: 0;
    border-radius: var(--rad-4);
    background-color: var(--wht-1);
}

figure h2 {
    font-size: var(--siz-3);
    font-weight: 500;
    letter-spacing: -.01125ch;
}

figure p {
    height: 100%;
    min-width: 100%;
    text-wrap: balance;
}

figure.icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    text-align: center;
}

figure.icon img {
    width: 72px;
    height: 72px;
}

/*
|-----------------------------------------------------------------------------------------------------------------------
| Form
|-----------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    .form {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {

    .form {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
    }
}