* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

html {
	scroll-behavior: smooth;
}

:root{
    --dark-color: #351E1C;
    --mid-color: #914E56;
    --light-color: #F5F4ED;
    --strong-accent-color: #E6D389;
    --soft-accent-color: #FF6037;
}

body{
    font-family: 'Neutral Face', sans-serif;
    background-color: var(--dark-color);
    cursor: default;
}
  
.lock-scroll {
    overflow: hidden;
}

header{
    position: absolute;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    z-index: 100;
    width: 100%;
    height: fit-content;
}
header .logo{
    margin-left: 3rem;
    line-height: 1;
    text-transform: uppercase;
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    padding-top: 1rem;
}
.logo span{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
}
.logo a{
    text-decoration: none;
    color: var(--strong-accent-color);
}
header .menu-items{
    display: flex;
    align-items: flex-end;
    margin-right: 3rem;
}

header .menu-items .internship{
    padding: 0 3.5rem;
    font-size: clamp(1rem, -1.75rem + 7.3333vw, 1rem);
}
@media screen and (max-width: 600px) {
   .internship{
       display: none;
   } 
}
.internship a{
    text-decoration: none;
    font-weight: bold;
    color: var(--light-color);
    opacity: 0.9;
}
.internship p{
    text-decoration: none;
    color: var(--light-color);
    opacity: 0.9;
}

.menu-items .menu{
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1;
    padding: 0 15px;
    font-weight: bold;
    overflow: hidden;
    color: black;
    text-transform: uppercase;
}
.menu-items .menu:hover{
    color: var(--soft-accent-color);
    transition: all 0.5s ease;
}
.menu-items .menu span{
    display: block;
    position: relative;
}

@media screen and (max-width: 600px) {
    header .logo{
        margin-left: 2rem;
    }
    header .menu-items{
        margin-right: 1rem;
    }
    .menu-items .menu{
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

.menu {
    cursor: pointer;
}
#menuBtnDiv2 {
    position: absolute;
    color: var(--dark-color);
}
#menuBtnDiv2:hover {
    color: var(--mid-color);
    transition: all 0.5s ease;
}

.menu-container{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    text-transform: uppercase;
    z-index: 99;
}
.menu-container .menu-container-1{
    width: 60vw;
    background-color:var(--dark-color);
}
.menu-container-1{
    display: flex;
    position: 10vh 5vw;
    flex-direction: column;
    justify-content: space-between;
    color: var(--soft-accent-color);
    padding: 15vh 8vw 4vh 8vw;
}
#h3{
    font-size: clamp(1.25rem, -1.75rem + 7.3333vw, 1.25rem);
    margin: 1.5rem 2px;
    font-weight: normal;
    overflow: hidden;
}
ul{
    list-style: none;
}
.menu-container-1 .menu-container-header li{
    font-size: clamp(2rem, -1.75rem + 7.3333vw, 3.75rem);
    margin: 10px 0;
    font-weight: bold;
    overflow: hidden;
}
.menu-container-1 .menu-container-footer li{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    font-weight: normal;
    margin: 5px 0;
    overflow: hidden;
    color: var(--soft-accent-color);
}
.menu-container-1 .menu-container-header a{
    text-decoration: none;
    color: var(--light-color);
}
.menu-container-1 .menu-container-footer a{
    text-decoration: none;
    color: var(--soft-accent-color);
}

.menu-container .menu-container-2{
    width: 60vw;
    background-color:var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--dark-color);
    padding: 15vh 8vw 4vh 8vw;
}
.menu-container-2 .menu-container-header li{
    margin: 10px 0;
    overflow: hidden;
    color: var(--mid-color);
}
#p{
    font-size: clamp(1.25rem, -1.75rem + 7.3333vw, 1.75rem);
    color: var(--mid-color);
    margin: 1rem 0;
    font-weight: lighter;
    overflow: hidden;
    text-transform: none;
    text-align: justify;
    hyphens: auto;
}
.menu-container-2 .menu-container-footer li{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    font-weight: normal;
    margin: 5px 0;
    overflow: hidden;
}
.menu-container-header li span, .menu-container-footer li span{
    display: block;
    position: relative;
}
.menu-container-header li:hover span, .menu-container-footer li:hover span{
    animation: MoveDown 0.3s forwards, MoveUp 0.2s forwards 0.2s;
}

@keyframes MoveDown {
    to {
        transform: translate3d(0,105%,0);
    }
}
@keyframes MoveUp {
    from{
        transform: translate3d(0,-100%,0);
    }
    to {
        transform: translate3d(0,0,0);
    }
}
.menu-container-2 .menu-container-footer a{
    text-decoration: none;
    color: var(--dark-color);
}

@media screen and (max-width: 600px) {

    header .logo a{
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
    .menu-container-1, .menu-container-2{
        height: 100vh;
    }
    .menu-container-1 .menu-container-header {
        padding-top: 1vh;
    }
    .menu-container-1 .menu-container-header li,
    .menu-container-1 .menu-container-footer li,
    #p,
    .menu-container-2 .menu-container-footer li {
        font-size: clamp(.9rem, -1.75rem + 7.3333vw, 1.1rem);
        font-weight: 500;
        line-height: 1.2;
    }
    #h3 {
        font-size: clamp(.90rem, -1.75rem + 7.3333vw, 1rem);
        font-weight: 300;
    }
    .menu-container-1 .menu-container-header li, 
    .menu-container-1 .menu-container-footer li, 
    .menu-container-2 .menu-container-footer li {
        font-weight: bold;
    }
    .menu-container-1 .menu-container-header li, 
    .menu-container-2 .menu-container-footer li{
        font-size: clamp(1.2rem, -1.75rem + 7.3333vw, 1.5rem);
    }
    .menu-container-1 .menu-container-footer,
    .menu-container-2 .menu-container-footer{
        margin-bottom: 6vh;
    }
    
}


