*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: rgba(0, 0, 0, 0.87);
}

html{
    scroll-behavior: smooth;
}

.nav{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 99;
    background-color: transparent;
}

.nav a{
    color: black;
    text-decoration: none;
}

.nav .icon a{
    font-weight: 500;
    font-size: 25px;
    transition: 0.25s;
}

.nav .icon a:hover{
    color:darkgray;
}

.nav .links a{
    margin-left: 40px;
    color: darkgray;
    transition: 0.25s;
}

.nav .links a:hover{
    color:black;
}

.menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    display: none;
}

.menu-btn .burger {
    width: 20px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn .burger::before,
.menu-btn .burger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn .burger::before {
    transform: translateY(-8px);
}

.menu-btn .burger::after {
    transform: translateY(8px);
}

.menu-btn.open .burger {
    background: transparent;
}

.menu-btn.open .burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .burger::after {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -98;
    opacity: 0;
    transition: .25s ease-in-out;
}

.mobile-menu a {
    margin-bottom: 50px;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

#section1{
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

#section1 .title-container{
    width: 1350px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 190px;
    margin-bottom: 35px;
}

#section1 .title-container .left p{
    font-size: 60px;
    font-weight: 450;
    letter-spacing: -5px;
}

#section1 .title-container .right p{
    font-size: 30px;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: -2px;
}

#section1 .img1{
    width: 100%;
    height: 900px;
}

#img1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#section1 .container{
    width: 950px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin-top: 200px;
}

#section1 .container .container-top{
    width: 100%;
    margin-bottom: 16px;
}

#section1 .container .container-top .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
}

#section1 .container .container-top p{
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 42px;
    letter-spacing: -1px;
    font-weight: 350;
    width: 97%;
}

#section1 .container .container-btm{
    width: 100%;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#section1 .container .container-btm .left .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: normal;
}

#section1 .container .container-btm .left{
    width: 60%;
    height: 300px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

#section1 .container .container-btm .left p{
    font-size: 16px;
    line-height: 24px;
}

#section1 .container .container-btm .right{
    width: 35%;
    height: 300px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

#section1 .container .container-btm .right .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: normal;
}

#section1 .container .container-btm .right p{
    font-size: 16px;
    line-height: 24px;
}

#section2{
    width: 100vw;
    min-height: 0vh;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    margin-top: 200px;
}

#section2 .container{
    width: 1350px;
    display: flex;
    position: relative;
    margin-bottom: 200px;
}

#section2 .container img{
    width: 100%;
    height: auto;
}

#section3{
    width: 100vw;
    min-height: 0vh;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
}

#section3 .container{
    width: 825px;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

#section3 .container .container2{
    width: 100%;
}

#container2{
    margin-top: 200px;
}

#section3 .container .container2 .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
}

#section3 .container .container2 .sub-title{
    font-size: 28px;
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 36px;
    width: 100%;
    padding-right: 20%;
    letter-spacing: -1px;
}

#section3 .container .container2 .container3{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

#section3 .container .container2 .container3 div{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 20px;
}

#section3 .container .container2 .container3 div .number{
    font-weight: 500;
    color: rgba(0, 0, 0, 0.38);
}

#section3 .container .container2 .container3 div .content{
    width: 90%;
    font-size: 16px;
    line-height: 24px;
}

#section3 .container .container2 .container3 div .content span{
    display: block;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

#section3 .container .container2 .para1{
    font-size: 36px;
    width: 90%;
    font-weight: 600;
    letter-spacing: -1px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 42px;
}

#section3 .container .container2 .para2{
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px;
}

#section3 .container .container2 .para3{
    width: 100%;
    margin-top: 40px;
    padding: 30px 60px;
    background-color: #fafafa;
}

#section3 .container .container2 .para3 p{
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 1px solid darkgray;
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 100%;
}

#section4{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    margin-top: 200px;
    background-color: #fafafa;
    padding: 200px 0;
}

#section4 .container{
    width: 825px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

#section4 .container .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
}

#section4 .container .sub-title{
    font-size: 68px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    letter-spacing: -2px;
    text-align: center;
}

#section4 .container .sub-title2{
    font-size: 26px;
    font-weight: 350;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgba(0, 0, 0, 0.38);
    margin-top: 50px;
    letter-spacing: -1px;
}

#main-demo{
    margin-top: 50px;
}

#section4 .container .box-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    margin-top: 150px;
}

#section4 .container .box-container .box{
    width: 37%;
}

#section4 .container .box-container .box .box-title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
}

#section4 .container .box-container .box .box-subtitle{
    font-size: 28px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 36px;
}

#section4 .container .box-container .box ul{
    margin-top: 20px;
}

