/* ------- FONT LINK --------*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,400;0,600;0,700;1,200;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/*-------- VARIABLES --------*/

/*------ FONT WEIGHTS -------*/

:root {
    --font-light: 200;
    --font-normal: 400;
    --font-medium: 500;
    --font-semi: 600;
    --font-bold: 700;
}

/*--------- COLORS ---------*/

:root {
    --pri: #7d30fa;
    --light: #fff;
    --dark: #16043b;
}

body.dark-section-active {
    --light: #7d30fa;
    --pri: #fff;
    --dark: #fff;
}

body {
    transition: background 0.6s ease-out, color 0.1s ease-out;
}

/* ------ FONT SIZING -------*/

:root {
    font-size: 12px;
    --body: 1rem;
    --subhead-sm: 1.618rem;
    --subhead: 2.6183rem;
    --header-sm: 3.236rem;
    --header-md: 4.236rem;
    --header: 6.855rem;
    --header-lg: 11.091rem;
}

/* ---- MARGIN & PADDING -----*/

:root {
    --mp-1: 0.5rem;
    --mp-2: 1rem;
    --mp-3: 1.5rem;
    --mp-4: 2rem;
    --mp-5: 2.5rem;
    --mp-6: 3rem;
}

/*---------  BASE ---------- */

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: var(--body);
    font-weight: var(--font-normal);
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* animations */

.hide-ani {
    overflow: hidden;
}

.slideUp {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes animate-logo {
    0% {
        stroke-dashoffset: 5100;
    }

    100% {
        stroke-dashoffset: 2600;
    }
}

.section-containers,
.work-modal-con {
    transform-origin: center;
    transition: transform 1s ease;
    will-change: transform;
}

/* on load animation */

.loadani-con {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--pri);
    z-index: 30;
    pointer-events: none;
    transition: all 0.5s ease;
}

.logo-svg-con {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: show;
    height: 100vh;
}

.logo-svg-con svg {
    width: 30%;
}

.logo-svg-con path {
    fill: transparent;
    stroke-width: 40;
    stroke: var(--light);
    stroke-dasharray: 5100;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: animate-logo 2s ease forwards 1;
}

/* global / fixed */

.contact-icon-con {
    background: var(--pri);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10vh;
    right: 5vw;
    transition: background 0.3s ease-out, border 0.3s ease-out, display 0.3s ease-out;
    border: 2px solid var(--pri);
}

.contact-cta-btn,
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-icon-con svg {
    fill: var(--light);
    transition: fill 0.3s ease-out;
}

.contact-cta-btn svg {
    margin-top: 3px;
}

.hidden-cta {
    display: none;
}

.contact-icon-con:hover,
.contact-icon-con:focus {
    background: var(--light);
    border: 2px solid var(--pri);
}

.contact-icon-con:hover svg,
.contact-icon-con:focus svg {
    fill: var(--pri);
}
/* ------- HOME ---------- */

/* Main nav */

.main-nav-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 10vh;
    padding: 0 20vw;
    transition: transform 0.3s ease-out;
    position: absolute;
    z-index: 20;
}

.hamburger-btn {
    display: none;
}

.logo-con {
    height: 4vh;
    position: fixed;
}

.logo-svg {
    height: 100%;
    fill: var(--pri);

    top: 0;
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, fill 0.3s ease-out;
}

.main-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 25vw;
    font-size: var(--subhead-sm);
    font-weight: var(--font-semi);
    position: fixed;
    top: 0;
    right: 20vw;
    height: 10vh;
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.main-hidden-nav {
    opacity: 0;
    transform: translateY(-50px);
}

.nav-link {
    color: var(--dark);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: var(--pri);
    border-radius: 2px;
    transition: all 0.3s ease-out;
}

.active-nav {
    color: var(--pri);
}

.active-nav::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pri);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--pri);
}

.nav-link:hover::after,
.nav-link:focus::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pri);
    border-radius: 2px;
}

.active-nav:hover,
.active-nav:focus {
    color: var(--dark);
}

.active-nav:hover::after,
.active-nav:focus::after {
    width: 0;
    background: var(--dark);
}

/* secondary nav */

.sec-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    right: 5vw;
    font-size: 1.3rem;
    font-weight: var(--font-medium);
    transform: translateY(-50%) translateX(0);
    height: 20vh;
    justify-content: space-between;
    z-index: 10;
    opacity: 1;
    transition: transform 0.3s ease-out;
}