.spacer{
    height: 14.7vh;
}

.marquee {
    position: relative;
    background:linear-gradient(180deg, var(--dark-color) 0%, rgba(0,0,0,1) 100%);
    color: var(--light-color);
    padding: 30px 0;
    font-weight: lighter;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    width: fit-content;
    flex: auto;
    flex-direction: row;
}
.marquee-part {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4px;
}
.marquee-part .arrow {
    height: 2.5rem;
    width: 3rem;
    margin: 0 1em;
    transform: rotate(130deg);
    transition: all 1s cubic-bezier(0.075,0.82,0.165,1);
    color: var(--soft-accent-color);
}
.marquee-part .arrow.active {
    transform: rotate(180deg);
    transition: all 1s cubic-bezier(0.075,0.82,0.165,1);
    color: black;
}

.card-slider {
    width: 100vw;
    height: 100vh;
    background-color: black;
    position: relative;
}

.nav .prev, .nav .next {
    position: absolute;
    height: 2rem;
    width: 2rem;
    stroke: var(--light-color);
    z-index:2;
    cursor: pointer;
    pointer-events: auto;
}

.nav .prev{
    bottom: 0.5rem;
    right:4rem;
    transform: scale(2);
}
.nav .next{
    top:36rem;
    right:4rem;
    transform: scale(2) rotate(180deg);
}
@media(max-width:600px) {
    .card-slider {
        height: 60vh;
    }
    .marquee{
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        font-weight: normal;
    }
    .nav .prev{
        bottom: 6rem;
        right: 4rem;
    }
    .nav .next{
        top: 14rem;
        right: 4rem;
    }
}

.card-slider .items .item{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-slider .item .is-active{
    cursor: pointer;
    pointer-events: auto;
}

.card-slider .item a.title{
    position: absolute;
    top: 90%;
    left: 2.5rem;
    transform: translate(0, -50%);
    margin: 0;
    font-size: 8vw;
    text-transform: uppercase;
    line-height: 1.5;
    z-index: 3;
    color: var(--light-color);
}
.card-slider .item a.title span{
    display: inline-block;
    white-space: nowrap;
}
.card-slider .item a.title .letter{
    display: inline-block;
}

.card-slider .item:not(.is-active){
    pointer-events: none;
}
.card-slider .item:not(.is-active) a.title{
    opacity: 0;
}

.card{
    height: 100%;
    width: 100%;
    position: relative;
}
.card img{
    width: 100%;
    object-fit: contain;
    opacity: 1;
}
.card-slider .item:not(.is-active) .card img{
    opacity: 0;
}

.card .card-bg{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    transform: scale(1.2);
    transition: all 2s cubic-bezier(0.86,0,0.07,1);
}
.card.is-active .card-bg{
    transform: scale(1);
}

.item-counter{
    position: absolute;
    bottom: 8%;
    right: 2.5rem;
    transform: translateX(-50%);
    height: 24px;
    color: var(--strong-accent-color);
    display: flex;
}

@media(max-width:600px) {
    .card-slider .item a.title{
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .item-counter{
        bottom: 17%;
    }
}

.spacer2{
    height: 15vh;
    background:linear-gradient(180deg,rgba(0,0,0,1) 0%, var(--dark-color) 100%);
}

.about{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15% 0 2% 0;
    background-color: var(--mid-color);
}
.about-hero{
    padding: 0 3rem;
}
.about-hero h2{
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: black;
    margin-right: 30rem;
}
.about-hero:hover h2{
    background: linear-gradient(98deg,var(--mid-color), var(--light-color)) var(--mid-color) no-repeat 0 0;
    background-size: 0 100%;
    animation: stripes 1s linear 1 forwards;
    padding: .2rem 0;
}
@keyframes stripes {
    to {
      background-size: 100% 100%;
    }
}

.about-hero h3{
    font-size: clamp(1.25rem, -1.75rem + 7.3333vw, 1.25rem);
    margin: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    padding-top: 2rem;
    color: var(--strong-accent-color);
    opacity: 0.9;
}
.about-hero ul{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.about-hero li{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    text-transform: uppercase;
    color: var(--strong-accent-color);
    padding: 0 0.3rem;
    line-height: .5;
}

.about-title{
    font-size: 8vw;
    line-height: 1;
    color: var(--light-color);
    font-weight: lighter;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.about-title i{
    font-weight: normal;
    font-style: italic;
}

@media screen and (max-width: 600px) {
    .about{
        padding-top: 9rem;
    }
    .about-hero{
        padding-left: 1.7rem;
        padding-right: 1.7rem;
    }
    .about-hero br{
        display: none;
    }
    .about-hero h1{
        font-size: clamp(2rem, 9vw, 3.5rem);
        text-align: center;
        text-transform: none;
    }
    .about-hero h2{
        margin-right: 1%;
        font-size: clamp(1.1rem, -1.75rem + 7.3333vw, 1.5rem);
        text-align: justify;
        hyphens: auto;
        text-transform: none;
        font-weight: normal;
    }
    .about-hero h3{
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    .about-hero ul{
        gap: .5rem;
    }
    .about-hero li{
        line-height: 1;
        font-size: clamp(1.2rem, -1.75rem + 7.3333vw, 1.5rem);
    }

}

.spacer3{
    height: 15vh;
    background:linear-gradient(180deg, var(--mid-color) 0%, var(--dark-color) 100%);
}

.container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.row{
    width: 100%;
    display: flex;
    margin-bottom: 1.5rem;
}
#row-1{
    margin-top: 30vh;
}

.col{
    height: 100%;
}
@media screen and (max-width: 600px) {
    .row{
        gap: none;
        -webkit-backdrop-filter: blur(8px); 
        backdrop-filter: blur(8px);
        margin-bottom: 0;
    }
    #row-1{
        margin-top: 50vh;
    }
    .container{
        margin-bottom: -2.2rem;
    }
}

.intro-copy{
    position: fixed;
    top: 50%;
    left: 25%;
    width: 30%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.intro-copy h3{
    color: var(--mid-color);
    text-transform: uppercase;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin: 2rem 2px;
    font-weight: normal;
    overflow: hidden;
}
.intro-copy p{
    color: var(--mid-color);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
    text-align: start;
    font-weight: lighter;
}

.img-container{
    width: 30%;
    height: fit-content;
}
@media screen and (max-width: 600px) {
    .img-container{
        width: 60%;
        margin-bottom: 1.5rem;
    }
    .intro-copy{
        left: 50%;
        width: 85%;
    }
    .intro-copy h3{
        margin-left: 1rem;
    }
    .intro-copy p{
        font-size: clamp(1.2rem, -1.75rem + 7.3333vw, 1.5rem);
        font-weight: normal;
        text-align: justify;
        hyphens: auto;
    }
}
.img-container.left{
    text-align: right;
}
.img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right{
    padding-right: 9rem;
}
.left{
    padding-left: 5rem;
}

.col:nth-child(1){
    flex: 2;
    display: flex;
    justify-content: right;
}
.col:nth-child(3){
    flex: 4;
}

#row-3{
    hyphens: manual;
}
#row-3 i{
    color: var(--mid-color);
}
#row-4{
    margin-left: 15.75rem;
    hyphens: manual;
}
#row-6{
    margin-left: 26.25rem;
}

