@charset "UTF-8";

::selection {
  color: white;
  background: black
}

::-moz-selection {
  color: white;
  background: black
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-backface-visibility: hidden
}

:focus {
  outline: none !important;
  text-decoration: none !important
}

::-moz-focus-inner {
  border: 0 !important;
  text-decoration: none !important
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #666
}

#loader .bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 30px;
  width: 0;
  background: #111;
  -webkit-transition: height 0.7s;
  -moz-transition: height 0.7s;
  -o-transition: height 0.7s;
  transition: height 0.7s
}

#loader.remove .bar {
  height: 0
}

.container-fluid {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s
}

.container-fluid.inloading {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0
}

.container-fluid.hide {
  display: none
}

html,body {
  font-size: 16px;
  font-family: "Josefin Sans", Arial, sans-serif;
  position: relative;
  height: 100%;
  min-height: 100%;
  width: 100%;
  background: #666
}

@media screen and (max-width: 620px) {
  html,body {
    font-size: 12px
  }
}

@media screen and (min-width: 1300px) {
  html,body {
    font-size: 17px
  }
}

p {
  color: #777;
  color: rgba(0,0,0,0.5);
  font-family: 'Lora';
  padding-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.6em
}

h1 {
  margin: 1.5em 0 .5em
}

@media screen and (max-width: 992px) {
  h1 {
    margin-top: 15px;
    text-align: center
  }
}

h2 {
  font-family: 'Lora';
  font-size: 1.5em
}

h3 {
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: bold;
  letter-spacing: .2em;
  text-transform: uppercase
}

h4 {
  font-size: .9em;
  font-weight: bold;
  letter-spacing: .2em;
  text-transform: uppercase
}

nav {
  height: 50px;
  padding: 0 15px;
  background: #333;
  color: #ccc;
  text-align: right;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s
}

nav.animated {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5
}

nav #logo {
  float: left;
  line-height: 50px;
  font-size: 1.3em;
  padding-top: 1px;
  text-transform: uppercase;
  letter-spacing: .4em;
  width: 100px;
  z-index: 9;
  text-align: left;
  color: #ccc;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  padding-left: 15px
}

@media screen and (min-width: 1300px) {
  nav #logo {
    line-height: 52px
  }
}

@media screen and (max-width: 992px) {
  nav #logo {
    padding-left: 0
  }
}

nav #logo img {
  height: 30px;
  margin-top: -3px
}

nav #logo:hover {
  text-decoration: none;
  color: #fff
}

nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 15px 0
}

nav ul li {
  display: inline-block;
  position: relative
}

nav ul li a {
  color: #bbb !important;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  font-size: .8em;
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  letter-spacing: 2px;
  overflow: hidden;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s
}

@media screen and (min-width: 1300px) {
  nav ul li a {
    line-height: 52px;
    height: 50px;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s
  }
}

nav ul li a:after {
  content: ' ';
  height: 10px;
  width: 10px;
  background: #999;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -4px
}

@media screen and (min-width: 1300px) {
  nav ul li a:after {
    line-height: 52px
  }
}

nav ul li:hover a,nav ul li:active a {
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s
}

nav ul li:hover a:after,nav ul li:active a:after {
  bottom: -8px
}

nav ul li:hover ul.dropdown,nav ul li:active ul.dropdown {
  max-height: 400px;
  z-index: 99;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s
}

nav ul li ul.dropdown {
  position: absolute;
  overflow: hidden;
  z-index: -1;
  margin: 0;
  right: 0;
  margin-top: -3px;
  padding: 0;
  width: 200px;
  text-align: left;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s
}

@media screen and (max-width: 992px) {
  nav ul li ul.dropdown {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    max-height: 1000px;
    z-index: 9
  }
}

nav ul li ul.dropdown li {
  display: block;
  padding: 0;
  margin: 0
}

nav ul li ul.dropdown li a {
  line-height: 1.2em;
  height: auto;
  padding: 10px;
  margin: 0;
  display: block;
  width: 100%;
  background: #222;
  color: #999 !important
}

nav ul li ul.dropdown li a:hover {
  background: #444;
  color: #fff !important
}

nav ul li ul.dropdown li a:after {
  display: none
}

nav:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1
}

@media screen and (min-width: 992px) {
  nav:hover {
    height: 100px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
  }

  nav:hover #logo {
    line-height: 100px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
  }

  nav:hover ul li a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 100px;
    height: 100px
  }

  nav:hover ul.dropdown {
    margin-top: -5px
  }
}

