/*------------------------------------------------------------
[Table of contents]

 1. Google fonts import
 2. Common
 3. Header
 4. Main
 5. Nav
 6. Section-features
 7. Section-works
 8. Section-services
 9. Section-about
10. Section-team
11. Section-call
12. Section-prices
13. Section-blog
14. Section-contacts
15. Footer
16. Animations
17. Responsive
------------------------------------------------------------*/
/*------------------------------------------------------------
1. Google fonts import
*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);
/*------------------------------------------------------------
2. Common
*/
body {
  background: #434a54;
  font-family: "Roboto";
}
h1 {
  font: 400 30px/40px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
h2 {
  font: 400 28px/38px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
h3 {
  font: 400 24px/34px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
h4 {
  font: 400 20px/30px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
h5 {
  font: 400 18px/28px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
h6 {
  font: 400 16px/26px "Roboto Condensed", Arial, sans-serif;
  color: #303030;
}
p {
  font: 400 14px/24px "Roboto", Arial, sans-serif;
  color: #585858;
}
.small-text {
  font: 400 12px/22px "Roboto", Arial, sans-serif;
  color: #bbbbbb;
}
a {
  color: #48cfae;
  border-bottom: 1px solid rgba(72, 207, 174, 0.3);
  -webkit-transition: border-color 100ms ease-out, color 100ms ease-out;
  -moz-transition: border-color 100ms ease-out, color 100ms ease-out;
  -ms-transition: border-color 100ms ease-out, color 100ms ease-out;
  -o-transition: border-color 100ms ease-out, color 100ms ease-out;
  transition: border-color 100ms ease-out, color 100ms ease-out;
  line-height: 24px;
}
a:hover,
a:focus {
  border-color: transparent;
  color: rgba(72, 207, 174, 0.8);
  text-decoration: none;
  outline: none;
}
.spacer {
  padding: 0 50px;
}
.title {
  text-align: center;
}
.title:after {
  content: "";
  display: block;
  width: 62px;
  height: 5px;
  background-image: url(../img/title-wave.png);
  background-position: 0 0;
  margin: auto;
}
.title.white:after {
  background-position: 0 5px;
}
.title span {
  font: 400 12px "Roboto Condensed", Arial, sans-serif;
  color: #bbbbbb;
}
.title.white span {
  color: rgba(255, 255, 255, 0.6);
}
.title h1 {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 30px;
}
.title.white h1 {
  color: #ffffff;
}
.title p {
  font: 400 16px/26px "Roboto Condensed", Arial, sans-serif;
  color: #898989;
  margin: 10px 0 18px;
}
.title.white p {
  color: rgba(255, 255, 255, 0.7);
}
.top-splash-stroke,
.bottom-splash-stroke,
.top-wavy-stroke,
.bottom-wavy-stroke {
  position: relative;
}
.top-splash-stroke:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(../img/splash.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.bottom-splash-stroke:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(../img/splash.png);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.top-wavy-stroke:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 17px;
  background-image: url(../img/wave.png);
}
.bottom-wavy-stroke:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 17px;
  background-image: url(../img/wave.png);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.btn {
  font-weight: bold;
  font-family: "Roboto Condensed", Arial, sans-serif;
  text-transform: uppercase;
  background: #48cfae;
  color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px 38px;
  -webkit-transition: background 150ms ease-out;
  -moz-transition: background 150ms ease-out;
  -ms-transition: background 150ms ease-out;
  -o-transition: background 150ms ease-out;
  transition: background 150ms ease-out;
}
.btn:hover {
  background: #434a54;
  color: #ffffff;
}
.btn.stroke-btn {
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.8);
  -webkit-transition: color 100ms ease-out, border-color 100ms ease-out;
  -moz-transition: color 100ms ease-out, border-color 100ms ease-out;
  -ms-transition: color 100ms ease-out, border-color 100ms ease-out;
  -o-transition: color 100ms ease-out, border-color 100ms ease-out;
  transition: color 100ms ease-out, border-color 100ms ease-out;
  background: transparent;
}
.btn.stroke-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.btn:active,
.btn:focus {
  box-shadow: none;
  outline: none;
  color: #ffffff;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  position: fixed;
  background: #434a54;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}
/*------------------------------------------------------------
3. Header
*/
header {
  position: relative;
  height: 400px;
  background-image: url(../img/header.png);
  background-repeat: no-repeat;
  background-size: cover;
}
header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #676b73;
  opacity: 0.5;
}
header .header-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom, 0%, #202935 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #202935 99%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #202935 99%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #202935 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6202935', GradientType=0);
}
header .header-slider {
  position: absolute;
  z-index: 1;
}
header .header-slider .slide {
  text-align: center;
  padding: 160px 0 140px;
}
header .header-slider .slide img {
  margin: auto;
  width: auto;
}
header .header-slider .slide h1 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
header .header-slider .slide p {
  font: 300 18px/28px "Roboto Condensed", Arial, sans-serif;
  color: #ffffff;
  margin-top: 3px;
}
header .header-slider .owl-pagination {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
header .header-slider .owl-pagination .owl-page {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: background 100ms ease-out;
  -moz-transition: background 100ms ease-out;
  -ms-transition: background 100ms ease-out;
  -o-transition: background 100ms ease-out;
  transition: background 100ms ease-out;
}
header .header-slider .owl-pagination .owl-page:hover {
  background: rgba(255, 255, 255, 0.5);
}
header .header-slider .owl-pagination .owl-page.active {
  background: #ffffff;
}
/*------------------------------------------------------------
4. Main
*/
.main-wrap {
  padding: 0 50px;
}
main {
  position: relative;
  display: block;
  max-width: 1920px;
  background: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  overflow: hidden;
  margin-bottom: 50px;
}
/*------------------------------------------------------------
5. Nav
*/
nav {
  background: #f5f6f7;
  padding: 0 25px;
  overflow: hidden;
  min-height: 60px;
}
nav.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  margin: auto;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  -webkit-animation: slideDown 250ms ease-out normal;
  -moz-animation: slideDown 250ms ease-out normal;
  -ms-animation: slideDown 250ms ease-out normal;
  -o-animation: slideDown 250ms ease-out normal;
  animation: slideDown 250ms ease-out normal;
}
nav .navbar-items {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .navbar-items a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: rgba(65, 65, 65, 0.6);
  border-bottom: 0;
  padding: 20px 0;
  -webkit-transition: color 100ms ease-out;
  -moz-transition: color 100ms ease-out;
  -ms-transition: color 100ms ease-out;
  -o-transition: color 100ms ease-out;
  transition: color 100ms ease-out;
}
nav .navbar-items a:before {
  content: "";
  position: absolute;
  top: 1px;
  width: 100%;
  height: 2px;
  background: transparent;
}
nav .navbar-items a.current {
  font-weight: 700;
  color: #414141;
}
nav .navbar-items a.current:before {
  background: #414141;
}
nav .navbar-items a:hover {
  background: transparent;
  color: #414141;
}
nav .navbar-toggle {
  display: none;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 14px;
  margin: 0 auto;
  float: none;
}
nav .navbar-toggle:before {
  content: "\f0c9";
  font-family: "FontAwesome";
  font-size: 21px;
  color: #414141;
}
/*------------------------------------------------------------
6. Section-features
*/
#section-features {
  padding: 85px 0 45px;
}
#section-features .title {
  text-align: left;
  margin-bottom: 30px;
}
#section-features .title h1 {
  font-weight: 300;
  font-size: 28px;
}
#section-features .title:after {
  display: none;
}
#section-features .intro {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(88, 88, 88, 0.1);
}
#section-features .features-items {
  margin-top: 40px;
}
#section-features .features-items .content-block {
  margin-bottom: 50px;
  position: relative;
}
#section-features .features-items .content-block i {
  float: left;
  font-size: 26px;
  color: #48cfae;
  margin-right: 20px;
}
#section-features .features-items .content-block h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #414141;
}
#section-features .features-items .content-block p {
  margin-top: 12px;
  -webkit-transition: opacity 150ms ease-out;
  -moz-transition: opacity 150ms ease-out;
  -ms-transition: opacity 150ms ease-out;
  -o-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
}
#section-features .features-items .content-block span {
  position: absolute;
  top: 38px;
  left: 0;
  display: block;
  line-height: 24px;
  color: #585858;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  -moz-transition: opacity 200ms ease-out;
  -ms-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
