/* --------------------------------------------------------------------------------------
+
+   AUTHOR: Agência OH!
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ BASIC STYLES
+
-------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* --------------------------------------------------------------------------------------
+
+ VARIABLES
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ MIXINS
+
-------------------------------------------------------------------------------------- */
/* Borders */
/* hover opacity */
/* hover color */
/* TRIANGLES */
/* LINE-HIGH */
/* BOX SIZING */
/* HIDE TEXT*/
.icon-sprite, .icon-icon1, .icon-icon2, .icon-icon3, .icon-icon4 {
  background: url('../images/icon-sbc364e6a19.png') no-repeat;
}

.icon-icon1 {
  background-position: 0 -545px;
  height: 99px;
  width: 76px;
}
.icon-icon1:hover, .icon-icon1.icon1_hover, .icon-icon1.icon1-hover {
  background-position: 0 0;
}

.icon-icon2 {
  background-position: 0 -763px;
  height: 99px;
  width: 76px;
}
.icon-icon2:hover, .icon-icon2.icon2_hover, .icon-icon2.icon2-hover {
  background-position: 0 -654px;
}

.icon-icon3 {
  background-position: 0 -218px;
  height: 99px;
  width: 76px;
}
.icon-icon3:hover, .icon-icon3.icon3_hover, .icon-icon3.icon3-hover {
  background-position: 0 -109px;
}

.icon-icon4 {
  background-position: 0 -436px;
  height: 99px;
  width: 76px;
}
.icon-icon4:hover, .icon-icon4.icon4_hover, .icon-icon4.icon4-hover {
  background-position: 0 -327px;
}

