:root {
    --clr-brown: #986f5e;
    --clr-cream: #F0EEE2;
    --clr-mint: #D7E2D4;

    --base-gap: 10px;
}

/* FONT */
@font-face {
    font-family: 'Bermula';
    font-weight: 500;
    font-style: normal;
    src: url('fonts/bermula/Bermula-Medium.ttf') format('truetype'),
            url('fonts/bermula/Bermula-Medium.otf') format('opentype');
}

@keyframes slide-top {
    from { top: 5px; }
    to { top: -5px; }
}

@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes blinking {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blinking {
  to {
    visibility: hidden;
  }
}

/* START BASE TEMPLATE */
/* GRIDS */
.flex-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flex-col {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.fl-grow-1 { flex-grow: 1; }
.fl-grow-2 { flex-grow: 2; }
.fl-grow-3 { flex-grow: 3; }
.fl-grow-4 { flex-grow: 4; }
.fl-grow-5 { flex-grow: 5; }
.fl-grow-6 { flex-grow: 6; }
.fl-grow-7 { flex-grow: 7; }
.fl-grow-8 { flex-grow: 8; }
.fl-grow-9 { flex-grow: 9; }

.col-w-1 { flex-basis: calc(10% - var(--base-gap)); }
.col-w-2 { flex-basis: calc(20% - var(--base-gap)); }
.col-w-3 { flex-basis: calc(30% - var(--base-gap)); }
.col-w-4 { flex-basis: calc(40% - var(--base-gap)); }
.col-w-5 { flex-basis: calc(50% - var(--base-gap)); }
.col-w-6 { flex-basis: calc(60% - var(--base-gap)); }
.col-w-7 { flex-basis: calc(70% - var(--base-gap)); }
.col-w-8 { flex-basis: calc(80% - var(--base-gap)); }
.col-w-9 { flex-basis: calc(90% - var(--base-gap)); }
.col-w-0 { flex-basis: calc(100% - var(--base-gap)); }

@media (max-width: 767px) { 
    .sm\:col-w-1 { flex-basis: calc(10% - var(--base-gap)); }
    .sm\:col-w-2 { flex-basis: calc(20% - var(--base-gap)); }
    .sm\:col-w-3 { flex-basis: calc(30% - var(--base-gap)); }
    .sm\:col-w-4 { flex-basis: calc(40% - var(--base-gap)); }
    .sm\:col-w-5 { flex-basis: calc(50% - var(--base-gap)); }
    .sm\:col-w-6 { flex-basis: calc(60% - var(--base-gap)); }
    .sm\:col-w-7 { flex-basis: calc(70% - var(--base-gap)); }
    .sm\:col-w-8 { flex-basis: calc(80% - var(--base-gap)); }
    .sm\:col-w-9 { flex-basis: calc(90% - var(--base-gap)); }
    .sm\:col-w-0 { flex-basis: calc(100% - var(--base-gap)); }
}

@media (max-width: 480px) { 
    .xs\:col-w-1 { flex-basis: calc(10% - var(--base-gap)); }
    .xs\:col-w-2 { flex-basis: calc(20% - var(--base-gap)); }
    .xs\:col-w-3 { flex-basis: calc(30% - var(--base-gap)); }
    .xs\:col-w-4 { flex-basis: calc(40% - var(--base-gap)); }
    .xs\:col-w-5 { flex-basis: calc(50% - var(--base-gap)); }
    .xs\:col-w-6 { flex-basis: calc(60% - var(--base-gap)); }
    .xs\:col-w-7 { flex-basis: calc(70% - var(--base-gap)); }
    .xs\:col-w-8 { flex-basis: calc(80% - var(--base-gap)); }
    .xs\:col-w-9 { flex-basis: calc(90% - var(--base-gap)); }
    .xs\:col-w-0 { flex-basis: calc(100% - var(--base-gap)); }
}

@media (max-width: 360px) { 
    .xxs\:col-w-1 { flex-basis: calc(10% - var(--base-gap)); }
    .xxs\:col-w-2 { flex-basis: calc(20% - var(--base-gap)); }
    .xxs\:col-w-3 { flex-basis: calc(30% - var(--base-gap)); }
    .xxs\:col-w-4 { flex-basis: calc(40% - var(--base-gap)); }
    .xxs\:col-w-5 { flex-basis: calc(50% - var(--base-gap)); }
    .xxs\:col-w-6 { flex-basis: calc(60% - var(--base-gap)); }
    .xxs\:col-w-7 { flex-basis: calc(70% - var(--base-gap)); }
    .xxs\:col-w-8 { flex-basis: calc(80% - var(--base-gap)); }
    .xxs\:col-w-9 { flex-basis: calc(90% - var(--base-gap)); }
    .xxs\:col-w-0 { flex-basis: calc(100% - var(--base-gap)); }

    .xxs\:fl-grow-1 { flex-grow: 1; }
    .xxs\:fl-grow-2 { flex-grow: 2; }
    .xxs\:fl-grow-3 { flex-grow: 3; }
    .xxs\:fl-grow-4 { flex-grow: 4; }
    .xxs\:fl-grow-5 { flex-grow: 5; }
    .xxs\:fl-grow-6 { flex-grow: 6; }
    .xxs\:fl-grow-7 { flex-grow: 7; }
    .xxs\:fl-grow-8 { flex-grow: 8; }
    .xxs\:fl-grow-9 { flex-grow: 9; }
    .xxs\:fl-grow-hide { flex-grow: unset; }

    .xxs\:hide { display: none; }
}

:is(.flex-row, .flex-col):is(.gap\:5) { gap: 5px; --base-gap: 5px; }
:is(.flex-row, .flex-col):is(.gap\:10) { gap: 10px; --base-gap: 10px; }
:is(.flex-row, .flex-col):is(.gap\:15) { gap: 15px; --base-gap: 15px; }
:is(.flex-row, .flex-col):is(.gap\:20) { gap: 20px; --base-gap: 20px; }

.align-items\:fl-end {
    align-items: flex-end;
}

.align-content\:fl-end {
    align-content: flex-end;
}

.hide { display: none; }
.transparent { opacity: 0; }

.w\:80\:percent { width: 80%; }

.m\:auto { margin: auto; }
.m\:0 { margin: 0; }

.mt\:0 { margin-top: 0px; }
.mt\:10 { margin-top: 10px; }
.mt\:20 { margin-top: 20px; }

.mb\:0 { margin-bottom: 0px; }
.mb\:10 { margin-bottom: 10px; }
.mb\:20 { margin-bottom: 20px; }

.pd\:10 { padding: 10px; }
.pd\:20 { padding: 20px; }

.weight\:400 { font-weight: 400; }

/* END BASE TEMPLATE */

/* GLOBAL STYLING */
body {
    /* background: rgb(232, 232, 232); */
    background: #fff;
    font: 16px "Helvetica";
    font-weight: 400;
    color: #986f5e;
}

body:has(#fr-construction-page) {
    background: #D7D7D7;
}

body:has(#fr-living-page) {
    background: var(--clr-mint);
}

body:has(#fr-article-single-page),
body:has(#fr-contact-spage),
body.cream   {
    background: var(--clr-cream);
}

audio {
    position: absolute;
    top: 0;
    left: -1000px;
}

a.fr-anchor:hover {
    text-decoration: underline;
}

#fr-m-body {
    /* height: 2000px; */
    overflow: hidden;
}

#fr-m-body.fr-norm {
    overflow: auto;
}

.fr-headline {
    font-family: "Bermula";
    font-weight: 300;
    color: #986f5e;
}
h1.fr-headline {
    font-size: 68px;

    @media (max-width: 1199px) {
        font-size: 64px;
    }

    @media (max-width: 1023px) {
        font-size: 58px;
    }
}
h2.fr-headline {
    font-size: 52px;

    @media (max-width: 1199px) {
        font-size: 48px;
    }

    @media (max-width: 1023px) {
        font-size: 44px;
    }
}
h3.fr-headline {
    font-size: 40px;

    @media (max-width: 1199px) {
        font-size: 36px;
    }

    @media (max-width: 1023px) {
        font-size: 32px;
    }
}
h4.fr-headline {
    font-size: 34px;

    @media (max-width: 1199px) {
        font-size: 30px;
    }

    @media (max-width: 1023px) {
        font-size: 27px;
    }
}
h5.fr-headline {
    font-size: 26px;

    @media (max-width: 1199px) {
        font-size: 22px;
    }

    @media (max-width: 1023px) {
        font-size: 17px;
    }
}
h6.fr-headline {
    font-size: 19px;

    @media (max-width: 1199px) {
        font-size: 15px;
    }

    @media (max-width: 1023px) {
        font-size: 13px;
    }
}

.hide {
    display: none;
}

.hide-imp {
    display: none !important;
}

.transparent { opacity: 0; }
.visible\:off { visibility: hidden; }

a,
a:focus, a:visited {
    color: #000;
    text-decoration: none;
}

.v-asset {
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;

    &.asset\:logogram-main {
        aspect-ratio: 219 / 148;
    }

    &.asset\:logogram-construction {
        aspect-ratio: 223 / 149;
    }

    &.asset\:logogram-living {
        aspect-ratio: 221 / 146;
    }
}

.asset\:logogram-main {
    background-image: url("../img/gif/logogram-main.png");
}

.asset\:logogram-construction {
    background-image: url("../img/gif/logogram-construction.png");
}

.asset\:logogram-living {
    background-image: url("../img/gif/logogram-living.png");
}

.fr.fr-lgram {
    display: block;
    width: 100%;
    max-width: 167px;
    padding-top: 27%;
    background-image: url("../img/fa-lgram.png");
    /* background-image: url("../img/gif/fa-lgram-motion-compressed.gif"); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgram.mtn:hover {
    background-image: url("../img/gif/fa-lgram-motion-fix-size.gif");
    min-width: 470px;
    padding-top: min(27%, 61px);
    background-position: top left;
    background-size: auto 126%;
}

.fr.fr-lgram-2 {
    display: block;
    aspect-ratio: 63 / 167;
    width: 34px;
    height: auto;
    /* padding-top: 30%; */
    background-image: url(../img/fa-lgram-flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgram-2-wht {
    display: block;
    width: 100%;
    max-width: 63px;
    padding-top: 30%;
    background-image: url("../img/fa-lgram-flower-white.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgram-construct {
    display: block;
    width: calc(234px * 0.29);
    height: calc(153px * 0.29);
    /* max-width: 63px; */
    /* padding-top: 30%; */
    background-image: url("../img/fa-lgram-construction.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgram-living {
    display: block;
    width: calc(247px * 0.29);
    height: calc(153px * 0.29);
    /* max-width: 63px; */
    /* padding-top: 30%; */
    background-image: url("../img/fa-lgram-living.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgtype {
    display: block;
    width: 100%;
    max-width: 89px;
    padding-top: 18%;
    background-image: url("../img/fa-logotype.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.fr.fr-lgram-gif {
    aspect-ratio: 394 / 85;
    display: block;
    height: 101px;

    &.lgram-gif-2 {
        aspect-ratio: 1159 / 210;
        height: 85px;
        margin-top: 8px;

        @media (max-width: 1023px) {
            height: 63.5px;
        }
    }
}

/* BUTTONS */
.btn {
    aspect-ratio: 1 / 1;
    width: 30px;
    background: #fff;
    border: none;
    border-radius: 50%;
    outline: none;
    color: #000;
}

/* .fr.fr-lgram-construction-gif {
    display: block;
    width: 100%;
    max-width: 167px;
    padding-top: 27%;
} */

.fr-iframe {
    display: inline-block;
    width: 100%;
    height: 100%;
    max-width: 739px;
    max-height: 434px;
}

.fr-iframe > iframe {
    width: 100%;
    height: 100%;
}

.fr-card-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fr-card-box > .fr-card {
    position: relative;
    width: calc(100% / 8);
}

.fr-card-box > .fr-card:before {
	content: "";
    width: 100%;
	padding-top: 100%; 	/* initial ratio of 1:1*/
    /* background: red; */
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
}

.fr-card-box > .fr-card .desc {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: rgba(213, 228, 211, 0.9);
    /* opacity: 0; */
    -webkit-transition: all 0.6s ease-in;
    -moz-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

.fr-card-box > .fr-card:hover .desc {
    /* opacity: 1; */
}

/* .fr-article-single .fr-article-overview {
    display: flex;
    min-height: calc(263px - 40px);
    padding: 0px 30px 40px;
    justify-content: space-between;
    align-items: flex-end;
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 12px;
    color: #f7f4ea;
} */

/* .fr-article-single .fr-article-overview .fr-headline {
    color: #f7f4ea;
} */

.fr-article-single .fr-article-inner-content {
    display: flex;
    padding: 0 36px 0 40px;
    align-items: flex-start;
    gap: 50px;

    @media (max-width: 480px) {
        flex-direction: column;
        padding: 0 36px 0 20px;
        gap: 0;
    }
}

.fr-article-single .fr-article-inner-content .article-sect {
    /* padding: 30px 0; */
    font-size: 11px;
    font-weight: 300;
    color: #986f5e;
}

.fr-article-single .fr-article-inner-content .article-sect.col-1 {
    flex-basis: 35%;
}

.fr-article-single .head-information {
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    gap: 40px;
    font-weight: 400;
}

.fr-article-single .head-information .title {
    flex-basis: 33%;
    margin: 0;
    /* font-size: 1em; */
    font: 1em "Helvetica Neue";
}

.fr-article-single .head-information .date {
    flex-basis: 25%;
    margin: 0;
}

.fr-article-single .body-content {
    width: min(320px, 100%);

    @media (max-width: 480px) {
        width: 100%;
    }
}

.fr-article-single .fr-article-inner-content .article-sect.col-2 {
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 65%;
}

.fr-article-single .fr-article-inner-content .article-sect.col-2 .row {
    width: 100%;
}

.fr-article-single .fr-article-inner-content .article-sect.col-2 .row.row-2 {
    display: flex;
    align-items: flex-end;
}

.fr-article-single .thumb {
    aspect-ratio: 559 / 310;
    width: 100%;
    height: auto;
    background-image: url("../img/fa-journal-thumb.jpg");
    background-size: contain;
    background-repeat: no-repeat;
}

/* .fr-article-single .logo {
    flex-basis: 35%;
} */

.fr-article-single .video-content {
    flex-basis: 100%;
}

.fr-article-single .video-content > iframe {
    width: 100%;
    aspect-ratio: 702 / 412;
    height: auto;
}

/* .fr-article-single .fr-article-inner-content .article-sect.left { text-align: left; }
.fr-article-single .fr-article-inner-content .article-sect.right { text-align: right; }
.fr-article-single .fr-article-inner-content .article-sect.center { text-align: center; } */

/* .fr-article-single .fr-article-inner-content .article-sect.types-2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.fr-article-single .fr-article-inner-content .article-sect.types-2 .col { padding: 40px 0 0; }
.fr-article-single .fr-article-inner-content .article-sect.types-2 .col-1 {
    padding-top: 60px;
    flex-basis: 25%;
    text-align: right;
}

.fr-article-single .fr-article-inner-content .article-sect.types-2 .col-1 .fr-lgram-2 {
    display: inline-block;
    margin-top: 50px;
}

.fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 { flex-basis: 48%; }
.fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 h6 {
    margin: 0px 0 50px;
    font-size: 12px;
    font-weight: 400;
}

.fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 p {
    margin: 10px 0 30px;
} */

.fr-article-single .copy-rs {
    margin: 0;
}

.fr-article-single .fr-article-nav {
    display: flex;
    width: calc(100% - 85px);
    padding: 30px 40px 30px 35px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75em;
    font-weight: 400;
}

.fr-article-single .fr-article-nav a {
    color: #986f5e;
}

.fr-article-single .fr-article-nav a:hover {
    text-decoration: underline;
}

.fr-icon {
    display: inline-block;
    background-size: 100%;
    background-repeat: no-repeat;
}

.fr-icon.icon-glowing-arrow {
    width: 80px;
    height: 131px;
    background-image: url("../img/icon-glowing-arrow.png");
    background-size: 80%;
    background-repeat: no-repeat;
}

.fr-icon.icon-map {
    width: 29px;
    height: 43px;
    background-image: url("../img/icon/icon-map.png");
}

.fr-icon.icon-phone {
    width: 38px;
    height: 40px;
    background-image: url("../img/icon/icon-phone.png");
}

.fr-icon.icon-instagram {
    width: 40px;
    height: 41px;
    background-image: url("../img/icon/icon-instagram.png");
}

.fr-icon.icon-tiktok {
    width: 36px;
    height: 40px;
    background-image: url("../img/icon/icon-tiktok.png");
}

.fr-icon.icon\:arrow-head {
    aspect-ratio: 40 / 22;
    width: 40px;
    height: auto;
    background-image: url("../img/icon/icon-arrow-head.png");
}

.fr-icon.icon\:arrow-wand {
    aspect-ratio: 51 / 122;
    width: 51px;
    height: auto;
    background-image: url("../img/icon/icon-arrow-wand.png");
}

.fr-icon.icon\:arrow-up {
    aspect-ratio: 28 / 58;
    width: 28px;
    height: auto;
    background-image: url("../img/icon/icon-arrow-up.png");
}

.fr-icon.icon\:arrow-down {
    aspect-ratio: 28 / 58;
    width: 28px;
    height: auto;
    background-image: url("../img/icon/icon-arrow-down.png");
}

#fr-top-nav {
    position: fixed;
    z-index: 1;
    width: 100%;
}
#fr-top-nav.right-float {
    display: flex;
    position: sticky;
    /* position: fixed; */
    top: 0;
    padding: 40px 35px 0px;
    width: 100%;
    background: var(--clr-cream);
    z-index: 995;

    @media (max-width: 480px) {
        padding: 40px 15px 0px;
    }
}

#fr-top-nav.about-page {
    position: fixed;
}
/* END OF GLOBAL STYLING */

/* ANIMATIONS */
.anima\:fade-out {
    animation: fade-out linear 2s forwards;
}

.anima\:fade-out.duration\:fast {
    animation: fade-out linear 0.5s forwards;
}
.anima\:fade-out.duration\:1s {
    animation: fade-out linear 1s forwards;
}
.anima\:fade-out.duration\:2s {
    animation: fade-out linear 2s forwards;
}
.anima\:fade-out.duration\:3s {
    animation: fade-out linear 3s forwards;
}

.anima\:fade-in {
    animation: fade-in linear 2s forwards;
}

.anima\:fade-in.duration\:fast {
    animation: fade-in linear 0.5s forwards;
}
.anima\:fade-in.duration\:1s {
    animation: fade-in linear 1s forwards;
}
.anima\:fade-in.duration\:2s {
    animation: fade-in linear 2s forwards;
}
.anima\:fade-in.duration\:3s {
    transition-duration: 3s !important;
}

.anima\:delay\:fast\:imp { animation-delay: 0.5s !important; }
.anima\:delay\:1s\:imp { animation-delay: 1s !important; }
.anima\:delay\:2s\:imp { animation-delay: 2s !important; }
.anima\:delay\:3s\:imp { animation-delay: 3s !important; }

#fr-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: calc(50vh - 182px);
    background: #fff;
    text-align: center;
    z-index: 1200;

    @media (max-width: 899px) {
        padding-top: calc(50vh - 158px);
    }
}

#fr-backdrop .tl {
    margin-top: 140px;
}

#fr-backdrop .fr-loader {
    display: block;
    margin: auto auto 40px auto;
    aspect-ratio: 1 / 1;
    width: 150px;
    height: auto;
    background-image: url("../img/gif/loader.gif");
    background-size: contain;
    background-repeat: no-repeat;

    @media (max-width: 1023px) {
        width: 135px;
    }

    @media (max-width: 899px) {
        width: 120px;
        margin-bottom: 30px;
    }
}

#fr-backdrop .fr-load-progress-bar {
    display: flex;
    width: 100%;
    margin: auto auto 10px;
    max-width: 170px;
    min-height: 2px;
    border: 1px solid #986f5e;
    border-radius: 20px;

    @media (max-width: 899px) {
        max-width: 135px;
    }
}

#fr-backdrop .fr-load-progress-bar > span {
    display: block;
    background: #986f5e;
    width: 0%;
    height: 2px;
}

#fr-backdrop .fr-load-progress-count {
    font: 16px "Helvetica";
    font-weight: 300;
    color: #986f5e;

    @media (max-width: 1023px) {
        font-size: 12px;
    }
}

