
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


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

}
body{
    font-family: inter;
}

/*This is navigation */

.navbar{
    
    width: 100%;
    height: 105px;
    
    .nav-container{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 38px 65px 18px 33.76px;
        .logo-container{
            & img{
                width: 200px;
                height: 38.64px;
            }
        }
        .nav-menu{
            width: 280px;
            height: 27px;
            & ul{
                display: flex;
                justify-content: space-between;
                align-items: center;
                list-style-type: none;
                gap: 21px;
                & li{
                    display: inline-block;
                    & a{
                        text-decoration: none;
                        display: inline-block;
                        font-size: 22px;

                    }
                }
            }
        }
        .button-wrapping{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            .small-button{
                padding: 11px 28px;
                font-size: 22px;
                border-radius: 30px;
                background-color: #F1F1F1;

            }
            .big-button{
                padding: 11px 28px;
                font-size: 22px;
                border-radius: 30px;
                background-color: #000000;
                color: #FFFFFF;

            }
            & img{
                width: 36px;
                height: 36px;
                
            }
        }
    }
}
/*This is hero-section */
.hero-section{
    width: 100%;
    position: relative;
    height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 94px;
    background-image: url('Images/Rectangle\ 1.png');
    background-repeat: no-repeat;
    background-size: cover;
    .hero-form-container{
        width: 1160px;
        height: 344px;
        border-radius: 10px;
        border: 1px solid #000000;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
        & h1{
            font-size: 45px;
            font-weight: 500;
            color: #000000;
            margin: 44px 0 55px 0;
        }
        & form{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr ;
            gap: 18px;
            margin-bottom: 60px;
            width: 942px;
            height: 124px;
            .item{
                background: #ECECEC;
                color: #000;
                font-size: 22px;
                font-weight: 500;
                border-radius: 4px;
                padding-left: 20px;
                padding-right: 20px;
                border: none;
            }
            
            .input{
                grid-area: 2/1/2/4;
                font-size: 22px;
                font-weight: 500;
                color: #000;
                background: #ECECEC;
                border-radius: 8px;
                border: none;
                outline: none;
            }
            .submit{
                padding: 11px 28px;
                font-size: 22px;
                border-radius: 30px;
                background:#00EBC7 ;
                color: #000;
                font-weight: 600;
                text-decoration: none;
                border: none;
            }
                
        }
                    
        
    }
    .why-button{
        padding: 11px 28px;
        font-size: 22px;
        border-radius: 30px;
        border:1.5px solid #F1F1F1;
        color: #FFFFFF;
        background-color: transparent;
        text-decoration: underline;
    }
}
/*This is buy-sell section */
.buy-sell-section{
    width: 100%;
    height: 370px;
    border: 1px 0;
    border-color: #000000;
    background: #FDE24F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    & h2{
        font-size: 34px;
        font-weight: 500;
        margin-top: 80px;
        margin-bottom: 48px;
        color: #000;
        & span{
            font-size: 34px;
            font-weight: 400;
            font-style: italic;
        }
    }
    .logo-wrapper{
        width: 1220px;
        height: 120px;
        margin-bottom: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        & img{
            width: 44px;
            height: 71px;
        }
    }
}
/*This is feature section */
.feature-section{
    width: 100%;
    height: 680px;
    border-bottom: 1px solid #000000;
    & h2{
        font-size: 34px;
        font-weight: 500;
        color: #000000;
        margin-left: 65px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .card-wrapper{
        width: 1180px;
        height: 280px;
        border: 1px solid #000000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        & div{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 35px;
            & h3{
                font-size: 24px;
                font-weight: 500;
                color: #000;
                position: relative;
                display: flex;
            
                & div{
                    width: 120px;
                    height: 2px;
                    background: #000000;
                    position: absolute;
                    left: 120%;
                    top: 50%;
                }
            }
            & p{
                font-size: 20px;
                font-weight: 400;
                color: #535353;
            }
            & a{
                font-size: 16px;
                font-weight: 600;
                color: #161616;
            }
        }
    }
    .feature-button{
        font-size: 22px;
        font-weight: 500;
        padding: 11px 28px;
        border: 1.5px solid #000000;
        border-radius: 30px;
        margin: 99px auto 51px;
        display: block;
    }
}
/*This is offer section */
.offer-section{
    width: 100%;
    height: 700px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    .offer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 700px;
        width: 1280px;
        .buy-offer{
            border-right: 1px solid #000000;
            padding-right: 65px;
            & h2{
                font-size: 34px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 34px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 13px 55px 13px 20px;
                }
            }
            .offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 28px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
        .sell-offer{
            
            padding-left: 65px;
            & h2{
                font-size: 34px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 34px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 13px 55px 13px 20px;
                }
            }
            .sell-offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 28px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
    }

}
/*This is sign-up section */
.sign-up-section{
    width: 100%;
    height: 600px;
    background: #CFBAFF;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 127px;
    flex-direction: column;
    & h2{
        font-size: 75px;
        font-weight: 500;
        text-align: center;
    }
    .signup-button{
        padding: 15px 45px;
        background: #000;
        border-radius: 30px;
        color: #FFFFFF;
        font-size: 32px;
        font-weight: 500;
    }

}
/*This is footer section */
footer{
    background: #000000;
    width: 100%;
    height: 605px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .footer-container{
        width: 934px;
        height: 312px;
        display: flex;
        gap: 120px;
        align-items: start;
        
        & h3{
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 29px;
        }
        .a-wrapp{
            display: flex;
            flex-direction: column;
            gap: 13px;
        }
        

    }
    .horiz{
        height: 2px;
        width: 100%;
        background: #FFFFFF;
    }
    & p{
        font-size: 13px;
        font-weight: 500;
        margin: 40px 48px;
    }
}


