* {
	margin: 0;
	padding: 0;
}
body {
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 28px;
	color: #949494;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #93ac13 url(images/body_bg.png) center repeat-y;
	padding-top:35px;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: 'Playfair Display', serif;
	font-size: 35px;
	line-height: 38px;
	font-weight: 700;
	color: #5c483f;
	padding:0 0 10px 0;
	margin:0;
}
h2, .h2 {
	font-family: 'Playfair Display', serif;
	font-size:32px;
	line-height:35px;
	font-weight: 700;
	color: #374054;
	padding:0 0 10px 0;
	margin:0;
}
h3, .h3 {
	font-family: 'Playfair Display', serif;
	font-size:29px;
	line-height:32px;
	font-weight: 700;
	color: #5b6654;
	padding:0 0 10px 0;
	margin:0;
}

a {
	color: #ff762c;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}

table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	padding: 0px;
	margin: 0px;
}

ul, ol {
	margin: 0px 0px 10px 20px;
	padding: 0px 0px 0px 0px;
/*	list-style-position: inside;*/
}
ul {
/*	list-style-image: url(images/icon_bullet.png);*/
}
ul.no-list-image, ul.no-list-image li {
	list-style: none;
	list-style-image: none;
}

p {
	margin:0 0 15px 0;
}
img {
	border: none;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 17px;
	line-height: 17px;
    box-sizing: border-box;
	background: url(images/input_bg.png) top repeat-x;
}
label {
	box-sizing: border-box;
}
input {
	vertical-align: middle;
}

.form_standard {
	width: 700px !important;
	display: table;
	margin: 0 auto;
}
.form_standard_half {
	width: 350px !important;
	display: table;
	margin: 0 auto;
}

.form {
	width: 100%;
}
.form input.submit, input.button {
	width: auto;
	height:45px;
	font-family: 'Playfair Display', serif;
	color: #fff;
	background: #ff762c;
	font-size: 16px;
	line-height:45px;
	border: 0px;
	border-radius:0;
	padding:0 20px;
	text-align:center;
	text-transform:uppercase;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 19px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 18px;
	line-height: 18px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}

.form input[type=text], .form input[type=email], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 17px;
	line-height: 17px;
	padding: 9px;
	margin:0 0 10px 0;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
	border-radius:0;
}
.form select {
	padding: 8px;
}

.form textarea {
	height: 150px;
}

.required {
	color: #f00;
}

/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
	text-align: center;
}
#scode_block table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	margin-left: auto;
	margin-right: auto;
	padding-top: 12px;
}
#scode_block table tr {
    vertical-align: top;
}
#scode_block table td {
	width: auto;
}
#scode_block table td {
	padding: 0px 2px 0px 2px;
	margin: 0px;
}
#scode_block #scode {
	width:90px;
	height:45px;
}
#scode_block input[type=text] {
	margin: 0px;
}
#scode_block #img_code {
	border-radius:0;
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	font-weight: normal;
	text-overflow: ellipsis;
}

/* standard styles
-----------------------------------------------------------------------------*/

.uppercase {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline
}

.align_center {
	text-align: center;
	margin: auto;
}
.align_right {
	text-align: right;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}

.valign_top {
	vertical-align: top;
}
.valign_middle {
	vertical-align: middle;
}
.valign_bottom {
	vertical-align: bottom;
}