.hidden-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(50px);
}

.dark-nav .active-nav {
    color: var(--light);
}

.dark-nav a::after {
    background: var(--light);
}

.dark-nav a {
    color: var(--light);
}

.dark-nav:hover a,
.dark-nav:focus a {
    color: var(--light);
}

.dark-nav:hover a::after,
.dark-nav:focus a::after {
    background: var(--light);
}

/* home page */

.home-con {
    height: 100vh;
    width: 100vw;
    padding: 0 20vw 0 20vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro-con {
    margin-top: -5vw;
    width: 95%;
    height: fit-content;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.intro-header {
    font-size: var(--header-lg);
    color: var(--pri);
    font-weight: var(--font-bold);
    font-family: 'Playfair Display', serif;
    line-height: 11rem;
}

.intro-sub {
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
    margin-top: 1rem;
}

.intro-img-con {
    width: 85%;
    margin-right: -5vw;
}

/* about */

#about {
    min-height: 130vh;
    padding: 5vw 0;
}
.about-con {
    width: 100vw;
    padding: 4rem 20vw 0;
    height: 40vw;
    background: var(--pri);
}

.about-header {
    font-size: var(--header);
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-bold);
    margin: 0;
}

.about-content {
    width: clamp(46ch, 50%, 75ch);
    font-size: var(--subhead-sm);
    color: var(--light);
    font-weight: var(--font-medium);
    margin: 1rem 0 72px;
}

.about-cards-con {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-con {
    background: var(--light);
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 4rem 5rem;
    width: 27.5vw;
    height: 72vh;
}

.card-con * {
    width: 100%;
}

.about-subhead {
    font-size: var(--header-md);
    font-weight: var(--font-bold);
    color: var(--pri);
    font-family: 'Playfair Display', sans-serif;
    text-align: center;
    margin: 0;
    padding: 1.4rem 0 0.8rem;
}

.about-card-content {
    font-size: var(--subhead-sm);
    color: var(--dark);
    text-align: center;
}

.about-card-subhead {
    font-size: var(--subhead-sm);
    color: var(--pri);
    text-align: center;
    padding: 1.4rem 0 0.8rem;
}

.about-card-list {
    padding: 1.4rem 0 0.8rem;
}

.about-card-list li {
    padding: 0.5rem 0;
}

/* work */

#work {
    min-height: 100vh;
    padding: 0 20vw;
}

.work-header {
    font-size: var(--header);
    color: var(--pri);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-bold);
    margin: 1em 0 2em;
}

.work-cards-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.work-card:nth-child(2n) {
    margin-top: -10vw;
}

.work-card {
    width: 27.5vw;
    height: 50vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
}

.work-card-img-con {
    height: 80%;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    transition: transform ease-out 0.3s;
}

.work-card-img-con img {
    height: 120%;
    width: auto;
    max-width: none;
}

.work-subheader {
    font-size: var(--subhead-sm);
    color: var(--pri);
    margin: 2rem 0 0.618rem;
}

.work-card:hover,
.work-card:focus {
    cursor: pointer;
}

.work-card:hover .work-card-img-con,
.work-card:focus .work-card-img-con {
    transform: scale(1.025);
}

.work-details {
    font-size: var(--subhead-sm);
    color: var(--dark);
}

/* contact */

#contact {
    min-height: 40vh;
    padding: 0 20vw;
}

.contact-header {
    font-size: var(--header);
    color: var(--pri);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-bold);
    margin: 0.618em 0 0.618rem;
}

.contact-sub {
    font-size: var(--subhead-sm);
    color: var(--pri);
}

.contact-form-sub {
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
    width: 100%;
    margin: 1rem 0 0.618rem;
}
.wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
}

#wpforms-6 {
    padding: 0 20vw 0 0;
    transition: all 0.3s ease-out;
}

#wpforms-6-field_5-container,
#wpforms-6-field_6-container,
#wpforms-6-field_7-container {
    width: 100%;
}

#wpforms-6-field_5-container label,
#wpforms-6-field_6-container label,
#wpforms-6-field_7-container label {
    font-size: var(--subhead-sm);
    color: var(--pri);
    font-weight: var(--font-normal);
    padding: 1rem 0 0.618rem;
}