#row-2 .img-container.left{
    width: 45%;
}

.img-container h4{
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--soft-accent-color);
    text-transform: uppercase;
}
.img-container #h4{
    color: var(--strong-accent-color);
}
.img-container p{
    text-transform: normal;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: lighter;
    color: var(--light-color);
    position: relative;
    padding: .3rem .3rem;
    opacity: 0.9;
    text-align: justify;
    hyphens: auto;
}
.img-container b{
    color: var(--soft-accent-color);
}

@media screen and (max-width: 600px) {
    .col:nth-child(1){
        display: grid;
        flex-direction: column;
    }
    
    .row{
        padding-left: 0;
    }
    
    .left{
        padding-right: 8vw;
    }
    .right{
        padding-left: 7vw;
    }

    .img-container p{
        font-size: clamp(1rem, -1.75rem + 7.3333vw, 1.2rem);
        line-height: 1.3;
        font-weight: normal;
        text-transform: normal;
    }
    #row-1, #row-2, #row-3, #row-5{
        width: 180%;
    }
    #row-2{
        padding-left: 10vw;
    }
    #row-4, #row-6{
        width: 163%;
        padding-left: 10vw;
        margin-left: 0;
    }
    #row-2 .img-container.left{
        width: 54%;
    }
    .img-container h4{
        margin-top: .6rem;
    }
}