#section-features .features-items .content-block:hover p {
  opacity: 0;
}
#section-features .features-items .content-block:hover span {
  opacity: 1;
}
#section-features .features-items .content-block:hover i {
  -webkit-animation: pulse 400ms ease-out forwards;
  -moz-animation: pulse 400ms ease-out forwards;
  -ms-animation: pulse 400ms ease-out forwards;
  -o-animation: pulse 400ms ease-out forwards;
  animation: pulse 400ms ease-out forwards;
}
/*------------------------------------------------------------
7. Section-works
*/
#section-works {
  background: #48cfae;
  padding: 90px 0 32px;
}
#section-works .filter {
  display: block;
  margin: auto;
  width: 100%;
  padding: 0 25px;
  margin-top: 50px;
  -webkit-transition: top 250ms ease-out, visibility 0ms ease-out 50ms;
  -moz-transition: top 250ms ease-out, visibility 0ms ease-out 50ms;
  -ms-transition: top 250ms ease-out, visibility 0ms ease-out 50ms;
  -o-transition: top 250ms ease-out, visibility 0ms ease-out 50ms;
  transition: top 250ms ease-out, visibility 0ms ease-out 50ms;
}
#section-works .filter ul {
  font-family: "Roboto Condensed", Arial, sans-serif;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#section-works .filter li {
  display: inline-block;
  position: relative;
  -webkit-transition: color 100ms ease-out;
  -moz-transition: color 100ms ease-out;
  -ms-transition: color 100ms ease-out;
  -o-transition: color 100ms ease-out;
  transition: color 100ms ease-out;
  color: #ffffff;
  padding: 6px 18px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
