/*** --- Default objects --- ***/
p {
	padding-bottom:1em;
}
.i-clear {
	clear:both;
}


/*** --- Links --- ***/
a, .b-link {
	color:#FFF;
	text-decoration:underline;
	outline:none;
}
a:hover, .b-link:hover {
	color:#ff2637;
}
.b-link {
	text-decoration:none;
	cursor:pointer;
}
.b-link span {
	text-decoration:underline;
	vertical-align:middle;
}
/* Pseudo */
.b-link_pseudo span {
	text-decoration:none;
	border-bottom:1px dotted #FFF;
}
.b-link_pseudo:hover span {
	border-bottom-color:#ff2637;
}
	
/*** --- Container --- ***/
.b-container {
	position:relative;
	margin-bottom: 40px;
	/* margin:75px 0 110px; */
}


/*** --- Canvas --- ***/
.b-canvas {
	position: relative;
	width: 100%;
	margin-top: -75px;
	min-height: 400px;
	overflow: hidden;
}


/*** --- Canvas --- ***/
.b-cover {
	display:block;
	position:relative;
	overflow:hidden;
	width:100%;
	height:100%;
	background:url(../images/b-cover__graphics_bg.gif) no-repeat 50% 50%;
}
.b-cover_loaded {
	background:none;
}
.b-cover__graphics {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter:alpha(opacity=0);
	-khtml-opacity:0;
	opacity:0;
}
.b-cover__graphics__image {
	position:absolute;
}
.b-cover__graphics__label {
	position:absolute;
	z-index:10;
	margin-left:100%;
}


/*** --- Content --- ***/
.b-content {
	padding: 0 25px 40px;
	margin:0 auto;
	max-width:950px;
}
.b-content_width_auto {
	width: auto;
	max-width: 100%;
}


/*** --- Title --- ***/
.b-title {
	margin-bottom:0.5em;
	color:#FFF;
	font:normal 72px/1 'Futura Light', Arial, Helvetica, sans-serif;
	text-transform:uppercase;
}
.b-title_medium {
	font-size:40px;
}
.b-title_small {
	font-size:30px;
}
.b-title_mini {
	font-size:25px;
}
.b-title_h4 {
	font-size:22px;
}
.b-title_h5 {
	font-size:20px;
}
/*** --- Button --- ***/
.b-button {
	height:50px;
	padding:0 25px;
	border:none;
	background:#e42c3e url(../images/b-button_bg.gif) repeat-x 0 50px;
	color:#FFF;
	font:normal 18px/50px 'Futura Light', Arial, Helvetica, sans-serif;
	text-align:center;
	text-transform:uppercase;
	text-decoration:none;
	cursor:pointer;
	vertical-align:middle;
	/* transition */
	-webkit-transition:background-position 0.2s ease-out;
	-moz-transition:background-position 0.2s ease-out;
	-o-transition:background-position 0.2s ease-out;
	-ms-transition:background-position 0.2s ease-out;
	transition:background-position 0.2s ease-out;
}
a.b-button, span.b-button {
	display:inline-block;
}
.b-button::-moz-focus-inner {
	border:0;
}
.b-button:hover {
	color:#FFF;
	background-position:0 0;
}
.b-button_dark {
	background-color:#212121;
}


/*** --- Field --- ***/
.b-field, .slam-easyform .b-field{
	border:1px solid #dfc5c8;
	padding:9px;
	height:18px;
	background:#FFF;
	color:#555;
	font:normal 15px Tahoma, Arial, Helvetica, sans-serif;
	vertical-align:middle;
	outline:none;
	/* transition */
	-webkit-transition:background-color 0.1s ease-out;
	-moz-transition:background-color 0.1s ease-out;
	-o-transition:background-color 0.1s ease-out;
	-ms-transition:background-color 0.1s ease-out;
	transition:background-color 0.1s ease-out;
	box-sizing: content-box;
	width:100%;
}
textarea.b-field, .slam-easyform textarea.b-field{
	height:auto;
	width: 250px;
}
.slam-easyform a
{
	color:black;
}

.slam-easyform textarea.b-field
{
	width:98%;
}
.b-field:focus, .slam-easyform .b-field:focus {
	background-color:#fff2f4;
	border:0;
}
.b-field.placeholder, .slam-easyform .b-field.placeholder {
	color:#888;
}
.b-field::-webkit-input-placeholder {
	color:#888;
}
.b-field:-moz-placeholder {
	color:#888;
}

span.b-special__param__value__currency {
	display: none;
}

.box-form
{
	display: flex;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 15px;
	
}

.box-form>div
{
	max-width: 50%;
}

.box-form>div img
{
	max-width: 100%;
}

.form-container {
	display: flex;
	max-width: 1200px;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	overflow: hidden;
	margin-top: 15px;
  }

  .form-section {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
  }

  .form-section h2 {
	font-size: 24px;
	margin-bottom: 10px;
	color:black;
  }

  .form-section p {
	font-size: 16px;
	margin-bottom: 20px;
	color:black;
  }

  .form-section form input,
  .form-section form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	box-sizing: border-box;
  }

  .form-section form button {
	width: 100%;
	background: #e30613;
	color: #fff;
	padding: 10px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .form-section form button img {
	margin-right: 10px;
  }

  .form-section small {
	display: block;
	font-size: 12px;
	margin-top: 10px;
	text-align: center;
  }

  .form-section small a {
	color: #e30613;
	text-decoration: none;
  }

  .image-section {
	flex: 1;
	background-image: url('kitchen.jpg');
	background-size: cover;
	background-position: center;
  }


  #contactForm svg
  {
	max-width: 30px;
	color: white;
	fill: white;
	margin-right: 15px;
  }

  .image-section img
  {
	max-width: 100%;
	height: 100%;
    object-fit: cover;
  }

  