.position_center {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.position_middle:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.box_center {
	display: table;
	margin: 0 auto !important;
}

.clear {
	height:0;
	font-size: 1px;
	line-height: 0px;
	clear: both;
}

.hidden {
	display: none;
}

.desktop_only {
}
.mobile_only {
	display: none;
}

.img_left {
	width: auto;
	float: left;
	margin: 0px 15px 10px 0px;
}
.img_right {
	width: auto;
	float: right;
	margin: 0px 0px 10px 15px;
}

.images, .images_left, .images_right {
	border: 0px solid #b7b7b7;
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 25px 15px 0px;
}
.images_right {
	width: auto;
	float: right;
	margin: 0px 0px 15px 25px;
}

hr, .hr {
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	background: url(images/hr_bg.png) top repeat-x;
	border: 0px;
}

.a_button {
	position:relative;
	height:48px;
	display: inline-block;
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	line-height:48px;
	text-decoration: none;
	font-weight: 700;
	outline: none;
	background: #ff762c;
	text-align: center;
	text-transform:uppercase;
	padding: 0 47px 0 25px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #262626;
	text-decoration: none;
}
.a_button:after {
	position:absolute;
	content:"";
	width:15px;
	height:15px;
	top:0;
	bottom:0;
	right:25px;
	margin:auto;
	background:url(images/a_button_arrow.png) center top no-repeat;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}

.columns {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}

.columns[data-columns-count="2"] {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
.columns[data-columns-count="3"] {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}
.columns[data-columns-count="4"] {
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
}
.columns[data-columns-count="5"] {
	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
}
.columns[data-columns-count="6"] {
	-moz-column-count: 6;
	-webkit-column-count: 6;
	column-count: 6;
}

.res_list {
}
.res_list div {
	display: inline-block;
	padding-bottom: 10px;
}


/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	list-style: none;
}
ul.columns_list > li {
	list-style: none;
	list-style-image: none;
	display: inline-block;
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	vertical-align: top;
}
ul.columns_list > li, ul.columns_list[data-columns-count="2"] > li {
	width: 47%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="3"] > li {
	width: 30%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="4"] > li {
	width: 22%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="5"] > li {
	width: 17%;
	margin-right: 3%;
}


/* portfolio styles
-----------------------------------------------------------------------------*/
.sectionname, .imagepages {
	display: inline-block;
	color: #fff;
	background: #ff762c;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius:0px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #262626;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #262626;
	background: #ff762c;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius:0px;
}
.sectionnameselected:hover, .imagepageselected:hover {
	text-decoration: none;
}

.sectionname_divider {
	display: none;
}

.imagesmallname {
	color: #000;
}

.imagemediumname {
	color: #000; 
	font-weight: bold;
}

.image_delimiter {
	font-size: 1px;
	line-height: 1px;
	height: 3px;
	padding: 0px;
	margin: 0px;
}


/* portfolio_slides
-----------------------------------------------------------------------------*/
.portfolio_slides {
	position: relative;
}
.portfolio_slides ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.portfolio_slides li {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	text-align: center;
}
.portfolio_slides .images {
	max-width: 100%;
	height: auto;
}

.portfolio_slides_pager {
	position: relative;
	display: table;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.portfolio_slides_pager span {
	width: 15px;
	height: 15px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 40px;
	color: #4d1658;
}
.portfolio_slides_pager span.cycle-pager-active {
	color: #d1b26d;
}
.portfolio_slides_pager > * {
	cursor: pointer;
}


/* Table
-----------------------------------------------------------------------------*/
.table {
	width: 100%;
	border-top: 1px solid #bdb6a3;
	border-left: 1px solid #bdb6a3;
}
.table tr {
	vertical-align: middle;
}
.table th, .table td {
	padding: 5px;
	border-bottom: 1px solid #bdb6a3; 
	border-right: 1px solid #bdb6a3; 
	color: #64534c;
}
.table thead td, .table tfoot td {
	background: #efae40 url(images/table_header_bg.png) top repeat-x;
	font-family: 'Playfair Display', serif;
	color: #fff;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-family: 'Playfair Display', serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	background: #ada48c;
}
.table tr:nth-child(odd) {
	background: #efede8;
}
.table tr:nth-child(even) {
	background: #f5f3ee;
}


/* belgard
-----------------------------------------------------------------------------*/
table.belgard td {
	padding: 0px 20px 20px 0px;
}

/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
/*	overflow: hidden;*/
}

.page_wrapper {
	width: 1100px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 47px;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top:35px !important;
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	float: none !important;
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}

.box_fixed1 {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	float: none !important;
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}


/* box_phones
-----------------------------------------------------------------------------*/
#box_phones {
	position:relative;
	width:100%;
	height:32px;
	background:#2d2d2d;
	font-size:14px;
	color:#cfcfcf;
	padding-top:3px;
}

#box_phones:before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height:18px;
	bottom: -18px;
	left:0;
	background: url(images/shadow.png) center top no-repeat;
}

/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	position:absolute;
	width:100%;
	height:79px;
	top:197px;
	left:0;
	z-index:101;
}
#menutop .page_wrapper {
	background:#ffdf2c;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	height: 35px;
	padding:0 10px;
	margin:0;
}

#menutop li:first-child {
	padding:0 10px 0 0;
}

#menutop li:last-child {
	padding:0 0 0 10px;
}

#menutop ul li a {
	display: block;
	color: #262626;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	line-height:79px;
	font-weight:700;
	height:79px;
	text-align: center;
	text-transform:uppercase;
	padding:0 33px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop ul li:hover a, #menutop li.selected a {
	color: #ff762c;
	text-decoration: none;
	background: url(images/menutop_li_a_hover.png) left bottom repeat-x;
}


