/*------------------------------------------------------------------------
# VAN
# ------------------------------------------------------------------------
# Designed by Namtran
# Websites:  http://www.megadrupal.com -  Email: info@megadrupal.com
--------------------------------------------------------------------------

    1.  Reset
    2.  Header
    3.  Portfolio
    4.  About
    5.  Blog
    6.  Contact
    7.  Services
    8.  404
    9.  Responsive
    10.  Footer



--------------------------------------------------------------------------------*/
/*
*
*	===================== 1. Reset ====================
*
*/
@import url(http://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic,700italic|Raleway:400,500,700);

::-moz-selection {
  color: #fff;
  background: #252525;
}
::selection {
  color: #fff;
  background: #252525;
}
a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none !important;
  text-decoration: none;
}
body {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #7a7a7a;
  background-color: #fff;
}

.wrapper {
  background: #fff;
}

label {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #7a7a7a;
  font-style: italic;
  letter-spacing: 1px;
}

.form-control,
input[type="search"],
input[type="text"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="file"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
}
.form-control:focus,
input:focus,
textarea:focus {
  box-shadow: none;
  outline-offset: 0;
  outline: -webkit-focus-ring-color auto 0px;
  border-color: #252525;
  color: #252525;
}

textarea {
  resize: none;
}

.btn {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 9px 28px;
  line-height: 22px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default {
  border: 1px solid #252525;
  color: #252525;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active {
  color: #fff;
  text-decoration: none;
  background-color: #252525;
  border-color: #252525;
}

a:active, a:focus {
  outline: 0;
  text-decoration: none;
}

.divider {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  border-bottom: 1px solid #252525;
  margin: 0px 0;
}

p {
  letter-spacing: 1px;
}

a {
  color: #7a7a7a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #252525;
}
img {
  max-width: 100%;
}
.item img {
  max-width: 100%;
  width: 100%;
}

.owl-theme .owl-controls {
  margin-top: auto;
}

/*=================== Preloader ===========================*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 83px;
  height: 83px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1001;
  opacity: 1;
  visibility: visible;
}
.loader-logo img {
  max-width: 100%;
  width: 99.99%;
}

.loaded .loader-logo {
  opacity: 0;
  visibility: hidden;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  -moz-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.ie8 #loader-wrapper, .ie9 #loader-wrapper {
  display: none;
}

/*================= OWL carousel =======================*/
.owl-theme .owl-controls .owl-buttons div {
  color: #b1b1b1;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px 2px;
  padding: 0px;
  font-size: 22px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-theme .owl-controls .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  color: #252525;
  text-decoration: none;
}
.owl-theme .owl-controls .owl-buttons.clickable div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  color: #252525;
  text-decoration: none;
}

/*================= IF IE 8 GRID =======================*/
.ie8 .container {
  width: 1170px;
}