#section-works .filter li.current {
  background: #ffffff;
  font-weight: bold;
  color: #48cfae;
}
#section-works .filter li:hover {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
#section-works .filter li.current:hover {
  color: #48cfae; 
}
#section-works .grid {
  margin-top: 50px;
}
#section-works .grid .item {
  display: block;
  width: 15.41%;
  max-height: 180px;
  margin-bottom: 1.5%;
  position: relative;
  text-align: left;
  overflow: hidden;
  border: none;
  -webkit-transition: opacity 200ms ease-out, transform 150ms ease-out;
  -moz-transition: opacity 200ms ease-out, transform 150ms ease-out;
  -ms-transition: opacity 200ms ease-out, transform 150ms ease-out;
  -o-transition: opacity 200ms ease-out, transform 150ms ease-out;
  transition: opacity 200ms ease-out, transform 150ms ease-out;
}
#section-works .grid .item-size {
  width: 15.41%;
}
#section-works .grid .gutter-size {
  width: 1.5%;
}
#section-works .grid .item.width-2 {
  width: 32.32%;
}
#section-works .grid .item.height-2 {
  max-height: 376px;
}
#section-works .grid .item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0;
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-transition: opacity 300ms ease-out;
  -moz-transition: opacity 300ms ease-out;
  -ms-transition: opacity 300ms ease-out;
  -o-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}
