/* Global */

body {
	font-family: Tahoma, Futura, Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height:20px;
/*	color: #343434;*/
	color: #656565;
	background-color:#333;
	overflow-x:hidden;
}
::selection {
	background: #46aee8;
	color:#fff;
}
::-moz-selection {
	background: #46aee8; /* Firefox */
	color:#fff;
}
img {
	max-width: 100%;
}
a:link {
	color: #3d3835;
	text-decoration: none;
	position:relative;
}
a:hover {
	color:#ea7605;
}
a:visited {
	color: #46aee8;
	text-decoration: none;
}

.fright{float:right;}
.fleft{float:left;}

.overflow_hidden {overflow-x:hidden;}


/* Navigation */
.menu {
	background: #000 url(../img/menu-bg.jpg) repeat left top;
	position: relative;
	top: 0;
	width: 100%;
	z-index: 999;
}

#logo { height: 90px; }
#logo h2 { color: #fff;	font-family: Tahoma, sans-serif; font-size: 36px; text-align: right; padding: 0; }
#logo span { color: #8f8e8e; font-family: Tahoma, sans-serif; font-size: 10px; font-style: italic; text-transform: uppercase; float: right; position: relative; top: -20px; }

#nav { height: 70px;  width: 75%; }
#nav ul.menu_level {
	list-style: none;
	padding: 0;
	margin: 0;
}
#nav ul.menu_level li {
	font-family: Arial, Verdana, sans-serif;
	color: #efefef !important;
	font-weight: 400;
	font-size: 14px;
	line-height: 30px;
	float: left;
	padding-top:15px;
	margin: 10px 0 0 25px;
	text-transform: uppercase;
	background: none;
	transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-webkit-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
}
#nav ul.menu_level li, #nav ul.menu_level li:link, #nav ul.menu_level li:visited { color: #eeeeee; }
#nav ul.menu_level li:hover,
#nav ul.menu_level li.active { cursor: pointer;	color: #efefef !important; }


/* mobile nav */
#dl-menu ul.dl-menu li { color: #fff; padding: 8px 10px 7px 10px; }
#dl-menu ul.dl-menu li:hover,
#dl-menu ul.dl-menu li.active { cursor: pointer; color: #efefef; }

.dl-menuwrapper {
    width: 100%;
    max-width: 300px;
    float: left;
    position: relative;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    -webkit-perspective-origin: 50% 200%;
    -moz-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
    display: none;
    z-index: 1002;
}
.dl-menuwrapper:first-child { margin-right: 100px;}
.dl-menuwrapper button {
    background: #fff;
    border: none;
    width: 48px;
    height: 45px;
    text-indent: -900em;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    outline: none;
}
.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul { background: #aaa; }
.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    background: #000;
    top: 10px;
    left: 16%;
    box-shadow: 0 10px 0 #000, 0 20px 0 #000;
}
.dl-menuwrapper ul {
    padding: 0;
    list-style: none;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.dl-menuwrapper li { position: relative; }
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
    outline: none;
}
.no-touch .dl-menuwrapper li a:hover { background: rgba(255,248,213,0.1); }
.dl-menuwrapper li.dl-back > a { padding-left: 30px; background: rgba(0,0,0,0.1);}
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
    position: absolute;
    top: 0;
    speak: none;
    -webkit-font-smoothing: antialiased;
}
.dl-menuwrapper li.dl-back:after {
    left: 10px;
    color: rgba(212,204,198,0.3);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
.dl-menuwrapper li > a:after { right: 10px; color: rgba(0,0,0,0.15); }
.dl-menuwrapper .dl-menu {
    margin: 5px 0 0 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.dl-menuwrapper .dl-menu.dl-menu-toggle {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}
/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu { display: none; }

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a { display: none; }
.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li { display: block; }

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    margin: 0;
}

/* Animation classes for moving out and in */
.dl-menu.dl-animate-out-2 {
    -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
    -moz-animation: MenuAnimOut2 0.3s ease-in-out;
    animation: MenuAnimOut2 0.3s ease-in-out;
}

@-webkit-keyframes MenuAnimOut2 {
    100% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
}
}