@media screen and (max-width: 992px){
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


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

}
body{
    font-family: inter;
}



.navbar{
    
    width: 100%;
    height: 80px;
    
    .nav-container{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 38px 20px 18px 20px;
        .logo-container{
            & img{
                width: 120px;
                height: 25px;
            }
        }
        .nav-menu{
            width: 250px;
            height: 27px;
            & ul{
                display: flex;
                justify-content: space-between;
                align-items: center;
                list-style-type: none;
                gap: 10px;
                & li{
                    display: inline-block;
                    & a{
                        text-decoration: none;
                        display: inline-block;
                        font-size: 22px;

                    }
                }
            }
        }
        
        .button-wrapping{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            .small-button{
                padding: 11px 28px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #F1F1F1;

            }
            .big-button{
                padding: 11px 28px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #000000;
                color: #FFFFFF;

            }
            & img{
                width: 30px;
                height: 30px;
                
            }
        }
    }
}
.hero-section{
    width: 100%;
    position: relative;
    height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 94px;
    background-image: url('Images/Rectangle\ 1.png');
    background-repeat: no-repeat;
    background-size: cover;
    .hero-form-container{
        width: 780px;
        height: 344px;
        border-radius: 10px;
        border: 1px solid #000000;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
        & h1{
            font-size: 45px;
            font-weight: 500;
            color: #000000;
            margin: 44px 0 55px 0;
        }
        & form{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 18px;
            margin-bottom: 60px;
            width:750px;
            height: 124px;
            .item{
                background: #ECECEC;
                color: #000;
                font-size: 22px;
                font-weight: 500;
                border-radius: 4px;
                padding-left: 20px;
                padding-right: 20px;
                border: none;
            }
            
            .input{
                grid-area: 2/1/2/4;
                font-size: 22px;
                font-weight: 500;
                color: #000;
                background: #ECECEC;
                border-radius: 8px;
                border: none;
                outline: none;
            }
            .submit{
                padding: 11px 28px;
                font-size: 22px;
                border-radius: 30px;
                background:#00EBC7 ;
                color: #000;
                font-weight: 600;
                text-decoration: none;
                border: none;
            }
                
        }
                    
        
    }
    .why-button{
        padding: 11px 28px;
        font-size: 22px;
        border-radius: 30px;
        border:1.5px solid #F1F1F1;
        color: #FFFFFF;
        background-color: transparent;
        text-decoration: underline;
    }
}
.buy-sell-section{
    width: 100%;
    height: 370px;
    border: 1px 0;
    border-color: #000000;
    background: #FDE24F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    & h2{
        font-size: 34px;
        font-weight: 500;
        margin-top: 80px;
        margin-bottom: 48px;
        color: #000;
        & span{
            font-size: 34px;
            font-weight: 400;
            font-style: italic;
        }
    }
    .logo-wrapper{
        width: 750px;
        height: 120px;
        margin-bottom: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        & img{
            width: 40px;
            height: 60px;
        }
    }
}
.feature-section{
    width: 100%;
    height: 600px;
    border-bottom: 1px solid #000000;
    & h2{
        font-size: 34px;
        font-weight: 500;
        color: #000000;
        margin-left: 65px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .card-wrapper{
        width: 780px;
        height: 250px;
        border: 1px solid #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        & div{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            & h3{
                font-size: 20px;
                font-weight: 500;
                color: #000;
                position: relative;
                display: flex;
            
                & div{
                    width: 50px;
                    height: 2px;
                    background: #000000;
                    position: absolute;
                    left: 110%;
                    top: 50%;
                }
            }
            & p{
                font-size: 16px;
                font-weight: 400;
                color: #535353;
            }
            & a{
                font-size: 14px;
                font-weight: 600;
                color: #161616;
            }
        }
    }
    .feature-button{
        font-size: 22px;
        font-weight: 500;
        padding: 11px 28px;
        border: 1.5px solid #000000;
        border-radius: 30px;
        margin: 99px auto 51px;
        display: block;
    }
}
.offer-section{
    width: 100%;
    height: 700px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    .offer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 700px;
        width: 900px;
        .buy-offer{
            border-right: 1px solid #000000;
            padding-right: 35px;
            & h2{
                font-size: 34px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 34px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 40px 13px 10px;
                }
            }
            .offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 28px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
        .sell-offer{
            
            padding-left: 35px;
            & h2{
                font-size: 34px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 34px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 40px 13px 10px;
                }
            }
            .sell-offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 28px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
    }

}
.sign-up-section{
    width: 100%;
    height: 600px;
    background: #CFBAFF;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 127px;
    flex-direction: column;
    & h2{
        font-size: 60px;
        font-weight: 500;
        text-align: center;
    }
    .signup-button{
        padding: 15px 45px;
        background: #000;
        border-radius: 30px;
        color: #FFFFFF;
        font-size: 32px;
        font-weight: 500;
    }

}
footer{
    background: #000000;
    width: 100%;
    height: 605px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .footer-container{
        width:750px;
        height: 380px;
        display: flex;
        gap: 120px;
        align-items: start;
        
        & h3{
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 29px;
        }
        .a-wrapp{
            display: flex;
            flex-direction: column;
            gap: 13px;
        }
        

    }
    .horiz{
        height: 2px;
        width: 100%;
        background: #FFFFFF;
    }
    & p{
        font-size: 13px;
        font-weight: 500;
        margin: 40px 48px;
    }
}
} 
@media screen and (max-width: 768px){
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


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

}
body{
    font-family: inter;
}