#fr-backdrop p {
    font: 12px "Helvetica";
    font-weight: 300;
    color: #986f5e;
}

#fr-backdrop .tip {
    margin-top: 40px;

    @media (max-width: 1023px) {
        font-size: 11px;
    }

    @media (max-width: 899px) {
        margin-top: 30px;
    }
}

#fr-backdrop-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* padding-top: calc(50vh - 212px); */
    background-image: radial-gradient(
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 100%,
    rgba(0, 0, 0, 0.4) 100%,
    rgba(0, 0, 0, 0.1) 100%);
    text-align: center;
    color: #f4f2e5;
    z-index: 998;
}

#fr-backdrop-navigation.layout\:right {
    top: 0;
    left: unset;
    right: 16px;
    width: min(100px, 100%);
    height: 100%;
    background: none;
    pointer-events: none;
}

#fr-backdrop-navigation.finish-loaded {
    z-index: 995;
}

#fr-art-stage {
    position: relative;
    font-size: 12px;
    color: #f8f6ea;
    z-index: 1;
}

#fr-art-stage .t {
    position: absolute;
    top: 0;
    display: flex;
    width: calc(100% - 70px);
    padding: 20px 35px 0;
    justify-content: space-between;
    align-items: flex-start;
}

#fr-art-stage .t .l .jsgif {
    opacity: 1;
}

#fr-art-stage .t .r {
    position: relative;
    padding-top: 30px;
}