.img-container.right img{
    clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
}
.img-container.left img{
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

.exp-container{
    width: 100%;
    height: 100%;
}

.exp-preview{
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.preview-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.preview-img img{
    position: absolute;
    top: 0;
    left: 0;
    height: 30vh;
}

.exp-menu{
    width: 100%;
    padding: 5% 3rem;
    -webkit-backdrop-filter: blur(6px); 
    backdrop-filter: blur(6px);
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.exp-head {
    padding: 5% 3rem;
}
.exp-head h2{
    font-size: clamp(2rem, -1.75rem + 7.3333vw, 3.75rem);
    margin: 10px 0;
    color: var(--light-color);
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: normal;
}
.exp-head h2 span{
    font-weight: bold;
}
.exp-menu:hover .exp-info p:nth-child(1),
.exp-menu:hover .exp-name p:nth-child(1),
.exp-menu:hover .exp-date p:nth-child(1){
    color: var(--mid-color);
}

.exp-item{
    width: 100%;
    display: flex;
}
.exp-item p{
    color: var(--mid-color);
    opacity: 0.9;
    width: 100%;
    position: absolute;
    text-transform: uppercase;
    line-height: 1;
}
.exp-info p:nth-child(2), .exp-name p:nth-child(2), .exp-date p:nth-child(2){
    top: 100%;
    color: var(--strong-accent-color);
}

.exp-info, .exp-name, .exp-date{
    position: relative;
    overflow: hidden;
}
.exp-info, .exp-date{
    flex: 1;
    height: 3rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: lighter;
}
.exp-date{
    text-align: right;
    overflow: hidden;
}
.exp-name{
    flex: 4;
    height: 5vh;
    color: var(--mid-color);
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

@media screen and (max-width: 600px) {
    .exp-head{
        padding: 3.5rem 0;
    }
    .exp-head h2{
        font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    }

    .exp-menu{
        margin: 2em 0 0 0;
        padding: 4rem 1.7rem;
    }
    .exp-item p{
        color: var(--mid-color);
    }
    .exp-info, .exp-date {
        font-weight: normal;
    }
    .exp-date{
        overflow: scroll;
    }
    .exp-info{
        flex: 3;
    }
    .exp-info p{
        font-size: clamp(.9rem, -1.75rem + 7.3333vw, 1.2rem);
        font-weight: bold;
        hyphens: auto;
    }
    .exp-name{
        text-align: center;
        height: 20vh;
        overflow: hidden;
    }
    .exp-item:nth-child(2){
        height: 18vh;
        overflow: hidden;
    }
    .exp-item:nth-child(3){
        height: 14vh;
        overflow: hidden;
    }
    .exp-item:nth-child(4){
        height: 18vh;
        overflow: hidden;
    }
    .exp-item:nth-child(5), .exp-item:nth-child(6){
        height: 11vh;
        overflow: hidden;
    }
    .exp-item:nth-child(7){
        height: 18vh;
        overflow: hidden;
    }
    .exp-name p{
        font-size: clamp(1.2rem, -1.75rem + 7.3333vw, 1.5rem);
        line-height: 1.3;
    }
    .preview-img img{
        height: 20vh;
    }
    
}




.spacer4{
    width: 100%;
    height: 10vh;
    background-color: linear-gradient(180deg, transparent 0%, var(--dark-color) 100%);
}

.notice{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice-head{
    padding: 5% 3rem;
    background-color: var(--dark-color);
}
.notice-head h2{
    font-size: clamp(2rem, -1.75rem + 7.3333vw, 3.75rem);
    margin: 10px 0;
    color: var(--light-color);
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: normal;
}
.notice-head h2 span{
    font-weight: bold;
}

.notice-container{
    display: flex;
    flex-direction: row;
    gap: 5rem;
}
.notice-container h3{
    font-size: clamp(1.25rem, -1.75rem + 7.3333vw, 1.25rem);
    margin: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    padding-top: 2rem;
    color: var(--mid-color);
}
.notice-container p{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    text-transform: uppercase;
    color: var(--mid-color);
    padding: 0 0.3rem;
    line-height: 1.3;
}
.notice-container-1:hover h3, .notice-container-1:hover p,
.notice-container-2:hover h3, .notice-container-2:hover p{
    color: var(--strong-accent-color);
    transition: all 0.5s ease;
}

.notice-container-1, .notice-container-2 {
    width: 50%;
}

@media screen and (max-width: 600px) {
    .notice{
        overflow: hidden;
    }
    .notice-head{
        padding: 3.5rem 2rem;
    }
    .notice-head h2{
        font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    }
    .notice-container h3{
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    .notice-container p{
        font-size: clamp(1.2rem, -1.75rem + 7.3333vw, 1.5rem);
        hyphens:auto;
    }
    .notice-container{
        flex-direction: column;
        gap: 0;
    }
    .notice-container-1, .notice-container-2 {
        width: 100%;
    }
}


.projects{
    margin: 0 0 2% 0;
    width: fit-content;
}
.projects h1{
    font-size: 7vw;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--strong-accent-color);
}
.projects li{
    font-size: (1.5rem, 3vw, 2rem);
    color: var(--mid-color);
    font-weight: 400;
}
.projects span{
    font-size: 1.6rem;
}

.nav-projects{
    flex-wrap: wrap;
    position: sticky;
    width: 45vw;
    height: 6vh;
    overflow: hidden;
    top: 2rem; 
    left:53%;
    z-index: 1;
    padding:1rem;
    background-color: var(--dark-color);
}

.nav_wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 1fr;
}

.nav_list{
    display: flex;
    width: 100%;
    gap: 1.4rem;
    height: fit-content;
    padding: 0;
    grid-area: 1/1/2/2;
}

.nav_list_item {
    cursor: pointer;
    z-index: 1;
    font-size: clamp(0.5rem, -1.75rem + 7.3333vw, 1rem);
    height: fit-content;
    width: max-content;
}
.nav_list_item:hover {
    background: linear-gradient(98deg,var(--dark-color), var(--soft-accent-color)) var(--dark-color) no-repeat 0 0;
    background-size: 0 100%;
    animation: stripes 0.8s linear 1 forwards;
    color: var(--light-color);
    transition: color 0.2s ease;
}
@keyframes stripes {
    to {
      background-size:100% 100%;
    }
  }
.nav_list_item.active {
    background: var(--mid-color);
    color: var(--strong-accent-color);
    background-size: 0 100%;
    padding: 0 0.3rem;
    font-weight: 600;
}

.nav_description {
    grid-area: 1/2/2/3;
    width: max-content;
    height: fit-content;
}
.nav_description p {
    margin-bottom: 1.6rem;
    color: var(--mid-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(0.5rem, -1.75rem + 7.3333vw, 1rem);
    height: fit-content;
}
.nav_extra {
    grid-area: 1/3/2/4;
}

.view {
    position: relative;
    width: 100%;
    padding: 0 2rem 2rem 2rem;
    overflow: hidden;
}
.view_item {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
}
.view_info{
    display: inherit;
    gap: inherit;
}
.view_info_text span{
    display: block;
    font-size: (0.6rem, 1vw, 0.8rem);
    color: var(--mid-color);
    margin-right: 1.5vw;
}
.view_info_media {
    display: flex;
    gap: 1rem;
    margin-right: 1.5vw;
}
.view_info_media_image {
    position: relative;
    width: 9rem;
    height: 9rem;
    object-fit: cover;
}

.view_text{
    display: inline-flex;
    align-items:flex-end;
    white-space: nowrap;
}
.view_text h1:nth-child(2) {
    opacity: 0.4;
}
a.view_link {
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items:flex-end;
    white-space: nowrap;
}

.projects .view_wrapper{
    overflow:scroll;
}

@media screen and (max-width: 600px) {
    .nav-projects{
        margin-top: 0;
        padding-top: 0;
    }
    .projects h1{
        font-size: 3rem;
    }
    .projects p, .projects span, .projects li{
        font-size: clamp(.90rem, -1.75rem + 7.3333vw, 1rem);
        font-weight: normal;
    }
    .projects .nav_wrapper{
        display: block;
    }
    .projects .nav_description{
        margin-top: 2rem;
    }
    .projects .nav_list{
        flex-wrap: wrap;
        gap: 1rem;
        line-height: 1.5;
    }
    
    .projects .view {
        margin-top: 2vh;
        padding-bottom: 5vh;
    }
    .projects .view_wrapper{
        margin-top: 2.5vh;
    }
    .projects .view_item{
        flex-direction: row-reverse;
        margin-top: 1vh;
    }
    .projects .view_info_text, .projects .view_text_field {
        display: none;
    }
    .projects .view_info_media_image {
        width: 4.5rem;
        height: 4.5rem;
    }
    .projects .view_info_media_image:nth-last-child(2) {
        display: none;
    }
    .projects .view_text {
        flex-direction: column;
        padding-left: .5rem;
        align-items:flex-start;
    }
    .projects .view_text h1:nth-child(1) {
        font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    }
    .projects .view_text h1:nth-child(2) {
        font-size: clamp(.9rem, -1.75rem + 7.3333vw, 1.1rem);
        font-weight: bold;
    }
}

.footer{
    background-color: black;
    color: var(--light-color);
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem 3rem 3rem 3rem;
}

.footer-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.footer-wrapper li:nth-child(1),
.footer-wrapper li:nth-child(2),
.footer-wrapper li:nth-child(3){
    text-align: start;
    overflow: hidden;
}
.footer-wrapper li:nth-child(4){
    text-align: end;
    overflow: hidden;
}
.footer-wrapper li a#link-page-footer{
    text-decoration: none;
    color: var(--soft-accent-color);
    font-weight: bold;
}
.footer-wrapper li a#link-page-footer:hover{
    color: var(--strong-accent-color);
}
.footer-wrapper li a{
    text-decoration: none;
    color: var(--mid-color);
    font-weight: normal;
}
.footer-wrapper li a:hover{
    color: var(--strong-accent-color);
    transition: all 0.5s ease;
}
.footer-wrapper p{
    color: var(--dark-color);
    opacity: 0.9;
    font-weight: lighter;
}

@media screen and (max-width: 600px) {
    .footer-wrapper{
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }
}

.page-container {
    width: 100%;
    height: 100%;
    padding-top: 15vh;
}

.map{
    position: fixed;
    width: 23%;
    padding: 5vh 3vw 5vh 3vw;
    height: 100%;
}
.map > div{
    height: 6vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3vh;
    margin-top: 2vh;
    padding: 0.5rem;
    border: 1.5px solid;
    transition: height 0.5s;
    overflow: hidden;
}
.map .s-1.active a, .map .s-2.active a, .map .s-3.active a, .map .s-4.active a{
    font-weight: normal;
    color: var(--light-color);
    opacity: 0.9;
}
.map .s-1 a, .map .s-2 a, .map .s-3 a, .map .s-4 a{
    cursor: pointer;
    text-decoration: none;
    color: var(--soft-accent-color);
}
.map .s-1, .map .s-2, .map .s-3, .map .s-4{
    text-transform: uppercase;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: lighter;
    text-align: center;
}
.map .s-1:not(.active):hover, .map .s-2:not(.active):hover, .map .s-3:not(.active):hover, .map .s-4:not(.active):hover{
    background: linear-gradient(98deg,var(--dark-color), var(--mid-color)) var(--dark-color) no-repeat 0 0;
    background-size: 0 100%;
    animation: stripes 1s linear 1 forwards;
}


@media screen and (max-width: 600px) {
    .map{
        display: none;
    }
}

.sections {
    position: absolute;
    width: 77%;
    height: 100%;
    left: 23%;
    padding: 5vh 3vw 0 0;
}
.sections > div{
    width: 100%;
    margin: 0 0 10vh 0;
}

@media screen and (max-width: 600px) {
    .sections{
        width: 100%;
        left: 0;
        padding: 0 6vw;
    }
}

.section-1{
    height: fit-content;
}
.section-2{
    height: fit-content;
}
.section-3{
    height: fit-content;
}
.section-4{
    height: fit-content;
}

.section-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3vh;
    padding: 2vh 2vw;
    border: 1.5px solid;
    font-size: 14px;
    color: var(--soft-accent-color);
    text-transform: uppercase;
}

.copy{
    width: 100%;
    height: 100%;
    padding: 2rem;
    border: 1.5px solid;
}

.copy h2{
    font-weight: bold;
    font-size: clamp(2rem, -1.75rem + 7.3333vw, 3.75rem);
    text-transform: uppercase;
    color: var(--strong-accent-color);
}
.copy h4{
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--light-color);
    opacity: 0.9;
}
.copy p{
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.3;
    text-align: justify;
    text-transform: none;
    hyphens: auto;
    text-align-last: left;
}
.copy:hover{
    background: linear-gradient(98deg,var(--dark-color), var(--mid-color)) var(--dark-color) no-repeat 0 0;
    background-size: 0 100%;
    animation: stripes 1s linear 1 forwards;
}
.copy .tags-wrapper{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
}
#section-1 .copy li{
    border: var(--mid-color) 1.5px solid;
    color: var(--mid-color);
    border-radius: 2rem;
    padding: .5rem;
}
#section-1:hover .copy li{
    border: var(--strong-accent-color) 1.5px solid;
    border-radius: 2rem;
    color: var(--strong-accent-color);
    transition: all 0.5s ease;
}
.copy .tags-wrapper .tag{
    font-size: clamp(.75rem, -1.75rem + 7.3333vw, 1rem);
    font-weight: normal;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .copy h1{
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    .copy h2{
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        font-weight: 400;
    }
    .copy li{
        font-weight: normal;
    }
    .copy .tags-wrapper{
        margin-top: .5rem;
        flex-wrap: wrap;
    }
}

.map .s-1, .map .s-2, .map .s-3, .map .s-4,
.section-header, .copy{
    border: 1.5px solid var(--mid-color);
}
.map .active {
    background-color: var(--mid-color);
    color: var(--light-color);
}
.sections .active {
    background-color: var(--mid-color);
    color: var(--light-color);
}

/* 
.page-whitespace2{
    width: 100%;
    height: 100vh;
} */

.copy-display{
    height: 80vh;
    margin: 0;
}

.grid-gallery{
    width: 100%;
    overscroll-behavior: none;
    overflow: hidden;
}

.copy-gallery, .copy-gallery-2{
    display: grid;
    grid: auto / repeat(2, auto);
    gap: 1rem;
    overflow: hidden;
}

.more {
    display: none;
    grid-column: span 2;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 0;
    padding-bottom: 0;
}
#btn-more{
    margin: 2rem auto 0 auto;
    background-color: transparent;
    color: var(--light-color);
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border: solid 2px var(--light-color);
    padding: .5rem 7rem;
    display: block;
    text-align: center;
}
#btn-more:hover{
    padding: .5rem .5rem;
    color: var(--strong-accent-color);
    border-color: var(--strong-accent-color);
    transition: all 0.5s ease-in-out 1s;
}