body {
  color: white;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-width: 1170px;
  width: 100%;
  font-weight: 300;
}
body #preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background: url("../images/ajax-loader.gif") 50% 50% no-repeat white;
  background-size: 50px 50px;
}
body > textarea {
  position: absolute;
  margin-left: -2000px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  font-family: "Roboto Slab", serif;
  color: white;
  font-weight: 300;
  margin-bottom: 20px;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

a {
  outline: none;
  /* removing outline in Mozilla */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  color: white;
}
a:active {
  background-color: transparent;
}
a:hover {
  color: #999999;
}

p {
  margin-bottom: 20px;
  clear: both;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
}

img {
  vertical-align: top;
}

table {
  width: 100%;
}

strong {
  font-weight: bold;
}

small {
  color: #5c697a;
  font-size: 12.8px;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

::-moz-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::selection {
  background: black;
  color: white;
  text-shadow: none;
}

.hide {
  display: none !important;
}

button:hover,
input[type="submit"]:hover,
label {
  cursor: pointer;
}

textarea {
  margin: 0;
  /* removing margin in Mozilla */
  overflow: auto;
  /* for IE and older browsers */
}

/* align checkboxes, radios, text inputs with their label */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

#to_the_top {
  width: 72px;
  height: 72px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: url('../images/top_icon.png') no-repeat 0 0;
  display: block;
  z-index: 1000;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#to_the_top:hover {
  background-position: 0 -72px;
}

.center {
  text-align: center;
}

/* --------------------------------------------------------------------------------------
+
+ LAYOUT
+
-------------------------------------------------------------------------------------- */
html, body {
  height: 100%;
}

.layout {
  clear: both;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -auto;
}
.layout .layout_footer {
  height: auto;
}

footer {
  clear: both;
  position: relative;
  height: auto;
}

.container {
  margin: 0 auto;
  width: 1170px;
  
}

.left {
  float: left;
}

.right {
  float: right;
}

/*
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'Fontawesome';
  src: url("../fonts/fontawesome-webfont.eot");
  src: url("../fonts/fontawesome-webfont.svg#fontawesome-webfont") format("svg"), url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
}

.fa {
  display: inline-block;
  font-family: 'Fontawesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;

}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook:before {
  content: "\f09a";
  position: relative;
  top: 2px;
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-rss:before {
  content: "\f09e";
  position: relative;
  top: 2px;
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
  position: relative;
  left: 2px;
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-mail-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

/* --------------------------------------------------------------------------------------
+
+ BUTTONS
+
-------------------------------------------------------------------------------------- */
.btn {
  text-align: center;
  color: white;
  border: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  background-color: transparent;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn.small {
  padding: 0 20px;
  height: 59px;
  line-height: 58px;
}
.btn.small:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn.medium {
  padding: 0 70px;
  border: 1px solid transparent;
  background-color: #6f895d;
  height: 49px;
  line-height: 48px;
}
.btn.medium:hover {
  background-color: #566848;
}
.btn.large {
  padding: 0 55px;
  height: 59px;
  line-height: 58px;
  color: #fff;
}
.btn.large:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn.pb {
  padding: 0 20px;
  height: 49px;
  line-height: 48px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
}

/* --------------------------------------------------------------------------------------
+
+ FORMS
+
-------------------------------------------------------------------------------------- */
input[type="text"], textarea {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 25px;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "Roboto Slab", serif;
  -webkit-appearance: none;
  box-shadow: none;
}
input[type="text"].small, textarea.small {
  border: 1px solid #fff;
  width: 317px;
  font-size: 15px;
  background-color: transparent;
  color: white;
  height: 59px;
  line-height: 59px;
}
input[type="text"].small:hover, textarea.small:hover {
  background: rgba(255, 255, 255, 0.1);
}
input[type="text"].gray, textarea.gray {
  background-color: #f1f1f1;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  width: 100%;
  border: none;
  color: #5f5f5f;
}
input[type="text"].gray:hover, textarea.gray:hover {
  background-color: #e2e2e2;
}

textarea {
  background-color: #f1f1f1;
  font-size: 14px;
  padding: 25px 25px;
  line-height: 1.5;
  resize: vertical;
  width: 100%;
  border: none;
  color: #5f5f5f;
  min-height: 210px;
}
textarea:hover {
  background-color: #e2e2e2;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

/* --------------------------------------------------------------------------------------
+
+ HEADER
+
-------------------------------------------------------------------------------------- */
.scroll_page, header .text a {
  width: 92px;
  height: 92px;
  display: block;
  background: url('../images/arrows_header.png') no-repeat 0 0;
  margin-left: 80px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.scroll_page:hover, header .text a:hover {
  background-position: 0 -92px;
}

header {
  background-color: white;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
header:before, header:after {
  content: '';
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -80px;
  left: 50%;
  margin-left: 960px;
  background: url('../images/trans_header_bgr3.png') repeat 0 0;
  -webkit-transform: translate(2000px, 0);
  -moz-transform: translate(2000px, 0);
  -ms-transform: translate(2000px, 0);
  -o-transform: translate(2000px, 0);
  transform: translate(2000px, 0);
  -webkit-transition: all 1s ease;
  -webkit-transition-delay: 1s;
  -moz-transition: all 1s ease 1s;
  -o-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}
header:after {
  left: auto;
  margin-left: 0;
  right: 50%;
  margin-right: 960px;
  -webkit-transform: translate(-2000px, 0);
  -moz-transform: translate(-2000px, 0);
  -ms-transform: translate(-2000px, 0);
  -o-transform: translate(-2000px, 0);
  transform: translate(-2000px, 0);
}
body.active header:before, body.active header:after {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
header #wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
header #wrapper:before, header #wrapper:after {
  content: '';
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url('../images/trans_header_bgr1.png') no-repeat 50% 100%;
  -webkit-transform: translate(-2000px, 0);
  -moz-transform: translate(-2000px, 0);
  -ms-transform: translate(-2000px, 0);
  -o-transform: translate(-2000px, 0);
  transform: translate(-2000px, 0);
  -webkit-transition: all 1s ease-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition: all 1s ease-out 0.5s;
  -o-transition: all 1s ease-out 0.5s;
  transition: all 1s ease-out 0.5s;
}
header #wrapper:after {
  -webkit-transform: translate(2000px, 0);
  -moz-transform: translate(2000px, 0);
  -ms-transform: translate(2000px, 0);
  -o-transform: translate(2000px, 0);
  transform: translate(2000px, 0);
  background: url('../images/trans_header_bgr2.png') no-repeat 50% 100%;
  -webkit-transition: all 1s ease-out;
  -webkit-transition-delay: 1s;
  -moz-transition: all 1s ease-out 1s;
  -o-transition: all 1s ease-out 1s;
  transition: all 1s ease-out 1s;
}
body.active header #wrapper:before, body.active header #wrapper:after {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
header .text {
  position: absolute;
  left: 50%;
  margin-left: -555px;
  top: 70px;
  z-index: 10;
}
header .text h1 {
  width: 400px;
  font-size: 76px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 50px;
  -webkit-transform: translate(0, -500px);
  -moz-transform: translate(0, -500px);
  -ms-transform: translate(0, -500px);
  -o-transform: translate(0, -500px);
  transform: translate(0, -500px);
}
body.active header .text h1 {
  -webkit-transition: all 1s ease;
  -webkit-transition-delay: 2s;
  -moz-transition: all 1s ease 2s;
  -o-transition: all 1s ease 2s;
  transition: all 1s ease 2s;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
header .text a {
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
}
body.active header .text a {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
  -webkit-transition: all 1s ease;
  -webkit-transition-delay: 2.5s;
  -moz-transition: all 1s ease 2.5s;
  -o-transition: all 1s ease 2.5s;
  transition: all 1s ease 2.5s;
}
body.active header .text a.normal {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
header .container {
  position: relative;
}
header nav {
  width: 100%;
  height: 80px;
  background: url('../images/trans_header_bgr.png') no-repeat 80% 80px;
  background-color: #18202a;
  background-color: rgba(24, 32, 42, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
}
body.active header nav {
  background-position: 50% 100%;
}
header nav.fixed {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: -80px;
  position: fixed;
  top: 0;
  bottom: 100%;
  background-image: none;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
header nav.fixed ul {
  display: block;
}
header nav.fixed a {
  color: #5F5F5F;
}
header nav.fixed a:hover {
  color: #7d9e67;
}
header nav.fixed .active a {
  color: #9dca82;
}
header nav.fixed .logo {
  background-position: 0 -80px;
}
header nav span {
  display: none;
}
header nav .logo {
  height: 80px;
  width: 123px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  display: inline-block;
  background: url('../images/logo.png') no-repeat 0 0;
}
header nav ul {
  height: 80px;
  line-height: 75px;
  display: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
header nav li {
  display: inline-block;
  vertical-align: middle;
}
header nav li + li {
  margin-left: 65px;
}

/* subheader slider */
#bannerscollection_zoominout_majestic {
  width: 100%;
  height: 100%;
  display: block;
}

.bannerscollection_zoominout {
  position: relative;
  z-index: 1;
}
.bannerscollection_zoominout:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url('../images/slider-patern.png') repeat 50% 50%;
  z-index: 100;
}

.bannerscollection_zoominout img {
  position: relative;
  display: block;
  max-width: inherit;
  max-height: inherit;
  -webkit-backface-visibility: hidden;
  /*width:inherit;
  height:inherit;	*/
}

.bannerscollection_zoominout_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.bannerscollection_zoominout .contentHolderVisibleWrapper {
  position: absolute;
  overflow: hidden;
  margin-top: 0px;
  *margin-top: -20px;
}

.bannerscollection_zoominout .contentHolder {
  position: absolute;
}

.bannerscollection_zoominout .contentHolderUnit {
  /*position:relative;
  float:left;*/
  display: block;
  overflow: hidden;
}

.mycanvas {
  /*border:1px solid #ff0000;*/
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 10;
  display: none;
}

/***opportune SKIN***/
.bannerscollection_zoominout.opportune .contentHolderVisibleWrapper {
  position: absolute;
  overflow: hidden;
  margin-top: 0px;
}

.bannerscollection_zoominout.opportune .bannerControls {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}

/* --------------------------------------------------------------------------------------
+
+ FOOTER
+
-------------------------------------------------------------------------------------- */
footer {
  background-color: #18202a;
  padding: 26px 0;
  width: 100%;
  text-align: center;
}

/* --------------------------------------------------------------------------------------
+
+ CONTENT
+
-------------------------------------------------------------------------------------- */
main {
  position: relative;
  z-index: 1;
  display: block;
}

.popup-email {
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999;
}
.popup-email .element {
  width: 300px;
  height: auto;
  position: absolute;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  margin-top: -50px;
  background-color: #fff;
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.popup-email .element p {
  margin-bottom: 20px;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
}
.popup-email .element button {
  margin: 0 auto 10px;
}
.popup-email .success {
  color: #15ad9e;
}
.popup-email .error {
  color: #ea5555;
}

.read_more_icon, #about article .link2, #about .about-content .close, #member_info .person_info .close {
  position: relative;
  height: 26px;
  line-height: 26px;
  color: #898888;
  display: block;
  padding-right: 35px;
}
.read_more_icon:after, #about article .link2:after, #about .about-content .close:after, #member_info .person_info .close:after {
  content: '';
  behavior: url("../PIE.htc");
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  width: 26px;
  height: 26px;
  display: block;
  top: 0;
  right: 0;
  background: #d0d0d0 url('../images/plus.png') no-repeat 50% 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.read_more_icon:hover, #about article .link2:hover, #about .about-content .close:hover, #member_info .person_info .close:hover {
  color: #343434;
}
.read_more_icon:hover:after, #about article .link2:hover:after, #about .about-content .close:hover:after, #member_info .person_info .close:hover:after {
  background-color: #9dca82;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

#about {
  background: #f1f1f1 url('../images/ajax-loader.gif') no-repeat 50% 50%;
  background-size: 30px 30px;
  overflow: hidden;
  font-size: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-height: 600px;
}
#about.about-show {
  min-height: 0;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  padding: 60px 0;
}
#about.active article {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
}
#about.active article:nth-child(odd), #about.active article:nth-child(even) {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#about h1 {
  color: #619141; 
}
#about article {
  font-size: 16px;
  height: 300px;
  width: 50%;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  float: left;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #f1f1f1;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
}
#about article:nth-child(4n+4), #about article:nth-child(4n+1) {
  background-color: #fff;
}
#about article:nth-child(odd) {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#about article:nth-child(odd) > div {
  right: 0;
  padding-right: 294px;
}
#about article:nth-child(odd) > div .link1 {
  right: 110px;
}
#about article:nth-child(even) {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#about article:nth-child(even) > div {
  left: 0;
  padding-left: 294px;
}
#about article:nth-child(even) > div .link1 {
  left: 110px;
}
#about article:first-child, #about article:first-child + article {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
#about article:first-child + article + article, #about article:first-child + article + article + article {
  -webkit-transition: all 1s ease-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition: all 1s ease-out 0.5s;
  -o-transition: all 1s ease-out 0.5s;
  transition: all 1s ease-out 0.5s;
}
#about article > div {
  position: absolute;
  top: 55px;
  width: 585px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#about article * {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