.ie8 .col-lg-12,
.ie8 .col-md-12,
.ie8 .col-sm-12,
.ie8 .col-xs-12 {
  width: 100%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-11,
.ie8 .col-md-11,
.ie8 .col-sm-11,
.ie8 .col-xs-11 {
  width: 91.66666667%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-10,
.ie8 .col-md-10,
.ie8 .col-sm-10,
.ie8 .col-xs-10 {
  width: 83.33333333%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-9,
.ie8 .col-md-9,
.ie8 .col-sm-9,
.ie8 .col-xs-9 {
  width: 75%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-8,
.ie8 .col-md-8,
.ie8 .col-sm-8,
.ie8 .col-xs-8 {
  width: 66.66666667%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-7,
.ie8 .col-md-7,
.ie8 .col-sm-7,
.ie8 .col-xs-7 {
  width: 58.33333333%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-6,
.ie8 .col-md-6,
.ie8 .col-sm-6,
.ie8 .col-xs-6 {
  width: 50%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-5,
.ie8 .col-md-5,
.ie8 .col-sm-5,
.ie8 .col-xs-5 {
  width: 41.66666667%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-4,
.ie8 .col-md-4,
.ie8 .col-sm-4,
.ie8 .col-xs-4 {
  width: 33.33333333%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-3,
.ie8 .col-md-3,
.ie8 .col-sm-3,
.ie8 .col-xs-3 {
  width: 25%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-2,
.ie8 .col-md-2,
.ie8 .col-sm-2,
.ie8 .col-xs-2 {
  width: 16.66666667%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.ie8 .col-lg-1,
.ie8 .col-md-1,
.ie8 .col-xs-1,
.ie8 .col-sm-1 {
  width: 8.33333333%;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

/*
*
*	===================== 2. Header ====================
*
*/
.header {
  text-align: center;
  padding: 1px 0 23px 0;
}

.logo {
  margin: 2px 2px 2px 2px;
}
.logo a {
  display: inline-block;
}
.logo a img {
  display: block;
  height: 183px;
  margin: 0 auto;
}

.header_v2 .logo {
  float: left;
  margin: 0;
}
.header_v2 nav {
  float: right;
}
.header.header-sticky.fixed {
  position: fixed;
  width: 100%;
  height: 64px;
  top: 0; left: 0;
  padding: 0;
  z-index: 9999;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.1);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation: fixedAnim .4s ease both;
  -moz-animation: fixedAnim .4s ease both;
  animation: fixedAnim .4s ease both;
}
.header.header-sticky.fixed.header-translate {
  -webkit-transform: translateX(-320px);
  -moz-transform: translateX(-320px);
  transform: translateX(-320px);
  overflow: hidden;
}
.header.header-sticky.fixed .menu-nav {
  margin-top: 0;
  float: right;
}
.header.header-sticky.fixed .logo {
  padding-top: 13px;
  margin: 0;
  float: left;
}
.header.header-sticky.fixed .logo img {
  height: 40px;
}
@-webkit-keyframes fixedAnim {
  0% {
    top: -64px;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes fixedAnim {
  0% {
    top: -64px;
  }
  100% {
    top: 0;
  }
}
@keyframes fixedAnim {
  0% {
    top: -64px;
  }
  100% {
    top: 0;
  }
}
@media (min-width: 1200px) {
  .menu-nav,
  .dropdown-menu {
    list-style: none;
  }

  .menu-nav {
    margin: 7px 0 0 0;
    padding: 0;
    font-size: 0px;
    letter-spacing: 0;
  }
  .menu-nav > li {
    display: inline-block;
    padding: 20px 40px;
    margin: 0;
    position: relative;
  }
  .menu-nav > li > a {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #7a7a7a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    position: relative;
    letter-spacing: 2px;
  }
  .menu-nav > li > a i {
    color: #b1b1b1;
  }
  .menu-nav > li:after {
    content: "";
    display: block;
    width: 37px;
    height: 2px;
    background-color: #dfdfdf;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -20px;
  }
  .menu-nav > li:last-child:after {
    display: none;
  }
  .menu-nav > li:hover > a {
    color: #252525;
  }
  .menu-nav > li:hover > a:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #252525;
  }
  .menu-nav > li.current > a {
    color: #252525;
  }
  .menu-nav > li.current > a:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #252525;
  }

  .header_v2 .menu-nav {
    margin-top: 14px;
  }
  .header_v2 .menu-nav > li:last-child {
    padding-right: 0;
  }

  .dropdown {
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 30px);
    -moz-transform: translate(-50%, 30px);
    -ms-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
    min-width: 160px;
    text-align: center;
    z-index: 999;
    background-color: #252525;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dropdown > li {
    display: block;
    margin: 0px;
    padding: 0px;
    position: relative;
  }
  .dropdown > li > a {
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: #a7a7a7;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dropdown > li > a:hover {
    color: #fff;
    background-color: #111;
  }
  .dropdown > li > .dropdown {
    opacity: 0;
    visibility: hidden;
    margin-top: -42px;
    left: 100%;
    -webkit-transform: translate(30px, 0);
    -moz-transform: translate(30px, 0);
    -ms-transform: translatX(30px, 0);
    transform: translate(30px, 0);
    right: auto;
    border-left: 1px solid #7a7a7a;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dropdown > li.current > a {
    color: #fff;
    background-color: #111;
  }

  .dropdown > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translatX(0, 0);
    transform: translate(0, 0);
  }

  .menu-nav > li > .dropdown:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #252525;
    border-width: 7px;
    margin-left: -7px;
  }

  .menu-nav > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0px);
    -moz-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
}
.ie8 .menu-nav,
.ie8 .dropdown-menu {
  list-style: none;
}
.ie8 .menu-nav {
  margin: 7px 0 0 0;
  padding: 0;
  font-size: 0px;
  letter-spacing: 0;
}
.ie8 .menu-nav > li {
  display: inline-block;
  padding: 20px 40px;
  margin: 0;
  position: relative;
}
.ie8 .menu-nav > li > a {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #7a7a7a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  position: relative;
  letter-spacing: 2px;
}
.ie8 .menu-nav > li > a i {
  color: #b1b1b1;
}
.ie8 .menu-nav > li:after {
  content: "";
  display: block;
  width: 37px;
  height: 2px;
  background-color: #dfdfdf;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
}
.ie8 .menu-nav > li:last-child:after {
  display: none;
}
.ie8 .menu-nav > li:hover > a {
  color: #252525;
}
.ie8 .menu-nav > li:hover > a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #252525;
}
.ie8 .menu-nav > li.current > a {
  color: #252525;
}
.ie8 .menu-nav > li.current > a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #252525;
}
.ie8 .header_v2 .menu-nav {
  margin-top: 14px;
}
.ie8 .header_v2 .menu-nav > li:last-child {
  padding-right: 0;
}
.ie8 .dropdown {
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 30px);
  -moz-transform: translate(-50%, 30px);
  -ms-transform: translate(-50%, 30px);
  transform: translate(-50%, 30px);
  min-width: 160px;
  text-align: center;
  z-index: 999;
  background-color: #252525;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ie8 .dropdown > li {
  display: block;
  margin: 0px;
  padding: 0px;
  position: relative;
}
.ie8 .dropdown > li > a {
  display: block;
  padding: 10px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: #a7a7a7;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ie8 .dropdown > li > a:hover {
  color: #fff;
  background-color: #111;
}
.ie8 .dropdown > li > .dropdown {
  display: none;
  margin-top: -42px;
  left: 100%;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translatX(0, 0);
  transform: translate(0, 0);
  right: auto;
  border-left: 1px solid #7a7a7a;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ie8 .dropdown > li.current > a {
  color: #fff;
  background-color: #111;
}
.ie8 .dropdown > li:hover > .dropdown {
  display: block;
}
.ie8 .menu-nav > li > .dropdown:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #252525;
  border-width: 7px;
  margin-left: -7px;
}
.ie8 .menu-nav > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.ie8 .menu-nav {
  text-align: center;
}
.ie8 .menu-nav li.menu-item-last:after {
  display: none;
}

.ie8 .dropdown {
  left: 0px;
}

/*
*
*	===================== 3. Portfolio ====================
*
*/

.work-item.effect-original-5 .caption.bg-black:before,
.work-item.effect-original-5 .caption.bg-black:after,
.bg-black {
  background-color: rgba(0, 0, 0, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-orange-red:before,
.work-item.effect-original-5 .caption.bg-orange-red:after,
.bg-orange-red {
  background-color: rgba(215, 94, 94, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-fuchia:before,
.work-item.effect-original-5 .caption.bg-fuchia:after,
.bg-fuchia {
  background-color: rgba(255, 138, 227, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-azure:before,
.work-item.effect-original-5 .caption.bg-azure:after,
.bg-azure {
  background-color: rgba(0, 126, 229, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-violet:before,
.work-item.effect-original-5 .caption.bg-violet:after,
.bg-violet {
  background-color: rgba(194, 113, 176, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-blue:before,
.work-item.effect-original-5 .caption.bg-blue:after,
.bg-blue {
  background-color: rgba(46, 159, 255, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-cyan:before,
.work-item.effect-original-5 .caption.bg-cyan:after,
.bg-cyan {
  background-color: rgba(0, 182, 127, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-green:before,
.work-item.effect-original-5 .caption.bg-green:after,
.bg-green {
  background-color: rgba(122, 193, 66, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-yellow:before,
.work-item.effect-original-5 .caption.bg-yellow:after,
.bg-yellow {
  background-color: rgba(242, 200, 63, 0.85) !important;
}

.work-item.effect-original-5 .caption.bg-orange:before,
.work-item.effect-original-5 .caption.bg-orange:after,
.bg-orange {
  background-color: rgba(246, 129, 33, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-brown:before,
.work-item.effect-original-5 .caption.bg-brown:after,
.bg-brown {
  background-color: rgba(150, 75, 0, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-pink:before,
.work-item.effect-original-5 .caption.bg-pink:after,
.bg-pink {
  background-color: rgba(255, 203, 219, 0.85) !important;
}
.work-item.effect-original-5 .caption.bg-red:before,
.work-item.effect-original-5 .caption.bg-red:after,
.bg-red {
  background-color: rgba(230, 75, 80, 0.85) !important;
}


.scroll-to a {
  display: inline-block;
}

.slogan {
  margin: 20px auto 19px auto;
  text-align: center;
  border: 1px solid #252525;
  padding: 4px;
  max-width: 510px;
}
.slogan h2 {
  border: 1px solid #252525;
}

.head-title {
  margin: 0;
  padding: 18px 70px 17px 70px;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #252525;
}

.toggle-button {
  display: block;
  border: 1px solid #dbdbdb;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px auto;
  padding: 10px 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.toggle-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-bottom: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.toggle-button:hover {
  border-color: #252525;
  background-color: #252525;
}
.toggle-button:hover span {
  background-color: #fff;
}

#work-wrap {
  margin-bottom: 70px;
}

.filters ul {
  list-style-type: none;
  margin: 0 0 18px 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.filters ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.filters ul li a {
  display: block;
  margin: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: none;
  font-size: 12px;
  line-height: 20px;
  color: #7a7a7a;
  position: relative;
  letter-spacing: 1px;
}
.filters ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #252525;
  position: absolute;
  bottom: 0px;
  left: 0;
  -webkit-transform: scaleX(0.001);
  -ms-transform: scaleX(0.001);
  -o-transform: scaleX(0.001);
  transform: scaleX(0.001);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.filters ul li a:after {
  content: "/";
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 12px;
  color: #7a7a7a;
}
.filters ul li a:hover {
  text-decoration: none;
  color: #5ED9E7;
}
.filters ul li a:hover:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #5ED9E7;
}
.filters ul li:last-child a:after {
  display: none;
}
.filters ul .select-filter a {
  color: #5ED9E7;
}
.filters ul .select-filter a:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #5ED9E7;
}
.filters ul.show-filters {
  opacity: 1;
  visibility: visible;
}

.work-item {
  margin: 0px;
  padding: 0;
}
.work-item .item-inner {
  margin: 15px;
  position: relative;
  overflow: hidden;
}
.work-item .item-inner a {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.work-item .item-inner .caption {
  margin: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  -webkit-transition: all 0.35s ease .1s;
  -o-transition: all 0.35s ease .1s;
  transition: all 0.35s ease .1s;
}
.work-item .item-inner .caption .inner {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 10px;
}
.work-item .item-inner .caption .inner h4 {
  font-weight: 500;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  margin: 0;
  letter-spacing: 2px;
}
.work-item .item-inner .caption .inner h4 a {
  color: #fff;
}
.work-item .item-inner .caption .inner h4 a:hover {
  text-decoration: none;
  color: inherit;
}
.work-item .item-inner .caption .inner em {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
  margin: 0;
  letter-spacing: 1px;
}
.work-item .item-inner .caption .inner:before, .work-item .item-inner .caption .inner:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.work-item .item-inner .caption .inner:before {
  top: 0;
}
.work-item .item-inner .caption .inner:after {
  bottom: 0;
}
.work-item .item-inner .caption .inner:hover:before {
  top: -10px;
}
.work-item .item-inner .caption .inner:hover:after {
  bottom: -10px;
}

.work-item.imageParallax .item-inner > a {
  -webkit-transform: translateX(0) scale(1.1);
  -moz-transform: translateX(0) scale(1.1);
  transform: translateX(0) scale(1.1);
}
.work-item.imageParallax .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-5%);
  -moz-transform: translateX(-5%);
  transform: translateX(-5%);
}
.work-item.imageParallax:hover .item-inner > a {
  -webkit-transform: translateX(5%) scale(1.1);
  -moz-transform: translateX(5%) scale(1.1);
  transform: translateX(5%) scale(1.1);
}
.work-item.imageParallax:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}
.work-item.zoomOut .item-inner > a {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.work-item.zoomOut .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.work-item.zoomOut:hover .item-inner > a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.zoomOut:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-apollo .item-inner > a {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.work-item.effect-apollo .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.work-item.effect-apollo .caption:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.work-item.effect-apollo:hover .item-inner > a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-apollo:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-apollo:hover .caption:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
.work-item.effect-ming .item-inner > a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-ming .item-inner h4 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: scale(0.00001);
  transform: scale(0.00001);
}
.work-item.effect-ming .item-inner em {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  -webkit-transform: scale(5.5);
  transform: scale(5.5);
}
.work-item.effect-ming .caption {
  opacity: 0;
  visibility: hidden;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-ming .caption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}
.work-item.effect-ming:hover .item-inner > a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-ming:hover .item-inner h4 {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-ming:hover .item-inner em {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.work-item.effect-ming:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-ming:hover .caption:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.work-item.effect-sadie .item-inner > a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-sadie .item-inner h4 {
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -140px, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -140px, 0);
}
.work-item.effect-sadie .item-inner em {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 140px, 0);
  transform: translate3d(0, 140px, 0);
}
.work-item.effect-sadie .item-inner .inner:after, .work-item.effect-sadie .item-inner .inner:before {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 3s, -webkit-transform 3s;
  transition: opacity 3s, transform 3s;
}
.work-item.effect-sadie .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-sadie .caption:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}
.work-item.effect-sadie .caption .work-favorite {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 140px, 0);
  transform: translate3d(0, 140px, 0);
}
.work-item.effect-sadie:hover .item-inner > a {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  transform: scale(2);
}
.work-item.effect-sadie:hover .item-inner h4 {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
.work-item.effect-sadie:hover .item-inner em {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.work-item.effect-sadie:hover .item-inner .inner:after, .work-item.effect-sadie:hover .item-inner .inner:before {
  opacity: 1;
}
.work-item.effect-sadie:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.work-item.effect-sadie:hover .caption:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.work-item.effect-sadie:hover .caption .work-favorite {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.work-item.effect-flip .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: perspective(50em) rotateY(-180deg) scale(0.5);
  -ms-transform: perspective(50em) rotateY(-180deg) scale(0.5);
  -o-transform: perspective(50em) rotateY(-180deg) scale(0.5);
  transform: perspective(50em) rotateY(-180deg) scale(0.5);
  -webkit-transition: all 0.6s cubic-bezier(0.42, 0.69, 0.63, 1.37);
  -o-transition: all 0.6s cubic-bezier(0.42, 0.69, 0.63, 1.37);
  transition: all 0.6s cubic-bezier(0.42, 0.69, 0.63, 1.37);
}
.work-item.effect-flip:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: perspective(50em) rotateY(0deg) scale(1);
  -ms-transform: perspective(50em) rotateY(0deg) scale(1);
  -o-transform: perspective(50em) rotateY(0deg) scale(1);
  transform: perspective(50em) rotateY(0deg) scale(1);
}
.work-item.effect-original-1 .caption {
  opacity: 0;
  visibility: hidden;
}
.work-item.effect-original-1 .caption:before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  width: 350%;
  height: 350%;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: translate(320px, 320px) rotate(45deg);
  -moz-transform: translate(320px, 320px) rotate(45deg);
  -o-transform: translate(320px, 320px) rotate(45deg);
  -ms-transform: translate(320px, 320px) rotate(45deg);
  transform: translate(320px, 320px) rotate(45deg);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.work-item.effect-original-1:hover .caption {
  opacity: 1;
  visibility: visible;
}
.work-item.effect-original-1:hover .caption:before {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translate(-300px, -300px) rotate(45deg);
  -moz-transform: translate(-300px, -300px) rotate(45deg);
  -o-transform: translate(-300px, -300px) rotate(45deg);
  -ms-transform: translate(-300px, -300px) rotate(45deg);
  transform: translate(-300px, -300px) rotate(45deg);
}
.work-item.effect-original-2 .caption {
  opacity: 0;
  visibility: hidden;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: translate(460px, -100px) rotate(180deg);
  -moz-transform: translate(460px, -100px) rotate(180deg);
  -o-transform: translate(460px, -100px) rotate(180deg);
  -ms-transform: translate(460px, -100px) rotate(180deg);
  transform: translate(460px, -100px) rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-item.effect-original-2:hover .caption {
  opacity: 1;
  visibility: visible;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.work-item.effect-original-3 .caption {
  opacity: 0;
  visibility: hidden;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: scale(0) rotate(-180deg);
  -moz-transform: scale(0) rotate(-180deg);
  -o-transform: scale(0) rotate(-180deg);
  -ms-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg);
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.work-item.effect-original-3:hover .caption {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) rotate(0deg);
  -moz-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.work-item.effect-original-4 .caption {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-100%) scale(2.5) rotate(45deg);
  -moz-transform: translateY(-100%) scale(2.5) rotate(45deg);
  -o-transform: translateY(-100%) scale(2.5) rotate(45deg);
  -ms-transform: translateY(-100%) scale(2.5) rotate(45deg);
  transform: translateY(-100%) scale(1.1) rotate(45deg);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.work-item.effect-original-4:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px) scale(1) rotate(0deg);
  -moz-transform: translateY(0px) scale(1) rotate(0deg);
  -o-transform: translateY(0px) scale(1) rotate(0deg);
  -ms-transform: translateY(0px) scale(1) rotate(0deg);
  transform: translateY(0px) scale(1) rotate(0deg);
}
.work-item.effect-original-5 .caption {
  opacity: 0;
  visibility: hidden;
  background-color: transparent !important;
}
.work-item.effect-original-5 .caption:before, .work-item.effect-original-5 .caption:after {
  opacity: 0;
  display: block;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  opacity: 1;
  left: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.work-item.effect-original-5 .caption:before {
  top: 0;
  -webkit-transform: rotate(56.5deg) translateX(-180px);
  -moz-transform: rotate(56.5deg) translateX(-180px);
  -o-transform: rotate(56.5deg) translateX(-180px);
  -ms-transform: rotate(56.5deg) translateX(-180px);
  transform: rotate(56.5deg) translateX(-180px);
  -webkit-transform-origin: 100% 0%;
  -moz-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
.work-item.effect-original-5 .caption:after {
  bottom: 0;
  -webkit-transform: rotate(56.5deg) translateX(180px);
  -moz-transform: rotate(56.5deg) translateX(180px);
  -o-transform: rotate(56.5deg) translateX(180px);
  -ms-transform: rotate(56.5deg) translateX(180px);
  transform: rotate(56.5deg) translateX(180px);
  -webkit-transform-origin: 0% 100%;
  -moz-transform-origin: 0% 100%;
  -o-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.work-item.effect-original-5:hover .caption {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.work-item.effect-original-5:hover .caption:after, .work-item.effect-original-5:hover .caption:before {
  opacity: 1;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  z-index: -1;
}
.work-item.effect-original-5:hover .caption:before {
  -webkit-transform: rotate(0deg) translateX(0);
  -moz-transform: rotate(0deg) translateX(0);
  -o-transform: rotate(0deg) translateX(0);
  -ms-transform: rotate(0deg) translateX(0);
  transform: rotate(0deg) translateX(0);
}
.work-item.effect-original-5:hover .caption:after {
  -webkit-transform: rotate(0deg) translateX(0);
  -moz-transform: rotate(0deg) translateX(0);
  -o-transform: rotate(0deg) translateX(0);
  -ms-transform: rotate(0deg) translateX(0);
  transform: rotate(0deg) translateX(0);
}
.work-item.effect-default .caption {
  opacity: 0;
  visibility: hidden;
}
.work-item.effect-default:hover .caption {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.load-more-button {
  margin-bottom: 70px;
}
.load-more-button .btn {
  font-size: 12px;
}
.load-more-button .btn:hover {
  background-color: #5ED9E7;
  border-color: #5ED9E7;
  color: #fff;
}
.load-more-button .btn:hover i {
  -webkit-animation: fa-spin .5s infinite linear;
  animation: fa-spin .5s infinite linear;
}

.work-favorite {
  position: absolute;
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
}
.work-favorite i {
  color: #fff;
}

.image-wrap img {
  max-width: 100%;
}

.portfolio_v2 .toggle-button {
  float: left;
  margin-top: 5px;
  margin-right: 10px;
  margin-bottom: 28px;
}
.portfolio_v2 .filters {
  float: left;
}

@media (max-width: 480px) {
  .portfolio_v2 .toggle-button {
    float: none;
    margin-top: 5px;
    margin-right: auto;
  }
  .portfolio_v2 .filters {
    float: none;
  }
}
.portfolio .item:after, .portfolio .item:before {
  display: table;
  content: "";
}
.portfolio .item:after {
  clear: both;
}

.ie8 .work-item {
  padding: 0px;
}
.ie8 .work-item .item-inner .caption {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAFFCAYAAACKf6TQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCMTM0NkY3NUFDMzlFNDExOTk1OUMzRjZBMEQ3NUE1QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozRkY4MTJDNTc5Q0ExMUU0OTlEM0Y3MTMzNjZBRTA5MSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozRkY4MTJDNDc5Q0ExMUU0OTlEM0Y3MTMzNjZBRTA5MSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk1RTgwMDFCNjg0MUU0MTFCNUE4OEJCNEIwOUVBREQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkIxMzQ2Rjc1QUMzOUU0MTE5OTU5QzNGNkEwRDc1QTVBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mxx47gAAA1hJREFUeNrs1DEBAAAIw7CBf4O4QQEKSCT0aCWZAHBqCQCMEsAoAYwSwCgBjBLAKAGMEsAoATBKAKMEMEoAowQwSgCjBDBKAKMEwCgBjBLAKAGMEsAoAYwSwCgBjBIAowQwSgCjBDBKAKMEMEoAowQwSgCjBMAoAYwSwCgBjBLAKAGMEsAoAYwSAKMEMEoAowQwSgCjBDBKAKMEMEoAjBLAKAGMEsAoAYwSwCgBjBLAKAGMEgCjBDBKAKMEMEoAowQwSgCjBDBKAIwSwCgBjBLAKAGMEsAoAYwSwCgBMEoAowQwSgCjBDBKAKMEMEoAowQwSgCMEsAoAYwSwCgBjBLAKAGMEsAoATBKAKMEMEoAowQwSgCjBDBKAKMEwCgBjBLAKAGMEsAoAYwSwCgBjBLAKAEwSgCjBDBKAKMEMEoAowQwSgCjBMAoAYwSwCgBjBLAKAGMEsAoAYwSAKMEMEoAowQwSgCjBDBKAKMEMEoAowTAKAGMEsAoAYwSwCgBjBLAKAGMEgCjBDBKAKMEMEoAowQwSgCjBDBKAIwSwCgBjBLAKAGMEsAoAYwSwCgBjBIAowQwSgCjBDBKAKMEMEoAowQwSgCMEsAoAYwSwCgBjBLAKAGMEsAoATBKAKMEMEoAowQwSgCjBDBKAKMEMEoAjBLAKAGMEsAoAYwSwCgBjBLAKAEwSgCjBDBKAKMEMEoAowQwSgCjBMAoAYwSwCgBjBLAKAGMEsAoAYwSwCgBMEoAowQwSgCjBDBKAKMEMEoAowTAKAGMEsAoAYwSwCgBjBLAKAGMEgCjBDBKAKMEMEoAowQwSgCjBDBKAKMEwCgBjBLAKAGMEsAoAYwSwCgBjBIAowQwSgCjBDBKAKMEMEoAowQwSgCMEsAoAYwSwCgBjBLAKAGMEsAoAYxSAgCjBDBKAKMEMEoAowQwSgCjBDBKAIwSwCgBjBLAKAGMEsAoAYwSwCgBMEoAowQwSgCjBDBKAKMEMEoAowTAKAGMEsAoAYwSwCgBjBLAKAGMEsAoATBKAKMEMEoAowQwSgCjBDBKAKMEwCgBjBLAKAGMEsAoAYwSwCgBjBIAowQwSgCjBDBKAKMEMEoAowQwSgCjBMAoAYwSwCgBjBLAKAGMEsAoAZ5ZAQYA+5oDY0MQY6kAAAAASUVORK5CYII=") !important;
}
.ie8 .work-item .item-inner .caption .inner {
  top: 35%;
  left: 25%;
}

.single-portfolio {
  padding-top: 85px;
}

.portfolio-pagination {
  position: relative;
  max-width: 300px;
  margin: 30px auto 45px auto;
}
.portfolio-pagination:after, .portfolio-pagination:before {
  content: "";
  display: table;
}
.portfolio-pagination:after {
  clear: both;
}
.portfolio-pagination a {
  display: block;
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.portfolio-pagination a i {
  color: #252525;
  font-size: 20px;
  line-height: 22px;
}
.portfolio-pagination a.portfolio-pre i {
  float: left;
  margin-right: 7px;
}
.portfolio-pagination a.portfolio-next i {
  float: right;
  margin-left: 7px;
}

.all-portfolio {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid #dbdbdb;
  padding: 10px;
  float: left;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.all-portfolio:after, .all-portfolio:before {
  display: table;
  content: "";
}
.all-portfolio:after {
  clear: both;
}
.all-portfolio span {
  display: block;
  width: 6px;
  height: 6px;
  margin-right: 2px;
  margin-bottom: 2px;
  background-color: #252525;
  float: left;
}
.all-portfolio span:nth-of-type(2n) {
  margin-right: 0;
}
.all-portfolio span:nth-of-type(3n), .all-portfolio span:nth-of-type(4n) {
  margin-bottom: 0;
}
.all-portfolio:hover {
  background-color: #252525;
  border-color: #252525;
}
.all-portfolio:hover span {
  background-color: #fff;
}

.portfolio-dsc {
  padding: 70px 0;
}
.portfolio-dsc:before, .portfolio-dsc:after {
  display: table;
  content: "";
}
.portfolio-dsc:after {
  clear: both;
}
.portfolio-dsc .portfolio-list {
  list-style-type: none;
  margin: 0 0 30px 0;
  padding: 0;
}
.portfolio-dsc .portfolio-list li h3 {
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: #252525;
}
.portfolio-dsc .portfolio-list li p {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.portfolio-rel {
  margin-top: 55px;
  margin-bottom: 55px;
}
.portfolio-rel:before, .portfolio-rel:after {
  display: table;
  content: "";
}
.portfolio-rel:after {
  clear: both;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
  color: #252525;
  line-height: 30px;
  margin-top: 61px;
  margin-bottom: 27px;
}
.about-title span {
  font-weight: 700;
}

.about-more {
  margin-bottom: 30px;
}

.more-about-us {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  line-height: 30px;
  font-style: italic;
  color: #7a7a7a;
  position: relative;
}
.more-about-us:hover {
  text-decoration: none;
}
.more-about-us:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  border-bottom: 1px solid #252525;
}

.text-box {
  border: 1px solid #dbdbdb;
  margin: 28px 0 0px 0;
  padding: 28px 23px 31px 23px;
  position: relative;
  display: block;
}
.text-box p {
  font-size: 13px;
  line-height: 22px;
  color: #7a7a7a;
  letter-spacing: 1px;
}
.text-box.image {
  padding: 0;
  border: 0;
}
.text-box.image img {
  max-width: 100%;
  width: 100%;
  display: block;
}

.about-more-wrap .text-box {
  margin-top: 77px;
}

.box-icon {
  position: absolute;
  top: -20px;
  left: 25px;
}
.box-icon i {
  font-size: 30px;
  line-height: 35px;
  color: #252525;
}

.box-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #252525;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: auto;
  margin-top: 5px;
  margin-bottom: 33px;
  padding-bottom: 7px;
  border-bottom: 1px solid #252525;
}

.count-to {
  text-align: center;
  padding: 28px 0 84px 0;
}
.count-to .timer {
  display: block;
  font-size: 50px;
  font-weight: 400;
  color: #252525;
  font-weight: 300;
  margin-bottom: 25px;
}
.count-to p {
  font-size: 12px;
  text-transform: uppercase;
  color: #7a7a7a;
  line-height: 28px;
  letter-spacing: 2px;
}

.post-box {
  padding: 0 0 75px 0;
}

.post-box-content {
  border: 1px solid #dbdbdb;
  padding: 23px 45px 41px 45px;
  text-align: center;
}
.post-box-content p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 32px;
}

.post-box-title {
  margin-bottom: 27px;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 13px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #252525;
}
.post-box-title:after {
  content: "";
  width: 40px;
  height: 0;
  border-bottom: 1px solid #252525;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.post-box-title-big {
  font-size: 22px;
}

.link-button {
  display: inline-block;
  padding: 15px 20px;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 2px;
  color: #252525;
  border: 1px solid #252525;
}
.link-button:hover {
  color: #fff;
  background-color: #252525;
  text-decoration: none;
}
.ajax-loading {
  position: absolute;
  bottom: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999;
  padding: 15px 50px;
  margin-bottom: 20px;
  border: 1px solid #bce8f1;
  border-radius: 4px;
  color: #31708f;
  background-color: #d9edf7;
  text-align: center;
  font-size: 16px;
}
.ajax-load-success {
  position: absolute;
  bottom: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999;
  padding: 15px 50px;
  margin-bottom: 20px;
  border: 1px solid #dff0d8;
  border-radius: 4px;
  color: #3c763d;
  background-color: #dff0d8;
  text-align: center;
  font-size: 16px;
}

/*
*
*	===================== 4. About page ====================
*
*/
.title-inner {
  background: #252525 url(../images/pattern/p1.jpg) repeat top left;
  padding: 9px;
  margin-bottom: 54px;
  margin-top: 12px;
}
.title-inner .title-border {
  padding: 96px 60px 81px 60px;
  border: 1px solid rgba(101, 101, 101, 0.4);
}
.title-inner .title-border .title-heading {
  font-size: 24px;
  line-height: 14px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 15px;
}
.title-inner .title-border .title-dsc {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #fff;
  letter-spacing: 1px;
}

.text-block {
  margin-bottom: 70px;
}
.text-block .text-block-title {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: #252525;
  max-width: 750px;
  position: relative;
  padding-bottom: 20px;
  margin: 29px auto 17px auto;
}
.text-block .text-block-title:after {
  content: "";
  width: 40px;
  height: 0;
  border-bottom: 1px solid #252525;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-block .text-block-title.about-text-block {
  max-width: 1000px;
}
.text-block .text-block-dsc {
  text-align: center;
  font-size: 13px;
  line-height: 22px;
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.tbl {
  display: table;
  table-layout: fixed;
  width: 100%;
  vertical-align: top;
}

.tbl-cell {
  display: table-cell;
  vertical-align: top;
}

.tbl-cell * {
  vertical-align: top;
}

.about-box-wrap {
  margin-bottom: 15px;
  font-size: 0;
  letter-spacing: 0;
}
.about-box-wrap [class^=col-]:after, .about-box-wrap [class^=col-]:before {
  display: table;
  content: "";
}
.about-box-wrap [class^=col-]:after {
  clear: both;
}
.about-box-wrap .text-box {
  margin: 15px 0;
}

.team-title-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.team-title-content {
  background-color: #fff;
  background-image: url(../images/about/team_bg.jpg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  position: relative;
}
.team-title-content p {
  max-width: 700px;
  margin: 0 auto;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 66px 66px 99px 66px;
  position: relative;
}
.overlay:after {
  bottom: 0;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #fff;
  border-width: 11px;
  margin-left: -11px;
}

.team-logo {
  display: block;
  width: 80px;
  margin: 0 auto;
}

.team-title {
  margin-bottom: 25px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.our-team-wrap {
  margin-bottom: 16px;
}

.team-member .avatar {
  position: relative;
  overflow: hidden;
}
.team-member .avatar img {
  max-width: 100%;
  width: 100%;
  display: block;
}
.team-member .avatar ul.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 15px 0;
  list-style-type: none;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: all  0.3s ease;
  -o-transition: all  0.3s ease;
  transition: all  0.3s ease;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.team-member .avatar ul.member-social li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.team-member .avatar ul.member-social li a {
  display: block;
  margin: 0  10px;
  color: #252525;
}
.team-member .avatar ul.member-social li a i {
  font-size: 18px;
  line-height: 18px;
}
.team-member .avatar:hover ul.member-social {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.member-info {
  text-align: center;
  padding: 25px 10px 30px 10px;
}
.member-info h4 {
  font-size: 13px;
  color: #252525;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.member-info p {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

/*
*
*	===================== 5. Blog ====================
*
*/
.blog-wrap {
  padding-top: 35px;
  padding-bottom: 38px;
}

.blog-slide {
  overflow: hidden;
}
.blog-slide .item a img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-slide .item:hover a img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.thumbnail {
  padding: 0;
  margin-bottom: 45px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 0;
  overflow: hidden;
}
.thumbnail img {
  max-width: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.thumbnail:hover {
  border: 0;
}
.thumbnail:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.thumbnail.border-solid {
  border: 1px solid #cacaca;
}

.blog-item {
  margin-bottom: 45px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dadada;
}
.blog-item .blog-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #252525;
}
.blog-item .blog-title a {
  color: #252525;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-item .blog-title a:hover {
  text-decoration: none;
  color: #5ed9e7;
}
.blog-item .blog-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 0;
  border-bottom: 1px solid #252525;
}
.blog-item:first-child .blog-title {
  margin-top: 0;
}
.blog-item p {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 40px;
}
.blog-item .blog-meta {
  margin-bottom: 20px;
}
.blog-item .blog-meta:after, .blog-item .blog-meta:before {
  content: "";
  display: table;
}
.blog-item .blog-meta:after {
  clear: both;
}
.blog-item .blog-meta .meta-data {
  float: left;
  margin: 5px 0;
  padding: 5px 0;
}
.blog-item .blog-meta .share-wrap {
  float: right;
}
.blog-item .meta-data {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.blog-item .meta-data a {
  color: #252525;
}
.blog-item .meta-data a:hover {
  color: #5ed9e7;
}
.blog-item.quote-item {
  border: 0;
}
.blog-item.quote-item blockquote.quote {
  margin: 0;
}

.blog-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
  color: #252525;
}
.blog-title a {
  color: #252525;
}
.blog-title a:hover {
  text-decoration: none;
}
.blog-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 0;
  border-bottom: 1px solid #252525;
}

.single-post p {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 45px;
}
.single-post .blog-meta {
  margin-bottom: 20px;
}
.single-post .blog-meta:after, .single-post .blog-meta:before {
  content: "";
  display: table;
}
.single-post .blog-meta:after {
  clear: both;
}
.single-post .blog-meta .meta-data {
  float: left;
  margin: 5px 0;
  padding: 5px 0;
}
.single-post .blog-meta .share-wrap {
  float: right;
}
.single-post .meta-data {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.single-post .meta-data a {
  color: #252525;
}
.single-post .meta-data a:hover {
  color: #5ed9e7;
}

blockquote.quote {
  margin: 0 0 45px 0;
  padding: 34px 20px 37px 20px;
  border: 1px solid #dadada;
}
blockquote.quote i {
  font-size: 20px;
  color: #252525;
  margin-bottom: 7px;
}
blockquote.quote p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 26px;
  color: #252525;
  margin-bottom: 9px;
}
blockquote.quote p a {
  color: #252525;
}
blockquote.quote footer {
  font-size: 10px;
  line-height: 24px;
  text-transform: uppercase;
  color: #252525;
}
blockquote.quote footer:before {
  display: none;
}

.share-wrap span {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.social-share {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.social-share li {
  display: inline-block;
  padding: 5px;
  margin: 5px;
  position: relative;
}
.social-share li a {
  font-size: 14px;
  color: #010101;
  display: block;
  width: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.social-share li a:hover {
  color: #7a7a7a;
}
.social-share li:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -5px;
  width: 1px;
  height: 13px;
  background-color: #c9c9c9;
}
.social-share li:last-child:after {
  display: none;
}

.comment-submit,
.read-more {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  color: #252525;
  margin-bottom: 45px;
  padding: 9px 20px;
  border: 1px solid #252525;
  line-height: 22px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.comment-submit:hover,
.read-more:hover {
  color: #fff;
  text-decoration: none;
  background-color: #252525;
}

.blog-default .blog-item {
  padding-bottom: 0;
}
.blog-default p {
  font-size: 13px;
}

.border-solid {
  border: 1px solid #cacaca;
}

.masonry {
  position: relative;
  padding-bottom: 0px;
}

.blog-slide {
  position: relative;
  margin-bottom: 40px;
}
.blog-slide img {
  max-width: 100%;
  width: 100%;
}

.slider-item .owl-theme .owl-controls .owl-buttons,
.single-portfolio .owl-theme .owl-controls .owl-buttons,
.single-post .owl-theme .owl-controls .owl-buttons {
  position: absolute;
  bottom: 2px;
  right: 6px;
}

.slider-item .owl-theme .owl-controls .owl-buttons div,
.single-portfolio .owl-theme .owl-controls .owl-buttons div,
.single-post .owl-theme .owl-controls .owl-buttons div {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  line-height: 34px;
}

.sidebar-widget-heading h3 {
  margin: 0 0 20px 0;
  padding: 0 0 11px 0;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  color: #252525;
}

.widget {
  margin-bottom: 79px;
}
.widget:after, .widget:before {
  content: "";
  display: table;
}
.widget:after {
  clear: both;
}
.widget ul {
  margin: 0;
  padding: 0 0 0 0;
  list-style-type: none;
}
.widget ul li {
  padding-left: 15px;
  background: url(../images/sqpurple.jpg) no-repeat 0 22px;
  font-size: 13px;
  line-height: 50px;
  border-bottom: 1px solid #e8e8e8;
}
.widget ul li a {
  display: inline-block;
  color: #696969;
  margin-left: -15px;
  padding-left: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget ul li a:hover {
  color: #5ed9e7;
}
.widget ul li:first-child {
  margin-top: -18px;
}
.widget ul ul {
  margin-left: 15px;
}
.widget ol li {
  background: none;
}

.widget_search {
  position: relative;
}
.widget_search .form-group {
  margin: 0;
}
.widget_search .form-group:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 35px;
  content: "";
  width: 1px;
  height: 27px;
  background-color: #dadada;
}
.widget_search .form-control {
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  border: 1px solid #dbdbdb;
  padding: 10px 20px;
  line-height: 19px;
  font-size: 14px;
  height: auto;
}
.widget_search .form-control:focus {
  border-color: #252525;
}
.widget_search .btn-search {
  cursor: pointer;
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 7px;
  border: 0;
  box-shadow: none;
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
}
.widget_search .btn-search i {
  width: 22px;
  height: 16px;
  margin: 4px 0 0 0;
  padding: 0;
  display: block;
  font-size: 12px;
  color: #252525;
}

.flickr-stream a {
  float: left;
  margin: 0 8px 8px 0;
  position: relative;
}
.flickr-stream a img {
  max-width: 100%;
  width: 100%;
}
.flickr-stream a:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.flickr-stream a:hover:after {
  opacity: 1;
}

@media (min-width: 1200) {
  .flickr-stream a:nth-of-type(3n) {
    margin-right: 0;
  }
}
.widget_tag_cloud .tagcloud a {
  font-size: 13px;
  line-height: 24px;
  color: #7a7a7a;
  position: relative;
}
.widget_tag_cloud .tagcloud a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: -5px;
  content: "";
  width: calc(100% + 10px);
  height: 1px;
  background: #dbdbdb;
}
.widget_tag_cloud .tagcloud a:hover {
  text-decoration: none;
}
.widget_tag_cloud .tagcloud a:hover:after {
  background: #000;
}

.body-post {
  margin-bottom: 100px;
}
.body-post:after, .body-post:before {
  content: "";
  display: table;
}
.body-post:after {
  clear: both;
}
.body-post .dropcap {
  background: #252525;
  font-size: 45px;
  line-height: 65px;
  width: 63px;
  height: 63px;
  display: inline-block;
  float: left;
  margin-right: 15px;
  margin-bottom: 2px;
  text-align: center;
  color: #fff;
}
.body-post p {
  font-size: 13px;
}
.body-post img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 45px;
}
.body-post .blog-slide img {
  margin: 0;
}
.body-post blockquote.quote {
  border: 0;
  border-left: 1px solid #252525;
  margin-left: 25px;
  padding: 20px;
}
.body-post blockquote.quote p {
  font-size: 16px;
}
.body-post .postmeta-tags:after, .body-post .postmeta-tags:before {
  content: "";
  display: table;
}
.body-post .postmeta-tags:after {
  clear: both;
}
.body-post .postmeta-tags .post_meta_tags {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #7a7a7a;
}
.body-post .postmeta-tags .post_meta_tags a {
  color: #7a7a7a;
}

.post-pagination {
  border: 1px solid #e8e8e8;
  border-left: 0;
  border-right: 0;
  padding: 15px 0;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-style: italic;
}
.post-pagination:after, .post-pagination:before {
  content: "";
  display: table;
}
.post-pagination:after {
  clear: both;
}
.post-pagination i {
  font-size: 20px;
  line-height: 22px;
  color: #252525;
}
.post-pagination a {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-style: italic;
}
.post-pagination a:hover {
  color: #5ed9e7;
}
.post-pagination a:hover i {
  color: #5ed9e7;
}
.post-pagination a.pre i {
  float: left;
  margin-right: 7px;
}
.post-pagination a.next i {
  margin-left: 7px;
  float: right;
}

.blog-default ~ .post-pagination {
  border: 0;
  padding-top: 0;
}

#comments {
  margin-bottom: 70px;
}

.commentlist {
  list-style-type: none;
  margin: 65px 0 70px 0;
  padding: 0;
}
.commentlist .children {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: left;
}

.comment {
  position: relative;
  padding-left: 122px;
  padding-bottom: 0;
  min-height: 70px;
  margin-top: 45px;
  margin-bottom: 0;
}
.comment .avatar {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0px;
  left: 0;
}
.comment .comment-text {
  padding-bottom: 35px;
  border-bottom: 1px solid #e8e8e8;
  float: left;
}
.comment .comment-author {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #252525;
  line-height: 24px;
  float: left;
  display: block;
  width: 100%;
}
.comment time {
  display: block;
  font-size: 12px;
  line-height: 24px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  max-width: 300px;
  float: left;
  margin-bottom: 15px;
}
.comment .reply {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 24px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #252525;
}
.comment .reply a {
  color: #252525;
  font-weight: 500;
}
.comment .reply a i {
  margin-right: 5px;
}

.comment-form {
  margin: 60px 0 0 0;
  padding: 0;
}
.comment-form:before, .comment-form:after {
  display: table;
  content: "";
}
.comment-form:after {
  clear: both;
}

.form-item {
  float: left;
  width: 100%;
  max-width: 238px;
  margin-bottom: 30px;
}
.form-item input {
  max-width: 100%;
  width: 100%;
  border: 1px solid #dbdbdb;
  padding: 15px 20px;
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-item input:focus {
  box-shadow: none;
  outline-offset: 0;
  outline: -webkit-focus-ring-color auto 0px;
  border-color: #252525;
  color: #252525;
}
.form-item.comment-form-email {
  margin-left: 27px;
}
.form-item.comment-form-url {
  margin-left: 28px;
}

.form-action {
  float: left;
  width: 100%;
}
.form-action textarea {
  width: 100%;
}

@media (max-width: 1199px) {
  .form-item {
    float: none;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .form-item.comment-form-email {
    margin-left: 0;
  }
  .form-item.comment-form-url {
    margin-left: 0;
  }

  .comment_fields p {
    float: none;
    margin-left: 0;
  }
  .comment_fields p input {
    max-width: 100%;
    width: 100%;
  }
  .comment_fields p.comment-form-email {
    margin-left: 0;
  }
  .comment_fields p.comment-form-url {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .comment {
    padding-left: 0;
  }
  .comment .comment-text {
    float: none;
    padding-left: 122px;
  }
  .comment .comment-author {
    float: none;
    padding-left: 122px;
  }
  .comment time {
    float: none;
    padding-left: 122px;
  }
}
@media (max-width: 992px) {
  .post-pagination {
    margin-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .comment .avatar {
    width: 80px;
    height: 80px;
  }

  .comment .comment-author,
  .comment time {
    padding-left: 90px;
  }

  .comment time {
    margin-bottom: 40px;
  }

  .comment .comment-text {
    padding-left: 0;
  }
}
.comment-form-comment {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.comment-form-comment textarea {
  border: 1px solid #dbdbdb;
  padding: 15px 20px;
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 225px;
}
.comment-form-comment textarea:focus {
  box-shadow: none;
  outline-offset: 0;
  outline: -webkit-focus-ring-color auto 0px;
  border-color: #252525;
  color: #252525;
}

.form-action {
  margin: 0;
}
.form-action input {
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  background: none;
  box-shadow: none;
  margin-bottom: 0;
}

/*
*
*	===================== 6. Contact ====================
*
*/
.contact-wrap {
  padding-top: 30px;
}
.contact-wrap .form-group {
  margin-bottom: 20px;
}
.contact-wrap .form-group label {
  margin-bottom: 9px;
}
.contact-wrap textarea.form-control {
  min-height: 170px;
}
.contact-wrap .form-control {
  padding: 20px;
}
.contact-form {
  margin-bottom: 58px;
}
.contact {
  margin-bottom: 22px;
}
.contact p.info-dsc {
  text-align: center;
  max-width: 800px;
  margin: 0px auto 49px auto;
  padding: 0 20px 20px 20px;
}

.info {
  text-align: center;
  margin-bottom: 70px;
}
.info .info-icon {
  position: relative;
  padding: 10px 10px 8px 10px;
  margin-bottom: 13px;
}
.info .info-icon:after {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 40px;
  height: 0;
  border-bottom: 1px solid #252525;
}
.info .info-icon i {
  color: #252525;
  font-size: 25px;
  line-height: 35px;
}
.info p {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-style: italic;
  color: #252525;
}
.info p a {
  color: #252525;
}

.form-control {
  border: 1px solid #dbdbdb;
  padding: 20px;
}

#map {
  height: 328px;
  margin-bottom: 70px;
  border: 1px solid #dbdbdb;
}
#map img {
  width: auto;
  max-width: none;
}
#map .gm-style-iw h1,
#map .gm-style-iw h2,
#map .gm-style-iw h3,
#map .gm-style-iw h4,
#map .gm-style-iw h5,
#map .gm-style-iw h6 {
  margin-top: 0;
  margin-bottom: 5px;
}

/*
*
*	===================== 7. Services ====================
*
*/
.block-quote {
  background: #252525 url(../images/quote-bg.jpg) repeat top left;
  padding: 0;
  margin-bottom: 62px;
}
.block-quote .overlay {
  background: rgba(0, 0, 0, 0.84);
  padding: 40px 25px 50px 40px;
}
.block-quote .overlay:after {
  display: none;
}
.block-quote blockquote {
  border: 0;
  margin: 0;
  padding-bottom: 0;
  text-align: center;
}
.block-quote blockquote p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  max-width: 800px;
  margin: 30px auto 30px auto;
  color: #fff;
}
.block-quote blockquote footer {
  position: relative;
  padding: 10px 10px 0 10px;
}
.block-quote blockquote footer:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 40px;
  height: 0;
  border-bottom: 1px solid #fff;
}
.block-quote blockquote footer h3 {
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  margin: 10px 0 0px 0;
  letter-spacing: 1px;
}
.block-quote blockquote footer span {
  color: #848484;
  font-size: 12px;
  line-height: 24px;
  font-style: italic;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}
.block-quote blockquote footer span a {
  color: #848484;
}

.block-quote .owl-theme .owl-controls .owl-buttons div {
  color: #575757;
}
.block-quote .owl-theme .owl-controls .owl-buttons div:hover {
  color: #000;
}

.we-worked {
  margin-bottom: 70px;
}

/*
*
*	===================== 8. 404 Page ====================
*
*/
.page-not-found-wrap {
  margin: 106px 0 120px 0;
}

.page-not-found {
  margin: 0 auto 70px auto;
  padding: 4px;
  text-align: center;
  max-width: 510px;
  border: 1px solid #252525;
}
.page-not-found .page-inner {
  padding: 29px;
  border: 1px solid #252525;
}
.page-not-found .page-inner .widget_search {
  margin: 31px auto;
  max-width: 270px;
}
.page-not-found .page-inner p.back-to {
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.page-not-found .page-inner p.back-to a {
  font-weight: 700;
  color: #252525;
}

/*
*
*	===================== 9. Responsive ====================
*
*/
.menu-responsive {
  display: none;
  opacity: 0;
}

.menu-responsive-toggle {
  display: none;
  opacity: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.menu-responsive-container {
  overflow-x: hidden;
}
.menu-responsive-container a {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@media (min-width: 1200px) {
  .container {
    padding: 0px;
  }
}
@media (max-width: 1199px) {
  .slider.owl-carousel.owl-theme .owl-controls .owl-buttons div i, .slider2.owl-carousel.owl-theme .owl-controls .owl-buttons div i {
    font-size: 40px;
  }

  .menu-responsive-container a {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .wrapper {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    -o-transition: -o-transform .3s ease;
    transition: transform .3s ease;
  }
  .wrapper.page-translate {
    -webkit-transform: translateX(-320px);
    -moz-transform: translateX(-320px);
    transform: translateX(-320px);
    overflow: hidden;
  }

  body.menu-slide {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .menu-responsive-container {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    overflow-y: auto;
    background-color: #252525;
    opacity: 1;
  }
  .menu-responsive-container:after {
    /*fixscroll overflow hidden android*/
    content: '';
    display: block;
    position: fixed;
    width: 0; height: 0;
    left: 0; bottom: 0;
  }
  .menu-responsive-container > a {
    display: block;
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    color: #fff;
    width: 320px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    background: #252525;
  }
  .menu-responsive-container.menu-show {
    opacity: 1;
    z-index: 99999;
  }
  .menu-responsive-container.menu-show > a {
    z-index: 99999;
  }

  .menu-nav.menu-responsive {
    display: block;
    opacity: 1;
    visibility: visible;
    margin: 42px 0 0 0;
  }
  .menu-nav.menu-responsive .current {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .menu-responsive-toggle {
    display: block;
    opacity: 1;
    width: 27px;
    margin: 20px auto;
    padding: 5px;
    background: none;
    box-shadow: none;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .header_v2 .menu-responsive-toggle,
  .header-sticky.fixed .menu-responsive-toggle {
    margin: 20px;
    margin-right: 0;
    float: right;
  }
  .header .logo img {
    height: 120px;
  }
  .menu-responsive-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #252525;
    margin-bottom: 2px;
  }
  .menu-responsive-toggle span:last-child {
    margin-bottom: 0;
  }
  .menu-responsive-toggle:hover {
    background-color: #252525;
  }
  .menu-responsive-toggle:hover span {
    background: #fff;
  }

  .logo {
    margin: 0;
  }

  .header {
    padding: 35px 0 0 0;
    background-color: #fff;
  }

  .menu-nav {
    display: none;
    margin: 0;
    padding: 0;
    background-color: #252525;
    text-align: left;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  .menu-nav > li {
    display: block;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    position: static;
  }
  .menu-nav > li:after {
    display: none;
  }
  .menu-nav > li:active {
    background: none;
  }
  .menu-nav > li > a {
    color: #fff;
    display: block;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
  }
  .menu-nav > li > a > i {
    display: none;
  }
  .menu-nav > li > a:after {
    display: none;
  }
  .menu-nav > li > a:active {
    background: none;
  }
  .menu-nav > li > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.05);
  }
  .menu-nav > li.current > a {
    color: #fff;
  }
  .menu-nav > li:hover > a {
    color: #fff;
  }
  .menu-nav > li.menu-dropdown > a {
    position: relative;
  }
  .menu-nav > li.menu-dropdown .menu-toggle-dropdown {
    display: block;
    position: absolute;
    top: auto;
    right: 0;
    width: 50px;
    height: 63px;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    z-index: 9999;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu-nav > li.menu-dropdown .menu-toggle-dropdown i {
    font-size: 20px;
    line-height: 60px;
  }
  .menu-nav > li.menu-dropdown .menu-toggle-dropdown:hover {
    background-color: #5ED9E7;
    color: #fff;
  }
  .menu-nav.menu-nav.menu-responsive.menu-state {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .dropdown {
    list-style-type: none;
    margin: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    text-align: left;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 100%;
    margin-left: 0;
    overflow-y: auto;
    background-color: #252525;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #252525;
    overflow-x: hidden;
  }
  .dropdown > li:active, .dropdown > li:focus {
    background: transparent;
  }
  .dropdown > li > a {
    display: block;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    text-transform: uppercase;
  }
  .dropdown > li > a:after {
    content: "";
    position: absolute;
    left: -100%;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .dropdown > li > a:active, .dropdown > li > a:focus {
    background-color: transparent;
  }
  .dropdown > li > a:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
  }
  .dropdown > li > a:link, .dropdown > li > a:link:active, .dropdown > li > a:visited, .dropdown > li > a:visited:active {
    background: transparent;
  }
  .dropdown > li.current, .dropdown > li:hover {
    background: transparent;
  }
  .dropdown > li.current > a, .dropdown > li:hover > a {
    background: transparent;
  }
  .dropdown > li:hover {
    background: transparent;
  }
  .dropdown > li.back-item {
    padding-top: 42px;
  }
  .dropdown > li.back-item a.back-item-text {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.01);
  }
  .dropdown:after {
    display: none;
  }
  .dropdown.dropdown-active {
    visibility: visible;
    opacity: 1;
    z-index: 99998;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .header_v2 nav {
    float: none;
    display: block;
  }

  .title-inner .title-border .title-heading {
    line-height: 30px;
  }

  .count-to, .project-count {
    padding: 30px 0;
  }

  .overlay {
    padding: 66px 30px;
  }

  .post-box-content {
    margin-bottom: 30px;
  }

  .masonry {
    padding-bottom: 0;
  }

  .team-title-content {
    background-size: cover;
  }

  .body-post {
    margin-bottom: 25px;
  }

  .blog-wrap {
    padding-bottom: 0px;
  }

  .head-title {
    padding: 18px 20px;
  }

  .about-title {
    margin: 20px 0;
  }

  .equal-height {
    margin-bottom: 10px;
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .about-title {
    text-align: center;
  }

  .more-about-us {
    display: inline-block;
    margin: 0 auto;
    left: 50%;
    right: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .work-item .item-inner {
    margin: 15px 15px 0 15px;
  }
}
@media (max-width: 767px) {
  .blog-wrap {
    padding: 0;
  }

  .single-portfolio {
    padding-top: 10px;
  }

  .page-not-found-wrap {
    margin: 10px 0;
  }
}
@media (max-width: 479px) {
  .blog-item .blog-meta .meta-data {
    margin-right: 10px;
  }
  .blog-item .blog-meta .share-wrap {
    float: left;
  }
  #map {
    height: 250px;
  }
}
/* Fix background cover safari */
@media only screen and (orientation: portrait) and (device-width: 320px), (device-width: 768px) {
  .title-inner, .block-quote, .team-title-content {
    -webkit-background-size: auto 100% !important;
    background-size: auto 100% !important;
    background-attachment: scroll !important;
  }
}
@media only screen and (orientation: landscape) and (device-width: 320px), (device-width: 768px) {
  .title-inner, .block-quote, .team-title-content {
    -webkit-background-size: 100% auto !important;
    background-size: 100% auto !important;
    background-attachment: scroll !important;
  }
}
/*
*
*	===================== 10. Footer ====================
*
*/
.logo-footer {
  text-align: center;
}
.logo-footer > a {
  display: inline-block;
}
.logo-footer .head-title {
  font-size: 12px;
  font-weight: 500;
  color: #252525;
  padding: 20px 25px 20px 25px;
}

.social-link {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.social-link li {
  margin: 5px 12px;
  display: inline-block;
  font-size: 18px;
}
.social-link li a {
  display: block;
  color: #252525;
  position: relative;
}
.social-link li a:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 0px;
  border-bottom: 1px solid #252525;
  -webkit-transform: scaleX(0.0);
  -ms-transform: scaleX(0.0);
  -o-transform: scaleX(0.0);
  transform: scaleX(0.0);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.social-link li a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.f-title i {
  font-size: 22px;
  color: #252525;
}
.f-title a {
  display: block;
  margin: 0 auto 20px auto;
  padding: 5px;
  font-size: 12px;
  color: #252525;
  line-height: 15px;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
}
.f-title a:after {
  margin: auto;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  content: "";
  width: 40px;
  height: 0px;
  border-bottom: 1px solid #252525;
}
.f-title a:hover {
  text-decoration: none;
}

.twitter {
  padding: 0 15px;
  position: relative;
}
.twitter p {
  font-size: 13px;
  margin-bottom: 0;
}
.twitter a {
  color: #000;
}
.twitter:after, .twitter:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #d0d0d0;
}
.twitter:before {
  left: -15px;
}
.twitter:after {
  right: -15px;
}

.equal-height {
  padding: 29px 0px;
  min-height: 248px;
}

@media (max-width: 992px) {
  .twitter {
    border: 0;
  }
  .twitter:before, .twitter:after {
    display: none;
  }

  .equal-height {
    margin-bottom: 10px;
  }
}
.slider2 {
  margin-top: 28px;
}
.slider2 .owl-item .item {
  margin-right: 3px;
  margin-left: 3px;
}
.slider2 .owl-item .item a {
  display: block;
}
.slider2 .owl-item .item a img {
  max-width: 100%;
  width: 100%;
}
.slider2.owl-theme .owl-controls {
  margin-top: 10px;
}

.footer-info {
  padding: 38px 0 18px 0;
}

.footer .slider.owl-theme .owl-controls {
  margin-top: 25px;
}

.copy-right p {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-style: italic;
  padding: 30px 30px;
  margin: 0;
}