#section4 .container .box-container .box ul li{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

#section5{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    flex-direction: column;
    margin-top: 200px;
}

#section5 .bottom-border{
    border-bottom: 1px solid black;
    width: 825px;
    margin-top: 100px;
}

#section5 .container{
    width: 825px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

#section5 .container .title{
    font-size: 68px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    letter-spacing: -2px;
    padding-bottom: 40px;
    border-bottom: 1px solid black;
    width: 100%;
    text-align: center;
}

#section5 .container .sub-title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
    width: 100%;
    margin-top: 100px;
}

#section5 .container .sub-title2{
    font-size: 28px;
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 36px;
    width: 100%;
    padding-right: 20%;
    letter-spacing: -1px;
}

#section5 .container .sub-title3{
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px;
}

#section5 .container .wireframe-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    background-color: #e5e5e5;
    padding-top: 4%;
    flex-direction: column;
    gap: 30px;
}

#section5 .container .wireframe-container img{
    width: 90%;
}

#section5 .container .design-container{
    width: 100%;
    background-color: #e5e5e5;
    display: flex;
    justify-content: right;
    margin-top: 50px;
    padding-top: 4%;
}

#section5 .container .design-container div{
    display: flex;
    align-items: start;
    justify-content: left;
    width: 95%;
    height: 100%;
    overflow: auto;
    gap: 1.6%;
}

#section5 .container .design-container div img{
    min-width: 95%;
}

#section5 .container .prototype-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#section5 .container .prototype-container .scroll-container{
    max-width: 100%;
    display: flex;
    position: relative;
    gap: 5.2%;
    overflow-x: auto;
}

#section5 .container .prototype-container .scroll-container div{
    min-width: 36%;
}

#section5 .container .prototype-container .scroll-container div p{
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.38);
    letter-spacing: -1px;
    font-weight: 500;
    margin-bottom: 10px;
}

#section6{
    width: 100vw;
    min-height: 0vh;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 200px;
}

#section6 .container{
    width: 825px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

#section6 .container .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
    width: 100%;
}

#section6 .container .sub-title{
    font-size: 28px;
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 36px;
    width: 80%;
    letter-spacing: -1px;
    margin-right: 20%;
    margin-bottom: 20px;
}

#section6 .container .content{
    padding: 50px 50px;
    background-color: #fafafa;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

#next-section{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
}

.next-container{
    width: 950px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.next-container .title{
    font-size: 42px;
    letter-spacing: -2px;
}

.next-container .box{
    position: relative;
    width: 575px;
    display: block;
    text-decoration: none;
}

.next-container .box .img-container{
    position: relative;
    width:100%;
    height:400px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #f0f0f0;
}

.next-container .box .img-container:hover{
    background-color: rgba(240, 240, 240, 0.5);
}

.next-container .box .img-container:hover > #img2{
    opacity: 0.5;
}

.next-container .box .img-container:hover > #view{
    scale: 1;
    opacity: 1;
}

#img2{
    width:100%;
    height:100%;
    scale: 0.6;
    object-fit: contain;
    object-position: center;
}

#view{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgb(0, 113, 227);
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0;
    opacity: 0;
    transition: .25s;
}

#view p{
    font-size: 24px;
    color: black;
}

#box-head{
    font-size: 25px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 5px;
}

#box-subhead{
    color: darkgray;
    font-size: 18px;
}

.footer{
    background: #f0f0f0;
    height: 500px;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-container{
    position: relative;
    width:1536px;
    height: 100%;
}

.footer-icon{
    position: relative;
    width:100%;
    height: 15px;
    margin-top: 100px;
}

.footer-icon a{
    position: absolute;
    bottom: -20px;
    text-decoration: none;
    color: black;
    font-size: 30px;
    font-weight: 500;
    margin-left: 150px;
    transition: 0.25s;
}

.footer-icon a:hover{
    opacity: 0.5;
    scale: 1.1;
}

.footer-cta{
    width: 100%;
    line-height: 45px;
}

#p1{
    font-size: 45px;
    color: black;
    letter-spacing: -3px;
    margin-left: 780px;
}

.footer-cta a{
    text-decoration: none;
    color: black;
    width:335px;
    display: block;
    letter-spacing: -3px;
    margin-left: 780px;
}

.footer-cta a:hover{
    opacity: 0.5;
}

#p2{
    color: black;
    font-size: 45px;
    width:335px;
    display: inline-block;
}

#p2 img{
    width: 30px;
    height: auto;
    margin-left: 5px;
}

