.row-bg {
	background-image: url('/images/backgrounds/bg-contact.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
    min-height: 100vh;
    /* position: relative; */
}
/* .row-bg::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(62,62,62,0.7);
} */
.container-1 {
	margin: 200px auto;
}
.flex {
	display: flex;
}
.flex > div {
	width: 400px;
}
.div-form {
	padding: 20px 16px 16px 16px;
	background-color: rgba(255,255,255,0.9);
	border-radius: 10px;
	-webkit-box-shadow: 0px 15px 30px 0px rgba(24,54,95,0.5); 
	box-shadow: 0px 15px 30px 0px rgba(24,54,95,0.5);
	margin-left: auto;
  	order: 2;
}
.div-form h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	color: #2B2B2B;
	margin: 0;
}
.div-form > p {
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	color: #9B9B9B;
	margin-bottom: 20px;
}
.div-words > p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
}
.div-words > h1 {
	font-weight: 700;
	font-size: 52px;
	line-height: 63px;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.btn-submit {
	background-color: #F4CC12;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	width: 100%;
	height: 50px;
	margin: 10px 0;
	background-image: url('/images/icon/arrow-right.png');
	background-repeat: no-repeat;
	background-position: center right 1rem;
	transition: all .3s;
}
.btn-submit:hover {
	color: #FFFFFF;
	box-shadow: 0px 6px 15px rgba(160, 134, 11, 0.5);
	background-position: center right .5rem;
	transition: all .3s;
}
.flex-ico {
	display: flex;
}
label {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #2B2B2B;
}
.form-control-custom {
	height: 50px;
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	color: #2B2B2B;
	margin-bottom: 10px;
}
.form-textarea {
	resize: none;
	margin-bottom: 10px;
}
.company-contact p {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #FFFFFF;
}
.company-contact img {
	margin-right: 6px;
}
::-webkit-input-placeholder { /* Edge */
	color: #BABABA;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
}
  
:-ms-input-placeholder { /* Internet Explorer */
	color: #BABABA;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
}
  
::placeholder {
	color: #BABABA;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
}

@media screen and (max-width: 480px ) {
    .row-bg {
        height: auto;
    }
    .flex {
        flex-wrap: wrap;
    }
    .container-1 {
        margin: 100px auto;
    }
    .div-form {
        margin-top: 20px;
        padding: 16px;
    }
}