@-moz-keyframes MenuAnimOut2 {
    100% {
    -moz-transform: translateX(-100%);
    opacity: 0;
}
}

@keyframes MenuAnimOut2 {
    100% {
    transform: translateX(-100%);
    opacity: 0;
}
}

.dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
    -moz-animation: MenuAnimIn2 0.3s ease-in-out;
    animation: MenuAnimIn2 0.3s ease-in-out;
}

@-webkit-keyframes MenuAnimIn2 {
    0% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
}
100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
}
}

@-moz-keyframes MenuAnimIn2 {
    0% {
    -moz-transform: translateX(-100%);
    opacity: 0;
}
100% {
    -moz-transform: translateX(0px);
    opacity: 1;
}
}

@keyframes MenuAnimIn2 {
    0% {
    transform: translateX(-100%);
    opacity: 0;
}
100% {
    transform: translateX(0px);
    opacity: 1;
}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
    animation: SubMenuAnimIn2 0.3s ease-in-out;
}

@-webkit-keyframes SubMenuAnimIn2 {
    0% {
    -webkit-transform: translateX(100%);
    opacity: 0;
}
100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
}
}

@-moz-keyframes SubMenuAnimIn2 {
    0% {
    -moz-transform: translateX(100%);
    opacity: 0;
}
100% {
    -moz-transform: translateX(0px);
    opacity: 1;
}
}

@keyframes SubMenuAnimIn2 {
    0% {
    transform: translateX(100%);
    opacity: 0;
}
100% {
    transform: translateX(0px);
    opacity: 1;
}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
    animation: SubMenuAnimOut2 0.3s ease-in-out;
}

@-webkit-keyframes SubMenuAnimOut2 {
    0% {
    -webkit-transform: translateX(0%);
    opacity: 1;
}
100% {
    -webkit-transform: translateX(100%);
    opacity: 0;
}
}

@-moz-keyframes SubMenuAnimOut2 {
    0% {
    -moz-transform: translateX(0%);
    opacity: 1;
}
100% {
    -moz-transform: translateX(100%);
    opacity: 0;
}
}

@keyframes SubMenuAnimOut2 {
    0% {
    transform: translateX(0%);
    opacity: 1;
}
100% {
    transform: translateX(100%);
    opacity: 0;
}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-back {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
    content: '';
}
.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
    background: #5d5d5d;
}


/* General Slides */
.slide{
	background-attachment: fixed;
	width:100%;
	height:100%;
	position: relative;
	z-index: 9;
	padding:0;
}
h1, .grid_12 div.simplebox div.name{
	margin:0 0 15px 0;
	text-transform:uppercase;
	text-align:left;
	background:none;
	font-family: 'Maven Pro', sans-serif;
	font-size: 51px;
	line-height: 86px;
/*	color:#343434;*/
	color: #EEEEEE;
	font-weight: 700;
}

h4, .grid_5 div.simplebox div.name, .grid_7 div.simplebox div.name, .contact_det_block div.simplebox div.name {
	margin:0;
	padding:0 0 4px 0;
	text-transform:uppercase;
	font-family: 'Maven Pro', sans-serif;
	font-weight:400;
	font-size:32px;
	font-style:normal;
	line-height:66px;
/*	color:#343434;*/
	color: #EFEFEF;
}
h5, .grid_12 div.simplebox p {
	margin:0;
	padding:0 0 4px 0;
	text-transform:none;
	font-family: 'Arial', sans-serif;
	font-weight:400;
	font-size:18px;
	line-height:20px;
/*	color:#343434;*/
	color: #EEEEEE;
}
img.icon_img {
	float:left;
	margin-right:20px;
	margin-top:20px;
	margin-bottom:25px;
}

