body {
	background-size: cover;
	background-repeat: no-repeat;
}

.error_msg {
	border: 1px solid rgba(255, 0, 0, 0.8) !important;
}
input, textarea{
	font-family: "ITCGaramondLightIt";
	font-size: 32px;
	display: block;
	min-width: 100%;
     width: 100%;
	
	
	border: none;
	color: #000;
	border: 1px solid white;
	outline: none;
	/* border: 1px solid transparent; */
	/* background-color: transparent; */
	padding-left: 10px;
	margin-bottom: 3px;
}
textarea {
	-webkit-transition: height 0.2s ease-out;
	transition: height 0.2s ease-out;
	-moz-transition: height 0.2s;
	min-height: 80px;
	height: 150px;
	max-height: 380px;
}
.no-overflow {
	overflow: hidden;
}
#button {
	border: none;
	cursor: pointer;
	padding-left: 0;
	outline: none;
	background-color: #fff;
	color: #231F20;
	width: 100%;
	text-align: center;
	display: inline-block;
	font-family: "ITCGaramondBookItalic";
	color: #4D5150;
	font-size: .95vw;
	font-size: 14px;
	line-height: 20px;
	padding: 3px 10px;
}
.msg_ok {
	font-family: "HelveticaNeueMediumCondensed";
	border: none;
	padding-left: 0;
	outline: none;
	background-color: #fff;
	color: #231F20;
	padding: 3px;
	display: block;
	float: left;
	margin-top: 20px;
	margin-left: 40px;
	font-size: 14px;
	text-align: center;
	position: absolute;
}
.error {
	color: #E8154A !important;
}
#button:hover {
	text-decoration: underline;
}
::-webkit-input-placeholder {
   color: #000;
}
::-webkit-textarea-placeholder {
   color: #000;
}
:-moz-placeholder { /* Firefox 18- */
   color: #000;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #000;  
}
:-ms-input-placeholder {  
   color: #000;  
}
:-ms-textarea-placeholder {  
   color: #000;  
}
.contact_info {
	width: 250px;
	height: 200px;
	display: block;
	float: left;
	margin-top: 60px;
	position: relative;
	margin: 9.5% 0;
	margin-left: -35px;
}
.contact_info h3 {
	font-family: "HelveticaNeueMediumCondensed";
	color: #000;
	font-weight: 300;
	line-height: 5px;
	font-size: 19px;
	display: block;
}
.contact_info a {
	color: rgb(109,112,113);
	text-decoration: none;
}
.contact_info a:hover {
	text-decoration: underline;
}
.contact_info span {
	font-family: "HelveticaNeueLight";
	color: rgb(109,112,113);
	font-weight: 300;
	line-height: 5px;
	font-size: 19px;
	display: block;
}
/*CONTACT ICONS*/
.c_icons_container {
	margin-top: 25px;
}
.c_icons {
	display: inline-block;
	background: url("../images/contact_icons.png") no-repeat top left;
	margin-right: 10px;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
.skype {
	width: 16px;
	height: 17px;
	background-position: left top;
}
.skype:hover {
	background-position: left bottom;
}
.in {
	width: 13px;
	height: 15px;
	background-position: -31px -2px;
}
.in:hover {
	background-position: -31px bottom;
}
.email {
	width: 23px;
	height: 15px;
	background-position: right top;
}
.email:hover {
	background-position: right bottom;
}
.contact_footer {
	position: fixed;
	left: 0;
	bottom: 0;
}
.color_after_sending::-webkit-input-placeholder {
    color: #BFC1C3;
}

.form-container{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
	height: 100vh;
}
#contactForm{
	width: 40vw;
	min-width: 300px;
	max-width: 2000px;
}

.form-message-container {
    display: flex;
    justify-content: center;
    align-items: center;
	font-family: "HelveticaNeueLight";
    min-height: 40px;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
    background: #f8f9fa;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 5px 20px;
}
.form-message-container.success {
    background: #f0fff0;
    color: #207520;
}
.form-message-container.error {
    background: #ffe0e0;
    color: #a12020;
    border: 1px solid #e2b2b2;
}