.section1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    max-width: 1600px;
}

.cardL{

}
.letsTalk{
    font-size: 5rem;

}
.cardR{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    min-width: 45%;
}

@media (max-width: 768px){
    .cardR{
        min-width: 100%;
    }
    .section1{
        margin-top: 20px;
    }
    .cardR{
        margin-top: 0px;
    }
}
.contactForm{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    box-sizing: border-box;
    font-size: larger;
}

.contactForm input{
    line-height: 30px;
    border:none;
    border-bottom: 1px solid #02d20c;
    font-size: large;
}
.btnSend{
    margin-top: 40px;
    background-color: black;
    color: white;
    line-height: 60px;
    border-radius: 30px;
    border: none;
    font-size: larger;
}
.btnSend:hover{
    background-color: #00ff0d;
    color: black;
    font-size: larger;
}