@media screen and (min-width: 992px) and (min-width: 1300px) {
  nav:hover ul.dropdown {
    margin-top: -6px
  }
}

@media screen and (max-width: 992px) {
  nav {
    padding: 0;
    cursor: pointer;
    position: absolute
  }

  nav ul {
    padding: 0;
    max-height: 0;
    margin: 0;
    height: auto;
    float: right;
    overflow: hidden;
    background: #fff;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: 0 3px 13px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 3px 13px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 3px 13px rgba(0,0,0,0.2);
    box-shadow: 0 3px 13px rgba(0,0,0,0.2)
  }

  nav ul li {
    display: block;
    width: 100%;
    overflow: auto
  }

  nav ul li a {
    width: 100%;
    color: #999 !important;
    line-height: 40px;
    height: 40px
  }

  nav ul li a:hover,nav ul li a:active {
    color: #222 !important;
    background: #efefef
  }

  nav ul li ul.dropdown {
    position: relative;
    left: 0;
    right: auto;
    background: #333 !important;
    text-align: left;
    width: 100%;
    max-height: 1000px !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1
  }

  nav ul li ul.dropdown li {
    text-align: center
  }

  nav ul li ul.dropdown li a {
    background: #222 !important;
    color: #999 !important
  }

  nav ul li ul.dropdown li a:hover {
    background: #444;
    color: #fff !important
  }

  nav:after {
    content: 'MENU';
    font-weight: bold;
    letter-spacing: 3px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1px 15px 0;
    line-height: 50px
  }

  nav.hover:after {
    content: "CLOSE"
  }

  nav.hover ul {
    padding: 10px 0;
    max-height: 1000px
  }
}

.jumbotron {
  height: 100%;
  position: relative;
  margin-bottom: 0;
  padding: 50px 0 0;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: inset 0 0 200px black;
  -moz-box-shadow: inset 0 0 200px black;
  -ms-box-shadow: inset 0 0 200px black;
  box-shadow: inset 0 0 200px black
}

@media screen and (max-width: 992px) {
  .jumbotron {
    padding: 120px 50px
  }
}

.jumbotron.page-header {
  margin-top: 0;
  padding: 150px 50px 100px;
  position: relative
}

.jumbotron.page-header .date {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  padding-top: 60px;
  padding-left: 25px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0)), color-stop(1, rgba(0,0,0,0.5)));
  background-image: -o-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  color: #fff;
  -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
}

.jumbotron .btn {
  margin: 20px 0
}

.jumbotron h1 {
  margin-top: 0
}

.jumbotron.dark {
  background: #333
}

.jumbotron.dark .bg {
  background: #333
}

.jumbotron.dark * {
  color: #fff
}

.jumbotron #jumbo-image {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -27.5%;
  width: 55%
}

@media screen and (max-width: 992px) {
  .jumbotron #jumbo-image {
    width: 100%;
    margin-left: -50%
  }
}

#blog {
  padding: 30px 0
}

#blog a.item {
  color: #222;
  position: relative;
  overflow: hidden
}

#blog a.item h4 {
  margin-top: 25px
}

#blog a.item:hover {
  text-decoration: none
}

#blog a.item .image {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px
}

#blog a.item .image .date {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  padding-top: 60px;
  padding-left: 25px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0)), color-stop(1, rgba(0,0,0,0.5)));
  background-image: -o-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  color: #fff;
  -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
}

#blog a.item .image img {
  width: 100%;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px
}

#blog a.item:after {
  content: 'Read on';
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  width: 50%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: auto;
  background: #fff;
  -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;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s
}

#blog a.item:hover:after {
  top: 0
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #fff
}

.bg.faded img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=10);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3
}

.bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 150%;
  max-height: 150%;
  min-height: 100%;
  min-width: 100%;
  margin: auto;
  width: auto
}

@media screen and (max-width: 1300px) {
  .bg img {
    min-width: 1300px
  }
}

@media screen and (max-width: 992px) {
  .bg img {
    min-width: 992px
  }
}

.container-fluid {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0
}

.container-fluid .row {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px
}

@media screen and (min-width: 1300px) {
  .container-fluid .row {
    max-width: 1300px
  }
}

section {
  min-height: 100%;
  width: 100%;
  position: relative;
  padding: 0;
  background: #fff
}

section.content {
  width: 100%
}

section.content,section .content {
  padding: 100px 0
}

section.content img,section .content img {
  max-width: 100%
}

@media screen and (max-width: 992px) {
  section {
    padding-top: 0
  }

  section.content,section .content {
    padding: 30px 0
  }
}

