@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter";
}

body{
    background-color: #231343;
}

.header{
    width: 97%;
    height: 120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.4rem;
}

.logo img{
    width: 349px;
    height: 88px;
}

.nav{
    width: 50%;
}

.nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 26px;
}

.nav ul li a{
    color: #fff;
}

.burger{
    width: 4%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none;
}

.burger div{
    width: 100%;
    height: 4px;
    background-color: #d9d9d9;
}

.hero{
    width: 93%;
    height: 589px;
    border-radius: 50px;
    margin: auto;
    margin-top: 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.22),rgba(0,0,0,0.22)), url(Images/contact-hero.png);
    background-size: 100% 120%;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.hero-text{
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hero-text h2{
    font-size: 68px;
    font-weight: 500;
    width: 60%;
    color: #fff;
}

.hero-text p{
    width: 40%;
    font-size: 22px;
    color: #fff;
}

.contact-form{
    width: 93%;
    height: auto;
    margin: auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact-form-left{
    width: 35%;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    justify-content: space-around;
}

.contact-form-left h2{
    font-size: 40px;
    color: #fff;
    font-weight: 500;
}

.contact-form-left ul{
    height: 26%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.contact-form-left ul li{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.social-media-cards{
    width: 95%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social-media-card{
    width: 66px;
    height: 66px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-media-card i{
    font-size: 30px;
    color: #fff;
}

.contact-form-right{
    width: 50%;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact-form-right form{
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.input{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.input label{
    font-size: 20px;
    color: #fff;
}

.input input{
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-left: 0px solid transparent;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    outline: none;
    padding-left: 1rem;
    color: #fff;
}

.contact-form-right select{
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    outline: none;
    padding-left: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.contact-form-right select option {
    background: rgba(20, 20, 20, 0.8);
    color: #fff;
}

.contact-form-right button{
    width: 35%;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-right: 0px solid transparent;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}

.invest{
    width: 93%;
    height: 500px;
    margin: auto;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.invest h1{
    width: 80%;
    font-size: 60px;
    text-align: center;
    font-weight: 500;
    color: #fff;
}

.invest p{
    width: 50%;
    font-size: 27px;
    color: #fff;
    text-align: center;
}

.invest button{
    width: 319px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-right: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
}

.footer{
    width: 1200px;
    height: 755px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    margin: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-top{
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-top-1{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-logo{
    width: 285px;
    height: 74px;
}

.footer-logo img{
    width: 100%;
    height: 100%;
}

.footer-description{
    width: 309px;
}

.footer-description p{
    font-size: 20px;
    color: #fff;
}

.footer-social-media{
    width: 335px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social-media{
    width: 73px;
    height: 73px;
    background-color: #231343;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-media i{
    font-size: 40px;
    color: #fff;
}

.footer-top-2{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footer-top-2 h2{
    font-size: 50px;
    font-weight: 500;
    color: #fff;
}

.footer-top-2 ul{
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footer-top-2 ul li{
    font-size: 30px;
    color: #fff;
}

.footer-bottom{
    width: 90%;
    height: 15%;
    border-top: 3px solid #d9d9d9;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p{
    width: 80%;
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-top: 1.4rem;
}

@media screen and (max-width:480px) {
    .logo{
        width: 60%;
        height: 80px;
    }

    .logo img{
        width: 100%;
        height: 100%;
    }

    .burger{
        width: 10%;
        display: flex;
    }

    .nav{
        display: none;
    }

    .hero{
        width: 93%;
        height: 600px;
        background-size: 200% 100%;
    }

    .hero-text{
        height: 80%;
    }

    .hero h2{
        width: 100%;
        font-size: 60px;
    }

    .hero p{
        width: 97%;
    }

    .hero button{
        width: 60%;
    }

    .contact-form{
        width: 100%;
        flex-direction: column;
    }
    
    .contact-form-left{
        width: 90%;
    }

    .contact-form-right{
        width: 90%;
        margin-top: 2rem;
    }

    .invest{
        width: 100%;
    }

    .invest h1{
        font-size: 46px;
    }

    .invest p{
        width: 100%;
    }

    .footer{
        width: 92%;
        height: 1400px;
        display: flex;
        flex-direction: column;
    }

    .footer-top{
        height: 80%;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .footer-top-1{
        width: 90%;
        height: 600px;
    }

    .footer-top-2{
        width: 90%;
        height: 830px;
        margin-top: 1rem;
    }

    .footer-top-2 h2{
        text-align: center;
    }

    .footer-top-2 ul{
        text-align: center;
    }
}