#about article p {
  font-size: 16px;
  color: #5f5f5f;
  margin-bottom: 24px;
}
#about article .link1 {
  position: absolute;
  top: 45px;
  width: 76px;
  height: 99px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#about article .link2 {
  font-size: 12px;
  color: #343434;
  height: 26px;
  line-height: 26px;
  display: inline-block;
}
#about .about-content {
  font-size: 16px;
  width: 873px;
  margin: 0 auto;
  display: block;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  position: absolute;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#about .about-content.active {
  -webkit-transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition: all 0.4s ease-in-out 0.5s;
  -o-transition: all 0.4s ease-in-out 0.5s;
  transition: all 0.4s ease-in-out 0.5s;
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
  position: relative;
  z-index: 100;
}
#about .about-content .container {
  background-color: #fff;
  width: 100%;
  padding: 50px 60px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#about .about-content .container *:last-child {
  margin-bottom: 0;
}
#about .about-content p {
  color: #5f5f5f;
}
#about .about-content .close {
  top: 30px;
  right: 30px;
  position: absolute;
}
#about .about-content .close:hover:after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
#about .about-content .close:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#belive {
  overflow: hidden;
  background-color: #9dca82;
  width: 100%;
  padding: 60px 0;
  height: auto;
  text-align: left;
  background-image: url("../images/drop-background3.png");
  background-repeat: no-repeat;
  background-position: -100% 50%;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#belive.active {
  background-position: 50% 50%;
}
#belive h1 {
  display: block;
  margin-bottom: 30px;
}
#belive p {
  width: 40%;
  margin: 0 auto;
}

#pricing {
  background-color: #fff;
  width: 100%;
  padding: 60px 0;
  text-align: center;
  font-size: 0;
}#pricing h1 {
  color:#7d9e67;
}
#pricing p {
  width: 40%;
  margin: 0 auto 60px;
}
#pricing.active article {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#pricing article {
  font-size: 16px;
  width: 23%;
  margin-left: 0;
  display: inline-block;
  background-color: #303740;
  position: relative;
  top: 0;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#pricing article:hover {
  top: -15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #3f4954;
}
#pricing article:hover .basic {
  background-color: #41ca68;
}
#pricing article:hover .classic {
  background-color: #007ddd;
}
#pricing article:hover .premium {
  background-color: #454582;
}
#pricing article:hover .pro {
  background-color: #b32a46;
}
#pricing article ul {
  margin: 40px 20px;
}
#pricing article li {
  text-align: left;
  padding-left: 42px;
  margin-bottom: 15px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
