@charset "UTF-8";
/***Font Import***/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/***Other Imports***/
@import url("/assets/css/animation.css");
@import url("/assets/css/vars.css");
/***Other Imports***/
/***CSS Document***/
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}
input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}
a img, a, img {
    line-height: 0;
}
/***Base***/
html {
    font-size: 1em;
}
body {
    font-family: 'Quicksand', Helvetica, Arial, "sans-serif";
    position: relative;
    color: var(--txt);
    background: var(--wht);
}
a, a:visited, a:active, a:link {
    color: var(--bl);
    transition: 0.3s;
    text-decoration: none;
}
a:hover {
    color: var(--txt);
}
/*Fonts*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
    color: var(--dgry)
}
p, ul, ol {
    font-weight: 600;
    color: var(--dgry)
}
p, li {
    font-size: .95em;
    line-height: 1.333em;
}
strong {
    font-weight: 700;
    color: var(--dgry);
}
small {
    color: var(--dgry);
}
/**hr Styled***/
hr {
    background: var(--gry);
    height: 1px;
    width: 48em;
    border: 0;
    margin: 1em auto 0 auto;
    transition: 0.3s;
}
/***Common***/
section, header, footer {
    padding: 0;
    margin: 0 auto;
    max-width: 80em;
    background-color: var(--lgry) !important;
}
/*Article*/
article {
    width: 100%;
    position: relative;
    padding: 2em 4em;
}
/*Heading*/
[role="heading"] {
    min-height: 10em;
}
[role="heading"] article {
    width: 80%;
    position: relative;
    margin-left: 0;
    margin-right: auto
}
/*Header*/
/*Navigation*/
[role="navigation"] {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 980;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    text-align: center;
    padding: .25em 0 0 0;
    font-weight: 600;
    max-width: 100% !important;
    background: none !important;
}
[role="navigation"] a {
    font-size: .9em;
    color: var(--dgry);
}
[role="navigation"] a:hover {
    font-size: .9em;
    color: var(--bl);
    cursor: pointer;
}
[role="navigation"] a + a {
    margin-left: 2em;
}
[role="navigation"] a.active {
    color: var(--bl);
}
[role="menubar"] {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    text-align: center;
}
/*Grid*/
[role="grid"] {
    display: flex;
    position: relative;
    align-items: stretch;
    align-content: stretch;
    padding: 0;
    flex-flow: wrap;
}
/*GridCells*/
[role="gridcell"], [role="heading"] {
    display: flex;
    width: 50%;
    box-sizing: border-box;
    position: relative;
}
/*Footer*/
footer {
    text-align: center;
}
footer article {
    padding-bottom: 3em;
}
footer p, footer h6 {
    color: var(--gry);
    font-weight: 600;
    font-size: .9em;
}
footer hr {
    margin-top: 0;
}
/*Inputs*/
input {
    background-color: var(--wht);
    text-indent: 1em;
    height: 2.5em;
    font-size: 1em;
    border: 1px solid var(--gry);
    border-radius: 2em;
    margin: 1em auto;
    transition: auto 0.3s;
    outline: none;
    width: 75%;
    font-weight: 600;
}
input:hover {
    border: 1px solid var(--bl);
    background-color: var(--wht);
}
/***ul/ol***/
ul {
    list-style: none;
    position: relative;
}
ul li {
    padding: .25em 1em;
    position: relative;
}
ul li:before {
    width: 1em;
    height: 1em;
    display: inline-block;
    content: "";
    background-color: var(--gry);
    border-radius: 1em;
    position: absolute;
    left: -.5em;
    top: .4em;
}
.ul-right li:before {
    right: -.5em;
    left: auto;
}
/***OL***/
ol {
    counter-reset: li;
    margin-top: 3em;
}
ol li {
    list-style-type: none;
    position: relative;
    margin-bottom: 2em;
    padding-left: 2em;
    text-align: left;
}
ol li:before {
    width: 2em;
    height: 2em;
    content: counter(li);
    counter-increment: li;
    margin: -.4em 0 0 -2.5em;
    border: 3px solid var(--gry);
    color: var(--gry);
    border-radius: 9px;
    display: inline-block;
    text-align: center;
    padding-top: .2em;
    font-weight: 700;
    position: absolute;
    box-sizing: border-box;
}
/***li Custom Styles*/
input[type="checkbox"] {
    visibility: hidden;
    position: relative;
    height: 0;
    padding: 0;
    margin: 0;
}
label {
    color: var(--txt);
    position: relative;
    display: block;
    cursor: pointer;
    text-indent: 1em;
    font-weight: 600;
}
label::before {
    background-color: var(--wht);
    border: 1px solid var(--gry);
    width: 2em;
    height: 2em;
    border-radius: 2em;
    display: inline-block;
    content: "";
    position: relative;
    top: .7em;
    left: -1em;
}
label:hover::before {
    border: 1px solid var(--bl);
    background-color: var(--wht);
}
input[type="checkbox"]:checked + label::before {
    border: 1px solid var(--bl);
    background-color: var(--bl);
    background-image: url("/assets/images/check.svg");
    background-repeat: no-repeat;
    background-position: center center;
}
/*Button*/
button, [role="button"] {
    border: 0;
    padding: .5em;
    width: 10em;
    border-radius: 1.5em;
    color: var(--wht) !important;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 3em auto;
    font-size: 1.25em;
    background: var(--bl);
    font-weight: 500;
}
button:hover, [role="button"]:hover {
    cursor: pointer;
    color: var(--wht);
    background: var(--bl8);
}
/*Img*/
img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}
.dimmed {
    opacity: 0.5;
    transition: 0.5s;
}
/***Classes***/
/* Header Sizes*/
.xxl {
    font-size: 3.25em;
}
.xl {
    font-size: 3em;
}
.l {
    font-size: 2.5em;
}
.m {
    font-size: 2em;
}
.s {
    font-size: 1.5em;
}
.xs {
    font-size: .9em;
    color: var(--dgry);
}
/*Img's*/
.offset200 {
    margin-top: -200px;
}
img.small {
    width: 360px;
}
img.xsmall {
    width: 240px;
}
.displayLogo {
    margin-top: 2em;
}
.displayLogo img {
    Height: 64px;
    margin: 0 1em 2em 1em;
}
/*Animation*/
.scroll-image {
    opacity: 0;
    transform: translateY(25%);
    transition: transform .5s ease-out, opacity .5s ease-out;
}
.scroll-image.visible {
    opacity: 1;
    transform: translateY(0);
}
/*Dark Theme Section*/
.theme-dark [role="gridcell"] button {
    background: var(--ora);
    color: var(--blk) !important;
}
.theme-dark [role="gridcell"] button:hover {
    background: var(--ora8);
    color: var(--blk);
}
.theme-dark [role="navigation"] {
    background-color: var(--blk8) !important;
}
.theme-dark [role="navigation"] a {
    color: var(--wht) !important;
}
.theme-dark [role="navigation"] a:hover {
    color: var(--ora) !important;
}
.theme-dark [role="navigation"] a.active {
    color: var(--bl) !important;
}
.theme-dark .navTrigger h1 {
    color: var(--wht) !important;
}
.theme-dark p, .theme-dark li {
    color: var(--wht) !important;
}
.theme-dark [role="footer"] p {
    color: var(--gry) !important;
}
.theme-dark [role="grid"] {
    background-color: var(--blk);
    color: var(--wht);
}
.theme-dark [role="grid"] [role="gridcell"]:nth-child(odd), .theme-dark [role="grid"] [role="heading"]:nth-child(odd) {
    border-color: var(--wht);
}
.theme-dark hr {
    background-color: var(--wht);
}
.theme-dark .sectionTag {
    background: var(--wht);
    color: var(--blk);
}
.theme-dark h6 {
    color: var(--wht);
}
/***Navigation / Mobile***/
.motionTrigger {
    background-color: var(--wht8) !important;
    box-shadow: 0 .25em .25em 0 rgba(0, 0, 0, .05);
}
.motionTrigger hr {
    width: 100%;
    background-color: var(--wht5);
}
.navTrigger {
    cursor: pointer;
    position: fixed;
    z-index: 999;
    top: 1em;
    margin-left: -100px;
    left: 50%;
    width: 200px;
    height: 64px;
    display: block;
    border-radius: 36px;
    box-shadow: 0 .25em .25em 0 rgba(0, 0, 0, .05);
    border: 1px solid var(--wht5);
    padding: 1em;
}
.btn-nav {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-block;
    z-index: 9999;
}
.btn-nav:focus {
    outline: 0;
}
.btn-nav:hover .icon-bar {
    background-color: var(--bl8);
}
.icon-bar {
    display: block;
    margin: 6px 0;
    width: 32px;
    height: 3px;
    background-color: var(--bl);
    border-radius: 1.5px;
}
.icon-bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    z-index: 999999;
}
.nav-content {
    position: fixed;
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .9);
    display: block;
    height: 100%;
    z-index: 9;
}
.animated {
    display: inline-block;
    margin: 0 auto;
    width: 32px;
    height: 32px;
}
.animated:hover .icon-bar, .animated:focus .icon-bar {
    background-color: var(--bl);
}
.animated:focus {
    cursor: pointer;
    z-index: 9999;
}
.animated .icon-bar {
    z-index: 999999;
    background-color: var(--bl);
}
.animated .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg);
}
.animated .middle {
    width: 0;
}
.animated .bottom {
    -webkit-transform: translateY(-8px) rotateZ(-45deg);
    -moz-transform: translateY(-8px) rotateZ(-45deg);
    -ms-transform: translateY(-8px) rotateZ(-45deg);
    -o-transform: translateY(-8px) rotateZ(-45deg);
    transform: translateY(-8px) rotateZ(-45deg);
}
.no-scroll {
    position: fixed;
    width: 100%;
}
/***Classes***/
/*Spread*/
.single [role="gridcell"] {
    width: 100%;
    text-align: center;
    padding-top: 6em;
}
.spreadRev {
    flex-direction: row-reverse;
}
.verso {
    border-right: 1px solid var(--gry);
}
.spreadRev .verso {
    border-right: 0;
}
.spreadRev .recto {
    border-right: 1px solid var(--gry);
}
.portfolio img {
    border: 1px solid var(--wht);
    transition: 0.3s;
}
.portfolio img:hover {
    box-shadow: 0 8px 16px var(--gry);
}
.portfolio {
    padding: 2em;
    display: block!important;
}
/*Flex ALignment*/
.col {
    flex-direction: column;
}
.rev {
    text-align: right;
}
.centerItem {
    align-items: center;
}
.spreadRev [role="heading"], .spreadRev .sectionTag {
    left: 0;
}
.spreadRev [role="heading"] article, .spreadRev article {
    margin-left: auto;
    margin-right: 0;
}
.spreadRev .branch {
    right: 0;
    left: 0;
}
/*Section Tag & Branch */
.middle {
    margin: 0 auto;
}
.sectionTag {
    padding: .6em .5em .5em .5em;
    max-width: 12em;
    min-width: 6em;
    border-radius: 1.5em;
    text-align: center;
    color: var(--wht);
    position: absolute;
    z-index: 8;
    top: 4em;
    background-color: var(--gry);
    right: 0;
    font-weight: 600;
}
.branch {
    position: absolute;
    left: 0;
    right: 0;
    top: 4.5em;
    z-index: 5;
    width: 100%;
    margin: 0 auto;
}
/*Text Color*/
.colorFadeB {
    background: -webkit-linear-gradient(-90deg, rgba(177, 138, 255, 1.00), var(--bl));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding-bottom: .5em;
}
.colorFadePY {
    background: -webkit-linear-gradient(-90deg, rgba(265, 235, 205, 1.00), rgba(255, 195, 135, 1.00));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: .5em;
}
/**/
.mobile {
    display: none !important;
}
/**/
/*48 - Mobile*/
@media only screen and (max-width : 48em) {
    /***Display***/
    .hidden {
        display: none;
    }
    .desktop {
        display: none !important;
    }
    .mobile {
        display: inline-block !important;
    }
    /***Image Reset***/
    .display img {
        display: inline-block;
        margin: 1em;
    }
    /***Navigation / Mobile***/
    .navPanel {
        padding-top: 4em;
    }
    .navPanel hr {
        display: none;
    }
    .showNav {
        -webkit-animation: showNav .5s ease forwards;
        -moz-animation: showNav .5s ease forwards;
        -o-animation: showNav .5s ease forwards;
        animation: showNav .5s ease forwards;
    }
    .hideNav {
        -webkit-animation: hideNav 1s ease forwards;
        -moz-animation: hideNav 1s ease forwards;
        -o-animation: hideNav 1s ease forwards;
        animation: hideNav 1s ease forwards;
    }
    /********/
    body {
        text-align: left !important;
        font-size: 100%;
        background-color: var(--lgry) !important;
    }
    [role="navigation"] {
        bottom: 0;
        height: 100%;
        background-color: var(--wht8) !important
    }
    [role="navigation"] a {
        display: block;
        font-size: 1.5em;
        text-align: center;
        margin: 3em auto !important;
    }
    [role="navigation"] a.active::after, [role="navigation"] a.active::before {
        width: 1em;
        height: .1em;
        border-radius: 1em;
        display: inline-block;
        content: "";
        background: var(--bl);
        margin: 0 1em;
        top: -.2em;
        position: relative;
    }
    [role="navigation"] a:hover {
        font-size: 1.5em;
    }
    [role="navigation"] a:first-child {
        margin: 0 auto !important;
        padding-top: .25em;
    }
    [role="navigation"] hr {
        margin: 0 auto;
    }
    [role="heading"] article {
        width: 100%;
    }
    article {
        width: 100%;
        padding: 2em !important;
        box-sizing: border-box;
    }
    hr {
        width: 100%;
    }
    footer {
        padding-top: 3em;
    }
    footer [role="gridcell"] {
        text-align: center !important;
    }
    /***Spread***/
    [role="gridcell"], [role="heading"] {
        border: 0;
    }
    .recto, .spreadRev .recto {
        text-align: left;
        border: none;
    }
    .rev {
        text-align: left;
    }
    .right {
        text-align: left;
    }
    .butRight {
        margin-right: auto !important;
    }
    /***Theme***/
    .show {
        background-color: var(--wht8) !important;
        position: fixed;
        top: -100%;
        bottom: 0;
        left: 0;
        right: 0;
        display: block !important;
        ;
        height: 100%;
        z-index: 9;
    }
    .theme-dark .show {
        background-color: var(--blk);
    }
    ol {
        text-align: left;
    }
    button {
        margin: 3em auto 0 auto;
        display: block;
    }
    hr {
        background: var(--gry);
    }
    /***Grid***/
    [role="grid"] {
        display: block;
        margin: 0;
    }
    header [role="grid"] {
        display: flex;
        margin: 0;
    }
    header [role="gridcell"] {
        width: 100%;
    }
    [role="gridcell"], [role="heading"] {
        width: auto;
    }
    [role="heading"] {
        min-height: 2em;
        margin-bottom: 8em;
    }
    [role="heading"]:empty {
        display: none;
    }
    .sectionTag {
        position: relative;
        top: 6.75em;
        margin: 0 auto;
        border-color: var(--gry);
    }
    .branch {
        top: 9em;
    }
    .bastion article p {
        padding-right: 0;
    }
}
/*64 - Tablet*/
@media only screen and (max-width : 64em) {
    /********/
    /********/
}