@media screen and (max-width: 600px) {
    .copy-display{
        height: 40vh;
    }
    #btn-more{
        padding: .5rem 4rem;
        margin: 2rem auto 0 auto;
    }
    #btn-more:hover{
        justify-content: center;
        align-items: center;
        margin: 2rem auto 0 auto;
    }
}

.visual{
    height: 100%;
    width: 100%;
    background-size: cover;
    position: relative;
    grid-column: span 2;
}
#twovisuals{
    grid-column: span 1;
}

.modal{
    display: none;
    position: fixed; 
    z-index: 99; 
    padding-top: 20vh;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden;
}

.modal-content{
    margin: auto;
    display: block;
    width: 80%;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .modal-content {
        width: 100%;
    }
}

a.page-footer{
    text-decoration: none;
    color: var(--mid-color);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}
a.page-footer:hover{
    color: var(--strong-accent-color);
    transition: all 0.5s ease;
}




/* SHOP */

header .logo2{
    margin-left: 3rem;
    line-height: 1;
    text-transform: uppercase;
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    padding-top: 1rem;
}
.logo2 span{
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
}
.logo2 a{
    text-decoration: none;
    color: var(--mid-color);
}
#return a{
    background-color: var(--light-color);}
#return:hover a{
    background-color: var(--strong-accent-color);
    transition: all 0.3s ease;
}
header .menu-items2{
    display: flex;
    align-items: flex-end;
    margin-right: 3rem;
}
header .menu-items2 span{
    color: var(--mid-color);
}
header .menu-items2 .contact-shop{
    padding-top: .5rem;
    line-height: 1.3;
    font-size: clamp(1rem, -1.75rem + 7.3333vw, 1rem);
}
.contact-shop a{
    text-decoration: none;
    font-weight: bold;
    color: var(--mid-color);
    opacity: 0.9;
}
.contact-shop p{
    text-decoration: none;
    color: var(--mid-color);
    opacity: 0.9;
}

