@import url("https://use.typekit.net/vbl8sey.css");


:root { 
    --black: #222;
    --white: #FFFFFF;
    --orange: #DA7940; 
    --pink: #EFCACC; 
    --lightblue: #A2BFDC;
    --darkgrey: #666666; 
    --lightgrey: #3333;
    --beige: #F8F6E9;
    --yellow: #FFC98B; 
}

/* Applies a reset for margin, padding, and box-sizing to ensure a consistent default style across different browsers. */
* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}

/* Sets the font family, background color, and other styles for the entire body of the website. */
body {
    font-family: "loos-normal", "roc-grotesk", "archivo-variable","freightdispcmp-pro";
    background-color: var(--white);

}

.logo {
    width: 9vw;
}

header {
    display: flex; 
    flex-direction: row; 
    justify-content: space-between;
    height: 137px;
    align-items: center;
    font-size: 32px;
    padding:3rem;
}

/* Styles for the navigation section, including flex layout, row direction, and font size. */
nav {
    display: flex;
    flex-direction: row;
    align-items: center; 
    padding: 2px; 
    font-size: 24px;
    border-radius: 30px; 
    border: 2px #737373 solid;
    width: 14.5em;
    justify-content: center;
}

.nav .div {
    display: flex;
    align-items: center;
    padding: 0.6em;
    cursor: pointer;
    font-size: 24px;
}

nav ul li a.inuse {
    background-color: var(--orange);
}


ul {
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    background: var(--blue);
    list-style-type: none;
    position: relative;
    color: var(--yellow);
}


ul li a {
    padding: 15px;
    color: var(--black);
    text-decoration: none;
    display: block;
    font-family: freight-display-pro, serif;
    font-weight: 700;
    font-style: normal;

}

ul ul {
    position: absolute;
    min-width: auto;
    background: var(--black);
    /* background-color: rgba(0, 0, 0, 0.4); */
    background-color: rgba(182, 182, 182, 0.4);
    display: none;
}

ul li:hover ul {
    display: block;
    z-index: 40;
}

.main-menu a:hover {
    color: var(--orange);
}


.project {
    display: flex;
    flex-direction: row;
    margin: 6.5rem;
    justify-content: center;
}


.banner_container {
    display: flex;
    flex-direction: column;
}

.bannertext {
    display: flex; 
    flex-direction: row;
    align-items: center;
} 


.bannertext h1 {
    color: var(--orange);
    line-height: 2.3rem; 
    margin-bottom: 0.3em;
    font-size: 6em;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    
    /* -webkit-text-stroke: 1px var(--orange);
    color: var(--white);
    font-size: 3.12rem;
    font-family: 'loos-normal'; */
} 

.container-btn {
    margin-bottom: 1.2em;
    margin-left: 1.5em;
}