.effect_2 {
	background:url(../img/effect_2.png) repeat left top;
	position:relative;
	top:0;
	bottom:-57px;
	height:100%;
	z-index:999 !important;
}
/* ____________________________________ Slide 1 ____________________________________ */ 

.padding_slide1 { padding: 40px 0 30px 0; }

#slide1 div.grid_12 div.simplebox p{
    color: #fff;
}

#slide1{
	background-image:url(../img/slide1-bg.jpg);
	background-size: cover !important;
	width:100%;
	text-align:left;
}
.mac_block { position:relative; }
.mac_block img {
	position:absolute;
	top:-80px;
	left:-195px;
	z-index:10;
}
.filtr-bg {
	float:right;
	position:relative;
	z-index:100;
	width:620px;
	max-width: 100%;
	font-size:16px;
	line-height:21px;
	color:#fff;
}
#slide1 h1, div.filtr-bg div.simplebox div.name {
	margin:0;
	padding:0;
	text-transform:uppercase;
	text-align:left;
	font-family: 'Maven Pro', sans-serif;
	font-size: 59px;
	line-height: 66px;
	color:#fff;
	font-weight: 900;
}
#slide1 h2 {
	margin:0;
	padding:9px 0 15px 0;
	text-transform:uppercase;
	text-align:left;
	font-family: 'Maven Pro', sans-serif;
	font-size: 39px;
	line-height: 56px;
	color:#fff;
	font-weight: 700;
}



/* ____________________________________ Slide 2 ____________________________________ */ 

#slide2 { background:url(../img/slide2-bg.jpg) repeat left top; }
#slide2 h5 { padding:0 0 13px; }

/* _________________ SKILLS ________________ */
#skills_block p { padding:0 0 7px 0; }

#skills_block li {
	background:#81cffa;
	width:99%;
	height:41px;
	margin-bottom:11px;
	border: 1px solid #a8dbfc;
}
#skills_block li span {
	display:block;
	background:#343434;
	padding:0;
	margin: 0;
	height:40px;
}
.skill1 { width:60%; }
.skill2 { width:80%; }
.skill3 { width:45%; }
/* _________________________ //SKILLS _______________________ */
/* ___________________________________ //Slide 2 ___________________________________ */ 

/* ___________________________________ Slide 3 ___________________________________ */ 

.back {
  display: inline-block;
  margin-bottom: 25px;
  margin-right: 25px;
  text-align: right;
  width: 100%;
   color: teal !important;
}
.read_more {
  display: inline-block;
  margin-bottom: 25px;
  margin-right: 25px;
  text-align: right;
  width: 100%;
   color: teal !important;
}

#slide3 { background:url(../img/slide8-bg.jpg) repeat left top; padding:70px 0px 50px 0px;}

.ContentTypeNews, .news.long{
	margin-bottom:25px;
}
.ContentTypeNews div.news_image, .news.long div.news_image {
  float: left;
  margin: 0 2.5% 2.5% 0;
  width: 20%;
}
.ContentTypeNews .textdata,  .news.long .textdata {
  display: inline-block;
  width: 77.5%;
}
.ContentTypeNews div.news_title, .news.long div.news_title{
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border-bottom: 1px solid #333;
 /* color: #343434;*/
    color: #DEEEEE;
  float: left;
  font-family: "Maven Pro",sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 15px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}
.ContentTypeNews div.news_title .news_date, .news.long div.news_title .news_date{
  color: teal;
  float: right;
  font-size: 11px;
}
.ContentTypeNews div.news_text_short, .news.long div.news_text_short{}



/* ___________________________________ //Slide 2 ___________________________________ */ 



/* ____________________________________ Slide 4 ____________________________________ */ 

#slide4 { background:url(../img/slide4-bg.jpg) repeat left top; }



/* _________________ PORTFOLIO ________________ */
.gallery-list .grid_3 {margin-bottom: 0;
    width: 232px !important; }

#slide4 .hover_img {
	overflow:hidden;
	position:relative;
	height:211px;
	width:235px;
	background:#343434;
}