.logo-area {
    position: relative;
    width: 35.1%;

    .logo {
        position: absolute;
        top: 14px;
        left: 3px;

        &.asset\:logogram-main {
            width: 88.5px;

            @media (max-width: 1099px) {
                width: 60.5px;
            }

            @media (max-width: 1023px) {
                width: 64.5px;
            }
        }

        &.asset\:logogram-construction {
            width: 90px;

            @media (max-width: 1023px) {
                width: 66px;
            }
        }

        &.asset\:logogram-living {
            width: 89px;

             @media (max-width: 1023px) {
                width: 65px;
            }
        }
    }

    @media (max-width: 1023px) {
        width: 350px;
    }
}

.logo-area:is(.construction, .living) .jsgif {
    margin-top: 8px;

    @media (max-width: 480px) {
        height: 60px;
    }
}

#fr-art-stage .t .l .descriptor,
.logo-area .descriptor {
    width: min(225px, 100%);
    margin-top: 0px;
    margin-bottom: 0;
    column-count: 2;
    font-size: 12px;

    @media( max-width: 1365px ) {
        margin-top: -10px;
    }

    @media( max-width: 1023px ) {
        font-size: 10px;
    }

    @media( max-width: 899px ) {
        margin-top: -7px;
        font-size: 9px;
    }

    @media (max-width: 767px) {
        font-size: 10px;
    }
}

#fr-art-stage .fr-headline {
    position: absolute;
    top: calc(71% - 38px);
    width: 100%;
    margin: 0;
    color: #f8f6ea;
    text-align: center;
    opacity: 0;
}

#fr-art-stage .btn-fr-audio {
    position: absolute;
    bottom: 35px;
    left: 35px;
    width: 40px;
    height: 40px;
    background-color: #000;
    /* background-image: url("../img/icon-sound-wave-off-wht.png"); */
    background-image: url("../img/icon/icon-sound-mute.png");
    background-size: 58%;
    background-repeat: no-repeat;
    background-position: center;
    outline: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    @media (max-width: 1023px) {
        width: 32px;
        height: 32px;
    }

    @media (max-width: 899px) {
        bottom: 20px;
        left: 20px;
        width: 28px;
        height: 28px;
    }

    @media (max-width: 767px) {
        width: 30px;
        height: 30px;
        bottom: 15px;
        left: 15px;
    }
}
#fr-art-stage .btn-fr-audio.active {
    background-size: 35%;
    background-image: url("../img/icon-sound-wave-on.png");
    background-color: #fff;
}

#fr-art-stage .fr-icon.icon-glowing-arrow {
    position: absolute;
    right: 0;
    top: calc(50% - 65px);
}

#fr-short-profile {
    padding: 40px 35px;
    background: #000;
    font-size: 11px;
    font-weight: 300;
    color: #fff;

    @media (max-width: 1023px) {
        font-size: 10px;
    }

    @media (max-width: 320px) {
        font-size: 9px;
    }
}

#fr-short-profile .t .fr-headline {
    margin: 0;
    max-width: 300px;
    color: #fff;

    @media (max-width: 620px) {
        max-width: 180px;
    }

    @media (max-width: 320px) {
        max-width: 140px;
    }
}

/* #fr-short-profile > .m .l p:first-child {
    column-count: 2;
    column-gap: 100px;
    font-weight: 400;
    max-width: 290px;
} */

#fr-short-profile > .m {
    display: flex;
    margin-top: 180px;
    justify-content: center;
    gap: 90px;
    align-items: flex-end;

    @media (max-width: 620px) {
        margin-top: 80px;
        gap: 60px
    }

    @media (max-width: 480px) {
        margin-top: 40px;
        gap: 15px;
        flex-wrap: wrap;

        > * {
            flex-grow: 1;
        }
    }

    @media (max-width: 380px) {
        @media (max-height: 480px) {
            margin-top: 0;
        }
    }
}

#fr-short-profile > .m .l {
    width: 40%;

    @media (max-width: 620px) {
        width: 50%;
    }

    @media (max-width: 480px) {
        width: 100%;
    }
}

#fr-short-profile > .m .l .p-desc {
    margin: 140px 0 0;
    text-align: justify;

    @media (max-width: 320px) {
        margin: 80px 0 0;
    }
}

#fr-short-profile > .m .m {
    display: flex;
    width: 25%;
    align-items: flex-end;

    @media (max-width: 620px) {
        width: 20%;
    }

    @media (max-width: 480px) {
        width: 5%;
        order: 3;
    }
}

#fr-short-profile > .m .m > span.fr {
    padding-top: 80px;

    @media (max-width: 1023px) {
        padding-top: 73px;
    }
}

#fr-short-profile > .m .r {
    width: 35%;

    @media (max-width: 620px) {
        width: 30%;
    }

    @media (max-width: 480px) {
        width: 80%;
    }
}

/* #fr-short-profile .b {
    display: flex;
    margin-top: 130px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    gap: 30px;
}

#fr-short-profile .b .fr-ig {
    color: #fff;
} */

#fr-short-profile .b .fr-copyright {
    margin-left: 170px;
}


#fr-main-nav {
    display: flex;
    /* width: 64.9%; */
    margin: 21px 0 auto auto;
    justify-content: flex-end;
    flex-direction: row;
    /* align-items: flex-start; */
    align-items: flex-end;
    font-size: 12px;
    gap: 55px;

    @media( max-width: 1365px ) {
        gap: 35px;
        margin-top: 9px;
    }

    @media( max-width: 1199px ) {
        gap: 30px;
        margin-top: 18px;
    }

    @media( max-width: 1099px ) {
        gap: 15px;
    }

    @media (max-width: 1023px) {
        width: 593px;
        gap: 20px;
        font-size: 10px;
    }

    @media (max-width: 899px) {
        gap: 12px;
        font-size: 9px;
    }

    @media (max-width: 767px) {
        display: none;
    }
}
#fr-main-nav.other-page {
    margin: 21px 82px auto auto;
    padding: 0;
    justify-content: flex-end;
    background: #F0EEE2;
}

#fr-main-nav a {
    padding: 0 10px;
    color: #f8f6ea;
    text-align: center;
}
#fr-main-nav.s2 a {
    color: #986f5e;
}
#fr-main-nav.other-page a {
    color: var(--clr-brown);
}
#fr-main-nav.other-page.cl-anchor-session a {
    color: #fff
}

#fr-main-nav a:hover {
    text-decoration: underline;
}

/* #fr-main-nav a:last-child {
    margin-left: 70px;
} */

#fr-main-nav .fr.fr-lgram-construct,
#fr-main-nav .fr.fr-lgram-living {
    margin: 0px auto auto 3px;
}

#fr-team {
    padding: 40px 35px;
}

#fr-team .t .fr-headline {
    margin: 50px 0 0;
}

#fr-team .t p {
    max-width: 675px;
    margin-top: 60px;
    margin-left: 30%;
    font-weight: 300;
}

#fr-team .b {
    margin-top: 120px;
}

#fr-team .b .fr-team-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#fr-team .b .fr-team-box > div {
    position: relative;
    width: calc(100% / 8);
}

#fr-team .b .fr-team-box > div:before {
	content: "";
    width: 100%;
	padding-top: 100%; 	/* initial ratio of 1:1*/
    /* background: red; */
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
}

#fr-team .b .fr-team-box > div .desc {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: #d5e4d3;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in;
    -moz-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

#fr-team .b .fr-team-box > div:hover .desc {
    opacity: 1;
}

#fr-team .b .fr-team-box > div .desc .name {
    margin: 0;
    font: 13px "Helvetica Neue";
    font-weight: 500;
}

#fr-team .b .fr-team-box > div .desc .role {
    font-size: 9px;
}

#fr-team .b .fr-team-box .t4 {
    margin-left: calc(100% / 8);
    margin-right: calc((100% / 8)*3);
}
#fr-team .b .fr-team-box .t6 { margin-left: calc(100% / 8); }
#fr-team .b .fr-team-box .t7 { margin-right: calc(100% / 8); }

#fr-team .b .fr-team-box .t1:before { background-image: url("../img/fa-t1.jpg"); }
#fr-team .b .fr-team-box .t2:before { background-image: url("../img/fa-t2.jpg"); }
#fr-team .b .fr-team-box .t3:before { background-image: url("../img/fa-t3.jpg"); }
#fr-team .b .fr-team-box .t4:before { background-image: url("../img/fa-t4.jpg"); }
#fr-team .b .fr-team-box .t5:before { background-image: url("../img/fa-t5.jpg"); }
#fr-team .b .fr-team-box .t6:before { background-image: url("../img/fa-t6.jpg"); }
#fr-team .b .fr-team-box .t7:before { background-image: url("../img/fa-t7.jpg"); }
#fr-team .b .fr-team-box .t8:before { background-image: url("../img/fa-t8.jpg"); }
#fr-team .b .fr-team-box .t9:before { background-image: url("../img/fa-t9.jpg"); }
#fr-team .b .fr-team-box .t10:before { background-image: url("../img/fa-t10.jpg"); }

#fr-contact-pg #fr-main-nav.other-page {
    background: transparent;
}

#fr-contact-spage {
    display: flex;
    height: min(720px, 100%);
    margin-top: 150px;
    background: var(--clr-cream);

    @media (max-width: 767px) {
        flex-direction: column;
    }
}
#fr-m-body #fr-contact-spage {
    padding: 0 35px;
    gap: 170px;
    background: #000;
    color: #fff;
}

#fr-contact-spage .fr-lgtype {
    margin: 7px 0 0 8px;
}

/* #fr-contact .t {
    padding-top: 40px;
    background: #d4e2d2;
    text-align: center;
} */
#fr-contact-spage .r {
    display: flex;
    width: 65%;
    padding: 0 10px 40px 10px;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 190px;
    /* background: #d4e2d2; */
    text-align: center;
    /* -webkit-transition: all 0.6s ease-in;
    -moz-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in; */

    @media (max-width: 480px) {
        width: calc(100% - 40px);
        padding: 0 20px 40px;
    }
}
#fr-m-body #fr-contact-spage .r {
    width: 35%;
    padding: 0;
    /* flex-direction: column-reverse; */
    justify-content: flex-start;
}

/* #fr-contact .t .fr-headline {
    margin: 20px 0 40px;
} */
#fr-contact-spage .r .fr-headline {
    margin: 0px;
}

/* #fr-contact .t > nav {
    display: flex;
    justify-content: center;
    padding: 3px 0;
    border-top: 1px solid #986f5e;
    border-bottom: 1px solid #986f5e;
    font-size: 15px;
} */
#fr-contact-spage .r > nav {
    display: none;
    justify-content: center;
    gap: 60px;
    padding: 3px 0;
    font-size: 15px;
}

#fr-contact-spage .r > nav a:hover {
    text-decoration: underline;
}

/* #fr-contact .t > nav a {
    color: #986f5e;
} */
#fr-contact-spage .r > nav a {
    color: #986f5e;
}

/* #fr-contact .t > nav a:first-child { margin-right: 30px; } */
#fr-contact-spage .r > nav a:first-child { margin-right: 30px; }
/* #fr-contact .t > nav a.border { border-left: 1px solid #986f5e; border-left: 1px solid #986f5e; cursor:default; } */ */
/* #fr-contact .t > nav a:last-child { margin-left: 30px; } */
#fr-contact-spage .r > nav a:last-child { margin-left: 30px; }