.button-1 {
    color: var(--orange);
    border: 2px solid var(--lightgrey);
    /* padding: 1em;  */
    font-size: 1em;
    height: 57px;
    width: 230px; 
    border-radius: 30px;
    display: inline block; 
    text-align: center;
    cursor: pointer; 
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button-1:hover {
    /* background-color: var(--beige); */
    color: black;
}


.description-container {
    width: 34em;
    /* margin-top: 0.5em; */
    display: flex;
    flex-direction: column;
}

.description-container h2 {
    font-family: 'archivo-variable';
    font-style: bold;
    color: var(--lightblue);
    font-size: 1.875em;
}

.overview-container {
    margin-top: 3em;
    /* width: 53em; */
}

.overview {
    margin-bottom: .5em;
}


h2 {
    /* color: var(--black);
    font-family: 'loos-normal';
    font-size: 1.5em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em; */
    font-family: 'archivo-variable';
    font-style: bold;
    color: var(--black);
    font-size: 1.875em;
}



h3 {
    display: flex;
    justify-content: center;
    margin-bottom: 1.3em;
    font-size: 4rem;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    color: var(--orange);
}


h4 {
    font-family: "archivo-variable";
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: 1.25em;
    color: var(--black);
    line-height: 1.6em;
    /* margin-top: 0.5em; */
}

p{
    font-family: "archivo-variable";
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-variation-settings: 'wght' 300, 'wdth' 100;
    color: var(--black);
    word-wrap: break-word; 
    overflow: hidden;
}

.role-tools-container {
    margin-top: 3em;
    display:flex; 
    flex-direction: row;
    justify-content: space-around;
    width: 34em; 
    margin-left: -65px;
}

.role-container {
    display:flex; 
    flex-direction: column;
}

.role {
    margin-bottom: .5em;
    color: var(--black);
}

.tools-container {
    display:flex; 
    flex-direction: column;
}

.tools {
    margin-bottom: .5em;
    color: var(--black);
}

.tool-list {
    display:flex; 
    flex-direction: row;
    /* list-style-type: none;
    line-height: 1.6em;
    color: var(--black);
    font-family: "roc-grotesk";
    font-size: 1em;
    font-style: normal;
    font-weight: 500;
    padding: 0; */
}

.tool-image {
    display: flex;
    flex-direction: column;
}

.tool-image p {
    display: flex;
    justify-content: center;
    margin-right: 0.5em;
    font-size:1em;
    /* font-family: "archivo-variable";
    color: var(--black);
    font-variation-settings: 'wght' 400, 'wdth' 100; */
}

.tool-list img {
    width: 5em;
    height: auto;
    margin-left: -0.5em;
}

.jaia-image  img{
    width: 600px;
    height: 455px;
    border-radius: 30px;
    margin-left: 10em;
    background: linear-gradient(0deg, rgba(225, 218, 208, 0.20) 0%, rgba(225, 218, 208, 0.20) 100%), url(<path-to-image>) lightgray -61.819px -32.98px / 130.37% 109.272% no-repeat;
}

.jaia-image img:hover {
    transition: transform 900ms;
    transform: scale(1.2);
}

/* NEW PROJECT */

.project-outline {
    display: flex;
    justify-content: center;
}

.project-outline-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.project-banner h2 {
    display: flex;
    justify-content: center;
    margin-bottom: 1.3em;
    font-size: 3.12rem;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    color: var(--black);
}


.project-outline-list {
    display: flex;
    flex-direction: row;
    gap: 120px;
}

.project-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.project-section :hover {
    transform: scale(1.1);
    color: var(--black)
}


.number {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
    font-size: 4rem;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    color: var(--orange);
}


.project-text {
    display: flex;
    justify-content: center;
    /* font-size:1em; */
    font-family: 'archivo-variable';
    font-style: bold;
    color: var(--lightblue);
    font-size: 1.5rem;
}
/* 
key features */
.learnmore-btn{
    display: flex; 
    justify-content: center;
    align-items: center;
} 

.hometext {
    display: flex; 
    justify-content: center;
    align-items: center;
}




/* container  */
.outerouter {
    display: flex;
    justify-content: center;
}
.homepage_work {
    display: flex; 
    justify-content: center;
    margin-top: 3em;
    gap: 50px;
    flex-wrap: wrap;
    width: 1500px;
    align-items: center;
}

.outercontainer {
    width: 410px;
    height: 245px;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 0px 4px 1px  rgba(0, 0, 0, 0.25); 
    border-radius: 30px; 
    flex-direction: column;
    display: flex;
}


.featured-box {
    display:flex; 
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.empathy11 {
    color: var(--orange);
}

.content1 {
    color: var(--black);
}
/* 
.featured-content {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem; 
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-content: flex-start;
    padding-left: 2em;
} */

.key {
    margin-top: 1em;
}



/* empathy  */
.empathy {
    display: flex;
    justify-content: center;
    /* margin: 11rem; */
    margin: 11rem auto;
    align-items: center;
}

.empathy-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.empathy-area {
    display: flex;
    flex-direction: row;
    /* margin: 6em; */
    /* width: 100%; */
    gap: 6em;
}

.empathy-text {
    width: 33em;
}

.empathy1 {
    margin-bottom: 0.5em;
    color: var(--black);
}


.empathy-image img {
    width: 499px;
    height: auto;
    border-radius: 30px;
    margin-left: 10em;
}

.revised1 {
    color: var(--orange);
    border: 2px solid var(--lightgrey);
    /* padding: 1em; */
    font-size: 1em;
    height: 57px;
    width: 230px;
    border-radius: 30px;
    display: inline block;
    text-align: center;
    cursor: pointer;
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 1em;
}

.revised1:hover {
    /* background-color: var(--beige); */
    color: black;
}

.empathy2 {
    display: flex;
    justify-content: start;
    margin: 11rem auto;
    align-items: center;
    /* margin: 11rem; */
}

/* .empathy-container2 {
    margin-left: 10%;
} */


.empathy-area2 {
    display: flex;
    flex-direction: column;
}





/* ideate Low fidelity and high fidelity css */
.ideate{
    display: flex;
    justify-content: center;
    margin: 11rem;
    flex-direction: row;
    /* margin: 12.5rem;
    margin-top: -5em; */
}

.ideate-container {
    display: flex;
    flex-direction: row;
}

.ideate-header {
    display: flex; 
    flex-direction: column;
    /* justify-content: center; */
    /* margin-top: 6em; */
    width: 40em;
}
/* 
.ideate-header a {
    width: 12em;
    margin-top: 1em;
} */

.ideate-h2 {
    /* font-size: 2.12em;
    color: var(--orange);
    font-family: "loos-normal";
    font-style: normal;
    font-weight: 500; */
font-size: 4em;
display: flex;
font-family: "freightdispcmp-pro";
font-weight: 700;
font-style: normal;
color: var(--orange);
}


.ideate-h4 {
    font-size: 1.25em;
    color: var(--black);
    font-family: 'archivo-variable';
    font-style: bold;
    font-size: 1.875em;
}

.ideate-container2 {
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    width: 40em;
}

.ideate-paragraph {
    display:flex; 
    flex-direction: column;
}

.ideate-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 6em;
}

.ideate-img {
    width: 600px;
    height: 455px;
    border-radius: 30px;
}


/* NEED TO DO ON DIFFERENT PAGES FOR THE USER FLOW ETC  */
.empathy2{
    display: flex;
    justify-content: center;
    margin: 11rem;
    flex-direction: row;
}

.empathy-container2 {
    display: flex;
    flex-direction: row;
}

.empathy-header {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    width: 40em;
}






.revised-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 1em; */
}