.portfolio_zoom, .portfolio_link {
	width:40px;
	height:40px;
	position:absolute;
	bottom:33px;
	background-repeat:no-repeat;
	transition: bottom 0.7s ease-in-out;
	-moz-transition: bottom 0.7s ease-in-out;
	-webkit-transition: bottom 0.7s ease-in-out;
	-o-transition: bottom 0.7s ease-in-out;
}
.portfolio_zoom {
	bottom:-60px;
	left:81px;
	background-image:url(../img/zoom.png);
	background-position:0 0;
	z-index:302;
}
.portfolio_link {
	bottom:-60px;
	right:74px;
	background-image:url(../img/link.png);
	background-position:0 0;
	z-index:303;
}
.portfolio_zoom:hover, .portfolio_link:hover {
	background-position:0 -40px;
	background-color:#46aee8;
	z-index:310;
}
.portfolio_zoom a, .portfolio_link a {
	display:block;
	width:54px;
	height:54px;
	text-indent:-9999px;
}
.hover_img:hover .portfolio_zoom, 
.hover_img:hover .portfolio_link {
	bottom:33px;
}
.item_description {
	position:absolute;
	top:-122px;
	left:0;
	right:0;
	padding:25px 21px;
	text-align:center;
	/*color:#7e7e7e;*/
	color: #EEEEEE;
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
}
.hover_img:hover .item_description { top:0; }

.item_description p {
	padding:0 0 9px 0;
	margin:0 0 13px;
	border-bottom:1px solid #464646;
	font-family: 'Maven Pro', sans-serif;
	font-size: 16px;
/*	color: #46aee8;*/
	color: #EEEEEE;
	line-height: 26px;
	font-weight: 400;
	text-transform:uppercase;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}


/* _________ FILTER ________ */
#filters {margin-bottom:37px;margin-top:34px;}
#filters li {display:inline-block;}
#filters li a {
	display:block;
	margin:0 10px 10px 0;
	padding:10px 21px;
	text-transform:uppercase;
	font-family:'Arial';
	font-weight:400;
	font-size:16px;
	line-height:26px;
	/*color:#3e3e3e;*/
	color: #EEEEEE;
	background:#46aee8;
	border-bottom:1px solid #343434;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
}
#filters li a:hover,
#filters li a.selected {
	text-decoration:none;
	color:#fff;
	background:#343434;
}

.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
          transition-property:         transform, opacity;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
          transition-duration: 0s;
}

.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
          transition: none;
}
.element {
  overflow: hidden;
  position: relative;
}
.element img {max-width:100%;
}
/* ________ //FILTER _______ */
/* ________________ //PORTFOLIO _______________ */

/* ___________________________________ //Slide 4 ___________________________________ */ 





/* ____________________________________ Slide 6 ____________________________________ */ 
#slide6 { background:url(../img/slide6-bg.jpg) repeat left top; }
#slide6 h5 {margin-bottom:39px;
}
.serv_block {
	display:block;
	position:relative;
	margin-bottom:13px;
	font-family: 'Arial', sans-serif;
	color: #efefef;
}

.iconimg, .iconimg_h {
	float:left;
	margin-right:15px;
	position:absolute;
}

.iconimg_h {
	opacity:0;
	filter: alpha(opacity=0);
	/* safari / chrome */
	-webkit-animation-name:rotater;
	-webkit-animation-duration:500ms;
	-webkit-animation-iteration-count:1;
	-webkit-animation-timing-function: ease-out;

	/* mozilla */
	-moz-transform: scale(0);
	-moz-transition-duration:500ms;
	-moz-transition-timing-function: ease-out;

	/* opera */
	-o-transform: scale(0);
	-o-transition-duration:500ms;
	-o-transition-timing-function: ease-out;

	/* ie */
	-ms-transform: scale(0);
	-ms-transform-duration:500ms;
	-ms-transform-timing-function: ease-out;
}