/* #fr-contact .b {
    display: flex;
    justify-content: space-between;
    padding: 40px 35px 60px;
} */
#fr-contact-spage .l {
    display: flex;
    width: 35%;
    /* min-height: calc(100vh - 60px); */
    /* justify-content: space-between; */
    padding: 20px 30px 40px;
    gap: 15px;
    flex-direction: column;

    @media (max-width: 767px) {
        width: calc(100% - 40px);
        padding: 20px 20px 40px;
    }
}
#fr-m-body #fr-contact-spage .l {
    width: calc(65% - 60px);
    /* min-height: calc(700px - 60px); */
    min-height: calc(340px - 60px);
    justify-content: flex-start;
}

#fr-contact-spage .l .tagline-box {
    width: min(330px, 100%);
    margin: auto auto 210px 0;

    @media (max-width: 767px) {
        margin: auto auto 0px 0;
    }
}
#fr-m-body #fr-contact-spage .l .tagline-box {
    margin-top: 50px;
    /* margin-bottom: 100px; */
    max-width: 250px;
    min-height: 113px;
}

#fr-contact-spage .l .tagline-box > .fr-headline {
    margin: 0;
}

#fr-m-body #fr-contact-spage .l .tagline {
    font-size: 47px;
    margin: 0;
}
#fr-m-body #fr-contact-spage .l .tagline-box .tagline {
    color: #fff;
}

#fr-contact-spage .l .tagline-box #fr-contact-nav {
    display: none;
    min-height: 163px;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    opacity: 0;
}
#fr-m-body #fr-contact-spage .l .tagline-box #fr-contact-nav {
    min-height: 97px;
    font-size: 14px;
}

#fr-contact-spage .l .tagline-box #fr-contact-nav a {
    color: var(--clr-brown);
}
#fr-m-body #fr-contact-spage .l .tagline-box #fr-contact-nav a {
    color: #fff;
}

#fr-contact-spage .l .tagline-box #fr-contact-nav a:hover {
    text-decoration: underline;
}

/* #fr-contact .b .fr-address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */
#fr-contact-spage .r .fr-address {
    margin-top: 100px;
    /* display: flex; */
    /* width: 60%; */
    /* flex-direction: column; */
    /* justify-content: space-between; */

    @media (max-width: 767px) {
        margin-top: 0;
    }
}
#fr-m-body #fr-contact-spage .r .fr-address {
    margin-top: 215px;
}

#fr-contact-spage .r .fr-address .c-us {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#fr-m-body #fr-contact-spage .r .fr-address .c-us {
    align-items: flex-start;
}

#fr-contact-spage .r .fr-address .c-us > div {
    width: min(430px, 100%);
}

#fr-contact-spage .r .fr-address .c-us > div.b {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

/* #fr-contact .b .fr-address .c-us .fr-headline {
    margin-top: 100px;
    font: 17px "Helvetica Neue";
    font-weight: 400;
} */

/* #fr-contact .b .fr-address .c-us p {
    margin-top: 60px;
    max-width: 380px;
    font-size: 12px;
    font-weight: 300;
} */
#fr-contact-spage .r .fr-address .c-us p {
    display: flex;
    /* margin-bottom: 30px; */
    font-size: 12px;
    font-weight: 300;
    text-align: left;
    gap: 5px;
}

#fr-contact-spage .r .fr-address .c-us p > span:first-child {
    width: 15px;
    height: 15px;
    background-size: contain;
}

#fr-contact-spage .r .fr-address .c-us p > span:last-child {
    max-width: 90%;
}


#fr-contact-spage .r .fr-address .c-us a {
    color: var(--clr-brown);
}
#fr-contact-spage .r .fr-address .c-us a:hover {
    text-decoration: underline;
}

#fr-contact .b .fr-address .cr p {
    font-size: 12px;
}
#fr-contact-spage .l .fr-address .cr p {
    font-size: 12px;
}

#fr-contact-spage .l .fr-flower-bloom-gif {
    max-width: 260px;
    margin-bottom: 30px;
}

#fr-contact-spage .l .jsgif {
    max-width: 260px;
    margin-bottom: 30px;
}
#fr-contact-spage .l .jsgif::after {
    content: "";
    display: block;
    width: 50%;
    height: 45px;
    background: var(--clr-mint);
    margin-top: -57px;
}

#fr-m-body #fr-contact-spage .l .jsgif {
    display: none;
}

/* #fr-contact .b .fr-map {
    width: 600px;
    height: 500px;
} */
#fr-contact-spage .r .fr-map {
    display: flex;
    margin: 100px 0 0 0;

    @media (max-width: 767px) {
        margin-top: 0;
    }
}
#fr-m-body #fr-contact-spage .r .fr-map {
    margin: 0px 0 100px;
    /* height: 260px; */
}

/* #fr-contact-spage .r .fr-map > div {
    width: 30%;
} */

/* #fr-contact .b .fr-map #map {
    width: 100%;
    height: 100%;
} */
/* #fr-contact-spage .r .fr-map #map {
    width: 230px;
    height: 100%;
}
#fr-m-body #fr-contact-spage .r .fr-map #map {
    width: 260px;
} */

#fr-contact-spage .r .fr-map .fr-building {
    aspect-ratio: 1200 / 675;
    width: min(555px, 100%);
    height: auto;
    background-image: url(../img/fr-contact-building.gif);
    background-size: 100%;
    background-repeat: no-repeat;
}

#fr-contact-extra {
    padding: 0 20px 30px;
    background: #000;
    font-size: 11px;
    font-weight: 300;
}

#fr-contact-extra a {
    color: #fff;
}

#fr-contact-extra .b {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#fr-nav-sect {
    position: fixed;
    top: 0;
    display: flex;
    width: calc(100% - 82px);
    height: 100px;
    padding: 40px 41px 0;
    background: transparent;
    /* overflow: hidden; */

    @media (max-width: 1365px)  {
    }

    @media (max-width: 1099px)  {
        width: calc(100% - 60px);
        padding: 40px 30px 0;
    }
}

#fr-nav-sect.type\:1 {
    background: var(--clr-cream);
}
#fr-nav-sect.type\:2 {
    background: var(--clr-mint);
}
#fr-nav-sect.type\:3 {
    background: var(--clr-brown);
}
#fr-nav-sect.type\:4 {
    background: #fff;
}

#fr-nav-sect .jsgif {
    /* margin-top: -7px; */
}

#fr-nav-sect nav {
    justify-content: flex-end;
}

#fr-nav-sect.pad\:yes nav {
    padding-bottom: 28px;
}

#fr-proj-cat {
    display: flex;
    margin-top: 150px;
    padding: 120px 35px 0;
    justify-content: space-between;
    align-items: center;
}

#fr-proj-cat .r {
    width: 100%;
    align-self: flex-start;
}

#fr-proj-nav {
    display: flex;
    margin-left: 36.4%;
    gap: 60px;
    font-size: 12px;
    font-weight: 300;
    color: #986f5e;
}

#fr-proj-nav a {
    color: #986f5e;
}

#fr-proj-nav a:hover {
    text-decoration: underline;
}

#fr-proj-nav a.active {
    font-weight: 400;
    text-decoration: underline;
}

#fr-proj-nav > div {
    display: flex;
    flex-direction: column;
}

#fr-proj-nav > div > a:nth-child(n+2) {
    margin-top: 3px;
}

#fr-projs {
    padding: 40px 35px;
}

#fr-proj-card {
    display: flex;
    gap: 10px;
}

#fr-proj-card .fr-card {
    position: relative;
    width: calc((100% / 3) - 7px);
    /* max-width: 590px; */
    color: #986f5e;
}

#fr-proj-card .fr-card::before {
    padding-top: 71%;
    background-size: contain;
}

#fr-proj-card .fr-card.fr-proj-1::before

#fr-proj-card .fr-card .desc {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    padding: 25px;
}

#fr-proj-card .fr-card:hover .desc {
    opacity: 0;
}

#fr-proj-card .fr-card .desc .proj-name {
    margin: 10px 0 0;
}

#fr-proj-card .fr-card .desc .proj-b-cat {
    width: 100%;
    max-width: 150px;
    font-size: 12px;
    font-weight: 400;
    flex-grow: 2;
    text-transform: uppercase;
}

#fr-proj-card .fr-card .desc .proj-year {
    font-size: 10px;
    font-weight: 300;
}

#fr-projs.fr-proj-single {
    margin-top: 150px;
    padding: 0;
}

.fr-proj-single .fr-proj-overview {
    display: flex;
    padding: 40px 45px;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 100px;
}

.fr-proj-single .fr-proj-overview .l {
    display: flex;
    flex-direction: column;
    flex-basis: 25%;
}

.fr-proj-single .fr-proj-overview .l .proj-name {
    margin: 0;
}

.fr-proj-single .fr-proj-overview .l .proj-b-cat {
    margin: 0;
    max-width: 150px;
    font-size: 13px;
    text-transform: uppercase;
}

.fr-proj-single .fr-proj-overview .l .proj-desc {
    margin: 50px 0 0;
    font-size: 12px;
}

.fr-proj-single .fr-proj-overview .l .proj-d-elab {
    margin: 50px 0 0;
    font-size: 12px;
}

.fr-proj-single .fr-proj-overview .l .proj-appr {
    margin: 50px 0 0;
    font-size: 12px;
}

.fr-proj-single .fr-proj-overview .l .proj-year {
    margin: 100px 0 0;
    font-size: 12px;
}

.fr-proj-single .fr-proj-overview .l .proj-desc > span,
.fr-proj-single .fr-proj-overview .l .proj-d-elab > span,
.fr-proj-single .fr-proj-overview .l .proj-appr > span,
.fr-proj-single .fr-proj-overview .l .proj-year > span {
    font-size: 13px;
}

.fr-proj-single .fr-proj-overview .r {
    flex-basis: 75%;
}