.revised {
    color: var(--orange);
    border: 2px solid var(--yellow);
    /* padding: 1em;  */
    font-size: 1em;
    height: 57px;
    width: 230px; 
    border-radius: 30px;
    display: inline block; 
    text-align: center;
    cursor: pointer; 
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 1em;
}

.revised:hover {
    background-color: var(--beige);
    color: black;
}


.finalcontainer {
    width: 1300px;
}

.finalprototype {
    display: flex;
    justify-content: center;
    margin: 11rem;
}

.finalprototypebanner {
    display: flex;
    flex-direction: column;
}

.finalprototype1 {
    font-size: 4em;
    display: flex;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    color: var(--orange);
}

.finalprototypep {
    display: flex;
    text-wrap: wrap;
    /* width: 1400px; */
    margin-top: 0.5em;
}

.product-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.finalprototype-img {
    border-radius: 30px;
    width: 600px;
    width:1300px;
    height: auto; /* Let the height adjust automatically */
    margin: 1rem auto;
}


.container-btn2 {
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-top: 11em;
}

.button-2 {
    background-color: var(--beige);
    border: 1px solid var(--black);
    color: var(--black);
    /* padding: 1em;  */
    font-size: 1em;
    height: 57px;
    width: 230px; 
    border-radius: 30px;
    display: inline block; 
    text-align: center;
    cursor: pointer; 
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 3em;
}

.button-2:hover {
    background-color: var(--black);
    color: var(--beige);
}





/* footer  */
.footercontainer {
    width: 530px;
    height: 115px;
    margin: 0 auto; 
    position: relative; 
    display: flex; 
    justify-content: center;    
    align-items: center;
    margin-top: 13em;

}
 
.footerimage img{
    height: 53px;
} 


.title {
    /* width: 197px;  */
    margin-right: 30px;
    height: 50px; 
    /* white-space: nowrap;  */
}