/* Header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: relative;
	height:218px;
	font-family: 'Playfair Display', serif;
	font-weight:700;
	background: #fff;
}

#header_logo {
	width:326px;
	position:absolute;
	top:41px;
	left:0;
	right:0;
	margin:0 auto;
}

#header_phone {
	position:absolute;
	display:inline-block;
	top:44px;
	left:0;
	color:#2d2d2d;
	font-size:18px;
	line-height:16px;
	text-transform:uppercase;
	z-index:1;
}
#header_phone span {
	display:inline-block;
	width:49px;
	height:32px;
	background:url(images/header_phone_bg.png) left 1px no-repeat;
	vertical-align:top;
}

#header_phone em {
	display:block;
	font-style:normal;
	color:#94b506;
	letter-spacing:1.44px;
	text-transform:none;
	margin-left:48px;
	line-height:15px;
}

#header_social {
	position:absolute;
	width:150px;
	top:23px;
	right:0;
	text-align: right;
}
#header_social a img {
	margin:0 0 0 16px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	opacity:1;
}
#header_social a:hover img {
	opacity: .7;
}

#header_bbb {
	position:absolute;
	top:88px;
	right:0;
}

/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	position: relative;
	width: 100%;
	height:520px;
	overflow:hidden;
	z-index: 0;
}
.inside #slideshow {
	height:223px;
}

#slideshow:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height:6px;
	top:0;
	left:0;
	box-sizing:border-box;
	border-bottom:3px #94b506 solid;
	z-index:100;
}

#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}

#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	list-style: none;
	list-style-image: none;
}

#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -38px;
	right:0;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -38px;
	left:0;
	z-index: 101;
}

#slideshow_slogan {
	width: 1100px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 213px;
	text-align: center;
	text-transform:uppercase;
	font-family: 'Playfair Display', serif;
	color: #fff;
	font-size:75px;
	line-height:70px;
	z-index: 201;
	text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.22);
}

/* slideshow_pager
-----------------------------------------------------------------------------*/
#slideshow_pager { 
    text-align: center; 
	width: 100%; 
	z-index: 101 !important; 
	position: absolute; 
	left: 0px;
	bottom:36px; 
	overflow: hidden;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#slideshow_pager span { 
    width: 17px;
	height:20px; 
    display: inline-block;
	cursor: pointer;
	background: url(images/slide_icon.png) left top no-repeat;
	padding: 0px 3px 0px 2px;
	font-family: arial; font-size: 1px; 
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.png) left top no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}


/* box_services
-----------------------------------------------------------------------------*/
#box_services {
	position: relative;
	background:#fafafa url(images/shadow.png) center top no-repeat;
	padding:0 0 50px 0;
	box-sizing:border-box;
	border-top:3px #94b506 solid;
}

#box_services ul {
	display: table;
	margin:-24px auto 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#box_services ul li {
	position:relative;
	display: inline-block;
	vertical-align: top;
	width:333px;
	margin-right:50px;
}
#box_services ul li:last-child {
	margin-right:0;
}

#box_services ul li a {
	display: block;
	width:333px;
	color: #949494;
}
#box_services ul li a:hover {
	color: #949494;
	text-decoration: none;
}
#box_services a div {
	position: absolute;
	width: -webkit-calc(100% - 28px);
	width: -moz-calc(100% - 28px);
	width: calc(100% - 28px);
	height:224px;
	left:14px;
	top:14px;
	opacity: 0;
	background: rgba(148,181,6,.8) url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
	z-index: 2;
}
#box_services a:hover div {
	opacity: 1;
	background: rgba(148,181,6,.8) url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
}

#box_services ul li a span {
	width:100%;
	display:block;
	font-family: 'Playfair Display', serif;
	text-align:center;
	text-transform:uppercase;
	color:#2d2d2d;
	font-size: 18px;
	line-height: 18px;
	margin:18px 0;
}

#box_services strong {
	display:table;
	margin:24px auto 0 auto;
}

/* middle
-----------------------------------------------------------------------------*/
#middle {
	position:relative;
	padding:40px 0;
	background:#fff url(images/shadow.png) center top no-repeat;
}
.inside #middle {
	min-height:400px;
	height:auto !important;
	height:400px;
}


/* content
-----------------------------------------------------------------------------*/
#content {
	width:685px;
	float:right;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	color: #262626;
	font-family: 'Playfair Display', serif;
	font-size:35px;
	line-height:35px;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
}
.content_title h1 {
	background:url(images/title_icon.png) center top no-repeat;
	margin:0;
	width:100%;
	color: #262626;
	font-family: 'Playfair Display', serif;
	font-size:35px;
	line-height:35px;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	margin-bottom: 15px;
}