#pricing article li:hover {
  background-position: 13px 0;
}
#pricing article li:last-child {
  margin-bottom: 0;
}
#pricing article .yes {
  background-image: url("../images/projects/mark.png");
  background-position: 10px 3px;
  background-repeat: no-repeat;
}
#pricing article a {
  margin-bottom: 20px;
}
#pricing article .green:hover {
  border: 1px solid #9dca82;
  background-color: #9dca82;
}
#pricing article .blue:hover {
  border: 1px solid #7d9e67;
  background-color: #7d9e67;
}
#pricing article .purple:hover {
  border: 1px solid #333361;
  background-color: #333361;
}
#pricing article .red:hover {
  border: 1px solid #7d9e67;
  background-color: #7d9e67;
}
#pricing article > div {
  width: 100%;
}
#pricing article > div h2 {
  height: 180px;
  line-height: 180px;
}
#pricing .basic {
  background-color: #9dca82;
}
#pricing .classic {
  background-color: #7d9e67;
}
#pricing .premium {
  background-color: #333361;
}
#pricing .pro {
  background-color: #7d9e67;
}
#pricing article + article {
  margin-left: 2.33333%;
}

#subscribe {
  width: 100%;
  padding: 60px 0;
  background-color: #7d9e67;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  background-image: url("../images/drop-background1.png");
  background-position: -100% 50%;
  background-repeat: no-repeat;
}
#subscribe.active {
  background-position: 50% 50%;
}
#subscribe p {
  margin-bottom: 20px;
}
#subscribe button {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}

#team {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  background: #f1f1f1 url('../images/ajax-loader.gif') no-repeat 50% 50%;
  background-size: 30px 30px;
  min-height: 550px;
}
#team.member-show {
  min-height: 0;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  padding: 60px 0;
}
#team #team_slider_wrap {
  background-color: #f1f1f1;
}
#team h1 {
  color: #333361;
}
#team p {
  margin-bottom: 55px;
  color: #5f5f5f;
}
#team .team_slider {
  width: 68%;
  margin: 0 auto 30px;
  display: block;
  position: relative;
}
#team .creative {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 30px;
  text-align: left;
  background-color: #fff;
}
#team .creative h3 {
  color: #333361;
  margin-bottom: 20px;
}
#team .creative p {
  color: #5f5f5f;
  margin-bottom: 0;
  font-size: 14px;
}

#member_info {
  display: block;
}
#member_info > div {
  background-color: #f1f1f1;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  position: absolute;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#member_info > div:before, #member_info > div:after {
  content: " ";
  display: table;
}
#member_info > div:after {
  clear: both;
}
#member_info > div.active {
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  -moz-transition: all 0.3s ease-in-out 0.1s;
  -o-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
  position: relative;
  z-index: 100;
}
#member_info .img_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 370px;
  height: 370px;
}
#member_info .img_wrap img {
  width: 100%;
}
#member_info .person_social {
  float: right;
  width: 800px;
}
#member_info .person_social a {
  width: 170px;
  height: 170px;
  float: left;
  margin-left: 30px;
  margin-bottom: 30px;
  line-height: 193px;
  text-align: center;
}
#member_info .person_social a i {
  color: white;
  font-size: 50px;
}
#member_info .person_social .facebook {
  background-color: #3b5999;
}
#member_info .person_social .facebook:hover {
  background-color: #2d4474;
}
#member_info .person_social .twitter {
  background-color: #ae2c85;
}
#member_info .person_social .twitter:hover {
  background-color: #8b1b68;
}
#member_info .person_social .dribble {
  background-color: #e62387;
}
#member_info .person_social .dribble:hover {
  background-color: #c0166d;
}
#member_info .person_social .linkedin {
  background-color: #006699;
}
#member_info .person_social .linkedin:hover {
  background-color: #004466;
}
#member_info .person_info {
  height: auto;
  width: 770px;
  float: right;
  background-color: white;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
#member_info .person_info:before {
  right: 100%;
  top: 50%;
  margin-top: -25px;
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  position: absolute;
  border-width: 25px 15px 25px 0;
  border-color: transparent white transparent transparent;
}
#member_info .person_info p {
  font-size: 14px;
  margin-bottom: 0;
}
#member_info .person_info h2 {
  font-size: 28px;
  color: #333361;
}
#member_info .person_info h2 span {
  font-size: 20px;
}
#member_info .person_info .close {
  top: 15px;
  right: 15px;
  position: absolute;
}
#member_info .person_info .close:hover:after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: #333361;
}
#member_info .person_info .close:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#clients {
  width: 100%;
  background-color: #333361;
  padding: 60px 0;
  background-image: url("../images/drop-background2.png");
  background-repeat: no-repeat;
  background-position: -100% 50%;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  text-align: center;
}
#clients.active {
  background-position: 50% 50%;
}
#clients article {
  width: 90%;
  margin: 30px auto 30px;
}
#clients p {
  width: 80%;
  margin: 0 auto;
}

#contact {
  width: 100%;
  padding: 60px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