#section-works .grid .item img {
  display: block;
  width: 100%;
  height: auto;
}
#section-works .grid .item .details {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 20px 20px 4px;
}
#section-works .grid .item .details h6,
#section-works .grid .item .details p {
  position: relative;
  display: block;
  opacity: 0;
  top: 100px;
  -webkit-transition: top 250ms ease-out, opacity 250ms ease-out;
  -moz-transition: top 250ms ease-out, opacity 250ms ease-out;
  -ms-transition: top 250ms ease-out, opacity 250ms ease-out;
  -o-transition: top 250ms ease-out, opacity 250ms ease-out;
  transition: top 250ms ease-out, opacity 250ms ease-out;
}
#section-works .grid .item .details h6 {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
}
#section-works .grid .item .details p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 23px;
}
#section-works .grid .item:hover:before {
  opacity: 1;
}
#section-works .grid .item:hover .details h6,
#section-works .grid .item:hover .details p {
  top: 0;
  opacity: 1;
}
#section-works .grid .item:hover .details h6 {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  transition-delay: 150ms;
}
#section-works .grid .item:hover .details p {
  -webkit-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  transition-delay: 250ms;
}
#section-works .grid .item.disabled {
  cursor: default;
  opacity: 0.4;
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  -o-transform: scale(0.93);
}
#section-works .grid .item.disabled .details,
#section-works .grid .item.disabled:before {
  visibility: hidden;
}
/*------------------------------------------------------------
8. Section-services
*/
#section-services {
  background-image: url(../img/services.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 95px 0 30px;
}
#section-services .title {
  margin-bottom: 50px;
}
#section-services .content-block {
  margin-bottom: 65px;
  text-align: center;
}
#section-services .content-block i {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #48cfae;
  font-size: 20px;
  line-height: 52px;
  color: #ffffff;
  margin: auto;
  -webkit-transition: color 200ms ease-out, transform 200ms ease-out;
  -moz-transition: color 200ms ease-out, transform 200ms ease-out;
  -ms-transition: color 200ms ease-out, transform 200ms ease-out;
  -o-transition: color 200ms ease-out, transform 200ms ease-out;
  transition: color 200ms ease-out, transform 200ms ease-out;
}
#section-services .content-block i:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #48cfae;
}
#section-services .content-block h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #414141;
  margin-top: 15px;
  margin-bottom: 5px;
}
#section-services .content-block:hover i {
  -webkit-animation: bounce 800ms ease-out both;
  -moz-animation: bounce 800ms ease-out both;
  -ms-animation: bounce 800ms ease-out both;
  -o-animation: bounce 800ms ease-out both;
  animation: bounce 800ms ease-out both;
}
/*------------------------------------------------------------
9. Section-about
*/
#section-about {
  background-image: url(../img/about.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 50%;
  padding: 63px 0 70px;
}
#section-about .title {
  margin-bottom: 40px;
}
#section-about .content-block {
  margin-bottom: 50px;
}
#section-about .content-block .skill-bar {
  position: relative;
}
#section-about .content-block .skill-bar i {
  float: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 7px;
  margin-right: 10px;
}
#section-about .content-block:hover i {
  -webkit-animation: flash 1000ms ease-out both;
  -moz-animation: flash 1000ms ease-out both;
  -ms-animation: flash 1000ms ease-out both;
  -o-animation: flash 1000ms ease-out both;
  animation: flash 1000ms ease-out both;
}
#section-about .content-block .skill-bar h6 {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
}
#section-about .content-block .skill-bar .value {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 10px;
  padding: 3px 5px;
  -webkit-border-radius: 2px 2px 0 2px;
  -moz-border-radius: 2px 2px 0 2px;
  border-radius: 2px 2px 0 2px;
}
#section-about .content-block .skill-bar .value.value-91 {
  left: 91%;
}
#section-about .content-block .skill-bar .value:after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.25);
}
#section-about .content-block .skill-bar .base {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
#section-about .content-block .skill-bar .base .bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
#section-about .content-block p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}
#section-about .bottom-triangle {
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ffffff;
}
/*------------------------------------------------------------
10. Section-team
*/
#section-team {
  padding-top: 60px;
}
#section-team .intro {
  margin-bottom: 50px;
}
#section-team .intro h1 {
  text-transform: uppercase;
  font-weight: bold;
}
#section-team .counters {
  text-align: center;
}
#section-team .counters .counter-block {
  margin-bottom: 50px;
}
#section-team .counters .counter-block i {
  font-size: 50px;
  color: #48cfae;
}
#section-team .counters .counter-block h2 {
  font-size: 32px;
  font-weight: bold;
  color: #585858;
  margin: 8px 0 2px;
}
#section-team .members .member-block {
  text-align: center;
  position: relative;
}
#section-team .members .member-block p {
  position: relative;
  display: inline-block;
  background: #48cfae;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #ffffff;
  padding: 5px 15px;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  -moz-transition: opacity 200ms ease-out;
  -ms-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