.title-block {
  padding-top: 0;
  padding-bottom: 20px
}

.title-block h1 {
  margin-top: 0;
  font-size: 3em;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: inline-block
}

@media screen and (max-width: 992px) {
  .title-block {
    padding: 25px 0;
    text-align: center
  }

  .title-block h1 {
    padding-bottom: 10px
  }
}

.centered {
  display: table;
  width: 100%
}

.centered .vcenter {
  display: table-cell;
  vertical-align: middle
}

.services .service {
  padding: 10px 15px 25px;
  text-align: center !important
}

.services .service p {
  margin-bottom: 0
}


footer {
  background: #333;
  padding: 100px 0
}

footer blockquote {
  padding: 0 20px
}

footer blockquote:after {
  color: #555
}

footer blockquote:before {
  color: #555
}

footer .col-md-3 {
  padding: 0 30px
}

footer .address {
  list-style: none;
  font-size: 1.4em;
  padding: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5
}

footer h4 {
  margin-bottom: 30px
}

footer * {
  color: #fff
}

footer p {
  font-family: "Josefin Sans", Arial, sans-serif;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3
}

footer img {
  max-width: 100%;
  margin: 20px
}

footer .pics {
  display: inline-block
}

footer .pics img {
  width: 33.33%;
  margin: 0;
  display: block;
  float: left;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s
}

footer .pics img:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5
}

@media screen and (max-width: 992px) {
  footer {
    padding: 30px 0
  }

  footer h4 {
    margin: 20px 0 10px
  }
}

#copy {
  background: #222;
  line-height: 80px;
  color: #666;
  font-size: .8em;
  letter-spacing: 2px;
  text-transform: uppercase
}

#copy .btn {
  margin-top: 0;
  border-color: #666;
  color: #999
}

#copy .social-buttons {
  text-align: right
}

@media screen and (max-width: 992px) {
  #copy {
    text-align: center;
    padding: 20px 0;
    line-height: 30px
  }

  #copy .social-buttons {
    text-align: center
  }
}

#portfolio img {
  max-width: 100%
}

#portfolio .overview,#portfolio .single {
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: none
}

#portfolio .overview img,#portfolio .single img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px
}

#portfolio .overview {
  display: block
}

#portfolio .single h1 {
  margin-top: 0
}

#portfolio .single img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s
}

#portfolio .single img.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1
}

#portfolio .single .bg {
  position: fixed;
  z-index: -1
}

#portfolio .single .bg img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s
}

#portfolio .single .bg img.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=15);
  -moz-opacity: 0.15;
  -khtml-opacity: 0.15;
  opacity: 0.15
}

#portfolio .x {
  background: #333;
  height: 40px;
  width: 40px;
  position: absolute;
  z-index: 99;
  top: -20px;
  right: -40px;
  cursor: pointer;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  border-radius: 60px
}

#portfolio .x.active {
  right: 0
}

#portfolio .x .bar {
  width: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  position: absolute;
  top: 19px;
  left: 5px;
  height: 2px;
  background: #ccc;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg)
}

#portfolio .x .bar:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

#portfolio .x:hover {
  background: #333
}

#portfolio .x:hover .bar {
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

#portfolio .x:hover .bar:last-child {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg)
}

#portfolio .item {
  margin-bottom: 30px
}

#portfolio .item .inner {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.1)
}

#portfolio .item .inner img {
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px
}

#portfolio .item .inner .caption {
  padding: 25px 20px 20px;
  text-align: center
}

#portfolio .item .inner .caption h4 {
  color: #222;
  margin-top: 0
}

#portfolio .item .inner .caption p {
  color: #999;
  margin-bottom: 0;
  padding-bottom: 0
}

@media screen and (max-width: 992px) {
  #portfolio .item .inner {
    margin: 0 15px
  }
}

#portfolio .item:hover {
  text-decoration: none
}

#portfolio .item:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transform: scale(0.9, 0.9);
  -moz-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9)
}

#portfolio .item:hover .inner {
  border: 1px solid rgba(0,0,0,0.2)
}

.member {
  text-align: center
}

@media screen and (max-width: 992px) {
  .member {
    margin-bottom: 30px
  }
}

.avatar {
  position: relative
}

.avatar img {
  width: 85%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 400px;
  -moz-border-radius: 400px;
  -ms-border-radius: 400px;
  border-radius: 400px
}

.avatar .caption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center
}

.avatar .caption a {
  display: block;
  float: none;
  clear: both;
  margin: 10px auto;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  color: #222;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.5, 0.5);
  -moz-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.3)
}