.footer-links{
    width:1500px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.footer-links .footer-left{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-left: 780px;
}

.footer-links .footer-right{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-right: 220px;
}

.footer-links a{
    text-decoration: none;
    color: rgb(35, 35, 35);
    margin-bottom: 8px;
}

.footer-links a:hover{
    opacity: 0.5;
}

.footer-credit{
    position: absolute;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    padding: 25px 0;
    border-top:1px solid darkgray;
}

.footer-credit .footer-left2 p{
    font-size: 14px;
    color: darkgray;
}

.footer-credit .footer-right2 p{
    font-size: 14px;
    color: darkgray;
}

@media (max-width: 1680px) {
    #section2{
        margin-top: 12vw;
    }
    #section2 .container{
        width: 80%;
        margin-bottom: 12vw;
    }
}

@media (max-width: 1536px) {
    .footer .footer-container {
        width: 768px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 435px;
    }

    .footer-cta a {
        margin-left: 435px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 435px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    #section1 .title-container {
        width: 1150px;
        margin-bottom: 25px;
    }

    #section1 .title-container .left p {
        font-size: 52px;
    }

    #section1 .title-container .right p {
        font-size: 26px;
    }

    #section1 .img1 {
        height: auto;
    }
}

@media (max-width: 1280px) {
    #section1 .title-container {
        width: 950px;
        margin-bottom: 15px;
    }

    #section1 .title-container .left p {
        font-size: 46px;
    }

    #section1 .title-container .right p {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    #section1 .title-container {
        width: 768px;
        margin-bottom: 15px;
        margin-top: 200px;
    }

    #section1 .title-container .left p {
        font-size: 42px;
    }

    #section1 .title-container .right p {
        font-size: 20px;
    }

    #section1 .container {
        width: 768px;
        margin-top: 150px;
    }

    #section1 .container .container-top p {
        font-size: 22px;
        line-height: 35px;
        margin-bottom: 35px;
    }

    #section1 .container .container-btm .left {
        height: 350px;
    }

    #section1 .container .container-btm .right {
        height: 350px;
    }

    #next-section {
        margin-bottom: 150px;
    }

    .next-container {
        width: 768px;
    }

    .next-container .title {
        font-size: 38px;
    }

    .next-container .box {
        width: 400px;
    }

    .next-container .box .img-container {
        height: 280px;
    }

    #box-head {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 2px;
    }

    #box-subhead {
        font-size: 14px;
    }
    #section3 .container{
        width: 768px;
    }
    #container2{
        margin-top: 150px;
    }
    #section3 .container .container2 .para1{
        width: 100%;
    }
    #section4{
        margin-top: 150px;
        padding: 150px 0;
    }
    #section4 .container{
        width: 768px;
    }
    #section4 .container .box-container{
        width: 768px;
    }
    #section4 .container .box-container .video{
        width: 51%;
    }
    #section4 .container .box-container .box{
        width: 41%;
    }
    #section5{
        margin-top: 150px;
        margin-bottom: 150px;
    }
    #section5 .container{
        width: 768px;
    }
    #section5 .bottom-border{
        width: 768px;
    }
    #section5 .container .wireframe-container{
        width: 100%;
    }
    #section6{
        margin-bottom: 150px;
    }
    #section6 .container{
        width: 768px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 640px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 310px;
    }

    .footer-cta a {
        margin-left: 310px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 310px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    #section1 .title-container {
        width: 475px;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        margin-top: 150px;
    }

    #section1 .title-container .left p {
        font-size: 38px;
        letter-spacing: -4px;
    }
    #section1 .title-container .right p{
        letter-spacing: -1px;
    }

    #section1 .container {
        width: 475px;
        margin-top: 100px;
    }

    #section1 .container .container-top .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-top p {
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 29px;
    }

    #section1 .container .container-btm {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    #section1 .container .container-btm .left {
        height: auto;
        width: 90%;
    }

    #section1 .container .container-btm .left .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-btm .left p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 35px;
    }

    #section1 .container .container-btm .right {
        height: auto;
        width: 90%;
    }

    #section1 .container .container-btm .right .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-btm .right p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 35px;
    }

    .next-container {
        width: 475px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .next-container .title {
        font-size: 32px;
    }

    .next-container .box {
        width: 320px;
    }

    .next-container .box .img-container {
        height: 220px;
    }
    #section2{
        margin-bottom: 33px;
    }
    #section3 .container{
        width: 475px;
    }
    #section3 .container .container2 .para1{
        width: 100%;
        font-size: 28px;
        line-height: 33px;
    }
    #section3 .container .container2 .title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #section3 .container .container2 .sub-title{
        font-size: 22px;
        line-height: 28px;
        padding-right: 0;
    }
    #section3 .container .container2 .container3{
        margin-top: 15px;
    }
    #section3 .container .container2 .container3 div{
        margin-bottom: 10px;
    }
    #section3 .container .container2 .container3 div .number{
        font-size: 16px;
    }
    #section3 .container .container2 .container3 div .content{
        font-size: 14px;
        line-height: 21px;
    }
    #section3 .container .container2 .container3 div .content span{
        font-size: 16px;
        margin-bottom: 2.5px;
    }
    #section3 .container .container2 .para2{
        font-size: 14px;
        line-height: 21px;
        margin-top: 15px;
    }
    #section3 .container .container2 .para3{
        margin-top: 20px;
        padding: 15px 30px;
    }
    #section3 .container .container2 .para3 p{
        font-size: 20px;
        line-height: 30px;
        padding-left: 20px;
        padding-top: 2.5px;
        padding-bottom: 2.5px;
    }
    #section4 .container{
        width: 475px;
    }
    #section4 .container .title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #section4 .container .sub-title{
        font-size: 46px;
        letter-spacing: -1px;
    }
    #section4 .container .sub-title2{
        font-size: 20px;
        margin-top: 25px;
    }
    #main-demo{
        margin-top: 25px;
    }
    #section4 .container .box-container{
        margin-top: 75px;
        width: 475px;
        flex-direction: column;
    }
    #section4 .container .box-container .video{
        width: 85%;
        order: 1;
        margin-bottom: 20px;
    }
    #section4 .container .box-container .box{
        width: 80%;
        order: 2;
    }
    #section4 .container .box-container .box .box-title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #section4 .container .box-container .box .box-subtitle{
        font-size: 22px;
        line-height: 28px;
    }
    #section4 .container .box-container .box ul{
        margin-top: 10px;
    }
    #section4 .container .box-container .box ul li{
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 7.5px;
    }
    #section5 .container{
        width: 475px;
    }
    #section5 .bottom-border{
        width: 475px;
        margin-top: 75px;
    }
    #section5 .container .title{
        font-size: 46px;
        letter-spacing: -1px;
        padding-bottom: 20px;
    }
    #section5 .container .wireframe-container{
        margin-top: 25px;
    }
    #section5 .container .sub-title{
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 75px;
    }
    #section5 .container .sub-title2{
        font-size: 22px;
        line-height: 28px;
        padding-right: 0;
    }
    #section5 .container .sub-title3{
        font-size: 14px;
        line-height: 21px;
        margin-top: 15px;
    }
    #section5 .container .design-container{
        margin-top: 25px;
    }
    #section5 .container .prototype-container{
        margin-top: 25px;
    }
    #section5 .container .prototype-container .scroll-container div p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    #section6{
        margin-top: 75px;
    }
    #section6 .container{
        width: 475px;
    }
    #section6 .container .title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #section6 .container .sub-title{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    #section6 .container .content{
        font-size: 14px;
        line-height: 21px;
        padding: 25px 25px;
    }
}

