@charset "UTF-8";
@font-face {
    font-family: 'Helena';
    font-style: normal;
    font-weight: normal;
    src: local('Helena'), url('../fonts/Helena.woff') format('woff');
}

@font-face {
    font-family: 'Helena-Outline';
    font-style: normal;
    font-weight: normal;
    src: local('Helena-Outline'), url('../fonts/Helena-Outline.woff') format('woff');
}

@font-face {
    font-family: 'centaur';
    font-style: normal;
    font-weight: normal;
    src: local('centaur'), url('../fonts/centaur.ttf') format('truetype');
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    /*--bs-heading-color: ;*/
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}
body{
    background-color: rgba(0,0,0,.85);
}

/* Index Page Image Comic Style */
.comicWrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    max-width: 1440px;
}

.comic-top,
.comic-cell {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.comic-item {
    display: inline-block;
    min-height: 400px;
    width: 50%;
    text-align: left;
    padding: 10px;
}

.comic-top {
    background-image: url('../images/webAppDesignBackground.jpg');
}

.comic-cell:nth-child(2) {
    background-image: url('../images/graphicDesignBackground.jpeg');
}

.comic-cell:nth-child(3) {
    background-image: url('../images/photoRestorationBackground.png');
}

.comic-cell:nth-child(4) {
    background-image: url('../images/gameDesignBackground.png');
}

@supports (display: grid) {
    .comic-item {
        width: auto;
        min-height: 0;
    }

    .comic-top {
        grid-column: 1 / span 2;
        grid-row: 1 / 50;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), 0 100%);
    }

    .comic-cell:nth-child(2) {
        grid-column: 1 / span 1;
        grid-row: 50 / 100;
        -webkit-clip-path: polygon(0 14%, 0 86%, 90% 81%, 100% 6%);
        clip-path: polygon(0 14%, 0 86%, 90% 81%, 100% 6%);
        margin-top: -73px;
    }

    .comic-cell:nth-child(3) {
        grid-column: 2 / span 1;
        grid-row: 50 / 100;
        -webkit-clip-path: polygon(13% 6%, 4% 84%, 100% 100%, 100% 0%);
        clip-path: polygon(13% 6%, 4% 84%, 100% 100%, 100% 0%);
        margin-top: -73px;
        margin-left: -15%;
        margin-bottom: 18px;
    }

    .comic-cell:nth-child(4) {
        grid-column: 1 / span 2;
        grid-row: 100 / 150;
        -webkit-clip-path: polygon(45% 0, 100% 15%, 100% 100%, 0 100%, 0 5%);
        clip-path: polygon(45% 0, 100% 15%, 100% 100%, 0 100%, 0 5%);
        margin-top: -107px;
    }
}

/* Index Page Image Overlays */
.comic-overlay {
    width: 45%;
    height: 80px;
    z-index: 10;
    /*background-color: rgba(0,0,0, 0.35);*/
}
.comic-overlay-content {
    font-size: 27px;
    text-transform: uppercase;
}
.comic-overlay-subtext {
    font-size: 18px;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.comic-top-main{
    position: absolute;
    top: 8px;
    left: 16px;
    width: 100%;
    text-align: left;
}

.comic-middle-left{
    position: absolute;
    top: 75px;
    left: 16px;
    width: 100%;
    text-align: left;
}

.comic-middle-right{
    position: absolute;
    bottom: 35px;
    right: 16px;
    text-align: right;
    width: 100%;
}
.bg-black-50{
    background-color: rgba(0,0,0,.5);
    padding: 5px 5px;
    border-radius: 15px;
}
.link-highlight-ltr > a {
    box-shadow: inset 0 0 0 0 orange;
    transition: all 0.4s ease-in-out 0s;
    text-decoration: none;
    color: orange;
}
.link-highlight-ltr > a:hover {
    box-shadow: inset 300px 0 0 0 orange;
    color: #21242C;
}
.comic-bottom-main{
    position: absolute;
    bottom: 1px;
    left: 16px;
    width: 100%;
    text-align: left;
}

.ovlogo{
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
    text-align: left;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
    text-align: right;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
    text-align: left;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
    text-align: right;
}
.center {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}

.text-white{
    color: rgba(255,255,255,1);
}
.text-white-75{
    color: rgba(255,255,255,.75);
}
.text-white-50{
    color: rgba(255,255,255,.50);
}
.text-white-25{
    color: rgba(255,255,255,.25);
}
.text-black{
    color: rgba(0,0,0,1);
}
.text-black-75{
    color: rgba(0,0,0,.75);
}
.text-black-50{
    color: rgba(0,0,0,.50);
}
.text-black-25{
    color: rgba(0,0,0,.25);
}

/* MAIN */
.header-bs {
    height: 175px;
    background-origin: content-box;
    background-color: #3c3d41;
    background-image: url("../images/pixeltrixLogoWhite.png");
    background-repeat: no-repeat;
    background-size: 50%;
    padding: 15px 20px;
    color: rgba(0,0,0,.75);
}

.tagline{
    padding: 2px 20px;
}

/*FOOTER*/
.footer-bs {
    background-color: #3c3d41;
    padding: 20px 20px;
    color: rgba(255,255,255,1.00);
    margin-bottom: 20px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 6px;
}
.footer-bs .footer-brand, .footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { padding:10px 25px; }
.footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { border-color: transparent; }
.footer-bs .footer-brand h2 { margin:0px 0px 10px; }
.footer-bs .footer-brand p { font-size:12px; color:rgba(255,255,255,0.70); }

.footer-bs .footer-nav ul.pages { list-style:none; padding:0px; }
.footer-bs .footer-nav ul.pages li { padding:5px 0px;}
.footer-bs .footer-nav ul.pages a { color:rgba(255,255,255,1.00); font-weight:bold; text-transform:uppercase; }
.footer-bs .footer-nav ul.pages a:hover { color:rgba(255,255,255,0.80); text-decoration:none; }
.footer-bs .footer-nav h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom:10px;
}

.footer-bs .footer-nav ul.list { list-style:none; padding:0px; }
.footer-bs .footer-nav ul.list li { padding:5px 0px;}
.footer-bs .footer-nav ul.list a { color:rgba(255,255,255,0.80); }
.footer-bs .footer-nav ul.list a:hover { color:rgba(255,255,255,0.60); text-decoration:none; }

.footer-bs .footer-social ul { list-style:none; padding:0px; }
.footer-bs .footer-social h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.footer-bs .footer-social li { padding:5px 4px;}
.footer-bs .footer-social a { color:rgba(255,255,255,1.00);}
.footer-bs .footer-social a:hover { color:rgba(255,255,255,0.80); text-decoration:none; }

.footer-bs .footer-ns h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom:10px;
}
.footer-bs .footer-ns p { font-size:12px; color:rgba(255,255,255,0.70); }

@media (min-width: 768px) {
    .footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { border-left:solid 1px rgba(255,255,255,0.10); }
}