#contact .container {
  margin-bottom: 60px;
}
#contact h1 {
  display: block;
  color: #7d9e67;
  margin-bottom: 40px;
}
#contact h1, #contact input, #contact textarea {
  position: relative;
}
#contact .main-form {
  margin-bottom: 30px;
}
#contact .main-form div:nth-child(2) {
  margin-left: 19px;
}
#contact .main-form textarea {
  margin-top: 25px;
}
#contact .main-form button {
  float: left;
}
#contact .main-form p {
  color: #7d9e67;
  position: absolute;
  top: 100%;
  left: 0;
}
#contact .main-form .cont1 {
  position: relative;
  display: inline-block;
  width: 49%;
}
#contact .main-form .cont2 {
  position: relative;
  display: block;
}
#contact .human-test {
  display: block;
  text-align: left;
  margin: 0;
  text-align: center;
}
#contact .human-test #test {
  width: auto;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  display: inline-block;
  float: left;
  color: #5F5F5F;
}
#contact .human-test input {
  display: none;
}
#contact .human-test label {
  border: 2px solid #C3C3C3;
  width: 46px;
  height: 46px;
  display: inline-block;
  vertical-align: top;
  margin: 0 13px;
}
#contact .human-test label.active1, #contact .human-test label:hover {
  background-color: #7d9e67;
  border-color: #7d9e67;
}
#contact .human-test label.active1 span, #contact .human-test label:hover span {
  color: #fff;
}
#contact .human-test label span {
  color: #C3C3C3;
  font-weight: bold;
  vertical-align: middle;
  margin-top: 4px;
  display: block;
}
#contact button {
  float: right;
}
#contact .info {
  position: absolute;
  width: 250px;
  z-index: 2;
  left: 50%;
  margin-left: -125px;
  bottom: -243px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#contact .info.active {
  bottom: 30px;
}
#contact .info.active h6 {
  margin-bottom: 0;
}
#contact .info.active h6:after {
  content: "";
  background-image: url("../images/plus2.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
  width: 26px;
  height: 26px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  margin-bottom: 2px;
  margin-left: 8px;
}
#contact .info.active h6:hover:after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  background-image: url("../images/plus3.png");
}
#contact .info.active .drop {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#contact .info .drop {
  background-color: #fff;
  padding: 10px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
  opacity: 0.1;
}
#contact .info h6 {
  color: #343434;
  background-color: #fff;
  display: block;
  cursor: pointer;
  height: 58px;
  line-height: 58px;
  margin-bottom: 30px;
}
#contact .info h6:after {
  content: "";
  background-image: url("../images/plus2.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-left: 8px;
}
#contact .info h6:hover:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url("../images/plus3.png");
}
#contact .info h4 {
  color: #7d9e67;
  margin-bottom: 14px;
  margin-bottom: 10px;
}
#contact .info p {
  color: #5f5f5f;
  font-size: 12px;
}
#contact .map #map-canvas {
  width: 100%;
  height: 360px;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  top: 0;
  left: 0;
}

.awesome-page {
  width: 100%;
  padding: 60px 0;
  background-color: #7d9e67;
  text-align: center;
  background-image: url("../images/drop-background3.png");
  background-position: -100% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.awesome-page.active {
  background-position: 50% 50%;
}

.social {
  padding: 60px 0 30px;
}
.social ul {
  text-align: center;
  width: 100%;
}
.social ul li {
  width: 50px;
  height: 50px;
  border: 2px solid #c3c3c3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 54px;
  text-align: center;
  position: relative;
}
.social ul li a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.social ul li:before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent transparent transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.2) transparent;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  z-index: 1;
}
.social ul li:hover:before {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
}
.social ul li:hover i {
  color: white;
}
.social ul i {
  font-size: 30px;
  color: #c3c3c3;
  position: relative;
  z-index: 10;
}
.social li {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 30px;
}
.social .fb:hover {
  background-color: #3b5999;
  border-color: #3b5999;
}
.social .tw:hover {
  background-color: #ae2c85;
  border-color: #ae2c85;
}
.social .dr:hover {
  background-color: #e62387;
  border-color: #e62387;
}
.social .ln:hover {
  background-color: #006699;
  border-color: #006699;
}
.social .yt:hover {
  background-color: #c91d20;
  border-color: #c91d20;
}
.social .gg:hover {
  background-color: #c20906;
  border-color: #c20906;
}
.social .rs:hover {
  background-color: #f26109;
  border-color: #f26109;
}

#filter .popup-gallery {
  text-align: left;
}
#filter .popup-gallery.active .mix {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

#grid .mix {
  opacity: 0;
  display: none;
}

#filter {
  width: 100%;
  padding: 60px 0;
  height: auto;
  background-color: #f1f1f1;
  text-align: center;
}
#filter .container {
  width: 1200px;
}
#filter h1 {
  color: #7d9e67;
  display: block;
}
#filter .button {
  display: inline-block;
  font-size: 16px;
  padding: 0 15px;
  color: #5f5f5f;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
  padding: 0 15px;
  margin: 0;
  background-color: transparent;
  font-family: "Roboto Slab", serif;
}
#filter .button:hover {
  color: #7d9e67;
}
#filter .button + .button {
  padding-left: 24px;
  background-image: url("../images/projects/slash.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
}
#filter #grid {
  margin-top: 55px;
}
#filter ul {
  font-size: 0;
}
#filter .mix {
  font-size: 16px;
  margin: 0 1.3%;
  width: 30.733333%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  -webkit-transform: scale(0.1, 0.1);
  -moz-transform: scale(0.1, 0.1);
  -ms-transform: scale(0.1, 0.1);
  -o-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#filter .mix:hover .text h5, #filter .mix:hover .text span {
  color: #fff;
}
#filter .mix:hover .text:before {
  content: "";
  top: 0;
  background-color: #18212a;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#filter .mix:hover img {
  filter: none;
  /* Firefox 3.5+ */
  filter: none;
  /* IE6+ */
  
}
#filter .mix:hover span + span {
  background-position: 0 -9px;
}
#filter .text {
  padding: 25px 0;
  text-align: center;
  background-color: transparent;
  color: #fff;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
#filter .text:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100%;
}
#filter .text h5 {
  color: #18202a;
  margin-bottom: 0;
}
#filter .text span {
  color: #5f5f5f;
  font-size: 11px;
  padding: 0 8px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#filter .text span + span {
  padding-left: 14px;
  background-image: url("../images/projects/slash1.png");
  background-position: 0 4px;
  background-repeat: no-repeat;
}
#filter img {
  z-index: 2;
  height: auto;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
  position: relative;
  
  /* Firefox 3.5+ */
  /* IE6+ */
 
}