#wpforms-6-field_5-container span,
#wpforms-6-field_6-container span,
#wpforms-6-field_7-container span {
    font-size: var(--subhead-sm);
    color: var(--pri);
}
#wpforms-6-field_5-container input {
    max-width: 100%;
}

div.wpforms-container-full .wpforms-form .wpforms-field-row:before,
div.wpforms-container-full .wpforms-form .wpforms-field-row:after {
    display: none !important;
}

#wpforms-6-field_6-container:nth-child(2) div div {
    width: 100%;
    margin: 1rem 0;
}

#wpforms-6-field_6-container div {
    max-width: 100%;
}

#wpforms-6-field_5-container input,
#wpforms-6-field_6-container input,
#wpforms-6-field_7-container textarea {
    font-family: 'Nunito Sans', sans-serif;
    font-size: var(--subhead-sm);
    border-radius: 3px;
    padding: 1rem;
    border: none;
}

#wpforms-6-field_5-container input::placeholder,
#wpforms-6-field_6-container input::placeholder,
#wpforms-6-field_7-container textarea::placeholder {
    color: #7d30fa;
}

#wpforms-submit-6 {
    background: var(--pri);
    border-radius: 3px;
    border: 1.5px solid var(--pri);
    color: var(--light);
    font-size: var(--subhead-sm);
    transition: background 0.3s ease-out, color 0.3s ease-out, border 0.3s ease-out;
    margin: 3rem 0;
}

#wpforms-submit-6:hover,
#wpforms-submit-6:focus {
    background: var(--light);
    color: var(--pri);
    background: 1.5px solid var(--light);
}

#wpforms-confirmation-6 {
    color: #7d30fa;
    background: var(--pri);
    margin: 3rem 0;
    border: none;
    font-size: var(--subhead-sm);
    font-weight: var(--font-medium);
    border-radius: 3px;
}
#wpforms-6-field_5-container,
#wpforms-6-field_6-container,
#wpforms-6-field_7-container {
    padding: 1rem 0;
}

#wpforms-6-field_5-container:before {
    content: 'Tell me about yourself';
    display: block;
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
    margin: 1rem 0;
}

#wpforms-6-field_7-container:before {
    content: 'How can I help you?';
    display: block;
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
    margin: 1rem 0;
}

#wpforms-6-field_5-container input,
#wpforms-6-field_6-container input,
#wpforms-6-field_7-container textarea {
    border: 1px solid var(--pri);
}

/* work modal */
.work-modal {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    top: 0;
    z-index: 100;
}

.project-con {
    opacity: 0;
}

.project-slider {
    width: 100vw;
    height: 100vh;
    background: var(--pri);
    transform: translateX(-115vw) skew(5deg);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
}

.work-modal.hidden {
    display: none;
}
.work-modal-con {
    min-height: 500vh;
    background: var(--light);
    opacity: 0;
    padding: 0 20vw;
    transition: transform 0.75s ease, background 0.3s ease-out, color 0.3s ease-out;
}

.work-modal-header {
    height: 10vh;
    padding: 3vh 20vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
}

.close-btn-con {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn span {
    content: '';
    display: block;
    width: 2.5rem;
    position: relative;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease-out;
    border-radius: 3px;
}

.close-btn span:before,
.close-btn span:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-out;
    border-radius: 3px;
}

.close-btn span:before {
    background: var(--pri);
    transform: rotate(45deg);
}

.close-btn span:after {
    background: var(--pri);
    transform: rotate(-45deg);
}

.close-btn-con:hover .close-btn span {
    background: var(--pri);
}

.close-btn-con:hover .close-btn span:before {
    background: var(--pri);
    transform: rotate(-45deg) translate(50%, -25%);
    width: 50%;
    top: 25%;
    left: -25%;
}

.close-btn-con:hover .close-btn span:after {
    background: var(--pri);
    transform: rotate(45deg) translate(50%, -25%);
    width: 50%;
    left: -25%;
    top: 25%;
}

.work-modal-title {
    font-size: var(--header);
    color: var(--pri);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-bold);
    line-height: 1.1em;
    width: 30vw;
    margin-bottom: 10vw;
}

.work-modal-subtitle {
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
    line-height: 1.1em;
    margin-top: 10vw;
}

