#contact .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-left: 90px; */
}


#contact .container > div{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    /* align-items: center; */
    /* border: 10px solid black; */
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 2rem 0; */
    

}

#contact .container > div > div{
    flex: 1;
    padding: 0 2rem;
}


#contact .contact-form{
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    /* align-items: center; */
}

#contact .container > h2{
    line-height: 1.2;
    font-weight: 500;
    font-family: var(--POPPINS);
    color: #3e3939;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
}

#contact .input, #contact form input{
    width: 100%;
}

#contact form input, #contact form textarea{
    height: 50px;
    margin: 1.5rem 0;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    padding: 10px 5px;
    background: #fff;
    letter-spacing: .5px;
    font-weight: 400;
    font-size: 14px;
    min-height: 35px;
    position: relative;
    transition: border .9s ease;
    display: block;
    outline: none;
    line-height: 1.5;
    color: #495057;
    resize: none;
    width: 100% !important;
    font-family: var(--POPPINS);
}
#contact form textarea{
    height: 180px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    display: block;
    margin-top: 3rem;
}

.submit-btn{
    width: 100%;
    padding: 0.25rem 0;
}

.submit-btn button{
    width: 100%;
    display: inline-block;
    background-color: var(--PRIMARY_COLOR);
    border: none;
    color: white;
    font-size: 14px;
    padding: 9px 34px;
    line-height: 1.8em;
    letter-spacing: .5px;
    border-radius: 0;
    text-transform: capitalize;
    font-family: var(--POPPINS);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
}


.submit-btn button:hover{
    box-shadow: 0px 15px 20px rgba(108,99,255, 0.4);
    transform: translateY(-0.25rem);
}


#contact .address{
    background-color: #f9f9f9;
    margin-top: 30px;
    padding: 15px;
}

#contact .address > div{
    display: flex;
    align-items: center;
    margin: 0.75rem 0;
}

#contact .address > div i{
    display: inline-block;
    margin-right: 20px;
    color: var(--PRIMARY_COLOR);
}

#contact .address > div h6{
    line-height: 1.2;
    font-weight: 500;
    color: var(--PRIMARY_COLOR);
    font-family: var(--POPPINS);
    font-size: 1rem;
}

#contact .address > div p{
    font-family: var(--ROBOTO);
    font-size: 16px;
    color: #696969;
    font-weight: 300;
    line-height: 25px;
}

#contact input:focus, #contact textarea:focus{
    border-color: var(--PRIMARY_COLOR);
    /* border-width: 3px; */
}

#contact .map{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contact .map h5{
    text-align: center;
    font-family: var(--POPPINS);
}

#contact .map p{
    line-height: 22px;
    font-size: 15px;
    padding: 0.25rem 0;
}

#contact .map p > span{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--PRIMARY_COLOR);
    /* margin-right: 5px; */
}

#contact #map{
    flex: 1;
    /* min-height: 300px; */
    /* min-width: 300px; */
}

@media screen and (max-width: 1100px){
    #contact .container > h2{
        font-size: 1.5rem;
    }
    #contact .container > div{
        display: block;
    }
    #contact .container > div > div{
        padding: 0;
    }
    #contact .map{
        margin: 2rem 0;
    }
    #contact #map{
        min-height: 400px;
    }
}

@media screen and (max-width: 500px){
    #contact .container > h2{
        font-size: 1.2rem;
    }
    #contact .map h5{
        font-size: 12px;
    }
    #contact .map p{
        font-size: 13px;
    }
}