:root {
    --ghostwhite: #F8F8FF;
    --mulledwine: #4B475F;
    --lavendar: #D7D6FF;
    --blackout: #222;
    --standard-text: 1.7rem;
    --software-text: 1.3rem;
    --section-gap: 200px;
    --within-section-gap: 50px;
}

html {
    font-size: 10px;
    color: var(--ghostwhite);
    font-family: "Jost", Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    height: 100%; 
    overflow:auto;
}

.home {
    height: 100vh;
}
body {
    background-color: var(--blackout);
    position: relative;
    height: 100%;
}

header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    /*width: 100%;*/
    width: 100vw;
}

nav {
    height: 100px;
    background-color: var(--ghostwhite);
    color: var(--blackout);
    display: flex;
    justify-content: center;
    /*margin-bottom: 5rem;*/
    border-bottom: 2px solid rgba(34,34,34,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.logo {
    height: 81px;
    width: 69px;
}

a, a:visited, a:link, a:hover, a:focus, a:active {
    color: var(--blackout);
    text-decoration: none;
}

.nav-item, p {
    font-size: var(--standard-text);
    line-height: 1.3;
}

.nav-item {
    font-weight: 600;
    font-size: var(--standard-text);
    color: var(--blackout);
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px 0;
    /*margin: 0 20px;*/
    display: inline-block;
    position: relative;
}


.nav-item:hover {
  opacity: 1;
}

.nav-item::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: var(--blackout);
}

.nav-item::before {
  width: 0;
  bottom: 10px;
}

.nav-item:hover::before {
  width: 100%;
}

.nav-item-container {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

main {
    display: flex;
    justify-content: center;
}

.everything-container {
    width: 90%;
    margin-top: 15rem;
}

.home .everything-container {
    margin-top: 5rem;
    width: auto;
}

.top-content {
    height: calc(100vh - 100px - 121.8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    justify-self: center;
}

.greeting, .pg-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--lavendar);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.pg-title {
    margin-bottom: 10%;
}

#about-title {
    text-align: center;
}

.email {
    font-style: italic;
}

.greeting span {
    display: block;
}

img {
    width: 100%;
    height: auto;
}

.featured {
    display: grid;
    width: 100vw;
    height: calc(100vh - 100px);
}

.featured div {
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--ghostwhite);
}

/*

        FEATURED IMAGES

*/

#featured1 {
    background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured1-long.webp) no-repeat;
    background-size: cover;
    border: none;
}

#featured2 {
    background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured2-long.jpg) no-repeat right;
    background-size: cover;
    border: none;
}

#featured3 {
    background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured3-long.jpg) no-repeat;
    background-size: cover;
    border: none;
}

#featured4 {
    background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured4-long.jpg) no-repeat right;
    background-size: cover;
    border: none;
}

#featured5 {
    background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured5-long.jpg) no-repeat;
    background-size: cover;
    border: none;
}

/*

        END FEATURED IMAGES

*/

p + p {
    margin-top: 1rem;
}

.open {
    transform: translateX(0);
    opacity: 1;
}

#dim {
    width: 100vh;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(34, 34, 34, 0.6);
    /*opacity: 0;*/
    /*display: none;*/
}

.selected {
    text-decoration: underline solid 2px;
    text-underline-offset: 5px;
}

.project {
    aspect-ratio: 3/2;
    margin-bottom: 2rem;
    position: relative;
    height: 100%;
}

.project-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 1rem;
}

.projects {
    margin-bottom: 3rem;
}

.project-text {
    background-color: rgba(34,34,34,0.5);
    color: var(--ghostwhite);
}

.title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.web {
    background-color: aqua;
}

.graphic { background-color: mediumpurple;}

.interactive { background-color: orange;}


.secondary-nav {
    background-color: var(--blackout);
    height: auto;
    position: sticky;
    /*top: 100px;*/
    top: 0;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(248, 248, 255, 0.2);
}

.scroll-menu {
    overflow: auto;
    white-space: nowrap;
    font-size: 1.7rem;
    /*padding: 0.5rem;*/
}

.scroll-menu a, .scroll-menu p {
    color: var(--ghostwhite);
    display: inline-block;
    padding: 1.5rem;
    margin-right: 1rem;
}

.scroll-menu a:hover {
    color: var(--blackout);
    background-color: var(--ghostwhite);
}

