/*
    Theme Name: Witness Tree
    Theme URI: https: //cultureinspired.com
    Description: Witness Tree theme by Culture Inspired.
    Version: 1.8.0
    Framework Version: 1.8.5
    Author: Culture Inspired
    Author URI: https: //cultureinspired.com
*/


/*** BASE ***/

/* Fonts */

@font-face {
    font-family: 'Ac437_IBM_BIOS';
    src: url('./assets/fonts/Ac437_IBM_BIOS.ttf') format('ttf'),
         url('./assets/fonts/Ac437_IBM_BIOS.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


/* Variables */

:root {

    /* colors */
    --white: #fff;
    --black: #000;

    /* font sizes in rem */
    --fs-regular: 1rem; /* 14px */

}


/* Global */

.otgs-development-site-front-end,
.grecaptcha-badge {
    display: none !important;
}

html {
    font-size: 14px;
}

@media screen and (min-width: 2000px) {
    html {
        font-size: 16px;
    }
}

body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    font-family: 'Ac437_IBM_BIOS', sans-serif;
    font-size: clamp(14px, 1rem, 1rem);
    line-height: 1.4;
    background-color: var(--black);
    color: var(--white);
}

h1 {

}

h2 {

}

ul,
li,
article {
    box-sizing: border-box;
}

.wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex: 1;
    margin: 0 auto;
    overflow: hidden;
}


/* Common Components */

.pageSection {
    position: relative;
    float: left;
    width: 100%;
}

.pageContent {
    position: relative;
    width: 92%;
    margin: auto;
}

.pageContent__superTitle {

}

.pageContent__heading {

}

.pageContent__heading span {
    font-weight: inherit;
}

.pageContent__text {

}


/* Buttons */

.btn {
    position: relative;
    display: inline-block;
    margin: auto;
    border-radius: 32px;
    padding: 8px 42px;
    box-sizing: border-box;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    opacity: 1 !important;
}

.btn--small {
    padding: 8px 24px;
}

.btn--shadowed {
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.08);
}

.btn--solidBlack {
    background: #000;
    border: 1.5px solid #000;
    color: #fff;
}

.btn--solidBlack:hover {
    background: #303030;
    border: 1.5px solid #303030;
}

.btn--ghostBlack {
    border: 1.5px solid #000;
    color: #000;
}

.btn--ghostBlack:hover {
    background: #000;
    border: 1.5px solid #000;
    color: #fff;
}


/* Inputs */

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='number'],
textarea,
select {

}

input[type='submit'] {

}

@media screen and (min-width: 600px) {
    input[type='submit'] {
        width: auto;
    }
}

::placeholder {
    color: #000 !important;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #000;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #000;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #000;
}


/* Animations */



/* Utility & State Classes */

.ut-example {

}

.state-example {

}


/*** LAYOUTS ***/

/* The Footer */

.footer {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    width: calc(100% - clamp(64px, 4.44vw, 4.44vw));
    margin: 0 auto clamp(24px, 1.66vw, 1.66vw) auto;
    padding-top: 1rem;
    box-sizing: border-box;
}

@media screen and (min-width: 480px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        align-self: flex-end;
    }
}

.footer__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 0 -3px;
}

@media screen and (min-width: 480px) {
    .footer__list {
        margin: 0 auto 0 0;
    }
}

.footer__item {
    width: 24px;
    aspect-ratio: 1;
    margin-right: clamp(16px, 1.11vw, 1.11vw);
}

@media screen and (min-width: 720px) {
    .footer__item {
        /* width: 32px; */
    }
}

.footer__item:last-of-type {
    margin-right: 0;
}

.footer__item a,
.footer__item svg {
    display: block;
    width: 100%;
}

.footer__date {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 clamp(24px, 1.66vw, 1.66vw) 0;
}

@media screen and (min-width: 480px) {
    .footer__date {
        margin: 0 0 0 auto;
        top: 2px;
    }
}


/*** WORDPRESS TEMPLATE CONTENT ***/

/* The Loop */

.loopContent {

}

.loop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

@media screen and (min-width: 600px) {
    .loop {
        flex-direction: row;
    }
}

.loop article.post {
    position: relative;
    width: 100%;  /* 1 column loop */
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.15);
}

