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



html,
body{
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

/* BODY */

body{
    background: #ffffff;
    font-family: "Inter", sans-serif;
    transition: background 0.35s ease;
}

body.dark{
    background: #171717;
}

/* NAVBAR */

.navbarLight{
    width: 100%;
    padding: 1.25rem;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;
}

/* LEFT */

.logo img{
    width: 2rem;
    height: 2rem;

    object-fit: contain;
}

/* CENTER */

.navMiddle{
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuWrapper{
    position: relative;
}

/* MENU BUTTON */

.menuBtn{
    height: 2.375rem;

    padding: 0.4rem 0.6rem;

    border: none;
    border-radius: 999px;

    background: #171717;

    display: flex;
    align-items: center;
    gap: 0.75rem;

    cursor: pointer;

    position: relative;
    z-index: 10;

    white-space: nowrap;

    transition: background 0.35s ease;
}

body.dark .menuBtn{
    background: #2A2A2A;
}

/* MENU ICON */

.menuIcon{
    width: 1rem;
    height: 0.8rem;

    position: relative;

    flex-shrink: 0;
}

.menuLine{
    position: absolute;
    left: 0;

    width: 100%;
    height: 1.5px;

    background: #F8F8F8;
    border-radius: 999px;

    transition: all 0.3s ease;
}

.menuLine.top{
    top: 0.1rem;
}

.menuLine.bottom{
    bottom: 0.1rem;
}

/* MENU TEXT */

.menuText{
    color: #F8F8F8;

    font-size: 0.85rem;
    font-weight: 400;

    flex-shrink: 0;
}

/* DIVIDER */

.divider{
    width: 1px;
    height: 1rem;

    background: rgba(255,255,255,0.15);

    flex-shrink: 0;
}

/* RIGHT SIDE */

.scrollWrapper{
    display: flex;
    align-items: center;
    gap: 0.5rem;

    flex-shrink: 0;
}

/* THEME ICON */

.themeIcon{
    width: 1.6rem;
    height: 1.6rem;

    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 0.25px solid rgba(255,255,255,0.35);

    cursor: pointer;

    position: relative;

    overflow: hidden;

    flex-shrink: 0;
}

/* ICONS */

.iconImg{
    width: 0.9rem;
    height: 0.9rem;

    position: absolute;

    transition:
      opacity 0.35s ease,
      transform 0.4s ease;
}

/* LIGHT MODE */

.sunImg{
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moonImg{
    opacity: 0;
    transform: rotate(-90deg) scale(0.4);
}

/* DARK MODE */

body.dark .sunImg{
    opacity: 0;
    transform: rotate(90deg) scale(0.4);
}

body.dark .moonImg{
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* SCROLL */

.scrollTrack{
    width: 3.3rem;
    height: 1.6rem;

    border-radius: 999px;

    background: #696969;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    flex-shrink: 0;
}

body.dark .scrollTrack{
    background: #444444;
}

.scrollFill{
    position: absolute;

    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    background: #9f9f9f;

    transition: width 0.2s linear;
}

body.dark .scrollFill{
    background: #8E8E8E;
}

.scrollText{
    position: relative;
    z-index: 2;

    color: #FFFFFF;

    font-size: 0.72rem;
    font-weight: 400;
}

/* DROPDOWN */

.dropdownMenu{
    position: absolute;

    top: -0.35rem;
    left: 50%;

    transform: translateX(-50%) translateY(-10px);

    width: 13.4rem;

    padding: 4rem 1.4rem 1.4rem 1.4rem;

    border-radius: 2rem;

    background: #D9D9D9;

    display: flex;
    flex-direction: column;
    gap: 0.45rem;

    opacity: 0;
    visibility: hidden;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      background 0.35s ease;
}

body.dark .dropdownMenu{
    background: #222222;
}

.menuWrapper.active .dropdownMenu{
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

/* LABEL */

.dropdownLabel{
    color: #777777;

    font-size: 0.625rem;
    font-weight: 400;

    letter-spacing: 0.01875rem;

    margin-bottom: 0.2rem;
}

/* LINKS */

.dropdownMenu a{
    text-decoration: none;

    color: #171717;

    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0.03375rem;

    transition: opacity 0.2s ease;
}

body.dark .dropdownMenu a{
    color: #F8F8F8;
}

.dropdownMenu a:hover{
    opacity: 0.6;
}

/* CONTACT BUTTON */

.contactBtn a{
    color: #F8F8F8;
    text-decoration: none;

}

.contactBtn {
    width: 6.25rem;
    height: 2.375rem;

    border: none;
    border-radius: 999px;


    font-size: 0.8rem;
    font-weight: 400;
    background: #171717;

    cursor: pointer;

    position: relative;
    overflow: hidden;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    transition: background 0.35s ease;
}

body.dark .contactBtn{
    background: #2A2A2A;
}

/* TEXT */

.contactBtn span{
    display: block;

    transition:
      transform .325s cubic-bezier(0.66, 0, 0.34, 1);
}


.hero{
    width: 100%;
    padding: 6rem 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img{
    max-width: 90rem;
    height: auto;
    display: block;
}

.heroSolu{
    width: 100%;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.heroSolu img{
    max-width: 90rem;
    height: auto;
} 


.bodyText{
  width: min(90%, 48rem);

  margin: 0 auto;

  display: flex;
  flex-direction: column;
}

.bodyTop p{
  color: #A6A6A6;
font-family: Inter;
font-size: 1.875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
padding-bottom: 1rem;
}

.h1{
  color: #323232;
font-family: Inter;
font-size: 1.875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.bodyTop {
  padding-top: 1rem;
}

.bodyBtm{
  margin-top: 6rem;

}

.bodyBtm img {
max-width: 90rem;
height: auto;
}


.bodyBtm p{
    width :48rem;
  color: #323232;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 400;
line-height: 1.5625rem; /* 138.889% */
border-top: 0.0625rem solid #BCBCBC;
border-bottom: 0.0625rem solid #BCBCBC;
padding: 3.19rem 0;
}

.info{
  width: min(90%, 48rem);
    margin: 6rem auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 2.5rem;
}

.table{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.table h1{
color: #323232;
font-family: Inter;
font-size: 1.125rem;;
font-style: normal;
font-weight: 600;
line-height: 1rem; /* 88.889% */
letter-spacing: 0.075rem;
    margin-bottom: 0.5rem;
}

.table p{
min-width: 12rem;
color: #323232;
font-family: Inter;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.075rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}




.bodyLeft{
    flex-shrink:0;
    width:22rem;
}

.bodyRight{
        flex-shrink:0;
    max-width:32.5rem;
}

.bodyLeft p{
color: #A6A6A6;
font-family: Inter;
font-size: 1.875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
padding-bottom: 1rem;
}

.bodyLeft h1{
color: #323232;
font-family: Inter;
font-size: 1.875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.bodyRight h1{
color: #323232;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 600;
line-height: 1.5625rem; /* 138.889% */
padding-bottom: 1rem;
}

.bodyRight p{
color: #323232;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 400;
line-height: 1.75rem;

}

.bodyRight span{
color: #323232;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 600;
line-height: 1.75rem; /* 155.556% */
}


.bodyProject{
    width: min(90%, 62rem);

    margin: 10rem auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.bodyProject img{
width: 13rem;
}



.projectSection{
    width: min(90%, 48rem);
    margin: 6rem auto 0;
}

.projectTitle{
    color: #323232;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.projectImage{
    width: 100vw;
    max-width: 90rem;

    position: relative;
    left: 50%;
    transform: translateX(-40%);
}

.projectCaption{
    margin-top: 1.5rem;

color: #323232;
text-align: center;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 600;
line-height: 1.5625rem; /* 138.889% */
}

.projectHeader{
    width: min(90%, 90rem);

    margin: 8rem auto 5rem;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
}

.projectHeader h1{
    flex: 1;

    color: #323232;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.projectHeader p{
    flex: 1;
    max-width: 28rem;

    color: #323232;
font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

/* =========================
   SHARED CONTENT COLUMN
========================= */

.contentColumn{
    width: min(90%, 48rem);
    margin: 0 auto;
}

/* =========================
   GENERIC SECTION TITLE
========================= */

.sectionHeading{
    color:#323232;
    font-size:1.875rem;
    font-weight:700;
    line-height:1.2;

    margin:8rem 0 3rem;
}

/* =========================
   WIDE IMAGE SECTION
========================= */

.imageSection{
    width:100%;

    display:flex;
    justify-content:center;
    margin-left:5.5rem;
    margin-bottom:1.5rem;
}

.imageSection img{
    width:100%;
    max-width:48rem;
    height:auto;

    display:block;
}

/* =========================
   CAPTION
========================= */

.sectionCaption{
    text-align:center;

    color:#323232;
    font-size:1;
    font-weight:600;
    line-height:1.5;

    margin-bottom:8rem;
}

/* =========================
   SECTION 3 HEADER
========================= */

.splitHeader{
display: flex;
width: 59.8125rem;
align-items: flex-start;
gap: 7.25rem;
    margin:8rem 0 5rem;
}

.splitHeader h1{
    color:#323232;
    font-size:1.875rem;
    font-weight:700;
    line-height:1.2;
}

.splitHeader p{
    max-width: 25.6875rem;

    color: #323232;
    font-family: Inter;
font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5625rem; /* 138.889% */
}

/* =========================
   REFLECTION
========================= */

.reflection{
display: flex;
width: 61.875rem;
justify-content: space-between;
align-items: flex-start;

    margin:8rem auto;
}

.reflectionLeft{
    max-width:24rem;
    flex-shrink: 0;
}

.reflectionLeft p{
color: #A6A6A6;
font-family: Inter;
font-size: 2rem;
font-style: normal;
font-weight: 600;
line-height: normal;;

    margin-bottom:0.5rem;
}

.reflectionLeft h1{
color: #323232;
font-family: Inter;
font-size: 2rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.team{
display: flex;
width: 61.875rem;
justify-content: space-between;
align-items: flex-start;

    margin:1rem auto 8rem auto;
}

.team img{
    max-width: 47.375rem;;
}

.reflectionRight p{
color: #323232;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 400;
line-height: 1.5625rem; /* 138.889% */
    width: 32.875rem;
flex-shrink: 0;
}


.bodySolu {
  width: min(90%, 61.875rem);
  min-height: 40vh;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */

  text-align: center;
}


.bodySop p{
  color: #A6A6A6;
font-family: Inter;
font-size: 1.875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
padding-bottom: 1rem;
}

.hover{
        width: 100%;
    max-width: 90rem;
        margin: 5rem auto;   /* centers the section */

    padding: 6rem 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #F5F5F5;
    height: 48.75rem;
}


.vid{
    width: 100%;
    max-width: 90rem;
    height: 48.75rem;

    margin: 0 auto;
    background: #F5F5F5;

    position: relative;
}

.vid video{
    width: 100%;
    max-width: 50rem;
    height: auto;

    position: absolute;


}

.pVid{
    width: 100%;
    max-width: 90rem;
    height: 35rem;
    margin: 0 auto;
    background: #F5F5F5;
    position: relative;
}

/* LEFT VIDEO */
.pVid .prd{
    position: absolute;
    width: 55rem;

    top: 4rem;
    left: 3rem;

    border-radius: 0.75rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.adm{
    position: absolute;
    width: 55rem;
    height: 33.87406rem;

    top: 0.5rem;
    left: 3rem;
}

.vidImg{
    width: 100%;
    max-width: 90rem;
    height: 35rem;

    margin: 0 auto;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.vidImg img{
    width: 100%;
    height: auto;
    display: block;
}

.vidImg .adm{
    position: absolute;

    width: 55rem;
    height: 33.874rem;

    top: 0.5rem;
    left: 36rem;

    z-index: 2;
}

/* RIGHT VIDEO */
.pVid .cat{
    position: absolute;
    width: 24rem;

    top: 7rem;
    right: 3rem;

    border-radius: 0.75rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* FOOTER */

.footer{
    background: #171717;
    position: relative;
    overflow: hidden;
    height: 420px;
    padding: 20px 20px 0 20px;
        border-top: 0.0625rem solid rgba(248,248,248,0.30);
}

.logo{
    display: inline-flex;
    transform-origin: center;
    will-change: transform;
}

.logo:hover{
    animation: logoSpin 1s cubic-bezier(0.16,1,0.3,1);
}

@keyframes logoSpin{
    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

.foot-top .logo {
    margin-left: auto;
    padding-right: 0.6rem;
}
/* FOOTER TOP */

.foot-top{
    display: flex;
    align-items: center;
    gap: 20px;
}

.foot-top p{
    color: #F8F8F8;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: 0.2px;
}

.foot-top a{
    color: #F8F8F8;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.8px;

    position: relative;
    overflow: hidden;

    display: inline-block;

    transition: color 0.3s ease;
}

.foot-top a > span{
    display: block;

    transition:
      transform .325s cubic-bezier(0.66, 0, 0.34, 1);
}

.foot-top a:hover > span{
    transform: translateY(-100%);
}

.foot-top a > span:last-child{
    position: absolute;

    top: 100%;
    left: 0;
}

/* FOOTER BOTTOM */

.foot-btm{
    position: absolute;

    bottom: 36px;
    left: 1.25rem;
}

.foot-btm p{
    color: #F8F8F8;

    font-size: 13px;
    font-weight: 400;
}

/* FOOTER NAME */

.foot-name{
    position: absolute;

    bottom: 11px;
    right: 1.25rem;

    overflow: hidden;

    display: inline-block;

    cursor: pointer;
}

.foot-name a{
    color: #F8F8F8;
    text-decoration: none;

    font-size: 280px;
    font-weight: 600;

    letter-spacing: -12px;

    display: block;
    position: relative;

    line-height: 0.9;
}

.foot-name a > span{
    display: block;

    transition:
      transform .325s cubic-bezier(0.66, 0, 0.34, 1);
}

.foot-name a:hover > span{
    transform: translateY(-100%);
}

.foot-name a > span:last-child{
    position: absolute;

    top: 100%;
    left: 0;
}

.annotation{
    width: min(90%, 60rem);

    margin: 8rem auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 6rem;
}

.annotationText{
    width: 24rem;
    flex-shrink: 0;
}

.annotationText h1{
    color: #323232;
    font-family: Inter;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.annotationText p{
    color: #000;
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4375rem; /* 127.778% */

    margin-bottom: 3rem;
}

.annotationImage{
    flex: 1;

    display: flex;
    justify-content: center;
}

.annotationImage img{
    width: 100%;
    max-width: 42rem;
    height: auto;

    display: block;
}

/* ================================
   RESPONSIVE STYLES - GOKYO PAGE
   ================================ */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    
    /* NAVBAR */
    .navbarLight {
        padding: 1rem;
    }
    
    .scrollWrapper {
        display: none;
    }
    
    .divider {
        display: none;
    }
    
    /* HERO */
    .hero {
        padding: 5rem 1rem;
    }
    
    .hero img {
        max-width: 100%;
    }
    
    /* BODY TEXT */
    .bodyText {
        width: 90%;
    }
    
    .bodyTop p,
    .bodyTop h1 {
        font-size: 1.5rem;
    }
    
    .bodyBtm {
        margin-top: 4rem;
    }
    
    .bodyBtm p {
        width: 100%;
        font-size: 1rem;
        padding: 2rem 0;
    }
    
    /* INFO TABLE */
    .info {
        width: 90%;
        margin: 4rem auto;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .table {
        flex: 1 1 180px;
        min-width: 150px;
    }
    
    .table h1 {
        font-size: 1rem;
    }
    
    .table p {
        font-size: 0.85rem;
        min-width: auto;
    }
    
    /* BODY PROJECT SECTIONS */
    .bodyProject {
        width: 90%;
        margin: 6rem auto;
        gap: 3rem;
    }
    
    .bodyLeft {
        width: 18rem;
    }
    
    .bodyLeft p,
    .bodyLeft h1 {
        font-size: 1.5rem;
    }
    
    .bodyRight {
        max-width: 28rem;
    }
    
    .bodyRight p {
        font-size: 1rem;
        line-height: 1.6rem;
    }
    
    .bodyProject img {
        width: 10rem;
    }
    
    /* VIDEO + IMAGE SECTION */
    .vidImg {
        height: 28rem;
    }
    
    .vidImg img {
        width: 100%;
        object-fit: cover;
    }
    
    .vidImg .adm {
        width: 40rem;
        height: 24rem;
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* HOVER VIDEO */
    .hover {
        height: 35rem;
        padding: 4rem 0;
        margin: 4rem auto;
    }
    
    /* SOLUTION SECTION */
    .bodySolu {
        width: 90%;
        min-height: auto;
        padding: 3rem 0;
    }
    
    .bodySop p {
        font-size: 1.5rem;
    }
    
    .bodySop h1 {
        font-size: 1.5rem;
    }
    
    .bodyBtm img {
        max-width: 100%;
    }
    
    /* ANNOTATION SECTIONS */
    .annotation {
        width: 90%;
        margin: 5rem auto;
        gap: 3rem;
    }
    
    .annotationText {
        width: 18rem;
    }
    
    .annotationText h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .annotationText p {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .annotationImage img {
        max-width: 32rem;
    }
    
    /* REFLECTION */
    .reflection {
        width: 90%;
        margin: 5rem auto;
        gap: 3rem;
    }
    
    .reflectionLeft {
        max-width: 20rem;
    }
    
    .reflectionLeft p {
        font-size: 1.5rem;
    }
    
    .reflectionLeft h1 {
        font-size: 1.5rem;
    }
    
    .reflectionRight p {
        width: 100%;
        font-size: 1rem;
    }
    
    /* FOOTER */
    .footer {
        height: 320px;
        padding: 16px 16px 0 16px;
    }
    
    .foot-top {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .foot-name a {
        font-size: 180px;
        letter-spacing: -8px;
    }
    
    .foot-btm {
        bottom: 28px;
    }
}

/* Mobile (320px - 767px) */
@media screen and (max-width: 767px) {
    
    /* NAVBAR */
    .navbarLight {
        padding: 0.8rem;
        align-items: center;
    }
    
    .logo img {
        width: 1.6rem;
        height: 1.6rem;
    }
    
    .menuBtn {
        height: 2rem;
        padding: 0.3rem 0.5rem;
        gap: 0.5rem;
    }
    
    .menuText {
        font-size: 0.75rem;
    }
    
    .scrollWrapper {
        display: none;
    }
    
    .divider {
        display: none;
    }
    
    .contactBtn {
        width: 5rem;
        height: 2rem;
        font-size: 0.7rem;
    }
    
    .dropdownMenu {
        width: 11rem;
        padding: 3.5rem 1.2rem 1.2rem 1.2rem;
        border-radius: 1.5rem;
    }
    
    .dropdownMenu a {
        font-size: 0.9rem;
    }
    
    /* HERO */
    .hero {
        padding: 4rem 0.5rem;
    }
    
    /* BODY TEXT */
    .bodyText {
        width: 92%;
    }
    
    .bodyTop p,
    .bodyTop h1 {
        font-size: 1.2rem;
    }
    
    .bodyTop {
        padding-top: 0.5rem;
    }
    
    .bodyBtm {
        margin-top: 2rem;
    }
    
    .bodyBtm p {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.5rem;
        padding: 1.5rem 0;
    }
    
    /* INFO TABLE */
    .info {
        width: 92%;
        margin: 3rem auto;
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .table {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        align-items: baseline;
    }
    
    .table h1 {
        font-size: 0.9rem;
        margin-bottom: 0;
        min-width: 60px;
    }
    
    .table p {
        font-size: 0.85rem;
        min-width: auto;
    }
    
    /* BODY PROJECT SECTIONS */
    .bodyProject {
        width: 92%;
        margin: 3rem auto;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bodyLeft {
        width: 100%;
    }
    
    .bodyLeft p,
    .bodyLeft h1 {
        font-size: 1.2rem;
    }
    
    .bodyRight {
        max-width: 100%;
    }
    
    .bodyRight p {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    
    .bodyProject img {
        width: 8rem;
        margin-top: 1rem;
    }
    
    /* VIDEO + IMAGE SECTION */
    .vidImg {
        height: auto;
        min-height: 20rem;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        background: #F5F5F5;
    }
    
    .vidImg img {
        width: 100%;
        height: auto;
    }
    
    .vidImg .adm {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 1rem;
        transform: none;
    }
    
    /* HOVER VIDEO */
    .hover {
        height: 20rem;
        padding: 2rem 0;
        margin: 2rem auto;
    }
    
    /* SOLUTION SECTION */
    .bodySolu {
        width: 92%;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .bodySop p {
        font-size: 1.2rem;
    }
    
    .bodySop h1 {
        font-size: 1.2rem;
    }
    
    .bodyBtm {
        margin-top: 2rem;
    }
    
    .bodyBtm img {
        max-width: 100%;
        height: auto;
    }
    
    /* ANNOTATION SECTIONS */
    .annotation {
        width: 92%;
        margin: 3rem auto;
        flex-direction: column;
        gap: 2rem;
    }
    
    .annotationText {
        width: 100%;
    }
    
    .annotationText h1 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .annotationText p {
        font-size: 0.9rem;
        line-height: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .annotationImage img {
        max-width: 100%;
    }
    
    /* REFLECTION */
    .reflection {
        width: 92%;
        margin: 3rem auto;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reflectionLeft {
        max-width: 100%;
    }
    
    .reflectionLeft p {
        font-size: 1.2rem;
    }
    
    .reflectionLeft h1 {
        font-size: 1.2rem;
    }
    
    .reflectionRight p {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    
    /* FOOTER */
    .footer {
        height: auto;
        min-height: 250px;
        padding: 16px 12px 12px 12px;
    }
    
    .foot-top {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .foot-top p,
    .foot-top a {
        font-size: 11px;
    }
    
    .foot-top .logo {
        margin-left: 0;
        order: -1;
    }
    
    .foot-top .logo img {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .foot-name a {
        font-size: 100px;
        letter-spacing: -4px;
    }
    
    .foot-btm {
        bottom: 20px;
        left: 0.75rem;
    }
    
    .foot-btm p {
        font-size: 11px;
    }
    
    .foot-name {
        bottom: 8px;
        right: 0.75rem;
    }
}

/* Small Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
    
    .bodyTop p,
    .bodyTop h1 {
        font-size: 1rem;
    }
    
    .bodyBtm p {
        font-size: 0.85rem;
    }
    
    .vidImg {
        min-height: 15rem;
    }
    
    .hover {
        height: 15rem;
        padding: 1rem 0;
        margin: 1.5rem auto;
    }
    
    .bodyProject {
        margin: 2rem auto;
    }
    
    .bodyLeft p,
    .bodyLeft h1 {
        font-size: 1rem;
    }
    
    .bodyRight p {
        font-size: 0.85rem;
        line-height: 1.4rem;
    }
    
    .annotationText h1 {
        font-size: 1rem;
    }
    
    .annotationText p {
        font-size: 0.85rem;
    }
    
    .reflectionLeft p {
        font-size: 1rem;
    }
    
    .reflectionLeft h1 {
        font-size: 1rem;
    }
    
    .reflectionRight p {
        font-size: 0.85rem;
    }
    
    .foot-name a {
        font-size: 70px;
        letter-spacing: -3px;
    }
}