.fr-proj-single .fr-proj-overview .fr-proj-main-cover {
    padding-top: min(57%, 689px);
    background-image: url("../img/projects/project1/proj-main-cover.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.fr-proj-single .fr-proj-colors {
    display: flex;
    margin-top: 80px;
    flex-direction: column;
    justify-content: space-evenly;
}

.fr-proj-single .fr-proj-colors .thumb {
    flex-basis: 80%;
    padding-top: 50.5%;
    background-image: url("../img/projects/project1/proj-colors.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: right; */
}

.fr-proj-single .fr-proj-colors .fr-palette {
    display: flex;
    flex-basis: 20%;
    align-items: center;
    justify-content: space-evenly;
}

.fr-proj-single .fr-proj-colors .fr-palette > div {
    width: 100%;
    padding: 25px 0;
    font-size: 12px;
    text-align: center;
}

/* .fr-proj-single .fr-proj-colors .fr-palette .pl-1 { background: #dadada; color: #986f5e; }
.fr-proj-single .fr-proj-colors .fr-palette .pl-2 { background: #ebe5e1; color: #986f5e; }
.fr-proj-single .fr-proj-colors .fr-palette .pl-3 { background: #f9f7ea; color: #986f5e; }
.fr-proj-single .fr-proj-colors .fr-palette .pl-4 { background: #986f5e; color: #f8f6e9; } */

.fr-proj-single .fr-proj-chall {
    display: flex;
    padding: 155px 35px;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 12px;
    font-weight: 300;
    /* align-items: flex-start; */
    gap: 50px;
}

.fr-proj-single .fr-proj-chall .t {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 70px;
}

.fr-proj-single .fr-proj-chall .t > div {
    flex-basis: 50%;
}

.fr-proj-single .fr-proj-chall .t .l {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.fr-proj-single .fr-proj-chall .t .l span {
    width: min(100%, 321.5px);
    text-align: center;
}

.fr-proj-single .fr-proj-chall .t .l .thumb {
    width: min(100%, 321.5px);
    padding-top: min(100%, 189px);
    background-image: url("../img/projects/project1/proj-chall-1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
}

.fr-proj-single .fr-proj-chall .proj-chall-desc {
    max-width: 300px;
}

.fr-proj-single .fr-proj-chall .proj-chall-desc > span {
    font-size: 13px;
    font-weight: 400;
}

.fr-proj-single .fr-proj-chall .b {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 70px;
}

.fr-proj-single .fr-proj-chall .b > div {
    flex-basis: 50%;
}

.fr-proj-single .fr-proj-chall .b .l,
.fr-proj-single .fr-proj-chall .b .r {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.fr-proj-single .fr-proj-chall .b .r { align-items: flex-end; }

.fr-proj-single .fr-proj-chall .b .l span,
.fr-proj-single .fr-proj-chall .b .r span {
    width: min(100%, 321.5px);
    text-align: center;
}

.fr-proj-single .fr-proj-chall .b .l .thumb,
.fr-proj-single .fr-proj-chall .b .r .thumb {
    width: min(100%, 321.5px);
    padding-top: min(100%, 189px);
    background-image: url("../img/projects/project1/proj-chall-2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
}
.fr-proj-single .fr-proj-chall .b .r .thumb { background-image: url("../img/projects/project1/proj-chall-3.jpg"); }

.fr-proj-single .fr-proj-res {
    display: flex;
    /* padding: 150px 35px; */
    justify-content: space-evenly;
    font-size: 12px;
    font-weight: 300;
    /* align-items: flex-start; */
    /* gap: 50px; */
}

.fr-proj-single .fr-proj-res .l {
    display: flex;
    padding-left: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-basis: calc(28.7% - 30px);
    gap: 40px;
}

.fr-proj-single .fr-proj-res .l .proj-mat {
    display: block;
    width: 100%;
    max-width: 297px;
    padding-top: 26%;
    background-image: url("../img/projects/project1/proj-res-1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
}

.fr-proj-single .fr-proj-res .l .proj-res {
    max-width: 297px;
}

.fr-proj-single .fr-proj-res .l .proj-res > span {
    display: inline-block;
    max-width: 100px;
    font-size: 13px;
    font-weight: 400;
}

.fr-proj-single .fr-proj-res .r {
    flex-basis: 71.3%;
    padding-top: min(61.6%, 788.5px);
    background-image: url("../img/projects/project1/proj-res-2.jpg");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.fr-proj-single .fr-proj-interactions {
    padding: 120px 0 0;
}

.fr-proj-single .fr-proj-interactions .fr-interaction {
    width: 100%;
    padding-top: 56.5%;
    /* height: 723px; */
    background-image: url("../img/projects/project1/proj-circulation.gif");
    background-size: contain;
    background-repeat: no-repeat;
}

.fr-proj-single .fr-proj-foot {
    display: flex;
    padding: 140px 35px 50px;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 12px;
    font-weight: 300;
    /* gap: 100px; */
}

.fr-proj-single .fr-proj-foot .t {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    /* gap: 100px; */
}

.fr-proj-single .fr-proj-foot .t .fr-quotes {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 50%;
    /* max-width: 550px; */
}

.fr-proj-single .fr-proj-foot .t .fr-quotes .fr.fr-lgram-2 {
    max-width: 100%;
    padding-top: 16%;
    background-position: center;
}

.fr-proj-single .fr-proj-foot .t .fr-quotes .quotes {
    margin: 30px auto 0;
    max-width: 270px;
    font-style: italic;
}

.fr-proj-single .fr-proj-foot .t .fr-quotes .copy-rs {
    margin: 70px auto 0;
    max-width: 270px;
}

.fr-proj-single .fr-proj-foot .t .fr-foot-thumb {
    flex-basis: 50%;
    /* padding-top: min(61.6%, 788.5px); */
    padding-top: 33.6%;
    background-image: url("../img/projects/project1/proj-foot-thumb.jpg");
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.fr-proj-single .fr-proj-foot .b {
    display: flex;
    width: 100%;
    padding: 90px 0 10px;
    justify-content: space-between;
    align-items: center;
}

.fr-proj-single .fr-proj-foot .b a {
    font-size: 13px;
    font-weight: 400;
    color: #986f5e;
}

.fr-proj-single .fr-proj-foot .b a:hover {
    text-decoration: underline;
}

#fr-actvts {
    padding: 40px 35px;
}

#fr-actvts-card {
    display: flex;
    gap: 10px;
}

#fr-actvts-card .fr-card {
    position: relative;
    width: calc((100% / 3) - 7px);
    /* max-width: 590px; */
    color: #986f5e;
}

#fr-actvts-card .fr-card::before {
    padding-top: 71%;
    background-size: contain;
}

#fr-actvts-card .fr-card.fr-actvts-1::before,
#fr-actvts-card .fr-card.fr-actvts-2::before,
#fr-actvts-card .fr-card.fr-actvts-3::before {
    background-image: url("../img/activities/activities1/actvts-thumb.jpg");
}

#fr-actvts-card .fr-card .desc {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    padding: 25px;
}

#fr-actvts-card .fr-card .desc .name {
    margin: 10px 0 0;
}

#fr-actvts-card .fr-card .desc .date {
    width: 100%;
    max-width: 150px;
    font-size: 12px;
    font-weight: 400;
    flex-grow: 2;
}

#fr-article-single-page {
    margin-top: 190px;

    @media (max-width: 480px) {
        margin-top: 120px;
    }
}

#fr-article-single-page .fr-article-single .fr-article-overview {
    background-image: url("../img/activities/activities1/actvts-cover.png");
}

#fr-mnm {
    display: block;
    width: 100dvw;
    height: 100dvh;
}

#fr-about-pg {
    background: #F0EEE2;
    -webkit-transition: background-color 0.5s ease-in;
    -moz-transition: background-color 0.5s ease-in;
    -o-transition: background-color 0.5s ease-in;
    transition: background-color 0.5s ease-in;
}

#fr-about-pg #fr-top-nav,
#fr-about-pg #fr-top-nav > nav {
    -webkit-transition: background-color 0.5s ease-in;
    -moz-transition: background-color 0.5s ease-in;
    -o-transition: background-color 0.5s ease-in;
    transition: background-color 0.5s ease-in;
}

#fr-about-sidebar {
    position: fixed;
    /* width: 38.75%; */
    width: 100%;
    height: 100%;
    /* background-image: url("../img/bg-concrete.jpg"); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    /* border-right: 25px solid transparent; */
    /* border-image: url("../img/border-concrete.png") 47; */
    /* border-image-outset: 1; */
    z-index: 2;
    /* transition: 0.5s all ease-in; */
}

#fr-about-sidebar.compact {
    width: 35%;

    @media (max-width: 767px) {
        display: none;
    }
}

#fr-about-sidebar .fr.fr-lgtype {
    margin: 35px 0 0 38px;
}
#fr-about-sidebar .fr.fr-lgtype.cl-anchor-session {
    background-image: url(../img/fa-logotype-wht.png);
}

#fr-about-sidebar .fr-current-read-section {
    position: absolute;
    bottom: 160px;
    left: 20px;
    margin: 0;
}
#fr-about-sidebar .fr-current-read-section.cl-anchor-session {
    color: #fff;
}

#fr-about-sidebar .fr-nav-box {
    position: absolute;
    /* top: calc(50% - 162px); */
    padding-left: 25px;
    bottom: 90px;
    left: 0px;
    width: calc(100% - 25px);
}

#fr-about-nav {
    display: flex;
    /* min-height: 300px; */
    /* min-width: 330px; */
    /* padding: 12px 15px; */
    /* flex-direction: column; */
    gap: 5px;
    /* background: linear-gradient(to bottom, #d7e0ee 18%, #d8e1ee 49%, #dcdfe0 73%, #d2d6d5 73.5%, #c4c7c4 90%); */
    font-size: 11px;
    /* font-size: 24px; */
    /* font-family: "Bermula"; */
    font-family: "Helvetica Neue";
    font-weight: 400;
}

#fr-about-nav a {
    display: flex;
    width: 85px;
    /* padding-left: 10px; */
    /* background: #f8f6ea; */
    color: var(--clr-brown);
    /* line-height: 22px; */
    flex-direction: column;
    /* -webkit-transition: all 0.6s ease-in;
    -moz-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in; */
}
#fr-about-nav.cl-anchor-session a {
    color: #fff;
}
#fr-about-nav.cl-anchor-session a.active .num::after {
    border-color: #fff;
}

/* #fr-about-nav a:hover {
    text-decoration: underline;
} */

#fr-about-nav a:active {
    color: #986f5e;
    text-decoration: underline;
    /* background: red; */
}

#fr-about-nav a.active {
    /* width: 90%; */
    /* font-size: 100%; */
    font-style: italic;
    font-weight: 500;
    /* color: #986f5e; */
    /* text-decoration: underline; */
}

#fr-about-nav a.active .num {
    position: relative;
}

#fr-about-nav a.active .num::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    aspect-ratio: 1 / 1;
    width: 22px;
    height: auto;
    border-radius: 50%;
    border: 1px solid #986f5e;
    transform: translateX(-23%) translateY(-50%);
}

#fr-about-nav a > .ttl {
    margin-top: 10px;
    margin-left: 15px;
    opacity: 0;
    text-transform: uppercase;
    font-size: 10px;
}
/* #fr-about-nav a.active > .ttl {
    opacity: 1;
} */

/* #fr-about-nav a.active > .ttl {
    opacity: 0;
} */

#fr-about-nav a:hover > .ttl {
    opacity: 1;
}

#fr-about-nav a.next-sib-1 {
    width: 60%;
    font-size: 91.67%;
}
#fr-about-nav a.prev-sib-1 {
    width: 80%;
    font-size: 86.8%;
}

#fr-about-nav a.next-sib-2 {
    width: 43%;
    font-size: 77.08%;
}
#fr-about-nav a.prev-sib-2 {
    width: 64%;
    font-size: 73.1%;
}

#fr-about-nav a.next-sib-3 {
    width: 36%;
    font-size: 64.58%;
}
#fr-about-nav a.prev-sib-3 {
    width: 57%;
    font-size: 61.08%;
}

#fr-about-nav a.next-sib-4 {
    width: 30%;
    font-size: 58.3%;
}
#fr-about-nav a.prev-sib-4 {
    width: 44%;
    font-size: 52.8%;
}