@media (max-width: 1200px) {
  body {
    min-width: 100%;
  }

  .container {
    width: 100%;
    min-width: 100%;
    padding: 0 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  header nav {
    background-image: none;
  }
  header nav .nav li + li {
    margin-left: 40px;
  }
  header:before, header:after {
    display: none;
  }
  header #wrapper {
    position: relative;
  }
  header #wrapper:before, header #wrapper:after {
    display: none;
  }
  header #wrapper h1 {
    color: #18202a;
  }
  header .text {
    position: absolute;
    left: 0;
    top: 90px;
    right: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  header .text h1 {
    font-size: 70px;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 50px;
  }
  header .text a {
    margin-left: auto;
    margin-right: auto;
  }

  main .container {
    min-width: 100%;
  }

  #about article {
    display: block;
    width: 100%;
    background-color: #fff;
  }
  #about article > div {
    position: relative;
    margin: 0 auto;
  }
  #about article:nth-child(2n+2) {
    background-color: #F1F1F1;
  }
  #about article:nth-child(odd) > div {
    padding-right: 194px;
  }
  #about article:nth-child(odd) > div .link1 {
    right: 0px;
  }
  #about article:nth-child(even) > div {
    padding-left: 194px;
  }
  #about article:nth-child(even) > div .link1 {
    left: 0px;
  }
  #about .first {
    right: 0;
    padding-right: 294px;
  }
  #about .first .link {
    right: 0;
  }
  #about .second {
    left: 0;
    padding-left: 294px;
  }
  #about .second .link {
    left: 0;
  }
  #about .about-content {
    text-align: center;
    width: 80%;
  }
  #about .about-content h1 {
    margin-top: 20px;
  }
  #about .about-content .close {
    right: 50%;
    margin-right: -38px;
  }

  #filter .container {
    width: 100%;
    padding: 0 5%;
  }

  #pricing article {
    float: none;
    display: inline-block;
    width: 46%;
    margin: 0 1.166666% 30px;
    max-width: 300px;
  }
  #pricing article + article {
    margin: 0 1.166666% 30px;
  }

  #team {
    text-align: center;
  }
  #team .img_wrap {
    width: 50%;
    max-width: 370px;
    max-height: 370px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
  }
  #team .person_social {
    display: inline-block;
    width: 400px;
    vertical-align: top;
    font-size: 16px;
  }
  #team .person_social a {
    width: 47%;
    max-width: 170px;
    display: inline-block;
  }
  #team #member_info {
    width: 100%;
  }
  #team #member_info .person_social {
    float: none;
  }
  #team #member_info > div {
    font-size: 0;
  }
  #team #member_info .person_info {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    float: none;
  }
  #team #member_info .person_info:before {
    right: 74%;
    top: -7px;
    margin-left: -25px;
    border-width: 25px 15px 25px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) white rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    content: "";
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Opera, Chrome, and Safari */
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }

  #contact .main-form:before, #contact .main-form:after {
    content: " ";
    display: table;
  }
  #contact .main-form:after {
    clear: both;
  }
  #contact .main-form div:nth-child(2) {
    margin-left: 4%;
  }
  #contact .main-form .cont1, #contact .main-form .cont2, #contact .main-form .cont3 {
    margin-top: 25px;
    float: left;
  }
  #contact .main-form .cont1 {
    width: 48%;
  }
  #contact .main-form .cont2 {
    margin-top: 0;
    width: 100%;
  }
  #contact .main-form .cont1, #contact .main-form .cont2, #contact .main-form .cont3 + .cont1, #contact .main-form .cont2, #contact .main-form .cont3 {
    margin-left: 0;
  }
  #contact .main-form button {
    padding: 0 22px;
  }
  #contact ul {
    text-align: center;
    width: 490px;
    margin: 0 auto;
  }
  #contact ul li {
    margin: 0 14px;
  }
}
@media (max-width: 1000px) {
  header, #wrapper {
    overflow: visible !important;
  }
  header:before, header:after, #wrapper:before, #wrapper:after {
    display: none !important;
  }

  header nav .nav li + li {
    margin-left: 30px;
  }

  #pricing article {
    max-width: auto;
  }

  #contact-form .main-form {
    margin-bottom: 20px;
  }
  #contact-form .human-test {
    margin-bottom: 10px;
  }
  #contact-form .human-test #test {
    margin-bottom: 20px;
  }
  #contact-form .human-test #test, #contact-form .human-test button {
    float: none;
    display: block;
  }
  #contact-form .human-test button {
    margin: 30px auto 0;
  }

  #contact ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 880px) {
  #filter #grid .mix {
    width: 46%;
    margin: 0 2% 20px;
  }

  #team .img_wrap {
    width: 248px;
    height: 248px;
    display: block;
    display: inline-block;
  }
  #team .person_social {
    width: 278px;
  }
  #team .person_social a {
    width: 109px;
    height: 109px;
    display: block;
    line-height: 135px;
  }
  #team #member_info .person_info {
    width: 526px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  header nav {
    overflow: visible;
  }
  header nav.fixed ul {
    display: block;
    background-color: rgba(24, 32, 42, 0.8);
  }
  header nav.fixed span {
    display: block;
    float: right;
    margin-top: 17px;
    background: url('../images/drop-nav1.png') no-repeat 50% 0;
    width: 27px;
    height: 20px;
    padding: 10px;
    cursor: pointer;
  }
  header nav.fixed span.active {
    background-position: 50% -40px;
  }
  header nav .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* hack for ie8 */
    opacity: 1\9;
    visibility: visible\9;
    display: none\9;
  }
  header nav .nav.active {
    visibility: visible;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    /* hacks for ie8 */
    display: block\9;
  }
  header nav .nav li {
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 50px;
    line-height: 48px;
    background-color: transparent;
    border-top: 2px solid #a3a6aa;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
  }
  header nav .nav li:hover {
    background-color: #18202a;
  }
  header nav .nav li a {
    width: 100%;
    height: 100%;
    display: block;
    color: white;
    font-size: 16px;
  }
  header nav .nav li + li {
    margin-left: 0;
  }
  body.active header .text h1 {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  body.active header .text a {
    -webkit-transition: all 1s ease;
    -webkit-transition-delay: 1s;
    -moz-transition: all 1s ease 1s;
    -o-transition: all 1s ease 1s;
    transition: all 1s ease 1s;
  }

  #about article {
    height: auto;
    padding: 60px 0;
  }
  #about article > div {
    text-align: center;
    padding: 0;
    position: inherit;
    top: 0;
    padding: 0!important;
    width: 100%;
  }
  #about article > div .link1 {
    position: relative;
    width: 76px;
    height: 99px;
    display: block;
    clear: both;
    top: 0;
    left: 0;
    margin: 0 auto 45px;
  }
  #about article > div a {
    float: none;
  }
  #about article > div h1 {
    margin-bottom: 35px;
  }
  #about article > div p {
    width: 80%;
    margin: 0 auto 20px;
  }
  #about article:nth-child(odd) > div {
    right: 0;
    padding-right: 0;
  }
  #about article:nth-child(odd) > div .link1 {
    right: 1;
  }
  #about article:nth-child(even) > div {
    left: 0;
    padding-left: 0;
  }
  #about article:nth-child(even) > div .link1 {
    left: 0;
  }

  #belive p {
    width: 100%;
  }

  #team * {
    text-align: center !important;
  }

  #pricing p {
    width: 100%;
  }
  #pricing article {
    width: 100%;
    margin-bottom: 30px;
  }
  #pricing article > div h2 {
    height: 100px;
    line-height: 100px;
  }
  #pricing article li {
    font-size: 14px;
  }
  #pricing article a {
    padding: 0 15px;
    font-size: 18px!important;
  }

  #subscribe p {
    margin-bottom: 0;
  }
  #subscribe form {
    text-align: center;
  }
  #subscribe input {
    text-align: center;
    width: 250px;
    display: block;
    margin: 60px auto 0;
  }
  #subscribe button {
    margin: 30px auto 0;
    display: block;
  }

  #contact #human-test {
    text-align: center;
  }
  #contact ul {
    text-align: center;
  }
}
@media (max-width: 700px) {
  #filter #grid .mix {
    width: 70%;
    margin: 0 15% 20px;
  }
}
@media (max-width: 600px) {
  #team .img_wrap {
    margin-bottom: 30px;
  }
  #team .person_social {
    width: 248px;
    display: block;
    margin: 0 auto 30px;
  }
  #team .person_social a {
    margin-left: 0;
  }
  #team .person_social a:first-child, #team .person_social a:first-child + a + a {
    margin-right: 30px;
  }
  #team #member_info .person_info {
    font-size: 16px;
    width: 248px;
    text-align: center;
  }
  #team #member_info .person_info:before {
    right: 49%;
  }
  #team #member_info .person_info a {
    display: inline-block;
    margin: 0 auto 20px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }
  #team #member_info h2, #team #member_info p {
    text-align: left;
  }

  #contact .main-form div:nth-child(2) {
    margin-left: 0;
  }
  #contact .main-form .cont1 {
    width: 100%;
  }
}
@media (max-width: 580px) {
  header nav .nav li {
    height: 34px;
    line-height: 32px;
  }
  header nav .nav li a {
    font-size: 13px;
  }
  header #wrapper h1 {
    font-size: 50px;
  }

  #contact {
    text-align: center;
  }
  #contact .human-test label {
    margin-bottom: 30px;
  }
  #contact .human-test button {
    margin: 0 auto;
    float: none;
  }
  #contact ul {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  #contact ul li {
    float: none;
    display: inline-block;
    margin: 0 15px 25px;
  }

  #filter #grid .mix {
    min-width: 90%;
    margin: 0 5% 20px;
  }
}
#team {
  /* clearfix */
  /* display none until init */
}
#team .owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#team .owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
#team .owl-carousel img {
  width: 100%;
  overflow: hidden;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 3.8s ease;
  -moz-transition: all 3.8s ease;
  -o-transition: all 3.8s ease;
  transition: all 3.8s ease;
}
#team .owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#team .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#team .owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
#team .owl-carousel .owl-item {
  float: left;
  cursor: pointer;
}
#team .owl-carousel .owl-item .item {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  width: 170px;
  /* make plus animation */
}
#team .owl-carousel .owl-item .item:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3) url('../images/team_ver_hover.png') no-repeat 50% -50%;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
}
#team .owl-carousel .owl-item .item:hover:after {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  /* hacks for ie8 */
  display: block\9;
}
#team .owl-carousel .owl-item .item:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  -webkit-transition: all 3.8s ease;
  -moz-transition: all 3.8s ease;
  -o-transition: all 3.8s ease;
  transition: all 3.8s ease;
}
#team .owl-carousel .owl-item .item:hover span:before, #team .owl-carousel .owl-item .item:hover span:after, #team .owl-carousel .owl-item .item:hover .team-img:before, #team .owl-carousel .owl-item .item:hover .team-img:after {
  -webkit-transition: all 0.1s linear;
  -webkit-transition-delay: 0.2s;
  -moz-transition: all 0.1s linear 0.2s;
  -o-transition: all 0.1s linear 0.2s;
  transition: all 0.1s linear 0.2s;
}
#team .owl-carousel .owl-item .item:hover span:before {
  left: 50%;
}
#team .owl-carousel .owl-item .item:hover span:after {
  right: 50%;
}
#team .owl-carousel .owl-item .item:hover .team-img:before {
  top: 50%;
}
#team .owl-carousel .owl-item .item:hover .team-img:after {
  bottom: 50%;
}
#team .owl-carousel .owl-item .item span:before, #team .owl-carousel .owl-item .item span:after, #team .owl-carousel .owl-item .item .team-img:before, #team .owl-carousel .owl-item .item .team-img:after {
  content: '';
  position: absolute;
  display: block;
  background-color: #fff;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  z-index: 100;
}
#team .owl-carousel .owl-item .item span:before, #team .owl-carousel .owl-item .item span:after {
  width: 21px;
  height: 2px;
  left: 100%;
  top: 50%;
  margin-top: -1px;
}
#team .owl-carousel .owl-item .item span:after {
  left: auto;
  right: 100%;
}
#team .owl-carousel .owl-item .item .team-img {
  width: 170px;
  height: 170px;
  display: block;
}
#team .owl-carousel .owl-item .item .team-img:before, #team .owl-carousel .owl-item .item .team-img:after {
  width: 2px;
  height: 21px;
  top: 100%;
  left: 50%;
  margin-left: -1px;
}
#team .owl-carousel .owl-item .item .team-img:after {
  top: auto;
  bottom: 100%;
}
#team .owl-controls .owl-page,
#team .owl-controls .owl-buttons div {
  cursor: pointer;
}
#team .owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#team .owl-controls .owl-prev, #team .owl-controls .owl-next {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 50px;
  margin-top: -25px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  display: block;
}
#team .owl-controls .owl-prev {
  left: -20%;
  background-image: url("../images/arrow1-left.png");
}
#team .owl-controls .owl-next {
  right: -20%;
  background-image: url("../images/arrow1-right.png");
}

