/* MG */

.contact-form {
	width: 100%;
	text-align: left;
}
.contact-form  .label {
	font-family: RobotoLight;
	font-size: calc((100vw - 320px) * 11 / 2240 + 9px);  /* 20 -> 9 @2560-> 320 */
	line-height: calc((100vw - 320px) * 11 / 2240 + 9px);  /* 20 -> 9 @2560-> 320 */
	color: #231f20;
	text-align: left;
	width: calc((100vw - 320px) * 40 / 2240 + 80px);  /* 120 -> 80 @2560-> 320 */
}
.contact-form .input-field {
    display: flex;
    align-items: center;
	margin-top: calc((100vw - 320px) * 5 / 2240 + 3px); /*5->3 @2560->320*/
	margin-bottom: calc((100vw - 320px) * 5 / 2240 + 10px); /*15->10 @2560->320*/
}
.contact-form .input-field input, .contact-form  .input-field textarea  {
	border: 0px;
	outline: 1px solid #c59148;
	width: 100%;
	height: calc((100vw - 320px) * 15 / 2240 + 25px); /*40->25 @2560->320*/
	padding: 5px 10px;
	box-sizing: border-box;
	font-family: RobotoLight;
	font-size: calc((100vw - 320px) * 12 / 2240 + 8px); /* 20 -> 8 @2560 -> 320 */
	letter-spacing: 0.005em;
	background-color: #ffffff;
	color: #2c3342;
}
/*overrides height*/
.contact-form  textarea {
	height: unset;	
}
.contact-form input:focus, .contact-form  textarea:focus {
    outline: 2px solid #007350;
}
.contact-form  textarea  {
	resize: vertical;
	min-height: 80px;
}
.submit-btn {
	display: flex;
	justify-content: flex-end;
}
.submit-btn input {
	width: calc((100vw - 320px) * 130 / 2240 + 100px); /* 230 -> 100 @2560 -> 320 */
	height: calc((100vw - 320px) * 30 / 2240 + 20px); /* 50 -> 20 @2560 -> 320 */
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #c59148;
	border: 0px;
	outline: 0px;
	font-family: RobotoMedium;
	font-size: calc((100vw - 320px) * 15 / 2240 + 8px); /* 23 -> 8 @2560 -> 320 */
	line-height: calc((100vw - 320px) * 15 / 2240 + 8px); /* 23 -> 8 @2560 -> 320 */
	letter-spacing: 0.01em;
	color: #ffffff;
	white-space: nowrap;
	cursor: pointer;
	padding-bottom: calc((100vw - 320px) * 1 / 2240 + 2px); /* 3 -> 2 @2560 -> 320 */
	margin-bottom: 0px;
}
.submit-btn input:hover, .submit-btn input:focus, .submit-btn active {
	border: 0px;
	background-color: #007350;
}

/* =========== ERRORS ===========*/

.sent-ok, .sent-error {
	font-family: RobotoRegular;
	font-size: calc((100vw - 320px) * 6 / 2240 + 12px);
	border-radius: 50px;
	margin-top: 30px;
	text-align: center;
}
.sent-ok {
	color: #007350;
	display: none;
}
.sent-error {
	color: #f1666a;
	display: none;
}

/* =========== RESPONSIVE ===========*/
@media only screen and (max-width: 1024px) {
	.contact-form {
		margin-top: calc((100vw - 320px) * 15 / 2240 + 15px); /* 30 -> 15 @2560 -> 320 */
	}
}