@media screen and (min-width: 600px) {
    .loop article.post {
        width: 49%; /* 2 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1000px) {
    .loop article.post {
        width: 32%; /* 3 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1160px) {
    .loop article.post {
        width: 23.5%; /* 4 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(4n+4) {
        margin: 0% 0% 2% 0%;
    }
}

.postFeaturedImage {

}

.postFeaturedImage__link {
    display: block;
}

.postFeaturedImage__link img {
    width: 100%;
}

.loopInfo {

}

.loopInfo__title {

}

.loopInfo__title a {

}

.publishingInfo {

}

.publishingInfo__info {

}

.loopInfo__excerpt {

}

.post-categories {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.post-categories li {
    display: inline-block;
}

.pagination {
    float: right;
    clear: both;
}

.pagination > span,
.pagination > p,
.pagination > a {

}

.pagination > .current {

}


/* The Single Post */

.featImageContainer {
    margin: 0 0 24px 0;
}

.featImageContainer img {
    width: 100%;
}

.socialSharing {
    list-style-type: none;
    padding: 0;
    clear: both;
}

.socialSharing li {
    display: inline-block;
    width: 32px;
    margin: 0 7px 0 0;
}

.socialSharing li:last-of-type {
    margin: 0;
}

.postNavWrap {
    width: 100%;
    float: left;
}

.postNavWrap__item--left {
    float: left;
}

.postNavWrap__item--right {
    float: right;
}

.post-edit-link {
    float: left;
    clear: both;
}


/*** PAGES & CATEGORIES ***/

/* Home */

.pageSection--terminal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
}

.terminal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    width: calc(100% - clamp(64px, 4.44vw, 4.44vw));
    margin: clamp(64px, 4.44vw, 4.44vw) auto 0 auto;
}

.terminal__title {
    position: relative;
    width: 0;
    animation: typing 1.6s steps(20);
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--fs-regular);
    margin: 0 0 clamp(32px, 2.22vw, 2.22vw) 0;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 20ch;  
    }
}

.terminal__title:before {
    content: ">";
    margin: auto 1ch auto 0;
}

.terminal__inner {
    display: none;
    /* white-space: pre-wrap; */
    outline: none;
    width: 100%;
    overflow-y: auto;
}

@media screen and (min-width: 1140px) {
    .terminal__inner {
        display: block;
    }
}

.terminal__line {
    position: relative;
    display: block;
    line-height: 2;
    /* text-transform: uppercase; */
    cursor: text;
}

.terminal__line:before {
    content: ">";
    margin: auto 1ch auto 0;
}

.terminal__cursor {
    position: relative;
    display: inline-block;
    width: 0.7rem;
    height: 0.25rem;
    top: -0.2rem;
    left: 0.2rem;
    background: var(--white);
    animation: blink 1s steps(1) infinite;
    vertical-align: bottom;
    cursor: text;
}

@keyframes blink {
    50% { 
        background: transparent; 
    }
}

.terminal__lineBreakMarker {
    display: none;
}

.terminal__textareaWrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
}

@media screen and (min-width: 1140px) {
    .terminal__textareaWrap {
        display: none;
    }
}

.terminal__textareaWrap span {
    display: block;
    margin: 0 0 1ch 0;
}

#terminal-textarea {
    position: relative;
    width: 100%;
    height: 100%;
    top: -2.55em;
    left: 0;
    flex: 1;
    background: transparent;
    color: var(--white);
    /* text-transform: uppercase; */
    border: 0;
    padding: 0 0 0 2ch;
    box-sizing: border-box;
    line-height: 2;
}

.textLogWrap {
    position: absolute;
    display: none;
    top: 8px;
    right: 8px;
    width: 320px;
    height: 75vh;
    border: 2px solid white;
}

#text-log {
    width: 100%;
    word-wrap: break-word;
}


/*** PLUGIN STYLING ***/

/* Photoswipe Masonry Gallery by Web Design Gold Coast */

.pswp__top-bar,
.pswp__caption {
    background: transparent !important;
}

.pswp__bg {
    background: rgba(0,0,0,0.95) !important;
}

.psgal figure.msnry_item {
    display: none !important;
}

.psgal figure.msnry_item:first-of-type {
    display: block !important;
    width: 100%;
    height: 520px;
    padding: 0;
    opacity: 0;
}

.pswp__item {
    opacity: 0 !important;
}

.pswp__item.opaque {
    opacity: 1 !important;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 600px) {
    .pswp__img {
        margin-top: 0;
    }
}

.pswp__zoom-wrap {
    z-index: 999;
}

.pswp__button {
    /* background-color: #fff !important; */
}

.pswp__share--download,
.pswp__button--share {
    display: none !important;
}

.pswp__caption__center {
    text-align: center;
    max-width: 92%;
    margin: 12px auto 10px auto;
    font-size: 15px;
    padding: 0;
    line-height: 20px;
    color: #fff;
}