#fr-about {
    /* display: flex; */
    position: absolute;
    left: 37%;
    width: calc(62.3% - 40px);
    padding-top: 150px;
    padding-right: 40px;
    font-size: 11px;
    /* background: blue; */

    @media (max-width: 767px) {
        left: 0;
        width: calc(100% - 40px);
        padding: 170px 20px 0;
    }
}

#fr-about .row-1 img,
#fr-about .row-2 img {
    margin-bottom: 50px;
}

#fr-about .fr.fr-lgram-2 {
    max-width: 27px;
    margin-bottom: 32px;
    padding-top: 19%;
}

#fr-about .fr-headline {
    margin-top: 0;
    max-width: 160px;
}

/* #fr-about .row-1 .l {
    position: fixed;
    bottom: 160px;
    margin-left: 40px;
    width: 15%;
} */

/* #fr-about .row-1 .l .fr-lgram {
    margin: auto;
    padding-top: 55%;
    background-position: center;
} */

/* #fr-about .row-1 .r {
    position: relative;
    left: 34.6%;
    margin-top: 120px;
    width: 47.6%;
    text-align: justify;
} */

/* #fr-about .row-1 .r > div .sub-row {
    margin-bottom: 120px;
} */

/* #fr-about .row-1 .r > div .sub-row .stt {
    display: flex;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 150px;
    font-weight: bold;
}
#fr-about .row-1 .r > div .sub-row .stt > span {
    width: 60px;
} */

#fr-about .row-1 > div {
    margin-bottom: 50px;
}

/* #fr-about .row-1 > .row-1,
#fr-about .row-1 > .row-2,
#fr-about .row-1 > .row-3 {
    border-bottom: 1px solid var(--clr-brown);
} */

#fr-about .row-1 .sub-row {
    margin-bottom: 50px;
}

#fr-about .row-1 .fl-col {
    display: flex;
    gap: 80px;

    @media (max-width: 480px) {
        gap: 40px;
    }
}

#fr-about .row-1 .fl-col-js-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#fr-about .row-1 .fl-col-js-spc-ar {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#fr-about .row-1 .fl-col .sub-col-1 {
    width: 35%;
}

#fr-about .row-1 .fl-col .sub-col-2 {
    width: 65%;
}

#fr-about .row-1 .fl-col:has(.divider) {
    margin-bottom: 30px;
}

#fr-about .row-1 .desc {
    margin-top: 0px;
    margin-bottom: 50px;
}
#fr-about .row-1 .fl-col .sub-col-2 .desc {
    width: 75%;
}

#fr-about p.divider {
    width: 100%;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--clr-brown);
}

#fr-sow .sub-row:nth-child(2) img.sow2 {
    margin-bottom: auto;
}

#fr-wo-ph-bookmark {
    margin-bottom: 70px;
}

#fr-wo-ph-bookmark nav {
    display: flex;
    width: 70%;
    justify-content: space-between;
    font-size: 32px;
    font-family: 'Bermula';
    line-height: 24px;
    border-bottom: 1.5px solid var(--clr-brown);
}

#fr-wo-ph-bookmark a {
    color: var(--clr-brown);
    opacity: 0.75;
}
#fr-wo-ph-bookmark a.active {
    opacity: 1;
}

/* #fr-about .row-1 .r > div .sub-row .desc > span {
    display: block;
    font-weight: bold;
}

#fr-about .row-1 .r > div .sub-row p {
    margin: 0;
} */

#fr-team2 {
    /* background: rgb(143, 151, 145); */
}

#fr-team2 .fr-team-box {
    display: flex;
    padding: 40px 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#fr-team2 .fr-team-box > div {
    position: relative;
    width: calc(100% / 4);
}

#fr-team2 .fr-team-box > div:before {
	content: "";
    width: 100%;
	padding-top: 100%; 	/* initial ratio of 1:1*/
    /* background: red; */
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
}

#fr-team2 .fr-team-box > div .desc {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: #d5e4d3;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in;
    -moz-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

#fr-team2 .fr-team-box > div:hover .desc {
    opacity: 1;
}

#fr-team2 .fr-team-box > div .desc .name {
    margin: 0;
    font: 13px "Helvetica Neue";
    font-weight: 500;
}

#fr-team2 .fr-team-box > div .desc .role {
    font-size: 9px;
}

/* #fr-team2 .fr-team-box .t4 {
    margin-left: calc(100% / 8);
    margin-right: calc((100% / 8)*3);
}
#fr-team2 .fr-team-box .t6 { margin-left: calc(100% / 8); } */
#fr-team2 .fr-team-box .t7 { margin-left: calc((100% / 4)*2); }

#fr-team2 .fr-team-box .t1:before { background-image: url("../img/fa-t1.jpg"); }
#fr-team2 .fr-team-box .t2:before { background-image: url("../img/fa-t2.jpg"); }
#fr-team2 .fr-team-box .t3:before { background-image: url("../img/fa-t3.jpg"); }
#fr-team2 .fr-team-box .t4:before { background-image: url("../img/fa-t4.jpg"); }
#fr-team2 .fr-team-box .t5:before { background-image: url("../img/fa-t5.jpg"); }
#fr-team2 .fr-team-box .t6:before { background-image: url("../img/fa-t6.jpg"); }
#fr-team2 .fr-team-box .t7:before { background-image: url("../img/fa-t7.jpg"); }
#fr-team2 .fr-team-box .t8:before { background-image: url("../img/fa-t8.jpg"); }
#fr-team2 .fr-team-box .t9:before { background-image: url("../img/fa-t9.jpg"); }
#fr-team2 .fr-team-box .t10:before { background-image: url("../img/fa-t10.jpg"); }

#fr-about .row-3 {
    margin: 40px 0 40px;
}

#fr-about .row-3 .fr-cl-box {
    display: flex;
    position: relative;
    padding: 40px 0;
    flex-wrap: wrap;
}

#fr-about .row-3 .fr-cl-box > div {
    width: calc(100% / 3);
    padding-top: 26%;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
}

#fr-about .row-3 .fr-cl-box > div.cl1 { background-image: url("../img/fr-cl-logo-nomu-wht.png"); background-size: 50%; }
#fr-about .row-3 .fr-cl-box > div.cl2 { background-image: url("../img/fr-cl-logo-latrobe-wht.png"); background-size: 62%; }
#fr-about .row-3 .fr-cl-box > div.cl3 { background-image: url("../img/fr-cl-logo-lacoco-wht.png"); background-size: 40%; }
#fr-about .row-3 .fr-cl-box > div.cl4 { background-image: url("../img/fr-cl-logo-341studio-wht.png"); background-size: 60%; }
#fr-about .row-3 .fr-cl-box > div.cl5 { background-image: url("../img/fr-cl-logo-huma-wht.png"); background-size: 45%; }
#fr-about .row-3 .fr-cl-box > div.cl6 { background-image: url("../img/fr-cl-logo-shills-wht.png"); background-size: 62%; }
#fr-about .row-3 .fr-cl-box > div.cl7 { background-image: url("../img/fr-cl-logo-citra-wht.png"); background-size: 47%; }
#fr-about .row-3 .fr-cl-box > div.cl8 { background-image: url("../img/fr-cl-logo-kober-wht.png"); background-size: 60%; }
#fr-about .row-3 .fr-cl-box > div.cl9 { background-image: url("../img/fr-cl-logo-vpthouse-wht.png"); background-size: 56%; }

#fr-construction-page,
#fr-living-page {
    font-size: 12px;
}

#fr-construction-page .fr-construction-overview,
#fr-living-page .fr-living-overview {
    display: flex;
    margin-top: 295px;
    padding: 0px 35px;

    @media (max-width: 767px) {
        flex-direction: column;
        margin-top: 195px;
        padding: 0 30px;
    }

    @media (max-width: 480px) {
        margin-top: 145px;
        padding: 0 15px;
    }
}

#fr-construction-page .fr-construction-overview .l,
#fr-living-page .fr-living-overview .l {
    display: flex;
    flex-basis: 37%;
    align-items: flex-end;
}

#fr-construction-page .fr-construction-overview .l .fr-headline,
#fr-living-page .fr-living-overview .l .fr-headline {
    width: 80%;
    margin: 0 0 -25px 0;
    line-height: 68px;

    @media (max-width: 1023px) {
        line-height: 58px;
    }
}

#fr-construction-page .fr-construction-overview .r,
#fr-living-page .fr-living-overview .r {
    display: flex;
    flex-basis: 63%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 90px;

    @media (max-width: 767px) {
        flex-direction: column;
        margin-top: 100px;
        gap: 10px;
    }
}

#fr-construction-page .fr-construction-overview .r > p,
#fr-living-page .fr-living-overview .r > p {
    width: 23%;
    margin: 0;
    font-weight: 300;

    @media (max-width: 1023px) {
        width: 30%;
    }

    @media (max-width: 767px) {
        width: 80%;
    }

    @media (max-width: 480px) {
        width: 100%;
    }
}

#fr-construction-page .fr-construction-overview .r > .thumb {
    aspect-ratio: 523 / 464;
    width: 100%;
    max-width: 400px;
    margin: auto auto auto 0;
    /* background-image: url("../img/fr-construction-1.png"); */
    background-size: contain;
    background-repeat: no-repeat;

    @media (max-width: 1023px) {
        max-width: 321px;
    }

    @media (max-width: 480px) {
        max-width: 250px;
    }
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide.slide\:1 {
    background-image: url("../img/fr-construction-1.png");
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide.slide\:2 {
    background-image: url("../img/fr-construction-2.png");
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide.slide\:3 {
    background-image: url("../img/fr-construction-3.png");
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide.slide\:4 {
    background-image: url("../img/fr-construction-4.png");
}

#fr-construction-page .fr-construction-overview .r > .thumb .slide.slide\:5 {
    background-image: url("../img/fr-construction-5.png");
}

#fr-living-page .fr-living-overview .r > .thumb {
    aspect-ratio: 523 / 464;
    width: 100%;
    max-width: 400px;
    margin: auto auto auto 0;
    /* background-image: url("../img/fr-living-5.png"); */
    background-size: contain;
    background-repeat: no-repeat;

    @media (max-width: 480px) {
        max-width: 250px;
    }
}

#fr-living-page .fr-living-overview .r > .thumb .slide {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

#fr-living-page .fr-living-overview .r > .thumb .slide.slide\:1 {
    background-image: url("../img/fr-living-1.png");
}

#fr-living-page .fr-living-overview .r > .thumb .slide.slide\:2 {
    background-image: url("../img/fr-living-2.png");
}

#fr-living-page .fr-living-overview .r > .thumb .slide.slide\:3 {
    background-image: url("../img/fr-living-3.png");
}

#fr-living-page .fr-living-overview .r > .thumb .slide.slide\:4 {
    background-image: url("../img/fr-living-4.png");
}

#fr-living-page .fr-living-overview .r > .thumb .slide.slide\:5 {
    background-image: url("../img/fr-living-5.png");
}

.jsgif {
    display: block;
    width: 100%;
    max-width: 470px;
    cursor: pointer;
    opacity: 0;
    /* padding-top: 27%; */

    @media (max-width: 1365px) {
        max-width: 430px;
    }

    @media (max-width: 1199px) {
        width: max(100%, 320px);
    }

    @media (max-width: 1023px) {
        width: min(350px, 100%);
    }

    @media (max-width: 1023px) {
        font-size: 1.1em;
    }

    @media (max-width: 899px) {
        width: min(300px, 95%);
    }
}

