.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

#contactModal{
    overflow: hidden;
}

@media (min-width: 992px) {
    .modal-content {
        flex-direction: row;
        padding: 0;
    }

    .modal-image {
        height: 100%;
    }

    .modal-body {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.input-icon {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon input, .input-icon select, .input-icon textarea {
    padding-left: 2.5rem;
}

.loader {
    text-align: center;
}

.alert {
    display: none;
}

.select-control {
    padding-left: 1rem;
}

.modal-backdrop {
    z-index: 1;
}

#contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

/* Ensure the close button is placed properly */
.modal-body {
    position: relative;
}

.modal-body button{
    background-color: #E5BC5D !important;
}

/* Adjusting the position of the close button */
.btn-close {
    position: absolute;
    top: 10px; /* Adjust the distance from the top */
    right: 10px; /* Align close button to the right */
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    margin: 0;
    padding: 0;
    color: #000;
}

.btn-close:hover {
    background-color: #f5f5f5; /* Optional hover effect */
}

.form-con{
    padding-left: 0 !important;    
}

.form-con .select-icon{
    margin: 10px;
}