#clients {
  /* clearfix */
  /* display none until init */
}
#clients .owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#clients .owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
#clients .owl-carousel img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0.35;
}
#clients .owl-carousel img:hover {
  opacity: 1;
}
#clients .owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#clients .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#clients .owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
#clients .owl-carousel .owl-item {
  float: left;
}
#clients .owl-controls .owl-page,
#clients .owl-controls .owl-buttons div {
  cursor: pointer;
}
#clients .owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#clients .owl-controls .owl-prev, #clients .owl-controls .owl-next {
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 15px;
  height: 39px;
  display: inline-block;
  opacity: 0.7;
  top: 50%;
  margin-top: -19px;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
}
#clients .owl-controls .owl-prev {
  background-image: url("../images/arrow2-left.png");
  left: -30px;
}
#clients .owl-controls .owl-prev:hover {
  opacity: 1;
}
#clients .owl-controls .owl-next {
  background-image: url("../images/arrow2-right.png");
  right: -30px;
}
#clients .owl-controls .owl-next:hover {
  opacity: 1;
}

.akordeon {
  width: 250px;
  color: #343434;
  font-family: Arial;
  font-size: 12px;
  behavior: url(PIE.htc);
  position: absolute;
  z-index: 2;
  background-color: #fff;
  left: 50%;
  margin-left: -125px;
  bottom: 30px;
}

