/* contact section */
.contact_section .col-md-6 {
    padding: 0;
}

.contact_section input {
    border: none;
    outline: none;
    border-bottom: 1px solid #252525;
    width: 100%;
    margin: 10px 0;
}

.contact_form-container {
    padding: 20px;
}

.contact_form-container button {
    border: none;
    background-color: #fddd33;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
}

.contact_img-box {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    padding: 20px;
    margin-left: 20%; /* Move the image to the right by 20% */
}

.contact_img-box img {
    width: 100%; /* Adjust the width as needed */
    max-width: 1000px;
    height: auto;
    border-radius: 10px; /* Add border-radius for a rounded image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .contact_img-box {
        justify-content: center; /* Center content on smaller screens */
        margin-left: 0; /* Reset margin for smaller screens */
    }

    .contact_img-box img {
        width: 100%; /* Make the image 100% width on smaller screens */
        margin-left: 0; /* Reset margin for smaller screens */
    }
}
.contact_section h2 {
    font-size: 26px;
    color: #010103;
    font-weight: bold;
    position: relative;
    margin-left: 2.5%;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .contact_section input,
    .contact_form-container button,
    .contact_img-box,
    .contact_img-box img {
        width: 100%;
        max-width: none;
    }
}

/* end contact section */