.serv_block:hover .iconimg {
	opacity:0;
	filter: alpha(opacity=0);
	/* safari / chrome */
	-webkit-animation-name:rotater;
	-webkit-animation-duration:900ms;
	-webkit-animation-iteration-count:1;
	-webkit-animation-timing-function: ease-out;

	/* mozilla */
	-moz-transform: scale(2);
	-moz-transition-duration:900ms;
	-moz-transition-timing-function: ease-out;

	/* opera */
	-o-transform: scale(2);
	-o-transition-duration:900ms;
	-o-transition-timing-function: ease-out;

	/* ie */
	-ms-transform: scale(2);
	-ms-transform-duration:900ms;
	-ms-transform-timing-function: ease-out;
}
.serv_block:hover .iconimg_h {
	opacity:1;
	filter: alpha(opacity=100);
	/* safari / chrome */
	-webkit-animation-name:rotater;
	-webkit-animation-duration:900ms;
	-webkit-animation-iteration-count:1;
	-webkit-animation-timing-function: ease-out;

	/* mozilla */
	-moz-transform: scale(1);
	-moz-transition-duration:900ms;
	-moz-transition-timing-function: ease-out;

	/* opera */
	-o-transform: scale(1);
	-o-transition-duration:900ms;
	-o-transition-timing-function: ease-out;

	/* ie */
	-ms-transform: scale(1);
	-ms-transform-duration:900ms;
	-ms-transform-timing-function: ease-out;
}

.serv_block p {
	margin:0;
	padding:0 17px 15px 54px;
	text-transform:uppercase;
	font-family: 'Maven Pro', sans-serif;
	font-weight:400;
	font-size:28px;
	line-height:40px;
	color: #eeeeee;
}

.simpleboxes li {
	width: 48%;
	float: left;
}

/* ___________________________________ //Slide 6 ___________________________________ */






/* ____________________________________ Slide 8 ____________________________________ */

#slide8 { background:url(../img/slide8-bg.jpg) repeat left top; }

#slide8 .container {margin-bottom:80px;
}


/* ______________ CONTACT_FORM ______________ */
::-webkit-input-placeholder { opacity:1 !important; color:#3e3e3e !important;
}
:-moz-placeholder {opacity:1 !important; color:#3e3e3e !important;
}
::-moz-placeholder { opacity:1 !important; color:#3e3e3e !important;
}
:-ms-input-placeholder { opacity:1 !important; color:#3e3e3e !important;
}

.contact_form input[type="text"],
.contact_form textarea {
	width:93%;
	margin:12px 0 0 0;
	padding:12px 5px 12px 21px;
/*	background: #c4a53f; */
	background: #BD8B15;
	font-family:Arial;
	font-weight:400;
	font-size:14px;
	line-height:20px;
	border:1px solid #c4a53f;
	color:#dede9e;
}
.contact_form input[type="text"]:first-child { margin-top:0; }
.contact_form textarea {
	resize: none;
	margin-top:0;
	height: auto;
    min-height: 164px;
}

.contact_btn, .send_btn {
	width:130px;
	border:none;
	text-transform:uppercase;
	margin:0 17px 20px 0;
	padding:17px 0;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	font-family: 'Maven Pro', sans-serif;
	font-weight:300;
	text-align: center;
	vertical-align: middle;
	background:#3e3e3e;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

.contact_btn:hover, .send_btn:hover {
	background:#fff;
	color:#3e3e3e;
}

#note .notification_ok {
	margin-top:20px;
	padding:7px 10px;
	text-align:center;
	text-transform:uppercase;
	background:#444;
	font-family: 'Maven Pro', sans-serif;
	font-weight:400;
	font-size:14px;
	color:#fff;
}
#note .notification_error {
	font-family: 'Maven Pro', sans-serif;
	font-weight:400;
	font-size:16px;
	color:#f00;
}
/* _____________ //CONTACT_FORM _____________ */

/* ____________ CONTACT_DETAILS _____________ */
.contact_det_block {margin-top:-5px;
}

ul.foot_block_intouch {
	margin:0;
	padding:0;
}

