main{
    background-color:var(--light-bg-color);
}

.contact-content{
    padding:100px 0;
    width:50vw;
    margin:0 auto;
}
.contact-content figure img{
width: 50vw;
}
.contact-content figcaption{
    font-weight: var(--weight-500);
    margin: 5px auto;
}
.contact-content .content ul{
    list-style-type:disc!important;
    list-style-position: inside;
}



/* Contact Form Designing------------ */

.contact-form-section{
    background-color: var(--white);
    padding:100px 0;
    margin:0 auto;
}
.contact-form{
    margin:0 auto;
    width:50vw;
}
.contact-form-section .heading2{
    color:black;
    font-size:3rem;
    font-weight: var(--weight-600);
}
.contact-form input,textarea{
width:100%;
padding:0.5rem 2rem;
margin:0.5rem 0;
font-size: 1.1rem;
font-weight: var(--weight-400);
}
textarea{
    resize: none;
}
.contact-form input[type="submit"]{
    background-color: var(--white);
    color:black;
    border:2px solid black;
}
.contact-form input[type="submit"]:hover{
    background-color:black;
    color:var(--white);
}

@media(max-width:768px){
    .contact-content{
        width:75vw;
        margin:0 auto;
    }  
    .contact-content figure img{
        width: 75vw;
        }
    .contact-form{
    width:75vw;
    }
}
