.contact_page_image_and_other_items{
    background-image: url(contact_background.png);
    background-repeat: no-repeat;
    width: 100vw;
    height: auto;
    background-color: rgb(108, 78, 136, 0.9);
}

.contact_headings{
    display: grid;
    justify-content: center;
}

.contact_heading{
    text-align: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    color: white;
    margin-top: 20px;
}

.enquiry_from{
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    color: white;
    margin-top: 20px;
}

.customer_btn_container{
    display: grid;
    justify-content: center;
    margin-top: 40px;
}

.customer_btn{
    background-color: #431B68;
    color: white;
    padding: 10px 25px 10px 25px;
}

.partner_btn_container{
    display: grid;
    justify-content: center;
    margin-top: 10px;
}

.partner_btn{
    background-color: #431B68;
    color: white;
    padding: 10px 25px 10px 25px;
}

.contact_background_two{
    /* background-color: rgb(108, 78, 136, 0.6); */
    width: 100vw;
    height: auto;
    margin-top: 100px;
}

.contact_box{
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact_box_items{
    display: grid;
    background-color: rgb(255, 255, 255, 0.3);
    opacity: 0.5;
    width: 700px;
    padding: 40px;
}

label{
    color: white;
    font-weight: 700;
    font-size: 20px;
}

input{
    width: 500px;
    background-color: transparent;
    border: none;
    margin-left: 20px;
}

.send_btn_container{
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 80px;
}

.send_btn{
    background-color: #431B68;
    color: white;
    padding: 10px 70px 10px 70px;
    border-radius: 30px;
}

@media only screen and (max-width: 650px) {
    .contact_box_items {
        width: 400px;
    }

    input{
        width: 240px;
    }
}