
.container{
    margin: 9% 5%;
	display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    
    box-shadow: 0px 10px 50px rgb(24 23 9 / 88%);
}

/* LEFT */
.container .column-left {
	height: auto;
	border-right: 1px #00000026 solid;
}


.container .contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
    font-size: 16px;
    font-weight: 900;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}

.contact-info span .fas{
    font-size: 16px;
    padding-bottom: 0.9rem;
    color: #28749f;
    padding-right: 2%;
}
.contact-info div span:nth-child(2){
    font-weight: 400;
    font-size: 16px;
    color: #3d3939;
}
.contact-info .text{
    padding-top: 0.4rem;
}

/* RIGHT */
.column-right{
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    height: auto;
    padding: 3% 5em;
    line-height: 21px;
}


.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.send-btn{
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: #28749f;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}


@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: flow;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}