.work-modal-slider {
    background: var(--pri);
    width: 100vw;
    height: 100vh;
    transform: translateX(115vw) skew(5deg);
    position: fixed;
    z-index: 100;
    top: 0;
    opacity: 1;
    pointer-events: none;
}

.work-hero-img-con {
    height: 50vw;
    width: 100vw;
    object-fit: cover;
    overflow: hidden;
    object-position: center;
    margin-left: -20vw;
    position: relative;
}

.work-hero-img {
    width: 105%;
    position: absolute;
}

.work-modal-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10vw 0;
}

.work-section-header {
    font-size: var(--subhead);
    color: var(--pri);
    font-weight: var(--font-semi);
}

.work-section-body {
    font-size: var(--subhead-sm);
    color: var(--dark);
    width: clamp(46ch, 60%, 75ch);
}

.work-modal-con.active {
    width: 100vw;
}

.section.hidden {
    display: none;
}

.work-gals-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    flex-basis: 100%;
    padding-top: 5vw;
}

.work-gal:nth-child(2n) {
    margin-top: -10vw;
}

.work-gal {
    width: 27.5vw;
    height: 30vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
}

.work-gal-img-con {
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
}

.gal-img {
    height: 110%;
    width: auto;
    max-width: none;
}

.work-emblem {
    margin-left: -43%;
    /* margin-top: -810px; */
}

.work-lanyards {
    width: 100%;
    height: auto;
    margin-top: -50%;
}

.work-bands {
    width: 100%;
    height: auto;
    margin-top: -85%;
}

.work-t {
    margin-left: -50%;
    /* margin-top: -900px; */
}

.rellax {
    will-change: transform;
}

.work-modal-footer {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    /* background: var(--light); */
}

.modal-footer-header {
    font-size: var(--header);
    color: var(--pri);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-bold);
    padding-right: 1vw;
    cursor: pointer;
}

