

.contact{
    width: auto;
    height: auto;
    overflow: hidden;
    position: relative;
    background-image: url("../img/bg-contact2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    text-align: center;
}

.contact .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.contact .content .form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    width: 80%;
}

.contact .content .form .left, .contact .content .form .right{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 45%;
}

.contact .content .form input, .contact .content .form textarea{
    padding: 20px;
    font-size: 16px;
    border-radius: 10px;
}

.contact .content .form textarea{
    height: 100%;
}

.contact .content button{
    width: fit-content;
}

.contact .overlay1{
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(63, 0, 63, 0.7);
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .contact .content .form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 80%;
    }

    .contact .content .form .left, .contact .content .form .right{
        width: 100%;
    }

    .contact .content .form input, .contact .content .form textarea{
        padding: 12px;
    }

    .contact .content .form textarea{
        height: 150px;
    }
}