.everything-container.project-page {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.everything-container.project-page section {
    margin: calc(var(--section-gap)/8) 0;
}

.everything-container.project-page section > p, .everything-container.project-page section > picture img  {
    margin-top: calc(var(--within-section-gap)/2);
}

/*
.everything-container.project-page section:first-child {
    margin-bottom: 0;
}
*/

main.project-page {
    display: block;
}

#cover {
    /*margin-top: 10rem;*/
    height: calc(100vh - 49px);
    width: 100vw;
    display: flex;
    justify-content: center;
    background-size: cover;
    border-bottom: 1px solid rgba(248, 248, 255, 0.2);
}

.everything-container.project-page section .caption {
    margin-top: 1rem;
    font-style: italic;
    color: #ccc;
    font-size: 1.5rem;
    max-width: 800px;
}

.cover-container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cover-text-container {
    /*height: 60%;*/
    margin-top: 13rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#cover .title {
    font-size: 4rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

#cover .live-link {
    margin-bottom: 1rem;
}

#cover .live-link a {
    /*font-style: italic;*/
    text-decoration: underline solid 1px;
    text-underline-offset: 3px;
    color: var(--ghostwhite);
}

#cover .description {
    width: 70%;
}

#cover .year, .roles span {
    text-transform: uppercase;
}

.software {
    line-height: 50px;
    font-size: 1.3rem
}

.bold {
    font-weight: 500;
}

.center-content {
    width: 90%;
}

#cover, #logo, #user-persona, #site-map, #style-tile, #wireframes, #prototype, #album, #hoodie, #mockups, #stationary, #info-arch {
    scroll-margin-top: 125px;
}

.project-nav {
    transition: all 0.2s;
}

.nav-hidden {
    transform: translateY(-100px);
}

.nav-there {
    top: 100px;
}

footer {
    background-color: var(--ghostwhite);
    color: var(--blackout);
    padding: 1rem;
    text-align: center;
}

footer p {
    font-size: 1.3rem
}

.next-back div {
    height: 2rem;
    width: 2rem;
}

.next-back {
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.next-back a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
}

.everything-container.project-page section.next-back {
    margin: 1rem 0;
}

.back {
    background: url(../images/arrow-white.svg) no-repeat center;
    background-size: contain;
}

.next {
    background: url(../images/arrow-white2.svg) no-repeat center;
    background-size: contain;
}

.italic { font-style: italic;}

.labels {
    text-transform: uppercase;
    font-size: 3rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.labels-contain {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.beforeAfter-mobile .caption {
    margin-bottom: calc(var(--within-section-gap)/ 2);
}

.doubles-reverse {
    display: none;
}

.video {
    margin-top: calc(var(--within-section-gap)/2);
}

.video video{
    width:100%;
}


/*

        DAWN JOURNALS

*/

.dawnJournals #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/dawnJournals/dawnJournals-cover.jpg) no-repeat;
    background-size: cover;
}

/*

        HYPERSTELLAR

*/

.hyperstellar #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%),
        url(../images/hyperstellar/hyperstellar-cover2.webp) no-repeat right 40px;
    background-size: contain;
}

/*
.hyperstellar .cover-text-container {
    height: 70%;
}
*/

/*

        MCC DESN DEPT

*/

.mccdesndept #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/desndept/desndept-cover.webp) no-repeat;
    background-size: cover;
}

/*
.mccdesndept .cover-text-container {
    height: 80%;
}
*/

/*

        MCC ART GALLERY

*/

.mccartgallery #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/artgallery/artgallery-cover.webp) no-repeat;
    background-size: cover;
}

/*
.mccartgallery .cover-text-container {
    height: 80%;
}
*/

/*

                PHOTOGRAPHY PORT

*/

.photographyport #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/photographyPort/photography-cover.jpg) no-repeat center;
    background-size: cover;
}

/*
.photographyport .cover-text-container {
    height: 60%;
}
*/

#photo-process .photo-container div, #beforeAfter .beforeAfter-container div {
    margin-bottom: calc(var(--within-section-gap)/2);
}

.photographyport #website .video:first-of-type {
    margin-top: 0;
}

/*

                CRAPS

*/

.craps #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/craps/craps-cover.jpg) no-repeat right;
    background-size: cover;
}

/*
.craps .cover-text-container {
    height: 52%;
}
*/

/*

                PLANNER

*/

.planner #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/planner/planner-cover.jpg) no-repeat center 40px;
    background-size: cover;
}