.next-btn-con {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.next-btn span {
    content: '';
    display: block;
    width: 5rem;
    position: relative;
    height: 3px;
    background: var(--pri);
    transition: all 0.3s ease-out;
    border-radius: 3px;
}

.next-btn span:before,
.next-btn span:after {
    content: '';
    display: block;
    width: 1rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-out;
    border-radius: 3px;
}

.next-btn span:before {
    background: var(--pri);
    transform: rotate(-45deg) translate(-50%, -25%);
    top: 25%;
    left: 87.5%;
}

.next-btn span:after {
    background: var(--pri);
    transform: rotate(45deg) translate(-50%, -25%);
    left: 87.5%;
    top: 25%;
}

.next-btn-con:hover .next-btn span {
    width: 8rem;
}

.next-btn-con:hover .next-btn span:after,
.next-btn-con:hover .next-btn span:before {
    left: 95%;
}

.modal-to-top-con {
    background: var(--pri);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10vh;
    right: 5vw;
    transition: background 0.3s ease-out, border 0.3s ease-out, display 0.3s ease-out;
    border: 2px solid var(--pri);
    z-index: 200;
    opacity: 0;
}

.modal-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.modal-to-top-con svg {
    fill: var(--light);
    transition: fill 0.3s ease-out;
}
.modal-to-top-con:hover,
.modal-to-top-con:focus {
    background: transparent;
    border: 2px solid var(--pri);
}

.modal-to-top-con:hover svg,
.modal-to-top-con:focus svg {
    fill: var(--pri);
}

.ki-homeDT {
    margin-top: -15%;
}

.ki-gal {
    margin-top: 10vw;
}

.ki-gal-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.ki-gal-img-con {
    width: 27.5vw;
    overflow: hidden;
    height: 50vw;
    margin-bottom: 5vw;
    position: relative;
}

.ki-gal-img {
    width: 120%;
    max-width: none;
    position: absolute;
    left: -10%;
    top: -10%;
}

.ki-gal-img-con:nth-child(3) {
    display: block;
    margin: 0 auto;
}

.nl-homeCards,
.nl-postCards {
    margin-top: -10%;
}

.nl-gal-con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.nl-gal-img-con {
    overflow: hidden;
    object-fit: cover;
}

.lg-gal {
    width: 100%;
    margin-bottom: 72px;
}

.md-gal {
    width: calc(66% - 72px);
}

.sm-gal {
    width: 33%;
}

.sm-gal img {
    width: 150%;
    max-width: none;
    margin-left: -25%;
}

.sm-gal,
.md-gal {
    height: 130vh;
}

.nl-gal {
    padding-top: 0;
}
/* Mobile */

@media only screen and (max-width: 550px) {
    :root {
        font-size: 10px;
    }

    /* contact-icon */

    .contact-icon-con {
        right: 0;
        bottom: 0;
        height: 4.5rem;
        width: 100vw;
        border-radius: 0;
        z-index: 10;
    }

    .contact-cta-btn,
    .back-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .hidden-cta {
        display: none;
    }

    .contact-icon-con svg {
        width: 20px;
        height: 20px;
    }

    .contact-cta-btn svg {
        margin-top: 0;
    }

    .contact-icon-con:hover,
    .contact-icon-con:focus {
        background: var(--light);
        border: 2px solid var(--light);
    }

    /* nav */

    .main-nav-con {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity ease-out 0.3s;
        flex-wrap: wrap;
        z-index: 20;
        padding: 0 10vw;
    }

    .sec-nav-list {
        display: none;
    }

    .main-nav-list {
        display: flex;
        height: 0;
        transition: height 0.3s ease-out;
        opacity: 0;
        pointer-events: none;
        position: static;
    }

    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 10vh;
        position: static;
    }

    .nav-header svg {
        height: 4vh;
    }

    .hamburger-btn {
        display: flex;
        width: 24px;
        height: 24px;
        align-items: flex-start;
        justify-content: center;
        padding-top: 6px;
    }

    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background: var(--pri);
        border-radius: 2px;
        transform-origin: center;
        transition: all 0.3s ease;
    }

    .hamburger-btn span::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--pri);
        margin-top: 10px;
        border-radius: 2px;
        transform-origin: center;
        transition: all 0.3s ease;
    }

    .hamburger-btn.menu-active span {
        transform: rotate(-45deg);
        background: var(--light);
    }

    .hamburger-btn.menu-active {
        align-items: center;
        justify-content: center;
    }

    .hamburger-btn.menu-active span::after {
        transform: rotate(90deg);
        margin-top: 0;
        background: var(--light);
    }

    .main-nav-con.menu-active {
        height: 100%;
        background: var(--pri);
        flex-direction: column;
        justify-content: start;
        position: fixed;
    }

    .main-nav-list.menu-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        color: var(--light);
        padding: 0;
        opacity: 1;
        height: 30vh;
        transition: height 0.3s ease-out;
        pointer-events: inherit;
    }

    .main-nav-list.menu-active a {
        color: var(--light);
        font-weight: 400;
    }

    .logo-con.menu-active svg {
        fill: var(--light);
        transition: fill 0.3s ease-out;
    }

    /* home page */

    .home-con {
        flex-direction: column-reverse;
        justify-content: space-around;
        padding: 20vh 10vw 0;
    }

    .intro-con {
        width: 100%;
        height: 50vh;
    }

    .intro-img-con {
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 5vh;
    }

    .intro-header {
        margin-top: 1.5rem;
        font-size: var(--header);
        line-height: 0.8em;
    }

    .intro-sub {
        font-size: var(--subhead-sm);
        margin-top: 1.5rem;
    }

    /* about */

    #about {
        min-height: 175vh;
    }

    .about-cards-con {
        flex-direction: column;
    }

    .about-content {
        width: 100%;
        margin: 1rem 0 3rem;
    }

    .about-con {
        height: 135vh;
        padding: 10vw;
    }

    .about-subhead {
        font-size: var(--header-sm);
    }

    .about-header {
        font-size: var(--header-md);
    }

    .card-con {
        width: 100%;
        padding: 1rem 2rem;
        height: 62vh;
    }

    .about-cards-con div + div {
        margin-top: 3rem;
    }

    /* work */

    #work {
        padding: 0 10vw;
    }

    .work-header {
        font-size: var(--header-md);
        margin: 0 0 1em;
    }

    .work-card {
        width: 100%;
        height: auto;
        margin-bottom: 10rem;
    }

    .work-card-img-con img {
        height: 130%;
    }

    .work-card-img-con {
        height: 50vh;
    }

    /* contact */

    #contact {
        padding: 0 10vw 5vh;
    }

    .contact-header {
        font-size: var(--header-md);
        margin: 0 0 0.5em;
    }

    .contact-sub {
        margin: 0 0 1em;
    }

    #wpforms-6 {
        width: 100%;
        padding: 0;
    }

    /* work modal */

    .work-modal-con {
        padding: 0 10vw;
    }

    .work-modal-header {
        padding: 3vh 10vw;
    }

    .work-modal-title {
        width: 100%;
        font-size: var(--header-md);
        margin-bottom: 20vh;
    }

    .work-modal-subtitle {
        font-size: var(--subhead);
        margin-top: 10vh;
    }

    .close-btn-con {
        justify-content: flex-end;
    }

    .work-hero-img-con {
        width: 100vw;
        margin-left: -10vw;
        height: 45vh;
    }

    .work-hero-img {
        height: 130%;
        width: auto;
        max-width: none;
        margin-top: -15%;
    }
    .work-modal-section {
        flex-direction: column;
    }

    .work-section-header {
        margin-bottom: 1em;
    }

    .work-section-body {
        max-width: 80vw;
    }

    .work-gals-con {
        flex-direction: column;
        justify-content: space-around;
    }

    .work-gal:nth-child(2n) {
        margin-top: 0;
    }

    .work-gal {
        width: 100%;
        height: 50vh;
    }

    .work-emblem {
        margin-left: -45%;
    }
    .work-lanyards {
        margin-top: -10%;
    }

    .work-bands {
        margin-top: -65%;
    }

    .work-t {
        height: 120%;
        margin-left: -84%;
    }

    .modal-footer-header {
        font-size: var(--header-md);
    }

    .work-modal-footer {
        justify-content: space-between;
    }

    .next-btn-con {
        width: 5rem;
    }

    .next-btn span {
        width: 4rem;
        height: 2px;
    }

    .modal-to-top-con {
        right: 0;
        bottom: 0;
        height: 4.5rem;
        width: 100vw;
        border-radius: 0;
        z-index: 10;
    }

    .modal-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .modal-to-top-con svg {
        width: 20px;
        height: 20px;
    }

    .modal-to-top-con:hover,
    .modal-to-top-con:focus {
        background: var(--light);
        border: 2px solid var(--light);
    }

    .ki-homeDT {
        min-width: 100%;
        height: 125%;
        margin-left: -23%;
        margin-top: -10%;
    }

    .ki-desktopCards,
    .ki-mobileCards {
        height: 125%;
        margin-top: -15%;
        margin-left: -24%;
    }

    .ki-gal-con {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .ki-gal-img-con {
        width: 100%;
        height: 75vh;
        margin-bottom: 10vw;
    }

    .ki-gal-img {
        top: -15%;
    }

    .lg-gal img {
        max-width: 140%;
        margin-left: -20%;
    }

    .sm-gal,
    .md-gal {
        width: 100%;
    }
    .lg-gal {
        margin-bottom: 10vw;
    }
    .md-gal {
        margin-bottom: 10vw;
        height: 110vh;
    }

    .sm-gal {
        height: 160vh;
    }

    .sm-gal img {
        width: 220%;
        margin-left: -60%;
        margin-top: -30%;
    }

    .md-gal img {
        max-width: none;
        width: 170%;
        margin-left: -35%;
        margin-top: -10%;
    }
}