.foot_block_intouch li {
	margin-right:40px;
	padding-bottom:15px !important;
	display:inline-block;
}
.foot_block_intouch li p, .foot_block_intouch a {
	color:#3e3e3e;
	line-height:21px;
	font-size:14px;
	padding:0 0 0 35px;
	margin:0;
}

/*.foot_block_intouch li a:hover {color:#343434;text-decoration:none;}

.foot_block_intouch li.touch_phone p {
	background:url(../img/contact_icon.png) no-repeat 0 0;
}
.foot_block_intouch li.touch_clock p {
	background:url(../img/contact_icon.png) no-repeat 0 -190px;
}
.foot_block_intouch li.touch_mail a {
	background:url(../img/contact_icon.png) no-repeat 0 -103px;
}
.foot_block_intouch li.touch_site a {
	background:url(../img/contact_icon.png) no-repeat 0 -295px;
	display:block;
	height:20px;
}
.foot_block_intouch li.touch_adress p {
	background:url(../img/contact_icon.png) no-repeat 0 -325px;
}*/
.foot_block_intouch li.facebook a {
	background:url(../img/contact_icon.png) no-repeat 0 -413px;
	display:block;
	height:15 px;
}
.foot_block_intouch li.twitter a {
	background:url(../img/contact_icon.png) no-repeat 0 -496px;
	display:block;
	height:15px;
}




/* ___________ //CONTACT_DETAILS ____________ */
#map_block {
	margin:0;
}

/* ____________________________________ //Slide 8 ____________________________________ */


/* ____________________________________ Slide 9 ____________________________________ */

#slide9{
       margin-top: -105px;
}

/* ____________________________________ //Slide 9 ____________________________________ */



/* ____________________________________ FOOTER ____________________________________ */
#footer {
	background:url(../img/menu-bg.jpg) repeat left top;
	padding:27px 0 23px;
}
.copyright {
	float:left;
	text-transform:uppercase;
	font-family: 'Maven Pro', sans-serif;
	font-weight:300;
	color:#979797;
}
.copyright a {
	color:#fff;
}
.copyright a:hover {text-decoration:none;color:#46aee8;
}



/* _____________ BACK_TOP ___________ */
#back_top {
	float:right;
}
#back_top a.button {
	cursor:pointer;
	position:relative;
	z-index:300;
	display:block;
	background:url(../img/back-top-bg.png) no-repeat top right;
	margin:0;
	padding-right:20px;
	width:93px;
	height:20px;
	text-transform:uppercase;
	font-family: 'Maven Pro', sans-serif;
	font-weight:300;
	color:#979797;
}
#back_top a.button:hover {text-decoration:none;}
/* ____________ //BACK_TOP __________ */

/* ___________________________________ //FOOTER ___________________________________ */


/*_______________________ kontakt simple box lista z ikonami _______________________*/
.contact_det_block div.simplebox div.content ul{
    margin: 0;
    padding: 0;
}
.contact_det_block div.simplebox div.content ul li{
    display: inline-block;
    margin-right: 40px;
    padding-bottom: 15px !important;
    padding-left: 25px;
      background: url("../img/contact_icon.png") no-repeat scroll 0 -295px rgba(0, 0, 0, 0);
}
.contact_det_block div.simplebox div.content ul li a{
    color:#3e3e3e !important;
}
.contact_det_block div.simplebox div.content ul li:nth-child(1) {
    background: url("../img/contact_icon.png") no-repeat scroll 0 2px rgba(0, 0, 0, 0);
}
.contact_det_block div.simplebox div.content ul li:nth-child(2) {
    background: url("../img/contact_icon.png") no-repeat scroll 0px -100px rgba(0, 0, 0, 0);
}
.contact_det_block div.simplebox div.content ul li:nth-child(3) {
  background: url("../img/contact_icon.png") no-repeat scroll 0 -188px rgba(0, 0, 0, 0);
}
.contact_det_block div.simplebox div.content ul li:nth-child(4) {
  background: url("../img/contact_icon.png") no-repeat scroll 0 -295px rgba(0, 0, 0, 0);
}
#map_block div.simplebox{
    padding-top: 25px;
}

