@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-size: 16px;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat',sans-serif;
    position:relative;
    
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}



figcaption{
    font-style: italic;
    font-size: 0.7rem;
    line-height: 1.2;
    padding-top: 0.3rem;
}

#mobile-nav{
    width: 100%;
    height: 84px;
    position: relative;
    background-color: black;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
#more{
    display: none;
}
#portrait{
    width:80%;
    height: auto;
}
#portrait img{
    margin: 0 auto;
}
.about-button {
  /* Text and Background */
  background-color: black; /* A nice, modern blue */
  color: white; 
  width: 200px;
  text-decoration: none; /* In case it's an <a> tag */
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600; /* Slightly bolder text */
  cursor: pointer;
  
  /* Padding for Balanced Spacing (Top/Bottom, Left/Right) */
  padding: 12px 24px; 
  
  /* Border and Radius */
  border: none; /* Remove default border */
  border-radius: 25px; /* High value for well-rounded "pill" shape */
  
  /* Modern Effects */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effect for Interactivity */
.about-button:hover {
  background-color: #29CCC1; /* Darker blue on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly larger shadow */
  transform: translateY(-1px); /* A small lift effect */
}

/* Active/Click Effect */
.about-button:active {
  background-color: #004085; /* Even darker when clicked */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(1px); /* Pushed down effect */
}
 .about-main{
    width:70%;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    background-color: white;
}

.textbox-about ul{
  /* Optional: Remove default indentation and spacing if you want a clean start */
  padding-left: 1.5em; 
  margin: 0.5rem 0;
  
  /* Set the type of marker (disc, square, circle, etc.) */
}

.textbox-about ul li::marker {
    /* Set the color for the bullet point (marker) */
    color: black; 
    
    /* Optional: Adjust the size or font if needed */
    font-size: 20px;
}

/* Optional: Style the list item text itself */
.textbox-about ul li{
    list-style: disc; 
  color: #333; /* Dark gray for text */
  line-height: 1.2;
  font-size: clamp(12px, calc(1rem + 1vw), 14px);
  list-style: disc;
}
.active-area{
    position: absolute;
    width: 100%;
    height: 100%;
}
.category{
    width:100%;
    height: 0;
    position: relative;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.category-card{
    width:80%;
    height: 100%;
    position: relative;
    padding-bottom: 10%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.category-grid{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.category-main{
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 10px;
    padding-bottom: 5%;
}
.category-main h1{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0px;
}
.desktop-nav{
    width: 100%;
    height: 60px;
    position: relative;
    background-color: black;
    padding: 10px;
    z-index: 100;
    display: none;
}
.desktop-nav ul{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dropdown-parent{
    width: 100%;
    height: 30px;
    background-color: black;
    position: relative;
    z-index: 97;
    color: white;
    font-weight: 600;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
}
.drop-icon{
    width: 10px;
    height: 10px;
    position: relative;
    transition: all .2s ease-out;
}
.drop-icon span{
    width: 10px;
    height: 3px;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    top: 50%;
}
.drop-icon span:nth-child(1){
    transform: rotate(45deg);
}
.drop-icon span:nth-child(2){
    transform: translateX(57%) rotate(135deg);
}
.drop-icon.active{
    transform: rotate(180deg);
}
.dropdown-menu{
    width: 100%;
    position: absolute;
}
.dropdown-menu li{
    height: 35px;
    background-color: black;
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    display: none;
    visibility: hidden;
}
.dropdown-menu li a{
    color: white;
    text-decoration: none;
    height: 50px;
    /* position: absolute;
    z-index: 97; */
}
.dropdown-menu.active li{
    visibility: visible;
    display: flex;
}

.dropdown-menu li:nth-child(1){
    transform: translateY(-30px);
}
.dropdown-menu li:nth-child(2){
    transform: translateY(-60px);
}
.dropdown-menu li:nth-child(3){
    transform: translateY(-90px);
}

.dropdown-menu.active li:nth-child(1){
    transform: translateY(0px);
}
.dropdown-menu.active li:nth-child(2){
    transform: translateY(0px);
}
.dropdown-menu.active li:nth-child(3){
    transform: translateY(0px);
}
.figure-a{
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: flex;
    flex-direction: row;
}
.figure-a img{
    width: 80%;
    padding-right: 10px;
}
.figure-a figcaption{
    width: 20%;
    /* padding: 0 10px; */
    display: flex;
    align-items: end;
}
.gallery-column1{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction:column;
    overflow: hidden;
    gap: 5px;
}
.gallery-grid1{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
}
.g1a{
    grid-column: 1/3;
    grid-row: 1/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1b{
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1c{
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}.g1d{
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1e{
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1f{
    grid-column: 1/3;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1g{
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g1h{
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery-grid2{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
    overflow: hidden;
}
.g2a{
    grid-column: 1/2;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g2b{
    grid-column: 2/3;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.g2c{
    grid-column: 1/3;
    grid-row: 3/4;
    width: 100%;
    height: 100%;
    object-fit:contain;
    object-position: center;
}
.gallery-row2{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 5px;
}
/* .gallery-row2 img{
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */
.gallery-row3{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 2px;
}
.gallery-row3 img{
    width: 33%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-project{
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center;
}
.hidden-menu {
    background-color: black;
    height: auto;
    width: 100%;
    position: absolute;
    top: -120px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 2.8rem;
    transition: .3s ease;
    z-index:99;
    visibility: hidden;
}
.hidden-menu.active {
    visibility: visible;
    top: 82px;
    
}
.hidden-menu ul{
    width:100%;
}
.hidden-menu li{
    border-bottom: 1px solid black;
    padding: 10px 0;
}
.hidden-menu a{
    color:white;
}


.ham-menu {
    height: 50px;
    width: 40px;
    margin-right: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease-out;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.hero-main{
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.hero-textbox{
    position: absolute; 
    width: 100%;
    top: 5%; 
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
}
.hero-textbox h1{
    font-size: 40px; 
    line-height: 40px; 
    color: white;
}
.hero-textbox h2{
    font-size: 30px; 
    line-height: 30px; 
    color: white;
}
.hero-textbox h3{
    font-size: 30px; 
    line-height: 30px; 
    color: white;
}
.home-button {
  /* Text and Background */
  background-color: black; /* A nice, modern blue */
  color: white; 
  width: 200px;
  text-decoration: none; /* In case it's an <a> tag */
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600; /* Slightly bolder text */
  cursor: pointer;
  position: absolute; 
  top:82%;
  
  /* Padding for Balanced Spacing (Top/Bottom, Left/Right) */
  padding: 12px 24px; 
  
  /* Border and Radius */
  border: none; /* Remove default border */
  border-radius: 25px; /* High value for well-rounded "pill" shape */
  
  /* Modern Effects */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effect for Interactivity */
.home-button:hover {
  background-color: #29CCC1; /* Darker blue on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly larger shadow */
  transform: translateY(-1px); /* A small lift effect */
}

/* Active/Click Effect */
.home-button:active {
  background-color: #004085; /* Even darker when clicked */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(1px); /* Pushed down effect */
}
.infographic-grid, .illustration-grid, .editorial-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    /* overflow: hidden; */
}
.ig1, .ig2, .ig3, .ig4, .ing1, .ing2, .ing3, .ing4, .ing5, .ing6, .eg1{
    grid-column: 1/-1;
}
.imgframe{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.imgframe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.imgframe > .caption{
    font-size: 0.8rem;
    line-height: 1rem;
    padding-top: 5px;
    max-width: 300px;
}

.fixed{
    position: fixed;
}
.footer{
    background-color: black;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 50px;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.footer-home{
    background-color: black;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.imgbox{
    position: relative;
    width: 100%;
    height: auto;
}
.imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.links-footer{
    width:50%;
    margin: 0 auto;
}
.links-footer ul{
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    
}
.links-footer a{
    color:white;
}
.nav-footer{
    width: 100%;
    padding: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.nav-footer a{
    color: rgb(0, 199, 199);
}
.nav-footer a:visited{
    color: rgb(3, 83, 83);
}
.navmenu-a{
    font-size: 1rem;
    color: white;
}
.paperflex-col{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px 10px;
}
.paperpage{
    /* width: 80%; */
    height: auto;
    object-fit: cover;
    object-position: center;
    border: 5pt solid #EBEBEB;
}
.portfolio-main{
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 10px;
    padding-bottom: 10%;
}
.portfolio-main h1{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0px;
}
.project-main{
    width:85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-main h1{
    padding-top:16px;
    padding-left: 10px;
    /* padding-right: 10px; */
    font-size: 1.5rem;
    line-height: 1.8rem;
}
.project-main p{
    font-size: 0.9rem;
    line-height: 1.2rem;
}
.project-main span{
    font-size: inherit;
    line-height: inherit;
}
.project-card{
    width:100%;
    /* max-width: 500px; */
    height: 100%;
    position: relative;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.p-tb40{
    padding-top: 40px;
    padding-bottom: 40px;
}
.p-lr20{
    padding-left: 20px;
    padding-right: 20px;
}
.card-container{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-text{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 5%;
    padding-left: 5%;
    padding-bottom: 5%;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,45%) 70%,  rgba(0,0,0,0%));
    user-select: none;
}
.card-text h3{
    font-size: 1.5rem;
    line-height: 2rem;
}
.card-text h4{
    font-size: 1rem;
    font-weight: 500;
}
.project-section{
    display: flex;
    flex-direction: column;
}
.segment{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.segment-row{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.s-flex-row{
    flex-direction: row;
}
.textbox-about{
    /* padding: 20px 10px ; */
    padding: 10px 10px ;
    width: 100%;
    height: auto;
}
.textbox-about p{
    font-size: clamp(12px, calc(1rem + 1vw), 14px);
}
.textbox1{
    white-space: nowrap;
}
.textbox1 h1{
    font-size: 3rem;
    line-height: 2.5rem;
}
.textbox1 h2{
    font-size: 2rem;
    line-height: 1.5rem;
    /* text-align: right; */
}
.textbox2{
    padding: 20px 10px ;
    width: 100%;
    height: auto;
}
.textbox2 h3{
    font-size: 1.5rem;
    padding-top: 10px;
}
.textbox-exp{
    width: 100%;
    height: auto;
    padding: 0 10px;
}

@media (min-width: 768px){
    #dropdown{
        display: none;
    }
    #mobile-nav{
        display: none;
    }
    #logo-home{
        width: 30%;
    }
    .active-area:hover{
        background-color: black;
        opacity: 0.1;
        cursor: pointer;
    }
    .card-text h3{
        font-size: 1rem;
        line-height: 1.2rem;
    }
    .card-text h4{
        font-size: 0.9rem;
        font-weight: 500;
    }
    .category-card{
        width: 30vw;
        height: 60vh;
        padding-top: 5vh;
        padding-bottom: 10vh;
    }
    .category{
        width: 100%;
        height: 100%;
        position: relative;
        padding-bottom: 10px;
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        overflow: hidden;
    }
    .category-grid{
        width: 100%;
        height: 100%;
        padding: 20px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .desktop-nav{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .editorial-grid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px;
        gap: 10px;
    }
    .figure-a{
        width: 100%;
        flex-direction: column;
    }
    .figure-a img{
        padding-right: 10px;
    }
    .figure-a img, .figure-a figcaption{
        width: 100%;
        padding-left: 0;
    }
    /* .figure-a figcaption{
        padding-top: 5px;
    } */
    .hero-textbox h1{
    font-size: 70px; 
    line-height: 70px; 
    color: white;
}
    .hero-textbox h2{
        font-size: 60px; 
        line-height: 60px; 
        color: white;
    }
    .hero-textbox h3{
        font-size: 60px; 
        line-height: 60px; 
        color: white;
    }
    .home-button{
        top:87%;
        left: 43%;
    }
    .m-font10{
        font-size: 10px;
    }
    .m-font12{
        font-size: 12px;
    }
    .m-font40{
        font-size: 40px;
    }
    .m-font50{
        font-size: 50px;
    }
    .m-font60{
        font-size: 60px;
    }
    .gallery-row2{
        padding: 10px 10px;
        /* flex-direction: column; */
        gap: 10px;
    }
    .hero-project{
        height: 45vh;
    }
    .illustration-grid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 350px 350px;
        gap: 10px;
        /* overflow: hidden; */
    }
    .eg1{
        grid-column: 2/3;
        grid-row: 1/3;
    }
    .footer{
        margin-top: 0;
    }
    .m-h100{
        height: 100%;
    }
    .ig1{
        grid-column: 1/2;
        grid-row: 1/3;
    }
    .ig2{
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .ig3{
        grid-column: 3/4;
        grid-row: 1/2;
    }
    .ig4{
        grid-column: 2/4;
        grid-row: 2/3;
    }
    .infographic-grid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 100px);
        gap: 10px;
        /* overflow: hidden; */
    }
    .ing1{
        grid-column: 1/3;
        grid-row: 1/5;
    }
    .ing2{
        grid-column: 1/3;
        grid-row: 5/7;
    }
    .ing3{
        grid-column: 3/7;
        grid-row: 1/3;
    }
    .ing4{
        grid-column: 3/5;
        grid-row: 3/7;
    }
    .ing5{
        grid-column: 5/7;
        grid-row: 3/5;
    }
    .ing6{
        grid-column: 5/7;
        grid-row: 5/7;
    }
    .m-flex-col{
        flex-direction: column;
    }
    .m-flex-row{
        flex-direction: row;
    }
    .m-maxh200{
        max-height: 200px;
    }
    .m-maxh300{
        max-height: 300px;
    }
    .m-maxh400{
        max-height: 400px;
    }
    .m-maxh500{
        max-height: 500px;
    }
    .m-order1{
        order: 1;
    }
    .m-order2{
        order: 2;
    }
    .m-order3{
        order: 3;
    }
    .m-order4{
        order: 4;
    }
    .m-order5{
        order: 5;
    }
    .m-pdr30{
        padding-right: 30px;
    }
    .m-pos-top{
        object-position: top;
    }
    .m-pos-bottom{
        object-position: bottom;
    }
    .m-txt-right{
        text-align: right;
        padding-right: 10px;
    }
    .m-txt-left{
        text-align: left;
        padding-left: 10px;
    }
    .m-vh20{
        height: 20vh;
    }
    .m-vh40{
        height: 40vh;
    }
    .m-vh60{
        height: 60vh;
    }
    .m-wauto{
        width: auto;
    }
    .m-w20{
        width: 20%;
    }
    .m-w30{
        width: 30%;
    }
    .m-w40{
        width: 40%;
    }
    .m-w50{
        width: 50%;
    }
    .m-w60{
        width: 60%;
    }
    .m-w70{
        width: 70%;
    }
    .m-w80{
        width: 80%;
    }
    
    .portfolio-main{
        width: 80%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center; 
        gap: 40px;
        padding-bottom: 0%;
    }
    .portfolio-main h1{
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 0px;
    }
    .project-card{
        width: 100%;
        height: 100%;
        padding-bottom: 0;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .card-text h3,
    .card-text h4 {
    margin: 0;
    }
    .project-main{
    width:70%;
    height: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    align-items: center;
    background-color: white;
    }
    .project-main h1{
        width: 70%;
        text-align: center;
    }
    .project-section{
        /* height: 60vh; */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .row-card{
        flex-direction: row;
        padding: 0 10px;
    }
    .segment-top, .segment-bottom{
        display: flex;
        gap: 5px;
        /* flex-grow: 1; */
    }
    .textbox2{
        /* width: 80%; */
        /* height: auto; */
        padding: 0 10px;
    }
    .textbox-exp{
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2% 5%;
        text-align: center;
        border: solid #EBEBEB 5pt;
        border-radius: 5px;
    }


}

@media (min-width: 1000px){
    #dropdown{
        display: none;
    }
    #mobile-nav{
        display: none;
    }
    #logo-home{
        width: 30%;
    }
    .category-card{
        height: 80vh;
    }
    .desktop-nav{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .l-font16{
        font-size: 1rem;
    }
    .l-flex-col{
        flex-direction: column;
    }
    .l-flex-row{
        flex-direction: row;
    }
    .l-w80{
        width: 80%;
    }
    .l-w100{
        width: 100%;
    }
    .main-background{
        width: 100%;
        background-color: #F2F2F2;
    }
    .project-main{
        width: 70%;
        padding: 0 3vw;
    }
    /* .textbox2{
        width: 80%;
    } */
    .textbox-exp{
        width: 80%;
    }
}