.navbar{
    
    width: 100%;
    height: 60px;
    
    .nav-container{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px 20px 18px 20px;
        .logo-container{
            & img{
                width: 120px;
                height: 25px;
            }
        }
        .nav-menu{
            width: 250px;
            display: none;
            height: 27px;
            & ul{
                display: flex;
                justify-content: space-between;
                align-items: center;
                list-style-type: none;
                gap: 10px;
                & li{
                    display: inline-block;
                    & a{
                        text-decoration: none;
                        display: inline-block;
                        font-size: 22px;

                    }
                }
            }
        }
        
        .button-wrapping{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            .small-button{
                padding: 11px 28px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #F1F1F1;

            }
            .big-button{
                padding: 11px 28px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #000000;
                color: #FFFFFF;

            }
            & img{
                width: 30px;
                height: 30px;
                
            }
        }
    }
}
.hero-section{
    width: 100%;
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    background-image: url('Images/Rectangle\ 1.png');
    background-repeat: no-repeat;
    background-size: cover;
    .hero-form-container{
        width: 570px;
        height: 344px;
        border-radius: 10px;
        border: 1px solid #000000;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
        & h1{
            font-size: 40px;
            font-weight: 500;
            color: #000000;
            margin: 44px 0 55px 0;
        }
        & form{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 60px;
            width:550px;
            height: 100px;
            .item{
                background: #ECECEC;
                color: #000;
                font-size: 22px;
                font-weight: 500;
                border-radius: 4px;
                padding-left: 20px;
                padding-right: 20px;
                border: none;
            }
            
            .input{
                grid-area: 2/2/2/3;
                font-size: 22px;
                font-weight: 500;
                color: #000;
                background: #ECECEC;
                border-radius: 8px;
                border: none;
                outline: none;
            }
            .submit{
                padding: 11px 28px;
                font-size: 22px;
                border-radius: 30px;
                background:#00EBC7 ;
                color: #000;
                font-weight: 600;
                text-decoration: none;
                border: none;
            }
                
        }
                    
        
    }
    .why-button{
        padding: 11px 28px;
        font-size: 22px;
        border-radius: 30px;
        border:1.5px solid #F1F1F1;
        color: #FFFFFF;
        background-color: transparent;
        text-decoration: underline;
    }
}
.buy-sell-section{
    width: 100%;
    height: 370px;
    border: 1px 0;
    border-color: #000000;
    background: #FDE24F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    & h2{
        font-size: 30px;
        font-weight: 500;
        margin-top: 80px;
        margin-bottom: 48px;
        color: #000;
        & span{
            font-size: 30px;
            font-weight: 400;
            font-style: italic;
        }
    }
    .logo-wrapper{
        width: 560px;
        height: 120px;
        margin-bottom: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        & img{
            width: 40px;
            height: 60px;
        }
    }
}
.feature-section{
    width: 100%;
    height: 600px;
    border-bottom: 1px solid #000000;
    & h2{
        font-size: 30px;
        font-weight: 500;
        color: #000000;
        margin-left: 65px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .card-wrapper{
        width: 570px;
        height: 250px;
        border: 1px solid #000000;
        display: flex;
    
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        & div{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            & h3{
                font-size: 18px;
                font-weight: 500;
                color: #000;
                position: relative;
                display: flex;
            
                & div{
                    width: 50px;
                    height: 2px;
                    display: none;
                    background: #000000;
                    position: absolute;
                    left: 110%;
                    top: 50%;
                }
            }
            & p{
                font-size: 14px;
                font-weight: 400;
                color: #535353;
            }
            & a{
                font-size: 12px;
                font-weight: 500;
                color: #161616;
            }
        }
    }
    .feature-button{
        font-size: 22px;
        font-weight: 500;
        padding: 8px 16px;
        border: 1.5px solid #000000;
        border-radius: 30px;
        margin: 60px auto;
        display: block;
    }
}
.offer-section{
    width: 100%;
    height: 576px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    .offer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 700px;
        width: 570px;
        .buy-offer{
            border-right: none;
            padding-right: 20px;
            margin-left: 20px;
            & h2{
                font-size: 30px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 20px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 20px 13px 10px;
                    & p{
                        font-size: 14px;
                    }
                    & img{
                        width: 50px;height: 50px;
                    }
                }
            }
            .offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 16px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
        .sell-offer{
            
            padding-left: 20px;
            & h2{
                font-size: 30px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 20px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 20px 13px 10px;
                    & p{
                        font-size: 14px;
                    }
                    & img{
                        width: 50px;height: 50px;
                    }
                }
            }
            .sell-offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 11px 16px;
                border-radius: 15px;
                font-size: 22px;
                font-weight: 500;
                display: block;
                margin: 42px auto;
            }

        }
    }

}
.sign-up-section{
    width: 100%;
    height: 500px;
    background: #CFBAFF;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-direction: column;
    & h2{
        font-size: 45px;
        font-weight: 500;
        text-align: center;
    }
    .signup-button{
        padding: 15px 30px;
        background: #000;
        border-radius: 30px;
        color: #FFFFFF;
        font-size: 25px;
        font-weight: 500;
    }

}
footer{
    background: #000000;
    width: 100%;
    height: 605px;
    color: #FFFFFF;
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .footer-container{
        width:570px;
        height: 380px;
        display: flex;
        gap: 60px;
        align-items: start;
        & img{
            display: none;
        }
        
        & h3{
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 29px;
        }
        .a-wrapp{
            display: flex;
            flex-direction: column;
            gap: 13px;
        }
        

    }
    .horiz{
        height: 2px;
        width: 100%;
        background: #FFFFFF;
    }
    & p{
        font-size: 13px;
        font-weight: 400;
        margin: 40px 48px;
    }
 }
} 
@media screen and (max-width: 576px){
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


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

}
body{
    font-family: inter;
}