.contact {
    /* white-space: nowrap;  */
    height: 53px;
}

.title h4  {
    font-size: 0.93em;
    font-family: 'loos-normal';
    margin-bottom: 0.7em;
}

.title p {
    font-size: 12px;
    font-family: "roc-grotesk";
}

.contact h4 {
    font-size: 0.93em;
    font-family: 'loos-normal';
    margin-bottom: 0.5em;
}

.contact img {
    height: 22px;
    margin-right: 7px;
}

a {
    text-decoration: none; /* Removes underline from all anchor elements */
}


/* scroll up button  */
#scrollupbutton {
    display: inline-block;
    background-color: var(--orange);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #scrollupbutton::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #scrollupbutton:hover {
    cursor: pointer;
    background-color: #333;
  }
  #scrollupbutton:active {
    background-color: #555;
  }
  #scrollupbutton.show {
    opacity: 1;
    visibility: visible;
  }
  









@media only screen and (min-width: 769px) {
    #hamburger {
        display: none; /* Use !important to ensure this style takes precedence */
    }
}



@media screen and (min-width: 768px) and (max-width: 1200px) {
    /* .project {
        align-items: center;
        margin: 2rem;
        scale: 90%;
    }

    .banner_container{
        width: 40%;
    }

    .jaia-image img {
        margin-left: 0;
    } */


.bannertext {
    flex-direction: row;
    align-items: flex-start;
}

.bannertext h1 {
    font-size: 4em; /* Adjust the size as needed */
    word-wrap: break-word;
}

.project {
    flex-direction: row;
    align-items: center;
    margin: 2rem;
}

.banner_container {
    width: 90%;
}

.jaia-image img {
    margin-left: 0;
    width: 100%;
    /* height: auto; */
}

.project-outline {
    margin: 2rem; /* Add margin for spacing on medium screens */
}

.project-outline-container {
    width: 100%; /* Ensure container uses full available width */
    max-width: 1000px; /* Limit maximum width for better fit */
    padding: 0 1rem; /* Add padding to avoid content touching edges */
}

.project-banner h2 {
    font-size: 2.5rem; /* Adjust font size for medium screens */
    margin-bottom: 1rem; /* Adjust margin for better spacing */
}

.project-outline-list {
    display: flex; /* Ensure items are aligned in a row */
    flex-wrap: wrap; /* Allow items to wrap if necessary */
    gap: 5rem; /* Add gap between items */
    justify-content: center; /* Center items horizontally */
}

.project-section {
    display: flex;
    flex-direction: row; /* Align number and text horizontally */
    align-items: center; /* Center-align items vertically */
    gap: 0.5rem; /* Add space between number and text */
    transition: all 0.3s ease-in-out;
    text-align: center; /* Center-align text */
}

.project-section:hover {
    transform: scale(1.1); /* Scale up on hover */
    color: var(--pink); /* Change color on hover */
}

.number {
    font-size: 2.5rem; /* Adjust font size for medium screens */
    color: var(--lightblue); /* Maintain color consistency */
    margin-bottom: 0; /* Remove bottom margin */
}

.project-text {
    font-size: 1.2rem; /* Adjust font size for readability */
    color: var(--yellow); /* Maintain color consistency */
}


.ideate, .empathy {
    margin: 5rem; /* Adjust margin for better spacing on medium screens */
}

/* ideate section */
.ideate-container {
    flex-direction: column; /* Stack header and content vertically */
}

.ideate-header {
    width: auto; /* Allow header to take full width */
    /* text-align: center;  */
}

.ideate-h2 {
    font-size: 2.5em; /* Adjust font size for medium screens */
}

.ideate-h4 {
    font-size: 1.5em; /* Adjust font size for medium screens */
}

.ideate-container2 {
    flex-direction: column; /* Stack content vertically */
    width: auto; /* Allow container to take full width */
}

.ideate-paragraph {
    width: auto; /* Adjust width for better readability */
}

.ideate-image-container {
    scale: 80%;
}
/* empathy section */
.empathy-container {
    flex-direction: column; /* Stack text and image vertically */
}

.empathy-area {
    gap: 3em; /* Reduce gap between text and image */
}

.empathy-text {
    width: 100%; /* Adjust width for medium screens */
}

.empathy-image img {
    width: 100%; /* Make image responsive */
    margin-left: 0; /* Remove left margin for better alignment */
}

/* Ensure correct alignment and spacing in the empathy sections */
.empathy1 {
    font-size: 2em; /* Adjust font size for medium screens */
}

.empathyp {
    font-size: 1em; /* Adjust font size for better readability */
}

.empathy2 {
    /* flex-direction: flex-start; */
    margin: 5rem;
    justify-content: flex-start;
}

/* Solution section */
.solution-banner h2 {
    font-size: 2.5rem; /* Adjust font size for medium screens */
}

/* Adjust outer container and box sizing */
.outercontainer, .outercontainer2 {
    width: 100%; /* Make containers responsive */
    max-width: 400px; /* Limit maximum width for better fit */
    height: auto; /* Allow height to adjust based on content */
    margin: 1rem; /* Adjust margin for spacing */
}

.homepage_work {
    flex-direction: row; /* Stack boxes vertically */
    gap: 2rem; /* Adjust spacing between boxes */
    align-items: normal;

}

.featured-box {
    width: 100%; /* Make boxes responsive */
    max-width: 400px; /* Limit maximum width for better fit */
}

/* Ideate Deliver section adjustments */
.ideate-container2 {
    flex-direction: column; /* Stack header and content vertically */
    width: auto; /* Allow container to take full width */
}

.revised {
    width: 100%; /* Adjust button width for better fit */
    max-width: 250px; /* Limit maximum width for better fit */
}

.finalprototype {
    margin: 5rem; /* Adjust margin for better spacing on medium screens */
    flex-direction: column; /* Stack banner and image vertically */
}

.finalcontainer {
    width: 100%; /* Make container responsive */
    max-width: 1000px; /* Limit maximum width for better fit */
}

.finalprototype1 {
    font-size: 2.5em; /* Adjust font size for medium screens */
}

.finalprototypep {
    font-size: 1em; /* Adjust font size for readability */
    margin-top: 1em; /* Add space above the paragraph */
    width: 100%; /* Ensure paragraph takes full width */
}

.product-container {
    flex-direction: column; /* Stack image vertically below the text */
    margin-top: 2rem; /* Add space above the image */
}

.finalprototype-image {
    width: 100%; /* Ensure image container takes full width */
}

.finalprototype-img {
    width: 90%; /* Adjust image width for medium screens */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Limit maximum width for better fit */
}

.revised1 {
    width: 100%; /* Make button responsive */
    max-width: 300px; /* Limit maximum width for better fit */
    margin-top: 1rem; /* Add space above button */
}
}