.jsgif > canvas {
    width: 100%;
}

.jsgif_toolbar {
    display: none;
}

.information-highlight-box {
    position: relative;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;

    @media (max-width: 1365px) {
        font-size: 0.9em;
    }

    @media (max-width: 899px) {
        font-size: 0.85em;
    }

    @media (max-width: 767px) {
        font-size: 1em;
    }

    @media (max-width: 320px) {
        right: -10px;
    }
}

.information-highlight-box p {
    margin: 3px 0;
    font-size: 0.75em;
    font-weight: 300;
}

.information-highlight-box p:first-child {
    margin-bottom: 10px;
}

.information-highlight-box p:last-child {
    margin-top: 10px;
}

.information-highlight-box .icon\:arrow-up,
.information-highlight-box .icon\:arrow-down {
    width: 20px;
}

#fr-se-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    font-size: 1.1em;
    z-index: 996;
}

#fr-se-mobile-nav[data-open="1"] #fr-mobile-nav {
    right: 0px;
}

#btn-nav-mobile {
    position: absolute;
    top: 30px;
    right: 24px;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 1;
}

#fr-mobile-nav {
    position: absolute;
    top: 0;
    right: -350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(300px, 100vw);
    height: 100vh;
    padding-top: 50px;
    background: #fff;
    transition: opacity 0.8s, right 0.8s;

    a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--clr-brown);
        color:var(--clr-brown);
        text-align: center;

        &:hover {
            text-decoration: underline;
        }
    }

    a:last-child {
        border: none;
    }

    @media (max-width: 480px) {
        right: -495px;
        width: 103dvw;
    }
}

#fr-under-dev {
    gap: 10%;
    height: calc(100dvh - 60px);
    padding: 30px;
    font-size: 0.8em;
    font-weight: 300;

    .unveil {
        justify-content: center;
    }

    .narr {
        width: min(120px, 100%);
    }

    .by {
        width: min(50px, 100%);
    }

    .small-font {
        font-size: 0.7em;
    }

    .l > div:has(.fr-loader) {
        justify-content: center;
        align-items: center;
    }

    .fr-loader {
        /* display: block; */
        margin: auto;
        aspect-ratio: 1 / 1;
        width: 100px;
        height: auto;
        background-image: url("../img/gif/loader.gif");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .logo {
        width: 80px;
        height: auto;
    }

    @media (max-width: 767px) {
        font-size: 1.3em;
    }

    @media (max-width: 360px) {
        gap: 8%;

        > .flex-col:last-child {
            align-content: flex-start;
        }

        .l {
            margin-bottom: 4em;
        }
        
        .fr-loader {
            margin: auto auto auto 0;
        }
    }
        
}

/* .information-highlight-box .icon\:arrow-head {
    position: relative;
}

.information-highlight-box .icon\:arrow-head {
    animation: slide-top ease-out 0.8s infinite;
} */

@media (max-width: 1365px) {
    #fr-art-stage .t .r {
        padding-top: 0;
    }
}

@media only screen and (max-width: 991px) {
    body {
        font-size: 12px;
    }

    /* GLOBAL STYLING */
    h1.fr-headline { font-size: 57.5px; }
    h2.fr-headline { font-size: 44px; }
    h3.fr-headline { font-size: 33.8px; }
    h4.fr-headline { font-size: 28.7px; }
    h5.fr-headline { font-size: 21.9px; }
    h6.fr-headline { font-size: 16px; }

    .fr.fr-lgram {
        padding-top: 22%;
    }
    .fr.fr-lgram.mtn:hover {
        /* min-width: 470px; */
        padding-top: min(22%, 48px);
        background-size: auto 127%;
    }

    .fr.fr-lgram-2 {
        padding-top: 26%;
    }

    .fr-iframe {
        max-width: 589px;
        max-height: 364px;
    }

    .fr-article-single .fr-article-nav a {
        font-size: 11px;
    }
    /* END OF GLOBAL STYLING */

    #fr-main-nav {
        font-size: 10px;
    }

    #fr-team .t .fr-headline {
        margin-top: 30px;
    }

    #fr-team .t p {
        max-width: 455px;
    }

    #fr-team .b .fr-team-box > div .desc .name {
        font-size: 10px;
    }

    #fr-team .b .fr-team-box > div .desc .role {
        font-size: 8px;
    }

    #fr-contact .t .fr-headline {
        margin: 15px 0 30px;
    }

    #fr-contact .t > nav {
        font-size: 12px;
    }

    #fr-contact .b .fr-address .c-us .fr-headline {
        margin-top: 60px;
        font-size: 15px;
    }

    #fr-contact .b .fr-address .c-us p {
        max-width: 250px;
        font-size: 10px;
    }

    #fr-contact .b .fr-address .cr p {
        font-size: 10px;
    }

    #fr-contact .b .fr-map {
        width: 480px;
        height: 380px;
    }

    #fr-m-body #fr-contact-spage .l .tagline-box {
        max-width: 180px;
    }

    #fr-proj-nav {
        font-size: 10px;
    }

    #fr-proj-card .fr-card .desc {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        padding: 15px;
    }

    #fr-proj-card .fr-card .desc .proj-name {
        margin-top: 5px;
    }

    #fr-proj-card .fr-card .desc .proj-b-cat {
        max-width: 130px;
        font-size: 10px;
    }

    #fr-proj-card .fr-card .desc .proj-year {
        font-size: 8px;
    }

    .fr-proj-single .fr-proj-overview .l {
        flex-basis: 30%;
    }

    .fr-proj-single .fr-proj-overview .l .proj-b-cat {
        font-size: 12px;
    }

    .fr-proj-single .fr-proj-overview .l .proj-desc,
    .fr-proj-single .fr-proj-overview .l .proj-d-elab,
    .fr-proj-single .fr-proj-overview .l .proj-appr {
        margin-top: 40px;
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-overview .l .proj-year {
        margin-top: 25px;
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-overview .l .proj-desc > span,
    .fr-proj-single .fr-proj-overview .l .proj-d-elab > span,
    .fr-proj-single .fr-proj-overview .l .proj-appr > span,
    .fr-proj-single .fr-proj-overview .l .proj-year > span {
        font-size: 12px;
    }

    .fr-proj-single .fr-proj-overview .r {
        flex-basis: 70%;
    }

    .fr-proj-single .fr-proj-overview .fr-proj-main-cover {
        padding-top: min(51.7%, 689px);
        background-position: top;
    }

    .fr-proj-single .fr-proj-colors {
        margin-top: 50px;
    }

    .fr-proj-single .fr-proj-colors .fr-palette > div {
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-chall .proj-chall-desc > span {
        font-size: 11px;
    }

    .fr-proj-single .fr-proj-chall {
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-res {
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-res .l {
        flex-basis: calc(32.7% - 30px);
    }

    .fr-proj-single .fr-proj-res .l .proj-res {
        max-width: 227px;
    }

    .fr-proj-single .fr-proj-res .r {
        flex-basis: 67.3%;
        padding-top: min(58.4%, 788.5px);
    }

    .fr-proj-single .fr-proj-foot {
        font-size: 10px;
    }

    .fr-proj-single .fr-proj-foot .b a {
        font-size: 11px;
    }

    #fr-actvts-card .fr-card .desc {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        padding: 15px;
    }

    #fr-actvts-card .fr-card .desc .date {
        max-width: 130px;
        font-size: 10px;
    }

    .fr-article-single .fr-article-overview {
        min-height: calc(205px - 30px);
        padding: 0px 30px 30px;
        font-size: 10px;
    }

    .fr-article-single .fr-article-inner-content .article-sect {
        font-size: 10px;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 h6 {
        margin-bottom: 40px;
        font-size: 10px;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 p {
        margin-bottom: 20px;
    }
}

@media (max-width: 899px) {
    #fr-backdrop-navigation.layout\:right {
        right: 0;
    }

    #fr-art-stage .t {
        width: calc(100% - 40px);
        padding: 15px 20px 0;
    }
}

@media only screen and (max-width: 860px) {
    #fr-proj-cat {
        justify-content: flex-start;
    }

    #fr-proj-cat .r {
        margin-right: 50px;
    }

    .fr-proj-single .fr-proj-overview {
        gap: 25px;
    }

    .fr-proj-single .fr-proj-overview .l {
        flex-basis: 25%;
    }

    .fr-proj-single .fr-proj-overview .r {
        flex-basis: 75%;
    }

    .fr-proj-single .fr-proj-overview .fr-proj-main-cover {
        padding-top: min(60.3%, 689px);
    }
}

