/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 24 2026 | 05:11:26 */
/* MAIN SECTION */
.custom-contact-section{
    width:100%;
    display:flex;
    min-height:auto;
}

/* LEFT SIDE */
.contact-left{
    width:50%;
}

.contact-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT SIDE */
.contact-right{
    width:50%;
    background:#f7f7f7;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-sizing:border-box;
}

/* FORM */
.form-wrapper{
    width:100%;

}
.spu-content p {
    margin: 0px;
}
.form-wrapper h2 {
    font-size: 31px;
    margin-bottom: 6px;
    margin-top: 0px;
    text-transform: uppercase;
    font-weight: 400;
}

.form-wrapper p {
    margin-bottom: 13px;
    color: #090909;
    line-height: 1.6;
    font-family: 'Poppins';
}

/* INPUTS */
.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}


/* BUTTON */
.form-wrapper button{
    background:#000;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.form-wrapper button:hover{
    background:#333;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .custom-contact-section{
        flex-direction:column;
    }

    .contact-left,
    .contact-right{
        width:100%;
    }

    .contact-left{
        height:300px;
    }

    .contact-right{
        padding:40px 20px;
    }

    .form-wrapper h2{
        font-size:30px;
    }

}