.purple_background_gradient {
    background-image: linear-gradient(to right, var(--default_purple_from_gradient), var(--default_pink_from_gradient));
}
.fixer_hundred {
    width: 100%;
}
.whole_contact_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
    padding-top: 50px;
    padding-bottom: 50px;
}

.whole_contact_holder h1{
    margin: 0;
    color: white;
    font-size: 22px;
    font-weight: 800;
}

.left_contat_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.left_contat_info form{
    width: 100%;
    
}


.right_location_info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.location_header_holder{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap:0.3em;
}

.right_location_info p {
    margin: 0;
    color: white;
    font-weight: 400;
}

.map_frame {
    width: 100%;
    height: 350px;
    border-radius: 20px;
}

form button {
    background-color: var(--default_orange_color);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}


form button:hover {
    color: var(--default_orange_color);
    background-color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1000px)  {
    .whole_contact_holder {
        flex-direction: row;
        align-items: flex-start;
    }

    .left_contat_info {
        max-width: 50%;
    }
    .right_location_info {
        max-width: 50%;
        width: auto;
    }
    
}