.contact-banner {
    width: 100%;
    max-width: 2000px;
    display: flex;
    height: 100vh;
    align-items: center;
    background-color: #3d8e33;
    flex-wrap: nowrap;
}

.bg-contact-banner {
    width: 50%;
    /*max-height: 700px;*/
    overflow: hidden;
    height: 100vh;
}

.bg-contact-img {
    width: 100%;
    object-fit: cover;
    height: max-content;
}

.text-bg-contact {
    width: 50%;
    /*max-height: 700px;*/
    text-align: left;
    color: white;
    overflow: hidden;
    margin-left: 40px;
    /*height: 100vh;*/
}

.text-bg-contact>h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-family: "Merienda", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    width: 80%;
    opacity: 0;
}

.text-bg-contact>h4 {
    font-size: 25px;
    padding: 0;
    margin: 0;
    font-weight: 200;
    width: 80%;
    opacity: 0;
}

.nav-bar::before {
    background: rgba(255, 255, 255, 0.9);
}

.form-ctn {
    width: 100%;
    background-color: #e6f1de;
    padding: 150px 0 80px 0;
}

.contact-form {
    padding: 20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border: 1px solid #266025;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: auto;
    opacity: 0;
}
.contact-form h2 {
    margin-bottom: 15px;
    color: #266025;
    text-align: center;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #266025;
    border-radius: 5px;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background: transparent;
}
.contact-form button {
    color: white;
    background-color: #3d8e33;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid #3d8e33;
    font-size: 16px;
    transition: 0.3s;
    padding: 15px;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
}
.contact-form button:hover {
    color: #266025;
    background-color: transparent;
}
.message {
    margin-top: 10px;
    text-align: center;
    color: #266025;
}

.footer {
    height: auto;
}

.footer-container {
    padding-top: 40px;
    margin-bottom: 30px;
}

.double_arrow {
    left: calc(50% - 20px);
    transform: translateX(-50%);
}

.double_arrow:hover {
    border: 1px solid white;
}

@media (max-width: 768px) {
    .contact-banner {
        flex-wrap: wrap;
    }

    .bg-contact-banner {
        width: 100%;
        height: 30%;
    }

    .text-bg-contact {
        width: 100%;
        height: 70%;
    }

    .double_arrow {
        left: 50%;
    }

    .text-bg-contact>h1 {
        font-size: 30px;
    }

    .text-bg-contact>h4 {
        font-size: 20px;
    }

    .form-ctn {
        padding: 80px 20px 60px 20px;
    }

    
    .contact-form input, .contact-form textarea {
        padding: 10px;
        margin: 8px, 0;
    }
}