@media (min-width: 768px) {
    #fr-se-mobile-nav {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 9px;
    }

    /* GLOBAL STYLING */
    h1.fr-headline { font-size: 49.6px; }
    h2.fr-headline { font-size: 38px; }
    h3.fr-headline { font-size: 29.1px; }
    h4.fr-headline { font-size: 24.7px; }
    h5.fr-headline { font-size: 18.9px; }
    h6.fr-headline { font-size: 13.8px; }

    .fr.fr-lgram {
        padding-top: 20%;
    }
    .fr.fr-lgram.mtn:hover {
        /* min-width: 470px; */
        padding-top: min(20%, 45px);
        background-size: auto 129%;
    }

    .fr.fr-lgram-2 {
        padding-top: 22%;
    }

    .fr-iframe {
        max-width: 459px;
        max-height: 274px;
    }

    .fr-article-single .fr-article-overview {
        min-height: calc(168px - 20px);
        padding: 0px 25px 20px;
        font-size: 9px;
    }

    .fr-article-single .fr-article-nav {
        width: calc(100% - 50px);
        padding: 15px 25px 30px;
    }

    .fr-article-single .fr-article-nav a {
        font-size: 10px;
    }

    .fr-article-single .fr-article-inner-content .article-sect {
        padding: 25px 0;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-1 {
        flex-basis: 19%;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 {
        padding: 25px 0 0;
        flex-basis: 54%;
    }
    /* END OF GLOBAL STYLING */

    /* #fr-main-nav a:last-child {
        margin-left: 45px;
    } */

    #fr-art-stage .t {
        width: calc(100% - 30px);
        padding: 10px 15px 0;
    }

    #fr-art-stage .t .r {
        display: none;
    }

    #fr-team {
        padding: 30px 25px 0;
    }

    #fr-team .t .fr-headline {
        margin-top: 15px;
    }

    #fr-team .t p {
        margin-top: 30px;
        max-width: 335px;
    }

    #fr-team .b {
        margin-top: 70px;
        margin-bottom: 20px;
    }

    #fr-contact .t {
        padding-top: 20px;
    }

    #fr-contact .t .fr-headline {
        margin-bottom: 25px;
    }

    #fr-contact .b {
        padding: 30px 25px 45px;
    }

    #fr-contact .b .fr-address .c-us .fr-headline {
        margin-top: 40px;
        font-size: 14px;
    }

    #fr-contact .b .fr-address .c-us p {
        max-width: 200px;
    }

    #fr-contact .b .fr-address .cr p {
        font-size: 9px;
    }

    #fr-contact .b .fr-map {
        width: 410px;
        height: 300px;
    }

    #fr-proj-cat {
        padding: 30px 25px 0;
    }

    #fr-proj-cat .r {
        margin-right: 50px;
    }

    #fr-proj-card .fr-card .desc {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        padding: 10px;
    }

    #fr-proj-card .fr-card .desc .proj-b-cat {
        max-width: 110px;
        margin: 0;
        font-size: 9px;
    }

    #fr-proj-card .fr-card .desc .proj-name {
        margin-top: 0px;
        font-size: 34px;
    }

    #fr-proj-card .fr-card .desc .proj-year {
        font-size: 7px;
    }

    .fr-proj-single .fr-proj-overview {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .fr-proj-single .fr-proj-overview .fr-proj-main-cover {
        width: 100%;
        background-size: cover;
        background-position-y: 55%;
    }

    .fr-proj-single .fr-proj-overview .l .proj-b-cat {
        font-size: 10px;
        max-width: 100px;
    }

    .fr-proj-single .fr-proj-overview .l .proj-desc,
    .fr-proj-single .fr-proj-overview .l .proj-d-elab,
    .fr-proj-single .fr-proj-overview .l .proj-appr {
        max-width: 370px;
        margin-top: 30px;
        margin-left: 150px;
    }

    .fr-proj-single .fr-proj-chall {
        padding: 65px 25px;
        gap: 30px;
        font-size: 9px;
    }

    .fr-proj-single .fr-proj-chall .proj-chall-desc {
        max-width: 250px;
    }

    .fr-proj-single .fr-proj-res {
        font-size: 9px;
    }

    .fr-proj-single .fr-proj-res .l {
        flex-basis: calc(37.7% - 25px);
        padding-left: 25px;
    }

    .fr-proj-single .fr-proj-res .l .proj-res {
        max-width: 203px;
    }

    .fr-proj-single .fr-proj-res .r {
        flex-basis: 62.3%;
    }

    .fr-proj-single .fr-proj-interactions {
        padding: 75px 0 0;
    }

    .fr-proj-single .fr-proj-foot {
        padding: 100px 25px 30px;
    }

    .fr-proj-single .fr-proj-foot .t .fr-quotes {
        flex-basis: 57%;
    }

    .fr-proj-single .fr-proj-foot .t .fr-quotes .quotes {
        margin: 21px auto 0;
        max-width: 220px;
    }

    .fr-proj-single .fr-proj-foot .t .fr-foot-thumb {
        flex-basis: 43%;
    }

    .fr-proj-single .fr-proj-foot .t .fr-quotes .copy-rs {
        margin: 50px auto 0;
        max-width: 225px;
    }

    .fr-proj-single .fr-proj-foot .b {
        padding: 60px 0 10px;
    }

    #fr-actvts-card .fr-card .desc {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        padding: 10px;
    }

    #fr-actvts-card .fr-card .desc .name {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 680px) {
    #fr-contact .b .fr-map {
        width: 340px;
        height: 260px;
    }

    #fr-proj-cat .l {
        max-width: 230px;
    }

    #fr-proj-cat .r {
        margin-right: 0px;
    }

    #fr-proj-nav {
        gap: 20px;
    }

    .fr-proj-single .fr-proj-res .l .proj-res {
        max-width: 163px;
    }

    .fr-article-single .fr-article-overview {
        min-height: calc(150px - 20px);
    }
}

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

    /* GLOBAL STYLING */
    h1.fr-headline { font-size: 44.3px; }
    h2.fr-headline { font-size: 34px; }
    h3.fr-headline { font-size: 26px; }
    h4.fr-headline { font-size: 22px; }
    h5.fr-headline { font-size: 16.9px; }
    h6.fr-headline { font-size: 12.3px; }

    .fr.fr-lgram {
        padding-top: 18%;
    }
    .fr.fr-lgram.mtn:hover {
        /* min-width: 470px; */
        /* max-width: 100%; */
        padding-top: min(18%, 31.5px);
        background-size: auto 128%;
    }

    .fr.fr-lgram-2 {
        padding-top: 25%;
    }

    /* .fr-iframe {
        max-width: 459px;
        max-height: 274px;
    }

    .fr-article-single .fr-article-overview {
        min-height: calc(168px - 20px);
        padding: 0px 25px 20px;
        font-size: 9px;
    }

    .fr-article-single .fr-article-nav {
        width: calc(100% - 50px);
        padding: 15px 25px 30px;
    }

    .fr-article-single .fr-article-nav a {
        font-size: 10px;
    }

    .fr-article-single .fr-article-inner-content .article-sect {
        padding: 25px 0;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-1 {
        flex-basis: 19%;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 {
        padding: 25px 0 0;
        flex-basis: 54%;
    } */
    /* END OF GLOBAL STYLING */

    #fr-art-stage {
        font-size: 9px;
    }

    #fr-art-stage .t {
        width: calc(100% - 30px);
        padding: 20px 15px 0;
    }

    #fr-art-stage .t .l {
        max-width: 250px;
    }

    #fr-art-stage .t .l p {
        max-width: 175px;
        margin-top: 15px;
    }

    #fr-art-stage .t .r {
        padding-top: 10px;
    }

    #fr-main-nav {
        font-size: 9px;
    }

    #fr-team {
        padding: 20px 15px 0;
    }

    #fr-team .t .fr-headline {
        margin-top: 5px;
    }

    #fr-team .t p {
        margin-left: 0;
        max-width: 70%;
    }

    #fr-team .b {
        margin-top: 50px;
    }

    #fr-team .b .fr-team-box > div {
        width: calc(100% / 3);
    }

    #fr-team .b .fr-team-box .t1 {
        order: 1;
    }

    #fr-team .b .fr-team-box .t2 {
        order: 3;
        margin-left: calc(100% / 3);
    }

    #fr-team .b .fr-team-box .t3 {
        order: 4;
    }

    #fr-team .b .fr-team-box .t4 {
        order: 7;
        margin-left: 0;
        margin-right: calc(100% / 3);
    }

    #fr-team .b .fr-team-box .t5 {
        order: 2;
    }

    #fr-team .b .fr-team-box .t6 {
        order: 5;
        margin-left: 0;
    }

    #fr-team .b .fr-team-box .t7 {
        order: 6;
        margin-left: 0;
        margin-right: 0;
    }

    #fr-team .b .fr-team-box .t8 {
        order: 8;
        margin-left: calc(100% / 3);
        margin-right: calc(100% / 3);
    }

    #fr-team .b .fr-team-box .t9 {
        order: 9;
        margin-left: calc(100% / 3);
    }

    #fr-team .b .fr-team-box .t10 {
        order: 10;
    }

    #fr-team .b .fr-team-box > div .desc .name {
        max-width: 90px;
        font-size: 12px;
    }

    #fr-team .b .fr-team-box > div .desc .role {
        font-size: 10px;
    }

    #fr-contact .b {
        padding: 20px 15px 35px;
        flex-direction: column-reverse;
    }

    #fr-contact .b .fr-address .c-us .fr-headline {
        margin-top: 20px;
    }

    #fr-contact .b .fr-address .c-us p {
        margin-top: 0;
        max-width: 57%;
    }

    #fr-contact .b .fr-map {
        width: 100%;
    }

    #fr-nav-sect {
        padding: 20px 15px 0;
    }

    #fr-proj-cat {
        padding: 20px 15px 0;
    }

    #fr-proj-cat .l {
        max-width: 220px;
    }

    #fr-proj-cat .r {
        margin-right: 0px;
    }

    #fr-proj-nav {
        font-size: 9px;
        gap: 25px;
    }

    #fr-projs {
        padding: 20px 15px;
    }

    #fr-proj-card .fr-card {
        width: calc((100% / 2) - 7px);
    }

    .fr-proj-single .fr-proj-overview {
        padding: 20px 15px;
        gap: 25px;
    }

    .fr-proj-single .fr-proj-overview .l .proj-desc,
    .fr-proj-single .fr-proj-overview .l .proj-d-elab,
    .fr-proj-single .fr-proj-overview .l .proj-appr {
        max-width: 100%;
    }

    .fr-proj-single .fr-proj-colors {
        margin-top: 25px;
    }

    .fr-proj-single .fr-proj-colors .fr-palette > div {
        padding: 15px 0;
    }

    .fr-proj-single .fr-proj-chall {
        padding: 45px 15px 10px;
        gap: 15px;
    }

    .fr-proj-single .fr-proj-chall .t {
        gap: 30px;
    }

    .fr-proj-single .fr-proj-chall .t .l {
        gap: 5px;
    }

    .fr-proj-single .fr-proj-chall .t .l .thumb {
        padding-top: min(100%, 158px);
    }

    .fr-proj-single .fr-proj-chall .b {
        gap: 30px;
    }

    .fr-proj-single .fr-proj-chall .b .l,
    .fr-proj-single .fr-proj-chall .b .r {
        gap: 5px;
    }

    .fr-proj-single .fr-proj-res {
        font-size: 8px;
    }

    .fr-proj-single .fr-proj-res .l {
        flex-basis: calc(37.7% - 15px);
        padding-left: 15px;
        gap: 30px;
    }

    .fr-proj-single .fr-proj-res .l .proj-res {
        max-width: min(100%, 173px);
    }

    .fr-proj-single .fr-proj-foot {
        padding: 60px 15px 30px;
    }

    .fr-proj-single .fr-proj-foot {
        font-size: 9px;
    }

    .fr-proj-single .fr-proj-foot .t .fr-quotes .quotes {
        margin: 17px auto 0;
        max-width: 200px;
    }

    .fr-proj-single .fr-proj-foot .b {
        padding: 40px 0 10px;
    }

    .fr-proj-single .fr-proj-foot .b a {
        font-size: 10px;
    }

    #fr-actvts {
        padding: 20px 15px;
    }

    #fr-actvts-card .fr-card {
        width: calc((100% / 2) - 7px);
    }

    .fr-article-single .fr-article-overview {
        min-height: calc(132px - 15px);
        padding: 0px 15px 15px;
        font-size: 8px;
    }

    .fr-article-single .fr-article-inner-content .article-sect {
        padding: 15px 0;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 {
        gap: 30px;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 {
        padding: 15px 0 0;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 h6 {
        margin-bottom: 25px;
    }

    .fr-article-single .fr-article-inner-content .article-sect.types-2 .col-2 p {
        margin-bottom: 10px;
    }

    .fr-iframe {
        max-width: 389px;
        max-height: 220px;
    }

    .fr-article-single .fr-article-nav {
        width: calc(100% - 30px);
        padding: 10px 15px 30px;
    }
}


@media only screen and (max-width: 480px) {
    #fr-nav-sect {
        width: 100dvw;
    }
}

@media only screen and (max-width: 320px) {
    /* GLOBAL STYLING */
    h1.fr-headline { font-size: 34px; }
    h2.fr-headline { font-size: 28px; }
    h3.fr-headline { font-size: 23px; }
    h4.fr-headline { font-size: 18.9px; }
    h5.fr-headline { font-size: 15px; }
    h6.fr-headline { font-size: 12.3px; }
}