.prod-heading{
    height: 15vh;
    background-color: #6699cc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-address{
    margin: 1vh 0;
    width: 100%;
    height: 50vh;
}
.contact-info-form{
    display: flex;
    padding: 3vw 8vw 3vw 10vw;
}
.address, .email, .phoneNo{
    display: flex;
    margin-bottom: 3vh;
}
.contact-info .logo{
    width: 3vw;
    height: 3vw;
    background-color: #6699cc;
    border-radius: 50%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
}
.logo i{
    font-size: 1.1vw;
}
.info{
    width: 25vw;
    font-size: 0.9vw;
}
.info h3{
    font-size: 1.2vw;
    color: gray;
    font-weight: 500;
}

.contact-form{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    margin-left: 2vw;
}
form{
    width: 100%;
}
.contact-form input{
    width: 32%;
    padding: 1.4vh 1vw;
    border-radius: 1vh;
    border: none;
    box-shadow:0 0 0.5px 0.5px black;
    outline: none;
}
.input-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-form form textarea{
    resize: none;
    width: 100%;
    height: 20vh;
    padding: 1vh 1vw;
    border-radius: 1vh;
    margin-bottom: 1vh;
    outline: none;
    border: none;
    box-shadow:0 0 0.5px 0.5px black;
}
.contact-form form button{
    padding: 0.8vw 1.6vw;
    font-weight: 600;
    border: none;
    background-color: #6699cc;
    cursor: pointer;
    border-radius: 1vh;
    border: none;
}
.contact-form textarea:focus, .contact-form input:focus{
    box-shadow: 0 0 5px 1px navy;
}


@media (max-width: 450px){
    .contact-info-form{
        position: relative;
        top: 80px;
    }
    /* .contact-form{
        display: none;
    } */
    .footer,hr{
        position: relative;
        top: 100px;
    }
}