.content_title span {
	color: #94b506;
}

.content_title h1,
#side .content_title,
#box_portfolio .content_title,
#box_about .content_title,
#box_our_mission .content_title,
#box_contact .content_title {
	padding:73px 0 15px 0;
}

#side .content_title {
	background:url(images/title_icon_services.png) center top no-repeat;
	margin-bottom:22px;
}

#box_portfolio .content_title {
	color:#fff;
	background:url(images/title_icon_gallery.png) center top no-repeat;
	margin-bottom:22px;
}

#box_about .content_title {
	background:url(images/title_icon_about.png) center top no-repeat;
	margin-bottom: 15px;
}

#box_our_mission .content_title {
	color:#fff;
	background:url(images/title_icon_mission.png) center top no-repeat;
	margin-bottom: 15px;
}

#box_contact .content_title {
	color:#fff;
	background:url(images/title_icon_contact.png) center top no-repeat;
	margin-bottom:20px;
}

.content_title h1#title_about {
	background:url(images/title_icon_about.png) center top no-repeat;
}

.content_title h1#title_our_mission {
	background:url(images/title_icon_mission1.png) center top no-repeat;
}

.content_title h1#title_contact {
	background:url(images/title_icon_contact1.png) center top no-repeat;
}

.content_title h1#title_gallery {
	background:url(images/title_icon_gallery1.png) center top no-repeat;
}


/* side
----------------------------------------------------------------------------*/
#side {
	width:339px;
	float: left;
	padding:0;
}


/* menu
-----------------------------------------------------------------------------*/
#menu {
}

#menu ul {
	width: 100%;
	margin:0;
	padding:0;
	list-style: none;
	list-style-image: none;
}
#menu ul li {
	list-style: none;
	list-style-image: none;
	margin-bottom:9px;
}
#menu a {
	display: block;
	background:#94b506;
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-weight:700;
	font-size: 18px;
	line-height: 18px;
	text-align:center;
	text-transform:uppercase;
	padding:14px 0;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menu ul li:hover a, #menu li.selected a {
	color:#262626;
	text-decoration: none;
	background:#ffdf2c;
}

/* service_area
----------------------------------------------------------------------------*/
#service_area span {
	display: block;
	padding: 0px 0px 20px 0px;
	font-family: 'Playfair Display', serif;
	font-size:29px;
	line-height:32px;
	font-weight: 700;
	color: #5b6654;
}
#service_area ul {
	margin: 0px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 4;
    -webkit-column-count: 4;
	column-count: 4;
	
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}
#service_area ul li {
	margin: 0px 0px 0px 10px!important;
}
#service_area a[href="javascript:;"] {
	color: #949494;
	text-decoration: none;
	cursor: text;
}

/* box_portfolio
-----------------------------------------------------------------------------*/
#box_portfolio {
	position: relative;
	background:url(images/shadow.png) center top no-repeat,url(images/box_portfolio_bg.jpg) center top no-repeat;
	background-size:cover;
	padding:42px 0 22px 0;
	z-index:1;
}
#box_portfolio:after {
	position: absolute;
	content: "";
	display: block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(148,181,6,.7);
	z-index:-1;
}

#box_portfolio ul {
	position:relative;
	display:table;
	margin:0 auto;
	padding:0 0 40px 0;
	list-style: none;
	list-style-image: none;
}
#box_portfolio ul li {
	float:left;
	width:312px;
	height:312px;
	padding:0;
	margin:0 30px 0 0;
	border:3px solid #fff;
	box-sizing:border-box;
}
#box_portfolio li:nth-child(3),
#box_portfolio li:last-child {
	margin-right:0;
}

#box_portfolio ul li a {
	position: relative;
	display: block;
	width:312px;
	height:312px;
	z-index: 1;
}
#box_portfolio ul li:nth-child(1),
#box_portfolio ul li:nth-child(1) a {
	width:416px;
	height:654px;
}

#box_portfolio ul li:nth-child(4),
#box_portfolio ul li:nth-child(4) a {
	width:654px;
}

#box_portfolio ul li:nth-child(4) {
	float:none;
	position:absolute;
	top:342px;
	right:0;
}

#box_portfolio ul li a img {
	transition: all 0.5s ease;
}
#box_portfolio ul li a:hover img {
	opacity: 1;
}