.navbar{
    
    width: 100%;
    height: 60px;
    
    .nav-container{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px 20px 18px 20px;
        .logo-container{
            & img{
                width: 120px;
                height: 25px;
            }
        }
        .nav-menu{
            width: 250px;
            display: none;
            height: 27px;
            & ul{
                display: flex;
                justify-content: space-between;
                align-items: center;
                list-style-type: none;
                gap: 10px;
                & li{
                    display: inline-block;
                    & a{
                        text-decoration: none;
                        display: inline-block;
                        font-size: 22px;

                    }
                }
            }
        }
        
        .button-wrapping{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            .small-button{
                padding: 11px 28px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #F1F1F1;

            }
            .big-button{
                padding: 11px 28px;
                font-size: 20px;
                display: none;
                border-radius: 30px;
                background-color: #000000;
                color: #FFFFFF;

            }
            & img{
                width: 30px;
                height: 30px;
                
            }
        }
    }
}
.hero-section{
    width: 100%;
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-image: url('Images/Rectangle\ 1.png');
    background-repeat: no-repeat;
    background-size: cover;
    .hero-form-container{
        width: 350px;
        height: 250px;
        border-radius: 10px;
        border: 1px solid #000000;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
        & h1{
            font-size: 30px;
            font-weight: 500;
            color: #000000;
            margin: 34px 0 45px 0;
        }
        & form{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
            width:340px;
            height: 150px;
            .item{
                background: #ECECEC;
                color: #000;
                font-size: 16px;
                font-weight: 400;
                border-radius: 4px;

                padding: 10px 20px;
                border: none;
            }
            
            .input{
                grid-area: 3/1;
                font-size: 18px;
                font-weight: 400;
                color: #000;
                background: #ECECEC;
                border-radius: 8px;
                border: none;
                outline: none;
            }
            .submit{
                padding: 11px 28px;
                font-size: 18px;
                border-radius: 30px;
                background:#00EBC7 ;
                color: #000;
                font-weight: 500;
                text-decoration: none;
                border: none;
            }
                
        }
                    
        
    }
    .why-button{
        padding: 8px 16px;
        font-size: 20px;
        border-radius: 30px;
        border:1.5px solid #F1F1F1;
        color: #FFFFFF;
        background-color: transparent;
        text-decoration: underline;
    }
}
.buy-sell-section{
    width: 100%;
    height:auto;
    border: 1px 0;
    border-color: #000000;
    background: #FDE24F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    & h2{
        font-size: 25px;
        font-weight: 500;
        margin-top: 80px;
        margin-bottom: 48px;
        margin: 40px 0 40px 20px;
        color: #000;
        & span{
            font-size: 25px;
            font-weight: 400;
            font-style: italic;
        }
    }
    .logo-wrapper{
        width: 350px;
        height: auto;
        margin-bottom: 80px;
        margin-left: 30%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 40px;
        
        
       
        & img{
            width: 40px;
            height: 60px;
        }
    }
}
.feature-section{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #000000;
    & h2{
        font-size: 30px;
        font-weight: 500;
        color: #000000;
        margin-left: 65px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .card-wrapper{
        width: 350px;
        height: auto;
        border: 1px solid #000000;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        & div{
            display: flex;
            flex-direction: column;
            width: 33.33%;
            justify-content: center;
            align-items: center;
            gap: 10px;
            & h3{
                font-size: 18px;
                font-weight: 500;
                color: #000;
                position: relative;
                display: flex;
            
                & div{
                    width: 50px;
                    height: 2px;
                    display: none;
                    background: #000000;
                    position: absolute;
                    left: 110%;
                    top: 50%;
                }
            }
            & p{
                font-size: 14px;
                font-weight: 400;
                color: #535353;
            }
            & a{
                font-size: 12px;
                font-weight: 500;
                color: #161616;
            }
        }
    }
    .feature-button{
        font-size: 20px;
        font-weight: 500;
        padding: 8px 12px;
        border: 1.5px solid #000000;
        border-radius: 30px;
        margin: 60px auto;
        display: block;
    }
}
.offer-section{
    width: 100%;
    height: auto;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    .offer-container{
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
        width: 350px;
        .buy-offer{
            border-right: none;
            padding-right: 20px;
            margin-left: 20px;
            & h2{
                font-size: 30px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 20px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 20px 13px 10px;
                    & p{
                        font-size: 14px;
                    }
                    & img{
                        width: 40px;height: 40px;
                    }
                }
            }
            .offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 10px 14px;
                border-radius: 15px;
                font-size: 20px;
                font-weight: 400;
                display: block;
                margin: 42px auto;
            }

        }
        .sell-offer{
            
            padding-left: 20px;
            & h2{
                font-size: 30px;
                font-weight: 500;
                margin: 75px 0 50px 0;
                
            }
            .offer-cards{
                display: flex;
                flex-direction: column;
                gap: 20px;
                & div{
                    border-radius: 15px;
                    border: 1px solid #000000;
                    background: #FFFFFF;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 20px 13px 10px;
                    & p{
                        font-size: 14px;
                    }
                    & img{
                        width: 40px;height: 40px;
                    }
                }
            }
            .sell-offer-button{
                background: #000000;
                color: #FFFFFF;
                padding: 10px 14px;
                border-radius: 15px;
                font-size: 20px;
                font-weight: 400;
                display: block;
                margin: 42px auto;
            }

        }
    }

}
.sign-up-section{
    width: 100%;
    height: auto;
    background: #CFBAFF;
    border-bottom: 1px solid #000000;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-direction: column;
    & h2{
        font-size: 35px;
        font-weight: 500;
        text-align: center;
    }
    .signup-button{
        padding: 10px 20px;
        background: #000;
        border-radius: 30px;
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 500;
    }

}
footer{
    background: #000000;
    width: 100%;
    height: auto;
    color: #FFFFFF;
    display: flex;
    padding-top: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .footer-container{
        padding-bottom: 20px;
        width:350px;
        height: auto;
        display: flex;
        gap: 15px;
        align-items: start;
        & img{
            display: none;
        }
        
        & h3{
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .a-wrapp{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        

    }
    .horiz{
        height: 2px;
        width: 100%;
        background: #FFFFFF;
    }
    & p{
        font-size: 10px;
        font-weight: 400;
        margin: 20px;
    }
 }
} 

    