#section-team .members .member-block p:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #48cfae;
}
#section-team .members .member-block img {
  display: block;
  margin: auto;
  max-width: 100%;
  filter: grayscale(100%);
  -webkit-transition: filter 400ms ease-out;
  -moz-transition: filter 400ms ease-out;
  -ms-transition: filter 400ms ease-out;
  -o-transition: filter 400ms ease-out;
  transition: filter 400ms ease-out;
}
#section-team .members .member-block:hover p {
  opacity: 1;
  -webkit-animation: shake 1000ms ease-out both;
  -moz-animation: shake 1000ms ease-out both;
  -ms-animation: shake 1000ms ease-out both;
  -o-animation: shake 1000ms ease-out both;
  animation: shake 1000ms ease-out both;
}
#section-team .members .member-block:hover img {
  filter: grayscale(0);
}
#section-team .members .member-block .details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(67, 74, 84, 0.8);
  padding: 10px 0;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  -moz-transition: opacity 200ms ease-out;
  -ms-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
#section-team .members .member-block .details h6 {
  font-size: 16px;
  line-height: 22px;
  font-family: "Roboto", Arial, sens-serif;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}
#section-team .members .member-block .details span {
  color: rgba(255, 255, 255, 0.7);
}
#section-team .members .member-block:hover .details {
  opacity: 1;
}
/*------------------------------------------------------------
11. Section-call
*/
#section-call {
  background-image: url(../img/call.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 70px 0;
}
#section-call i {
  font-size: 30px;
  color: #ffffff;
}
#section-call h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 5px 0 8px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}
#section-call p {
  color: rgba(255, 255, 255, 0.85);
}
#section-call .btn {
  margin-top: 35px;
}
/*------------------------------------------------------------
12. Section-prices
*/
#section-prices {
  background: #f5f6f7;
  padding: 93px 0 80px;
}
#section-prices .title {
  margin-bottom: 50px;
}
#section-prices .price-block {
  background: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  text-align: center;
  padding: 22px 30px 30px;
  margin-bottom: 50px;
  position: relative;
}
#section-prices .price-block.featured:before {
  content: "featured";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  margin: 0 50px;
  display: inline-block;
  background: #48cfae;
  font-size: 11px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  padding: 5px 10px;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