.products-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 20vh 3vw 3vh 3vw ;
    height: 20%;
}
.products-gallery p{
    color: var(--mid-color);
    opacity: 0.9;
    line-height: 1.3;
    text-align: justify;
    text-transform: none;
    hyphens: auto;
    text-align-last: left;
}
.products-gallery .tags-wrapper{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
}
.products-gallery .tags-wrapper .tag{
    font-size: clamp(.75rem, -1.75rem + 7.3333vw, 1rem);
    font-weight: normal;
    text-transform: uppercase;
}
.products-gallery .overlay{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0;
}
.products-gallery .figure1:hover .figure-img, .figure2:hover .figure-img, .figure3:hover .figure-img, .figure4:hover .figure-img, .figure5:hover .figure-img, .figure6:hover .figure-img, .figure7:hover .figure-img, .figure8:hover .figure-img, .figure9:hover .figure-img {
    opacity: 0.1;
    transition: all 0.5s ease;
}
.products-gallery .overlay h3{
    margin-bottom: 1rem;
    color: var(--light-color);
    line-height: 1.3;
}
.products-gallery .overlay p{
    text-transform: none;
    margin-bottom: 1rem;
    color: var(--light-color);
    line-height: 1.3;
}
.overlay a{
    text-decoration: none;
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    color: var(--strong-accent-color);
    background-color: var(--dark-color);
    padding: .5rem 1rem;
    text-align: center;
    width: fit-content;
}
.overlay span{
    color: var(--soft-accent-color);
}
.products-gallery .figure1:hover .overlay, .figure2:hover .overlay, .figure3:hover .overlay, .figure4:hover .overlay, .figure5:hover .overlay, .figure6:hover .overlay, .figure7:hover .overlay, .figure8:hover .overlay, .figure9:hover .overlay{
    opacity: 1;
    transition: all 0.5s ease;
}
.products-gallery a:hover {
    transition: all 0.3s ease;
    background-color: var(--mid-color);
    width: fit-content;
}
.products-gallery .overlay button{
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.info-stickers, .info-prints, .info-goodies {
    grid-column: span 1;
    grid-row: span 2;
}
.info-stickers, .info-prints, .info-goodies{
    padding: 2.5rem;
    background-color: var(--light-color);
    color: var(--mid-color);
    overflow: hidden;
    height: 50vh;
}
.info-stickers li, .info-prints li, .info-goodies li {
    border: var(--soft-accent-color) 1.5px solid;
    color: var(--soft-accent-color);
    border-radius: 2rem;
    padding: .5rem;
}
.info-stickers:hover li, .info-prints:hover li, .info-goodies:hover li {
    border: var(--dark-color) 1.5px solid;
    border-radius: 2rem;
    color: var(--dark-color);
    transition: all 0.5s ease;
}

.figure2 , .figure3, .figure4, .figure5, .figure8 {
    grid-column: span 2;
    grid-row: span 2;
}
.figure1, .figure2, .figure3, .figure4, .figure5, .figure6, .figure7, .figure8, .figure9{ 
    position: relative;
    height: 50vh;
    background-color: var(--dark-color);
}
.figure-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 600px) {
    header{
        position: sticky;
        top: 0;
        z-index: 2;
        background-color: var(--strong-accent-color);
        justify-content:space-between;
        gap: 0.5rem;
    }
    header .logo2{
        font-size: clamp(1rem, 5vw, 1.5rem);
    } 
    header .logo2 .span-subtitle{ 
        display: none;
    }

    header .menu-items2 .contact-shop{ 
        font-size: clamp(.9rem, -1.75rem + 7.3333vw, 1rem);
        flex-direction: column;
    }

    .header-mobile{
        display: flex;
        justify-content:space-between;
        padding: 0.5rem 0;
        background-color: var(--dark-color);
    }

    #return a{
        z-index: 3;
        font-weight: 600;
        padding: 0.5vh;
    }

    .contact-shop a span{
        color: var(--dark-color);
    }
    .contact-shop p{
        color: var(--mid-color);
    }
    .header-mobile .contact-shop{
        flex-direction: row;
    }

    .header-mobile #return a{
        background-color: var(--dark-color);
        font-weight: 500;
    }
    .header-mobile .contact-shop a span{
        
        color: var(--soft-accent-color);
    }
    .header-mobile .contact-shop:hover{
        background-color: var(--dark-color);
    }

    .products-gallery{
        display: flex;
        flex-direction: column;
        padding: 0vh 10vw 3vh 10vw;
    }

    .info-stickers, .info-prints, .info-goodies{
    height: fit-content;
    }

    .figure1 {
        grid-column: span 1;
    }

}