.avatar .caption a:hover {
  text-decoration: none;
  background: rgba(0,0,0,0.2);
  color: #222;
  border-color: #222
}

@media screen and (max-width: 992px) {
  .avatar .caption {
    padding: 20px 0
  }
}

.avatar:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5
}

.avatar:hover .caption {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1
}

.avatar:hover .caption a {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1)
}

.pricing-table {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px
}

.pricing-table.featured {
  border: 1px solid #ccc
}

.pricing-table.featured ul {
  border-width: 2px;
  border-color: #444
}

.pricing-table.featured ul li:last-child {
  -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;
  background: #333
}

.pricing-table .featured {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  width: 150px;
  top: 25px;
  right: -15px;
  left: -35px;
  text-align: center;
  padding: 5px 20px;
  background: #444;
  color: #fff
}

.pricing-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%
}

.pricing-table ul li {
  padding: 15px 10px;
  margin: 0
}

.pricing-table ul li h2 span {
  font-size: 14px;
  color: #999
}

.pricing-table ul li:first-child {
  padding: 10px 15px
}

.pricing-table ul li:nth-child(even) {
  background: #f9f9f9
}

.pricing-table ul li:last-child {
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px
}

.pricing-table .btn:hover {
  background: #333;
  color: #fff !important
}

.pricing-table .btn:hover .fa {
  color: #fff
}

.pricing-table.featured .btn {
  color: #999;
  border-color: #999
}

.pricing-table.featured .btn .fa {
  color: #999
}

.pricing-table.featured .btn:hover {
  color: #fff;
  border-color: #fff
}

.pricing-table.featured .btn:hover .fa {
  color: #fff
}

@media screen and (max-width: 992px) {
  .pricing-table {
    margin-bottom: 15px
  }
}

#form .form-group .message {
  height: 0;
  line-height: 30px;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 99;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s
}

#form .form-group .message:after {
  content: ' ';
  height: 5px;
  width: 8px;
  background: #ccc;
  position: absolute;
  bottom: -3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 50%;
  margin-left: -4px
}

#form .form-group .message.active {
  height: 30px;
  overflow: hidden
}

#form .form-group .placeholder {
  color: rgba(255,255,255,0.5)
}

#form .form-group ::-webkit-input-placeholder {
  color: rgba(255,255,255,0.5)
}

#form .form-group ::-moz-placeholder {
  color: rgba(255,255,255,0.5)
}

#form .form-group :-ms-input-placeholder {
  color: rgba(255,255,255,0.5)
}

#form .form-group input:-moz-placeholder {
  color: rgba(255,255,255,0.5)
}

#form .form-group input,#form .form-group textarea {
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.3);
  border: 0;
  -webkit-appearance: none;
  color: #fff;
  -webkit-transition: background 0.6s;
  -moz-transition: background 0.6s;
  -o-transition: background 0.6s;
  transition: background 0.6s
}

#form .form-group input:focus,#form .form-group textarea:focus {
  background: rgba(0,0,0,0.6)
}

#form .form-group input[type="submit"] {
  border: 1px solid #222;
  background: #222;
  color: #bbb;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s
}

#form .form-group input[type="submit"]:hover {
  color: #fff;
  background: #333
}

.social-icons {
  margin-bottom: 30px
}

.grey {
  background: #efefef
}

.bgcolor {
  background: #cde7eb
}

blockquote {
  position: relative;
  margin: 30px 0;
  padding: 0 50px;
  text-align: center;
  font-family: 'Lora';
  font-style: italic;
  display: inline-block;
  border: 0
}

blockquote:before {
  content: '“';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
  color: #bbb;
  font-size: 3em;
  font-weight: 300
}

blockquote:after {
  content: '”';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25px;
  color: #bbb;
  font-size: 3em;
  font-weight: 300
}

@media screen and (max-width: 992px) {
  blockquote {
    padding: 0 20px;
    font-size: 1.1em
  }

  blockquote:before,blockquote:after {
    font-size: 1.5em
  }
}

.btn {
  padding: 3px 20px 0;
  display: inline-block;
  border: 2px solid rgba(0,0,0,0.2);
  color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s
}

.btn.fa {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  margin-right: 5px
}

.btn .fa {
  margin-right: 5px;
  line-height: 30px
}

.btn:hover {
  color: #ccc;
  background: #222;
  border-color: #222
}

.animated {
  -webkit-animation-duration: .8s;
  animation-duration: .8s
}