.pswp__button--arrow--right:before {
    right: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__button--arrow--left:before {
    left: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1 !important;
}


/* Contact Form 7 */

.wpcf7 {
    width: 100%;
    margin: auto !important;
}

.wpcf7 form {
    width: 100%;
    float: left;
}

.wpcf7 label {
    width: 100%;
    display: block;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7 figure {
    width: 100%;
    margin: 0 0 16px 0;
    float: left;
}

@media screen and (min-width: 600px) {
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_last_name,
    .wpcf7 figure.wpcf7_field_email,
    .wpcf7 figure.wpcf7_field_phone,
    .wpcf7 figure.wpcf7_field_company,
    .wpcf7 figure.wpcf7_field_inquiry_type {
        width: 49%;
    }
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_email,
    .wpcf7 figure.wpcf7_field_company {
        margin: 0 2% 16px 0;
    }
}

.wpcf7 figure h4 {
    margin: 0 auto 4px auto;
}

.wpcf7 input[type='submit'] {
    float: right;
    margin-bottom: 21px;
}

.wpcf7 input[type="file"] {
    /* color: #fff; */
}

.wpcf7 .ajax-loader {
    /* display: none !important; */ /* disables the ajax spinner for CF7 */
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7 .wpcf7-response-output {
    width: 100%;
    margin: 8px auto auto auto !important;
    padding: 12px !important;
    box-sizing: border-box;
    float: left;
    text-align: center;
    font-size: 0.8em;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    color: #398f14;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #398f14;
    color: #398f14;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #ffb900;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
    color: #f56e28;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
    width: 100%;
    margin: 12px 0 16px 7px;
    float: left;
    box-sizing: border-box;
    text-align: left;
    text-decoration: underline;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    display: block !important;
    width: 100%;
    float: left;
    color: red;
    border-color: red;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
    display: block !important;
    width: 100%;
    margin-bottom: 32px;
    float: left;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7 ::-webkit-input-placeholder { /* WebKit browsers */
    color: #000;
}

.wpcf7 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #000;
}

.wpcf7 ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #000;
}

.wpcf7 :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #000;
}


/* Lightslider.js */

.lSSlideOuter {
    margin: auto;
    /* width: 80%; */
    /* padding: 8vw 0 8vw 0; */
}

.lslide {

}

.lSSlideOuter .lSPager.lSpg {
    display: block;
    position: relative;
    z-index: 1;
}

.lSAction {
    /* display: none !important; */
}

.lSAction > .lSPrev {
    display: block;
    width: 16px;
    height: 32px;
    /* margin-top: -40px; */
    background-image: url('./assets/svgs/arrow_left.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.lSAction > .lSNext {
    display: block;
    width: 16px;
    height: 32px;
    /* margin-top: -40px; */
    background-image: url('./assets/svgs/arrow_right.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.lSSlideOuter .lSPager.lSpg > li {
    padding: 0 10px;
}

.lSSlideOuter .lSPager.lSpg > li a {
    width: 12px;
    height: 12px;
    background-color: #000;
}


.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #ccc;
}


/* slickslider.js */

.slick-loading .slick-list {
    background: #fff url('./assets/images/ajax-loader.gif') center center no-repeat;
}

.slick-prev, 
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover, 
.slick-prev:focus, 
.slick-next:hover, 
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before, 
.slick-prev:focus:before, 
.slick-next:hover:before, 
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before, 
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, 
.slick-next:before {
    /* font-family: 'slick'; */
    /* font-size: 20px; */
    /* line-height: 1; */
    /* color: white; */
    display: block;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    /* content: '←'; */
    content: "";
    width: 24px;
    height: 45px;
    background-image: url('./assets/svgs/arrow_left.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

[dir='rtl'] .slick-prev:before {
    /* content: '→'; */
    background-image: url('./assets/svgs/arrow_right.svg');
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    /* content: '→'; */
    content: "";
    width: 24px;
    height: 45px;
    background-image: url('./assets/svgs/arrow_right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

[dir='rtl'] .slick-next:before {
    /* content: '←'; */
    background-image: url('./assets/svgs/arrow_left.svg');
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover, 
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, 
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


/* Simple Responsive Lightbox by WPGrand */

.lg-outer .lg-thumb-outer {
    display: none;
    background: rgba(13, 10, 10, 0.7);
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
    height: 93%;
    top: 4%;
}

.lg-progress-bar .lg-progress {
    background-color: #fff !important;
}

#lg-download {
    display: none !important;
}