.akordeon-item {
  position: relative;
}

.akordeon-item .akordeon-item-head {
  background: #fff;
  /* Old browsers */
  height: 60px;
  line-height: 60px;
}

.akordeon-item .akordeon-item-body {
  background: #fff;
  /* Old browsers */
  border-bottom: none;
  overflow: hidden;
}

.akordeon-icon {
  width: 34px;
  height: 30px;
  background: #fff;
  /* Old browsers */
  padding: 0;
  margin: 0;
  float: left;
  cursor: pointer;
  behavior: url(PIE.htc);
}

.akordeon-heading {
  font-weight: bold;
}
.akordeon-heading i {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-image: url("../images/plus2.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-left: 8px;
}
.akordeon-heading:hover i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  background-image: url("../images/plus3.png");
}

.akordeon-icon span {
  color: #83a626;
  font-size: 36px;
  position: absolute;
  left: 6px;
  top: -6px;
  font-weight: bold;
  text-align: center;
}

.akordeon-item.expanded .akordeon-icon span {
  top: -9px;
}

.akordeon-item-head-container {
  width: 100%;
  position: absolute;
  cursor: pointer;
  text-align: center;
}

.akordeon-item.expanded .akordeon-heading {
  color: #343434;
}
.akordeon-item.expanded .akordeon-heading i {
  background-image: url("../images/plus2.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.akordeon-item.expanded .akordeon-heading:hover i {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  background-image: url("../images/plus3.png");
}

.akordeon-item.expanded .akordeon-item-head {
  background: #fff !important;
  /* Old browsers */
  text-align: center;
}

.akordeon-item-content {
  padding: 10px 10px 0;
  min-height: 120px;
  overflow: auto;
}
.akordeon-item-content h4 {
  color: #7d9e67;
  margin-bottom: 14px;
}
.akordeon-item-content p {
  font-size: 12px;
}

.akordeon-border-bottom {
  border-bottom: solid 1px black;
}

.akordeon-border-top {
  border-top: solid 1px black;
}

.akordeon-item.expanded .akordeon-item-body.akordeon-border-bottom {
  border-bottom: solid 1px black !important;
}

.akordeon-item.akordeon-item-first .akordeon-item-head {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  behavior: url(PIE.htc);
}

.akordeon-item.akordeon-item-last.collapsed .akordeon-item-head {
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom: none;
  behavior: url(PIE.htc);
}

.akordeon-item.akordeon-item-last.expanded .akordeon-item-head {
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  behavior: url(PIE.htc);
}

.akordeon-item.akordeon-item-last.expanded .akordeon-item-body {
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  behavior: url(PIE.htc);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 44px;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: none;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* --------------------------------------------------------------------------------------
+
+ JUSTIFIZE
+
-------------------------------------------------------------------------------------- */
/*
    http://www.css-101.org/articles/responsive-boxes/magic-boxes.php

    <div class="justifize">
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
    </div>
*/
.justifize {
  font-size: 1px;
  /* IE 9, 10, 11 FIX */
  text-align: justify;
}
.justifize:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.justifize__box {
  font-size: 16px;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.justifize--top
.justifize__box {
  vertical-align: top;
}
.justifize--bottom
.justifize__box {
  vertical-align: bottom;
}