/* Media query for responsive design, adjusting styles for screens with a maximum width of 768 pixels. */
@media only screen and (max-width: 768px) {
    
    .main-menu {
    display: none;
    margin: 0px;
    padding: 0px;
    background: var(--pink);
    right: 0;
    list-style-type: none;
    position: absolute;
    flex-direction: column;
    z-index: 99999;
    width: 50%;
    top: 90px;
    }
    
    #hamburger {
        display: block;
        }

    #hamburger .bar {
        background-color: var(--orange); 
        width: 30px;
        height: 3px; 
        display: block;
        margin: 6px auto; 
        transition: background-color 0.3s ease; 
    }
    
    .menu a:hover {
        color: var(--terracotta); 
    }
    
    .menu a {
        transition: color 0.3s ease;
    }
    
    #hamburger:hover {
        background-color: var(--terracotta); 
    }
    
    #hamburger {
        transition: background-color 0.3s ease;
    }

    nav {
        border: none; /* Removes the border on small screens */
        width: auto;
    }

    .project {
        flex-direction: column-reverse;
        align-items: center;
        margin: 2rem; /* Adjust margin as needed */
        margin-bottom: 4em;

        /* flex-direction: column; 
        margin: 2rem; */
    }

    .banner_container {
        width: 100%; 
        max-width: 800px;
        /* align-items: center; Center banner text and button */
        margin-top: 2rem;
    }

    .bannertext {
        
        flex-direction: column; /* Arrange text and button in a column */
        margin-bottom: 1em; /* Add margin between text and button */
        align-items: flex-start;
    }

    .container-btn {
        margin-left: 0em; /* Remove left margin */
    }

    /* .jaia-image {
        margin-left: 0; 
        margin-bottom: 1.5rem;
    } */

    .jaia-image img {
        width: 90%; /* Set width to 90% of the viewport width */
        max-width: 600px; /* Set maximum width */
        height: auto; /* Let the height adjust automatically */
        margin: 1rem auto; /* Adjust margin as needed */
    }

    .description-container {
        width: auto; /* Adjust width to fit content */
    }


    .overview-container {
        /* width: 70%; Adjust the percentage as needed */
        max-width: 100%; /* Allow it to take up the full width of the viewport */
        height: auto; /* Let the height adjust automatically */
        word-wrap: break-word;
    }

  .role-tools-container {
        /* flex-direction: row;  */
        align-items: center; 
        margin-left: -2em;
        margin-top: 2em; 
        /* margin-top: 2rem;  */
        width: auto;
        justify-content: space-evenly;
    }
    
    .role-container {
        margin-bottom: 4.5em;
    }
    
    .project-banner h2 {
        margin-bottom: 0;
    }

    
    .project-outline-list {
        flex-direction: row;
        margin: 2rem;
        flex-wrap: wrap;
        gap: 30px;
    }
    


    /* empathy  */

    .empathy {
        display: flex;
        justify-content: center;
        margin-top: 4em;
        margin: 2rem;
    }

    .empathy-container {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    
    }
    
    .empathy-area {
        flex-direction: column-reverse;
        align-items: center;
        /* margin: auto; */
        gap: 2em;
    }

    .empathy1 {
        justify-content: center;
        align-items: center;
        margin-bottom: 1em;
        margin-top: 1em;
    }

    .empathy-text {
        /* width: 33em; */
        width: 100%; 
        max-width: 400px;
        margin-bottom: 2em;
    }

    .empathy-image img {
        width: 100%; /* Set width to 90% of the viewport width */
        max-width: 400px; /* Set maximum width */
        height: auto; /* Let the height adjust automatically */
        margin: 0 auto;
        /* margin: 2rem auto; Adjust margin as needed */
    }

    .empathy2 {
        margin: 2rem;
        width: auto;
    }

    /* .empathy-area2 {
        flex-direction: column;
    } */

    .revised1 {

        margin-left: 0;
    }

    .empathy-container2 {
        margin: auto;
        width: 100%;
    }

    .homepage_work {
        width: 90%;
        margin-top: 0em;
        gap: 30px;
    }
   
    /* ideate  */
    .ideate {
        margin-top: 4em;
        /* margin: 0; */
        margin:2rem;
    }

    .ideate-container {
        flex-direction: column-reverse; /* Change flex-direction to column-reverse */
        
    }
    
    .ideate-header {
        order: 2; /* Change the order to 2 to move it below */
        margin-top: 2em; /* Adjust margin for spacing */
        width:auto;
    }

    .ideate-container2 {
        width: auto; /* Set width to 90% of the viewport width */
        max-width: 100%;
    }
    
    .ideate-paragraph {
        word-wrap: break-word; /* Allow word wrapping */
        justify-content: center;
        align-items: center;
    }

    .ideate-image-container {
        justify-content: center;
        flex-wrap: wrap;    
        margin-top: 2em;
    }

    .ideate-img {
        width: 100%; /* Adjusted width for smaller screens */
        max-width: 400px; /* Maximum width for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }


    .container-btn2 {
    margin: auto;
    }

    .finalprototype {
        margin: 2rem;
    }
    
    .finalprototypep {
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .finalprototype-img {
        width: 100%; /* Set width to 90% of the viewport width */
        max-width: 600px; /* Set maximum width */
        height: auto; /* Let the height adjust automatically */
        margin: 1rem auto; /* Adjust margin as needed */
    }


    .footercontainer {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 5em; /* Adjust margin-top as needed */
    }

    #scrollupbutton {
        margin: 30px;
      }
}