@media only screen and (max-width: 280px) {
    :root {
        font-size: 9px;
    }
}

@media only screen and (max-height: 670px) {
    .card-con {
        height: 80vh;
    }

    #about {
        height: 225vh;
    }

    /* work */

    .work-card-img-con {
        height: 60vh;
    }
}

/* short mobile */

@media only screen and (max-height: 590px) {
    .card-con {
        height: 85vh;
    }

    #about {
        height: 245vh;
    }

    .work-gal {
        height: 60vh;
    }
    .work-lanyards {
        margin-top: -30%;
    }

    .ki-homeDT {
        margin-left: -10%;
    }

    .work-emblem {
        margin-left: -65%;
    }
}

/* Tablet */

@media only screen and (min-device-width: 551px) and (max-device-width: 1024px) and (orientation: portrait) {
    :root {
        font-size: 10px;
    }

    .main-nav-con {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity ease-out 0.3s;
        flex-wrap: wrap;
        z-index: 20;
        padding: 0 10vw;
    }

    .sec-nav-list {
        display: none;
    }

    .main-nav-list {
        display: flex;
        height: 0;
        transition: height 0.3s ease-out;
        opacity: 0;
        pointer-events: none;
        position: static;
    }

    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 10vh;
        position: static;
    }

    .nav-header svg {
        height: 4vh;
    }

    .close-btn-con {
        justify-content: flex-end;
    }

    .hamburger-btn {
        display: flex;
        width: 24px;
        height: 24px;
        align-items: flex-start;
        justify-content: center;
        padding-top: 6px;
    }

    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background: var(--pri);
        border-radius: 2px;
        transform-origin: center;
        transition: all 0.3s ease;
    }

    .hamburger-btn span::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--pri);
        margin-top: 10px;
        border-radius: 2px;
        transform-origin: center;
        transition: all 0.3s ease;
    }

    .hamburger-btn.menu-active span {
        transform: rotate(-45deg);
        background: var(--light);
    }

    .hamburger-btn.menu-active {
        align-items: center;
        justify-content: center;
    }

    .hamburger-btn.menu-active span::after {
        transform: rotate(90deg);
        margin-top: 0;
        background: var(--light);
    }

    .main-nav-con.menu-active {
        height: 100%;
        background: var(--pri);
        flex-direction: column;
        justify-content: start;
        position: fixed;
    }

    .main-nav-list.menu-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        color: var(--light);
        padding: 0;
        opacity: 1;
        height: 30vh;
        transition: height 0.3s ease-out;
        pointer-events: inherit;
    }

    .main-nav-list.menu-active a {
        color: var(--light);
        font-weight: 400;
    }

    .logo-con.menu-active svg {
        fill: var(--light);
        transition: fill 0.3s ease-out;
    }

    /* home */

    .home-con {
        padding: 0vh 10vw 0;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .home-con * {
        width: 100%;
    }

    .intro-img-con {
        padding: 0 0 10vh;
    }

    /* about */

    #about {
        min-height: 85vh;
    }
    .about-con {
        height: 50vh;
        padding: 4rem 10vw 0;
    }

    .card-con {
        width: 37.5vw;
        padding: 2rem 2.5rem;
        height: 50vh;
    }

    .about-content {
        margin: 1rem 0 4rem;
    }

    /* work */

    #work {
        padding: 0 10vw;
    }

    .work-header {
        margin: 1em 0 1.5em;
    }

    .work-card {
        width: 37.5vw;
        height: 65vw;
    }

    /* contact */

    #contact {
        padding: 0 10vw;
    }

    /* work modal */

    .work-modal-con {
        padding: 0 10vw;
        min-height: 100vh;
    }

    .work-modal-header {
        padding: 3vh 10vw;
    }

    .work-modal-title {
        width: 50vw;
    }

    .work-modal-section {
        flex-direction: column;
    }

    .work-section-header {
        margin-bottom: 1rem;
    }

    .work-hero-img {
        width: 130%;
        max-width: 150%;
        margin-top: -5%;
    }

    .work-hero-img-con {
        height: 70vw;
        margin-left: -10vw;
    }

    .work-gal {
        width: 37.5vw;
        height: 50vw;
    }

    .gal-img {
        height: 120%;
    }

    .work-emblem {
        margin-left: -75%;
        margin-top: -10%;
    }

    .work-lanyards {
        margin-top: -20%;
        height: auto;
    }

    .work-bands {
        margin-top: -65%;
        height: auto;
    }

    .work-t {
        margin-left: -80%;
        margin-top: -10%;
        height: 120%;
    }

    /* ki */

    .ki-homeDT {
        margin-left: -15%;
        margin-top: -15%;
    }

    .ki-gal-con {
        flex-direction: column;
        justify-content: space-around;
    }

    .ki-gal-img-con {
        width: 100%;
        height: 100vh;
    }

    .md-gal,
    .sm-gal {
        height: 65vh;
    }

    .md-gal img {
        width: 120%;
        margin-left: -10%;
        max-width: none;
        margin-top: -10%;
    }

    .sm-gal img {
        width: 170%;
        margin-left: -35%;
        margin-top: -20%;
    }

    .work-modal-footer {
        min-height: 30vh;
    }
}

/* laptop */

@media only screen and (min-width: 1224px) {
}

/* large screens */
@media only screen and (min-width: 1824px) {
}