@media (max-width: 640px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 475px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 142px;
    }

    .footer-cta a {
        margin-left: 142px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 142px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }
}

@media (max-width: 475px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 320px;
    }

    .footer-icon a {
        margin-left: 0;
        font-size: 25px;
    }

    #p1 {
        margin-left: 130px;
        font-size: 28px;
    }

    #p2 {
        font-size: 28px;
        width: auto;
    }

    #p2 img {
        width: 20px;
        margin-left: 0px;
    }

    .footer-cta {
        line-height: 30px;
        margin-top: 30px;
    }

    .footer-cta a {
        margin-left: 130px;
        width: auto;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
    }

    .footer-right {
        padding-left: 130px;
    }

    .footer-links a {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links .footer-left {
        margin-left: 130px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    .footer-credit {
        padding: 15px 0;
    }

    .footer-credit .footer-left2 p {
        font-size: 10px;
    }

    .footer-credit .footer-right2 p {
        font-size: 10px;
    }
    #section1 .title-container{
        width: 375px;
    }
    #section1 .title-container .left p {
        font-size: 32px;
        letter-spacing: -3px;
    }
    #section1 .title-container .right p{
        font-size: 18px;
    }

    #section1 .container {
        width: 375px;
    }

    .next-container {
        width: 320px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .next-container .title {
        font-size: 32px;
    }

    .next-container .box {
        width: 320px;
    }

    .next-container .box .img-container {
        height: 220px;
    }
    #section3 .container{
        width: 375px;
    }
    #section4 .container{
        width: 375px;
    }
    #section4 .container .title{
        text-align: center;
    }
    #section4 .container .box-container{
        width: 375px;
    }
    #section5 .bottom-border{
        width: 375px;
    }
    #section5 .container{
        width: 375px;
    }
    #section6 .container{
        width: 375px;
    }
    #section6 .container .sub-title{
        width: 100%;
        margin-right: 0;
    }
}