.footer-shop{
    color: var(--mid-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 0rem 3rem 0 3rem;
    text-align: right;
}


.scroll-container {
    overflow: auto;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
  }
.scroll-container img {
    height: 70vh;
  }

.page-product{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 5vh 5vw 0vh 5vw;
}
.page-product h2{
    font-weight: bold;
    font-size: clamp(2rem, -1.75rem + 7.3333vw, 3.75rem);
    text-transform: uppercase;
    color: var(--strong-accent-color);
}
.category-product .tags-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: fit-content;
}
.category-product .tags-wrapper .tag{
    font-size: clamp(.75rem, -1.75rem + 7.3333vw, 1rem);
    font-weight: normal;
    text-transform: uppercase;
    border: var(--mid-color) 1.5px solid;
    color: var(--mid-color);
    border-radius: 2rem;
    padding: .5rem;
    width: fit-content;
}
.info-product{
    grid-column: span 4;
}
.info-product p{
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.3;
    text-align: justify;
    text-transform: none;
    hyphens: auto;
    text-align-last: left;
    margin-top: 0.5rem;
}
.info-product b{
    color: var(--mid-color);
    font-weight: bold;
}

.list {
    display: inline-grid;
    grid-template-columns: repeat(3, auto);
}
.list li{
    line-height: 1.5;
    hyphens: auto;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.buy-product{
    padding-left: 2rem;
}

@media screen and (max-width: 600px) {
    .page-product{
        display: flex;
        flex-direction: column;
        padding: 7vh 7vw 3vh 7vw;
    }
    .scroll-container{
        top:0;
    }
    .info-product{
        grid-column: span 3;
    }
    .info-product p{
        text-align: left;
    }
    .list{
        margin-top: 0.5rem;
        grid-template-columns: repeat(2, auto);
        gap: 0.5rem;
    }
    .buy-product{
        padding: 2rem 0;
        text-align: center;
    }
}


.pp-XM4VETAF6SJRA, .pp-MLEZFY9M7R4VE, .pp-H8LYVDHXCD732, .pp-H6KH2AZEKSNCJ, .pp-YMKQLBV89USJ2, .pp-5QRPWGX82KGWL, .pp-JCVPUY53KUYCS {
    text-align:center;
    border:none;
    border-radius:25rem;
    min-width:11.625rem;
    padding:0 2rem;
    height:2.625rem;
    font-weight:bold;
    background-color:var(--mid-color);
    color:var(--strong-accent-color);
    font-size:1rem;
    line-height:1.3rem;
    cursor:pointer;
}
.pp-XM4VETAF6SJRA:hover, .pp-MLEZFY9M7R4VE:hover, .pp-H8LYVDHXCD732:hover, .pp-H6KH2AZEKSNCJ:hover, .pp-YMKQLBV89USJ2:hover, .pp-5QRPWGX82KGWL:hover, .pp-JCVPUY53KUYCS:hover {
    background-color: var(--soft-accent-color);
    color: var(--light-color);
    transition: all 0.5s ease;
}
.buy-product form{
    display:inline-grid;
    justify-items:center;
    align-content:start;
    gap:0.5rem;
}

@media screen and (max-width: 600px) {
    .pp-XM4VETAF6SJRA, .pp-MLEZFY9M7R4VE, .pp-H8LYVDHXCD732, .pp-H6KH2AZEKSNCJ, .pp-YMKQLBV89USJ2, .pp-5QRPWGX82KGWL {
        min-width: 7rem;
        height: 2rem;
        font-size: .9rem;
    }
    .category-product{
        display: none;
    }
}



.thanks{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 4rem;
}
.thanks h1{
    font-size: clamp(2rem, 9vw, 3.5rem);
    text-transform: uppercase;
    font-weight: bold;
    color: var(--light-color);
    margin-bottom: 2vh;
}
.thanks h4{
    font-size: clamp(1.25rem, -1.75rem + 7.3333vw, 1.25rem);
    font-weight: bold;
    color: var(--mid-color);
    text-transform: uppercase;
}
.thanks p{
    font-size: clamp(1rem, -1.75rem + 7.3333vw, 1.25rem);
    color: var(--light-color);
    margin: 0 20vw;
    font-weight: lighter;
    overflow: hidden;
    text-transform: none;
    text-align: justify;
    hyphens: auto;

}
.thanks ul{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.thanks li{
    padding: .5rem;
    line-height: 1.3;
    text-align: center;
}
.thanks a{
    text-decoration: none;
    font-weight: bold;
    color: var(--soft-accent-color);
    font-size: clamp(1.5rem, -1.75rem + 7.3333vw, 2rem);
    font-weight: normal;
}
.thanks a:hover{
    color: var(--strong-accent-color);
    transition: all 0.5s ease;
}

@media screen and (max-width: 600px) { 
    .thanks{ padding: 0 4rem;
        height: 88vh;
    overflow:hidden; 
    } 
    .thanks h1{ font-size: clamp(1.5rem, 9vw, 2.5rem); } 
    .thanks h4{ font-size: clamp(1rem, -1.75rem + 7.3333vw, 1.25rem);} 
    .thanks p{ font-size: clamp(.9rem, -1.75rem + 7.3333vw, 1.2rem); 
        margin: 0; 
        color: var(--strong-accent-color);
    } 
    .thanks ul{ flex-direction: column; gap: 1rem; } 
    .thanks li a{ color: var(--soft-accent-color); }
    .thanks li a:hover{ color: var(--light-color); }
}

.marquee-pop-up {
    width: 100%;
    background: var(--strong-accent-color);
    padding: 1rem 0;
    font-size: clamp(1rem, 3vw, 1.4rem);
    overflow: hidden;
    position: relative;
    top: 18vh;
    border-top: solid 0.2rem var(--soft-accent-color);
    border-bottom: solid 0.2rem var(--soft-accent-color);
}
.marquee-pop-up .marquee-inner {
    display: flex;
    width: fit-content;
    flex: auto;
    flex-direction: row;
}
.marquee-pop-up .marquee-part {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.marquee-pop-up .marquee-part .arrow {
    height: 3.5rem;
    transform: rotate(130deg);
    transition: all 1s cubic-bezier(0.075,0.82,0.165,1);
    color: var(--dark-color);
}

.marquee-pop-up p {
    font-weight: 500;
    color: var(--soft-accent-color);
}

@media screen and (max-width: 600px) {
    .marquee-pop-up{
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        font-weight: normal;
        top:auto;
        padding: .15rem 0;
        margin-bottom: 1rem;
    }

    .marquee-pop-up p {
    font-weight: 600;
}
}