#box_portfolio a div {
	position: absolute;
	width: -webkit-calc(100% - 28px);
	width: -moz-calc(100% - 28px);
	width: calc(100% - 28px);
	height: -webkit-calc(100% - 28px);
	height: -moz-calc(100% - 28px);
	height: calc(100% - 28px);
	top:11px;
	left:11px;
	opacity: 0;
	background: rgba(148,181,6,.8) url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
	z-index: 2;
}
#box_portfolio a:hover div {
	opacity: 1;
	background: rgba(148,181,6,.8) url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
}

/* box_about
-----------------------------------------------------------------------------*/
#box_about {
	position: relative;
	background: #fff url(images/shadow.png) center top no-repeat;
	padding:43px 0 42px 0;
	z-index:1;
}

#box_about1 {
	position:absolute;
	width:749px;
	height:475px;
	top:0;
	left:0;
	top:120px;
    left:50%;
    margin-left:-960px;
	background:url(images/box_about_bg.jpg) center top no-repeat;
}

#box_about2 {
	width:685px;
	margin-left:415px;
}

/* box_our_mission
-----------------------------------------------------------------------------*/
#box_our_mission {
	position: relative;
	width:100%;
	height:323px;
	background: url(images/shadow.png) center top no-repeat, url(images/box_our_mission_bg.jpg) center top no-repeat;
	text-align:center;
	color:#fff;
	padding:40px 0 0 0;
	z-index:1;
}

#box_our_mission .a_button {
	background: #343434;
}

#box_our_mission .a_button:hover {
	color: #ffdf2c;
}

/* box_contact
-----------------------------------------------------------------------------*/
#box_contact {
	position:relative;
	width:100%;
	height:653px;
	padding:40px 0 0 0;
	background:url(images/shadow.png) center top no-repeat,url(images/box_contact_bg.jpg) center top no-repeat;
	color:#fff;
	z-index:1;
}

#box_contact:after {
	position: absolute;
	display: block;
	content: "";
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(5,5,5,.5);
	z-index:-1;
}

#box_contact form {
	padding-top:2px;
	width:100%;
}

/* form_contact
-----------------------------------------------------------------------------*/
#form_contact {
	position:relative;
	width:100%;
	padding:0;
	margin:0 auto;
}

#form_contact fieldset {
	border: none;
	padding: 0px;
	margin: 0px;
}
#form_contact input[type=text], #form_contact input[type=email], #form_contact input[type=date], #form_contact select, #form_contact textarea {
	margin: 0 0 12px 0 !important;
	height:45px;
	padding:0 15px 0 15px;
	background:#f4f4f4;
	color: #949494 !important;
	border:none !important;
	font-weight:400;
	font-size:16px;
	line-height:45px;
}

#form_contact input:required {
	color:#949494 !important;
	background:#f4f4f4 url(images/placeholder_req_bg.png) 6px 10px no-repeat;	
}

#form_contact input:required:active,
#form_contact input:required:focus,
#form_contact input:required:valid {
	background:#f4f4f4;
}

#form_contact input.submit {
	padding: 0 34px 0 34px;
}

#form_contact #scode_block #scode {
	width: 107px;
	height:45px;
	margin:0 10px !important;
}
#form_contact textarea {
	padding:0 15px;
	margin:0 !important;
	height:159px;
}

#form_contact table#table_form {
	width:100%;
}

#form_contact table#table_form td {
	width:48%;
	padding-right:1.5%;
	vertical-align:top;
}

#form_contact table#table_form td:last-child {
	padding:0;
}

#form_contact #scode_block {
	margin-top:-4px;
	font-size:16px;
	color:#fff;
}

#form_contact #scode_block table td {
	padding:0 !important;
}

#form_contact #scode_block #img_code {
	border:none;
}

/* Footer
----------------------------------------------------------------------------*/
#footer {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:200px;
	color: #bfbfbf;
	background:rgba(45,45,45,.8);
	padding:48px 0 0 0;
	font-size:14px;
	line-height: 25px;
	border-top:3px #94b506 solid;
	box-sizing:border-box;
	text-align:center;
}

#footer span {
}

#footer a {
	color: #bfbfbf;
}

#footer .page_wrapper div {
	margin:7px 0 0 0;
}

/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 200px;
	float: left;
}
#contact_form {
	width: 445px;
	float: right;
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 65px;
	width:76px;
	height:72px;
	background: url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
	cursor: pointer;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	text-decoration: none;
	transform:scale(1.1);
}
/****************************************/
#welcome_text {
}
#welcome_text div {
	text-align:right;
}
#welcome_text .images_left {
	margin:7px 35px 15px 0;
}

/******************************************/
.columns2 {
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