#logo .imageBox {
  margin: 13px 0 0;
  width: 100%;
}
    
}
#logo .imageBox img{
    display: inline-block;
}
#logo div.imageBox_description{
    color: #fff;
    display: inline-block;
    height: 72%;
    margin: 5%;
    vertical-align: middle;
}
.serv_block.omega div.Title{
    /*color: #46aee8;*/
    color: #4278E35;
    text-decoration: none;
    font-family: 'Maven Pro',sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    margin: 0;
    padding: 0 17px 15px 54px;
    text-transform: uppercase;
    cursor:pointer;
}
.serv_block.omega div.text, .serv_block.omega div.text p{
    color: #eeeeee;
    display: block;
    font-family: 'Arial',sans-serif;
    margin-bottom: 13px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
}

.uslugi div.ContentTypeAdvancedRecord{
    display:inline-block;
    width:49%;
     vertical-align: top;
}
ul li.record{
    display: block;
    float: left;
} 

.back {
    float: right;
    margin-right: 25px;
}

#content_projekt ul li.record.ContentTypeAdvancedRecord{
        width: 255px;
}
#content_projekt ul li.record .grid_3{
        width: 100%;
}
.grid_3 .long_text_value > p {
    border-bottom: medium none;
    color: #7e7e7e;
    font-size: 14px;
    line-height: 18px;
    text-transform: none;
}
.object_action{
    display:none;
}

#options ul#submenu, .pr.submenu ul{
    margin-bottom: 37px;
    margin-top: 34px;
    display:inline;
}
#options ul#submenu li, .pr.submenu li{
      display: inline-block;
      margin-right: 30px;
 	margin-bottom: 15px;
}
#options ul#submenu li a, 
a.main_p_tab,
a.main_p_tab_p,
.pr.submenu li a{
/*    background: none repeat scroll 0 0 #46aee8;*/
    background: none repeat scroll 0 0 #efefef;
    border-bottom: 1px solid #343434;
    color: #3e3e3e;
    display: block;
    font-family: 'Arial';
    font-size: 16px;
    font-weight: 400;
    height: auto;
    line-height: 26px;
    margin: 0;
    padding: 10px 0 10px 20px;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
}
a.main_p_tab{
    display: inline-block;
    margin-right: 10px;
    padding: 10px;
}
a.main_p_tab_p{
    display: inline-block;
    margin-right: 10px;
    padding: 10px;
}

    #options ul#submenu li a:hover, 
    #options ul#submenu li a.selected, 
    a.main_p_tab:hover, 
    a.main_p_tab.selected, 
    a.main_p_tab_p:hover, 
    a.main_p_tab_p.selected, 
    .pr.submenu li a.current_category, 
    .pr.submenu li a:hover{
      text-decoration:none;
	color:#fff;
	background:#343434;
}
.projects .record_content.ContentTypeAdvancedRecord {
  display: inline-block;
}
.add_records {
  background: url("/images/add.gif") no-repeat scroll 10px 2px #fff6bf;
  border: 1px solid #fdd845;
  border-radius: 5px;
  color: #343434;
  margin: 10px 0 20px;
  padding: 10px 9px 10px 55px;
  width: 40%;
}

li.record.ContentTypeText a.record_position {
  right: 28px;
}
div.submenu.pr{
    margin-bottom:25px;
}
.lang { /*
  color: springgreen; */
  float: right;
  font-size: 10px;
  position: absolute;
  right: 25px;
  top: 10px;
}

a.slide_button{position:absolute;}

#simplebox_2_pl > .name,
#simplebox_3_pl > .name,
#simplebox_4_pl > .name,
#simplebox_5_pl > .name,
#simplebox_7_pl > .name,
#simplebox_8_pl > .name,
#content > h1,
.grid_12 > h4,
.omega {
  color: #575050;
}