/*
.planner .cover-text-container {
    height: 80%;
}
*/

/*

                AND

*/

.and #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/and/and-cover.jpg) no-repeat center;
    background-size: cover;    
}

/*

                LANDSCAPE

*/

.landscape #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/landscape/landscape-cover.jpg) no-repeat center;
    background-size: cover;
}

/*
.landscape .cover-text-container {
    height: 67%;
}
*/

/*

                FREE

*/

.free #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/free/free-cover.jpg) no-repeat center;
    background-size: cover;
}

/*

                GEN ART

*/

.genArt #cover {
    background: 
        linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%),
        url(../images/genArt/genArt-cover.webp) no-repeat center 40px;
    background-size: cover;
}

/*
.genArt .cover-text-container {
    height: 70%;
}
*/

/*

                MEDIA QUERIES

*/

@media screen and (min-width: 600px) {
    /*HOME PAGE*/
    
    .featured div {
        display: flex;
        flex-direction: column;
    }
    
    .projects {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .project {
        margin-bottom: 0;
    }
    
    .center-content {
        width: 75%;
    }
    
    .cover-text-container {
        margin-top: 0;
        height: 60%;
    }
    
    #cover, #logo, #user-persona, #site-map, #style-tile, #wireframes, #prototype, #beforeAfter, #mockup, #moodboard, #photo-process, #assets, #behindScenes, #playthrough, #website, #drafts, #final-design, #printed, #examples, #ingredients, #optimization {
        scroll-margin-top: 100px;
        /*scroll-margin-top: calc((100vh/2)-48px);*/
    }
    
    .dawnJournals #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%), url(../images/dawnJournals/dawnJournals-cover-lg.webp) no-repeat;
    }
    
    .dawnJournals .cover-text-container {
        height: 70%;
    }
    
    .hyperstellar #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 7%), url(../images/hyperstellar/hyperstellar-cover2-lg.webp) no-repeat -70px center;
    }
    
    .hyperstellar .cover-text-container {
        height: 70%;
    }
    
    .mccdesndept #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%), url(../images/desndept/desndept-cover-lg.webp) no-repeat center right;
    }
    
    .mccdesndept .cover-text-container {
        height: 75%;
    }
    
    .mccartgallery #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 100%), url(../images/artgallery/artgallery-cover-lg.webp) no-repeat center right;
    }
    
    .mccartgallery .cover-text-container {
        height: 80%;
    }
    
    .photographyport #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/photographyPort/photography-cover-lg.jpg) no-repeat center right;
    }
    
    .photographyport .cover-text-container {
        height: 75%;
    }
    
    .craps #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/craps/craps-cover-lg.jpg) no-repeat center;
        background-size: cover;
    }
    
    .craps .cover-text-container {
        height: 65%;
    }
    
    .planner #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/planner/planner-cover-lg.jpg) no-repeat right 50px;
        background-size: contain;
    }
    
    .planner .cover-text-container {
        height: 70%;
    }
    
    .free #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/free/free-cover-lg.jpg) no-repeat left;
        background-size: cover;
    }
    
    .and #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/and/and-cover-lg.webp) no-repeat left;
        background-size: cover;
    }
    
    .and .cover-text-container {
        height: 70%;
    }
    
    .landscape #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/landscape/landscape-cover-lg.jpg) no-repeat left;
        background-size: cover;
    }
    
    .landscape .cover-text-container {
        height: 70%;
    }
    
    .genArt #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/genArt/genArt-cover-lg.webp) no-repeat right 50px;
        background-size: cover;
    }
    
    .photo-container, .beforeAfter-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    
    .doubles {
        display: none;
    }
    
    .doubles-reverse {
        display: block;
    }
    
    #cover .title {
        font-size: 5rem;
    }
    
    #cover .description, #cover .team {
        max-width: 500px;
    }
    
    .video {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .video .mobile {
        width: 40%;
    }
    
    .video .caption {
        align-self: start;
    }
    
}

