.support_wrapper_1_main {
    width: 100%;
    background-color: var(--primary-background-color);
}

.support_wrapper_1_child {
    width: 100%;
    max-width: 1600px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
}



.support_wrapper_1_left {
    width: 40%;
    padding: 1rem 0;
}

.support_wrapper_1_right {
    width: 60%;
}

.support_wrapper_1_left .heading {
    font-size: 49px;
    font-weight: 500;
    line-height: 50.5px;
    text-align: left;
}

.support_wrapper_1_left .paragraph {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-bottom: 5%;
}


.support_wrapper_1_left .heading,
.support_wrapper_1_left .paragraph {
    color: var(--secondary-color);
}

.support_wrapper_1_right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


.contact-form_form-group input[type="text"],
.contact-form_form-group input[type="email"],
.contact-form_form-group input[type="tel"],
.contact-form_form-group textarea {
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    border: none;
    line-height: 2em;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
    border-radius: 5px;
}



.contact-form_form-group input[type="text"]::placeholder,
.contact-form_form-group input[type="email"]::placeholder,
.contact-form_form-group input[type="tel"]::placeholder,
.contact-form_form-group textarea {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.contact-form_form-group label {
    font-size: 17px;
    font-weight: 500;
    line-height: 25.5px;
    text-align: left;
    color: var(--secondary-color);
}

.support_wrapper_1_left-button {
    --bs-btn-padding-x: 3.75rem;
}

/* The Modal (background) */
.thankYouModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
}

/* Modal Content */
.thankYouModal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    text-align: center;
    position: relative;
}

/* Modal Image */
.thankYouModal-modal-image {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* The Close Button */
.thankYouModal-close-button {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
}

.thankYouModal-close-button:hover,
.thankYouModal-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.thankYouModal-modal-text {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 768px) {
    .support_wrapper_1_child {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .support_wrapper_1_left,
    .support_wrapper_1_right {
        width: 100%;
    }

    .support_wrapper_1_left .heading {
        font-size: 35px;
    }

    .support_wrapper_1_left .paragraph {
        font-size: 18px;
    }

    .thankYouModal-content {
        width: 80%;
        margin: 30% auto;
        padding: 15px;
    }

    .thankYouModal-modal-image {
        width: 100px;
    }

    .thankYouModal-close-button {
        font-size: 24px;
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .support_wrapper_1_left .heading {
        font-size: 28px;
        text-align: center;

    }

    .support_wrapper_1_left .paragraph {
        font-size: 16px;
        text-align: center;

    }

    .support_wrapper_1_child {
        padding: 1rem;
    }

    .thankYouModal-content {
        width: 90%;
        margin: 40% auto;
    }

    .thankYouModal-modal-image {
        width: 60px;
    }
}