#section-prices .price-block h5 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #48cfae;
  margin-bottom: 27px;
}
#section-prices .price-block h6 {
  font-size: 52px;
  font-weight: bold;
  color: #414141;
  margin-right: 10px;
}
#section-prices .price-block h6:before {
  content: "$";
  display: inline-block;
  font-family: Arial;
  font-size: 18px;
  color: #898989;
  vertical-align: top;
  margin-top: -10px;
  margin-right: 3px;
}
#section-prices .price-block .small-text {
  color: #898989;
}
#section-prices .price-block ul {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  color: #585858;
}
#section-prices .price-block li {
  margin: 13px 0;
}
#section-prices .price-block .btn {
  margin-top: 15px;
}
/*------------------------------------------------------------
13. Section-blog
*/
#section-blog {
  text-align: center;
  padding: 80px 0 100px;
}
#section-blog .title {
  margin-bottom: 50px;
}
#section-blog .blog-post {
  margin-bottom: 50px;
  text-align: left;
}
#section-blog .blog-post img {
  display: block;
  width: 100%;
  height: auto;
}
#section-blog .blog-post .blog-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #414141;
  border: none;
  overflow: hidden;
}
#section-blog .blog-post .blog-title:hover {
  color: #48cfae;
}
#section-blog .blog-post .blog-time {
  display: block;
}
#section-blog .blog-post p {
  margin-top: 10px;
}
#section-blog .blog-post.post-image .blog-title img {
  margin-bottom: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#section-blog .blog-post.post-slider .blog-slider {
  margin-bottom: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
}
#section-blog .blog-post.post-slider .blog-slider img {
  max-width: 100%;
  width: 100%;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons div {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons div:hover {
  background: rgba(0, 0, 0, 0.7);
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons .owl-prev {
  left: 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons .owl-prev:before {
  content: "\f0d9";
  font-family: FontAwesome;
  color: #ffffff;
  font-size: 16px;
  margin-left: 10px;
  line-height: 28px;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons .owl-next {
  right: 0;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
#section-blog .blog-post.post-slider .blog-slider .owl-buttons .owl-next:before {
  content: "\f0da";
  font-family: FontAwesome;
  color: #ffffff;
  font-size: 16px;
  margin-left: 13px;
  line-height: 28px;
}
#section-blog .blog-post.post-video .blog-video iframe {
  display: block;
  width: 100%;
  height: auto;
}
#section-blog .btn {
  margin-top: 15px;
}
/*------------------------------------------------------------
14. Section-contacts
*/
#section-contacts .contacts-information {
  background-image: url(../img/contacts.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 60px 0 0;
}
#section-contacts .contacts-information .title {
  margin-bottom: 50px;
}
#section-contacts .contacts-information .contacts-gradient {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom, 0%, #353b43 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #353b43 99%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #353b43 99%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #353b43 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6202935', GradientType=0);
  z-index: -1;
}
#section-contacts .contacts-information .content-block {
  margin-bottom: 50px;
  text-align: center;
}
#section-contacts .contacts-information .content-block i {
  font-size: 24px;
  color: #ffffff;
}
#section-contacts .contacts-information .content-block h6 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  margin: 5px 0;
}
#section-contacts .contacts-information .content-block p {
  color: rgba(255, 255, 255, 0.8);
}
#section-contacts .contacts-form {
  background: #353b43;
  padding-bottom: 50px;
}
#section-contacts .contacts-form form {
  margin-top: 10px;
}
#section-contacts .contacts-form .form-fields-group {
  display: flex;
  flex-flow: row wrap;
}
#section-contacts .contacts-form .form-fields-group .form-field {
  flex: 1;
  border-right: none;
}
#section-contacts .contacts-form .form-fields-group .form-field:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}
#section-contacts .contacts-form .form-field {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  padding: 3px 10px 7px;
  -webkit-transition: background 100ms ease-out;
  -moz-transition: background 100ms ease-out;
  -ms-transition: background 100ms ease-out;
  -o-transition: background 100ms ease-out;
  transition: background 100ms ease-out;
}
#section-contacts .contacts-form .form-field:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#section-contacts .contacts-form .form-field label {
  display: block;
  font-size: 14px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  -webkit-transition: color 150ms ease-out;
  -moz-transition: color 150ms ease-out;
  -ms-transition: color 150ms ease-out;
  -o-transition: color 150ms ease-out;
  transition: color 150ms ease-out;
}
#section-contacts .contacts-form .form-field input[type="text"],
#section-contacts .contacts-form .form-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
}
#section-contacts .contacts-form .form-field textarea {
  max-width: 100%;
  min-height: 200px;
}
#section-contacts .contacts-form .form-field.focused {
  background: rgba(255, 255, 255, 0.05);
}
#section-contacts .contacts-form .form-field.focused label {
  color: rgba(255, 255, 255, 0.7);
}
#section-contacts .contacts-form .form-field.invalid label {
  color: #f44336;
}
#section-contacts .contacts-form .btn-send {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 10px;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
}
#section-contacts .contacts-form .btn-send i {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
  opacity: 0;
  -webkit-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -moz-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -ms-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -o-transition: transform 150ms ease-out, opacity 100ms ease-out;
  transition: transform 150ms ease-out, opacity 100ms ease-out;
}
#section-contacts .contacts-form .btn-send span {
  display: block;
  -webkit-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -moz-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -ms-transition: transform 150ms ease-out, opacity 100ms ease-out;
  -o-transition: transform 150ms ease-out, opacity 100ms ease-out;
  transition: transform 150ms ease-out, opacity 100ms ease-out;
}
#section-contacts .contacts-form .btn-send:hover {
  background: #48cfae;
  color: #ffffff;
  border-color: #48cfae;
}
#section-contacts .contacts-form .btn-send:hover span {
  opacity: 0;
  -webkit-transform: translateY(18px);
  -moz-transform: translateY(18px);
  -ms-transform: translateY(18px);
  -o-transform: translateY(18px);
}
#section-contacts .contacts-form .btn-send:hover i {
  -webkit-transform: translateY(18px);
  -moz-transform: translateY(18px);
  -ms-transform: translateY(18px);
  -o-transform: translateY(18px);
  opacity: 1;
}
#section-contacts .contacts-form #contacts-messages {
  margin-top: 15px;
  line-height: 24px;
  color: #48cfae;
}
#section-contacts .contacts-form #contacts-messages.error {
  color: #f44336;
}
/*------------------------------------------------------------
15. Footer
*/
footer {
  background: #30353c;
  overflow: hidden;
  padding: 42px 0;
}
footer .copyright {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  float: left;
  margin: 0;
}
footer .social {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
}
footer .social li {
  display: inline-block;
}
footer .social li a {
  display: block;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  line-height: 2.3em;
  -webkit-transition: background 200ms ease-out;
  -moz-transition: background 200ms ease-out;
  -ms-transition: background 200ms ease-out;
  -o-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
}
footer .social li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
/*------------------------------------------------------------
16. Animations
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* slideDown */
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* pulse */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* bounce */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* flash */
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
/* shake */
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* fadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
/* fadeInRightBig */
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
/* fadeInUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/* fadeInDown */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
/* fadeInLeftBig */
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
/* bounceInUp */
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/*------------------------------------------------------------
17. Responsive
*/
/* 1200px */
@media (max-width: 1200px) {
  #section-works .grid .item,
  #section-works .grid .item-size {
    width: 23.87%;
  }
  #section-works .grid .item.width-2 {
    width: 49.25%;
  }
}
/* 768 */
@media (max-width: 768px) {
  nav {
    padding: 0;
  }
  nav .navbar-toggle {
    display: block;
  }
  nav .navbar-items {
    display: none;
    text-align: center;
    background: #ffffff;
  }
  nav .navbar-items.responsive {
    display: block;
  }
  nav .navbar-items a {
    display: block;
    padding: 10px 0;
  }
  nav .navbar-items a:before {
    display: none;
  }
  .main-wrap {
    padding: 0 30px;
  }
  .spacer {
    padding: 0 30px;
  }
  #section-works .filter {
    position: static;
    background: transparent;
    box-shadow: none;
    animation: none;
    margin-top: 50px;
  }
  #section-works .filter ul {
    display: block;
  }
  #section-works .filter li {
    display: block;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
  }
  #section-works .filter li.current {
    background: #ffffff;
    color: #48cfae;
  }
  #section-works .filter li.current:after {
    display: none;
  }
  #section-works .filter li.current:hover {
    color: #48cfae;
  }
  #section-works .filter li:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  #section-works .grid .item,
  #section-works .grid .item-size {
    width: 32.33%;
  }
  #section-works .grid .item.width-2 {
    width: 66.16%;
  }
  #section-team .intro {
    text-align: center;
  }
  #section-team .members .member-block:not(:last-child) {
    margin-bottom: 50px;
  }
  #section-team .members .member-block .details {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  footer .copyright,
  footer .social {
    float: none;
    text-align: center;
    margin: 10px 0;
  }
}
/* 480 */
@media (max-width: 480px) {
  .main-wrap {
    padding: 0 20px;
  }
  .spacer {
    padding: 0 10px;
  }
  #section-works .grid .item,
  #section-works .grid .item-size,
  #section-works .grid .item.width-2 {
    width: 100%;
    max-height: 375px;
    margin-bottom: 20px;
  }
}