@media screen and (min-width: 800px) {
    
    .home .everything-container {
        width: 90%;
    }
    
    .top-content {
        width: 100%;
    }
    
    .featured {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
    
    .featured div {
        aspect-ratio: 1/1;
    }
    
    .featured .title, .featured .year {
        display: none;
    }
    
    #featured1 {
        background: url(../images/featured/featured1-sq.webp);
        background-size: contain;
    }
    
    #featured1:hover {
        background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured1-sq.webp);
        background-size: contain;
        /*background-image: ;*/
        
    }
    
    #featured2 {
        background-image: url(../images/featured/featured2-sq.jpg);
        background-size: contain;
    }
    
    #featured2:hover {
        background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured2-sq.jpg);
        background-size: contain;
    }
    
    #featured3 {
        background-image: url(../images/featured/featured3-sq.jpg);
        background-size: contain;
    }
    
    #featured3:hover {
        background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured3-sq.jpg);
        background-size: contain;
    }
    
    #featured4 {
        background-image: url(../images/featured/featured4-sq.jpg);
        background-size: contain;
    }
    
    #featured4:hover {
        background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured4-sq.jpg);
        background-size: contain;
    }
    
    #featured5 {
        background-image: url(../images/featured/featured5-sq.jpg);
        background-size: contain;
    }
    
    #featured5:hover {
        background: linear-gradient(90deg,rgba(34, 34, 34, 0.5) 0%, rgba(34, 34, 34, 0.5) 50%), url(../images/featured/featured5-sq.jpg);
        background-size: contain;
    }
    
    .greeting, .pg-title {
        font-size: 8rem;
    }
    
    .about-container {
        max-width: 600px;
    }
    
    .about-container section {
        max-width: 600px;
    }
    
    .dawnJournals #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -20%, rgba(34, 34, 34, 1) 60%), url(../images/dawnJournals/dawnJournals-cover-lg.webp) no-repeat left;
        background-size: cover;
    }
    
    .hyperstellar #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -20%, rgba(34, 34, 34, 1) 60%), url(../images/hyperstellar/hyperstellar-cover2-lg.webp) no-repeat 170px center;
        background-size: cover;
    }
    
    .mccdesndept #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -20%, rgba(34, 34, 34, 1) 60%), url(../images/desndept/desndept-cover-lg.webp) no-repeat left;
        background-size: cover;
    }
    
    .mccartgallery #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -20%, rgba(34, 34, 34, 1) 50%), url(../images/artgallery/artgallery-cover-lg.webp) no-repeat left;
        background-size: cover;
    }
    
    .free #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/free/free-cover-lg.jpg) no-repeat 150px;
        background-size: cover;
    }
    
    .and #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/and/and-cover-lg.webp) no-repeat 150px;
        background-size: cover;
    }
    
    .landscape #cover {
        background: linear-gradient(-90deg,rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/landscape/landscape-cover-lg.jpg) no-repeat 150px;
        background-size: cover;
    }
    
    .genArt #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 60%), url(../images/genArt/genArt-cover-lg.webp) no-repeat right 50px;
        background-size: contain;
    }
    
    .mccartgallery .cover-text-container {
    height: 70%;
}
    
}

@media screen and (min-width: 900px) {
    /*
    .everything-container#projects {
        display: flex;
        justify-content: end;
    }
    */
    
    .projects {
        padding-bottom: 5rem;
        /*max-width: 500px;*/
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .project-text {
        display: none;
        justify-content: end;
        align-items: start;
    }
    
    .center-content {
        width: 60%;
    }
    
    .everything-container.project-page section > picture img, iframe {
        margin-top: var(--within-section-gap);
    }
    
    .craps #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -100%, rgba(34, 34, 34, 1) 70%), url(../images/craps/craps-cover-lg.jpg) no-repeat 250px;
        background-size: cover;
    }
    
}

@media screen and (min-width: 1100px) {
    /*
    .projects {
        min-width: 700px;
        max-width: 900px;
        grid-template-columns: 1fr 1fr;
    }
    */
    
    .center-content, .everything-container.project-page section .caption {
        width: 800px;
    }
    
    .center-content p {
        width: 500px;
        justify-self: center;
    }
    
    .everything-container.project-page section > p {
        margin-top: var(--within-section-gap);
    }
    
    .everything-container.project-page section {
        margin: calc(var(--section-gap)/2) 0;
    }
    
    #cover .title {
        font-size: 5rem;
    }
    
    #cover .description {
        width: 500px;
    }
    
}

@media screen and (min-width: 1200px) {
    .hyperstellar #cover {
        background: linear-gradient(-90deg, rgba(34, 34, 34, 0) -20%, rgba(34, 34, 34, 1) 60%), url(../images/hyperstellar/hyperstellar-cover2-lg.webp) no-repeat 400px -110px;
        background-size: cover;
    }
}






