/*
	South - HTML Template
	Copyright 2015, Rodbor
	www.themenom.com
	
	Contents
	
	01. Generic styles
	02. Typography
	03. Buttons
	04. Headers elements
	05. Navigation
	06. Intro
	07. Work
	08. Services
	09. Separators
	10. About
	11. Latest news
	12. Contact
	13. Single project
	14. Blog
	15. 404 Page
	16. Style tile
	17. Media queries
*/
/* 01. Generic styles -------------------------------------------------- */
body {
  overflow-x: hidden; }

.action {
  text-align: center;
  margin: 100px 0 70px 0;
  padding: 50px 0;
  background: #7ee7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjN2VlN2Q3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDYlIiBzdG9wLWNvbG9yPSIjN2ZkZWQ5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg2YTdlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #7ee7d7), color-stop(46%, #7fded9), color-stop(100%, #86a7e2));
  background: -webkit-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -o-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -ms-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ee7d7', endColorstr='#86a7e2',GradientType=1 ); }
  .action p {
    color: #2c2c2c;
    font-size: 36px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0 0 0; }
  .action a {
    display: inline-block; }
  .action .btn {
    margin: 0 0 15px 40px; }

.float-right {
  float: right; }

.nopadding {
  padding: 0; }

.nopadding-right {
  padding-right: 0; }

.nopadding-left {
  padding-left: 0; }

.spacer {
  margin-bottom: 94px; }

.white-bg {
  background: #fff; }

.row-centered {
  text-align: center; }

.col-centered {
  display: inline-block;
  float: none;
  /* reset the text-align */
  text-align: left;
  /* inline-block space fix */
  margin-right: -4px; }

/* 02. Typography -------------------------------------------------- */
body, p, a, h2, h3, h4, h5 {
  font-family: 'Open Sans', sans-serif; }

h1, h2, h3, h4, h5 {
  color: #2c2c2c; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 700; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 700; }

h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase; }

h4 {
  font-size: 22px;
  font-weight: 700; }

h5 {
  font-size: 22px;
  font-weight: 700; }

p {
  font-size: 16px;
  line-height: 1.68em;
  color: #4c4c4c; }

a {
  color: #7ee6d7;
  transition: color 0.3s;
  -webkit-transtion: color 0.3s; }
  a:hover {
    color: #2c2c2c;
    text-decoration: underline; }

.semibold {
  font-weight: 600; }

/* 03. Buttons -------------------------------------------------- */
.btn {
  text-transform: uppercase; }

.btn-default {
  font-size: 11px;
  font-weight: 700;
  border-radius: 22px;
  border-color: #2c2c2c;
  padding: 10px 28px;
  transition: background 0.3s;
  -webkit-transtion: background 0.3s; }
  .btn-default:hover {
    background: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c; }

.btn-2 {
  border: 2px solid #7ee6d7; }
  .btn-2:hover {
    background: #7ee6d7;
    color: #fff;
    border-color: #7ee6d7; }

.btn-3 {
  background: #fff;
  border-color: #fff; }

.btn-4 {
  color: #fff;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  background: #7ee7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjN2VlN2Q3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDYlIiBzdG9wLWNvbG9yPSIjN2ZkZWQ5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg2YTdlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #7ee7d7), color-stop(46%, #7fded9), color-stop(100%, #86a7e2));
  background: -webkit-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -o-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -ms-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ee7d7', endColorstr='#86a7e2',GradientType=1 ); }

/* 04. Navigation -------------------------------------------------- */
/***** nav style 1 *****/
.navbar-default {
  background: transparent;
  border: none;
  margin-top: 20px; }
  .navbar-default .navbar-brand {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase; }
  .navbar-default .navbar-nav > li > a {
    color: #a9a8a8;
    font-size: 13px;
    font-weight: 600; }
    .navbar-default .navbar-nav > li > a:hover {
      color: #fff; }
  .navbar-default li {
    padding-top: 7px; }

ul.nav.navbar-nav.navbar-right {
  margin-right: 20px; }

a.navbar-brand {
  color: #fff;
  padding-top: 22px; }

.navbar > .container > div.nav-style-1 {
  background: #2c2c2c;
  padding-left: 28px;
  min-height: 62px; }

.nav-1.navbar-default .navbar-nav > .open > a, .nav-1.navbar-default .navbar-nav > .open > a:focus, .nav-1.navbar-default .navbar-nav > .open > a:hover {
  background: #2c2c2c;
  color: #fff; }

.dropdown-menu {
  background: #fff;
  border-color: #c7c7c7;
  border-radius: 0;
  padding-bottom: 10px;
  top: 62px;
  box-shadow: none;
  -webkit-box-shadow: none; }

.dropdown-menu > li > a {
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 600; }
  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #2c2c2c; }

.navbar-toggle {
  border: none;
  border-radius: 0;
  margin-top: 16px; }
  .navbar-toggle .icon-bar {
    background: #fff !important;
    width: 24px;
    border-radius: 0; }

.nav-shadow {
  width: 97%;
  height: 7px;
  margin: 0 auto;
  background: #7ee7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdlZTdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ2JSIgc3RvcC1jb2xvcj0iIzdmZGVkOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4NmE3ZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #7ee7d7), color-stop(46%, #7fded9), color-stop(100%, #86a7e2));
  background: -webkit-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -o-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -ms-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: linear-gradient(to right, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ee7d7', endColorstr='#86a7e2',GradientType=1 ); }

/***** nav style 2 *****/
.nav-2 {
  margin-top: 40px;
  position: fixed;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000; }
  .nav-2 a.logo {
    color: #2c2c2c;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase; }
  .nav-2 .menu-btn {
    font-size: 28px; }
    .nav-2 .menu-btn:hover {
      cursor: pointer; }

/***** nav style 3 *****/
.nav-3 {
  padding-left: 28px;
  min-height: 62px;
  background: #7ee7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdlZTdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ2JSIgc3RvcC1jb2xvcj0iIzdmZGVkOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4NmE3ZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #7ee7d7), color-stop(46%, #7fded9), color-stop(100%, #86a7e2));
  background: -webkit-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -o-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -ms-linear-gradient(left, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: linear-gradient(to right, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ee7d7', endColorstr='#86a7e2',GradientType=1 ); }
  .nav-3 a {
    color: #2c2c2c !important; }

.nav-3-style.navbar-default .navbar-nav > .open > a, .nav-3-style.navbar-default .navbar-nav > .open > a:focus, .nav-3-style.navbar-default .navbar-nav > .open > a:hover {
  background: #fff;
  color: #2c2c2c; }

/* 05. Homepage -------------------------------------------------- */
.intro {
  text-align: center;
  height: 800px;
  margin-top: 120px;
  padding: 40px;
  background: #7ee7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjN2VlN2Q3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDYlIiBzdG9wLWNvbG9yPSIjN2ZkZWQ5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg2YTdlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #7ee7d7), color-stop(46%, #7fded9), color-stop(100%, #86a7e2));
  background: -webkit-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -o-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: -ms-linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  background: linear-gradient(45deg, #7ee7d7 0%, #7fded9 46%, #86a7e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ee7d7', endColorstr='#86a7e2',GradientType=1 ); }

.intro-frame {
  border: 1px solid #2c2c2c;
  width: 100%;
  height: 100%; }

.intro-letter {
  font-size: 700px;
  font-weight: 700;
  line-height: 700px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(transparent, transparent), url(../images/letter-bg.jpg) repeat;
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text; }

svg {
  height: 100%;
  width: 100%; }

.intro-content {
  text-align: center;
  margin-bottom: 60px; }

p.intro-large {
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 40px 0 25px 0; }

ul.social-icons {
  margin-top: 35px; }
  ul.social-icons a {
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    width: 28px;
    height: 28px;
    padding-top: 6px;
    display: block;
    transition: background 0.3s;
    -webkit-transtion: background 0.3s; }
    ul.social-icons a:hover {
      background: #7ee6d7; }
  ul.social-icons i {
    font-size: 18px; }

/***** Homepage video *****/
.intro-video {
  text-align: center;
  margin-top: 120px;
  height: 800px; }

/* 06. Pages -------------------------------------------------- */
body.page {
  background: #f4f4f4; }

.page-intro {
  background: #fff;
  padding: 200px 0 40px 0;
  margin: 0 auto; }
  .page-intro h1 {
    float: left;
    padding-right: 50px; }
  .page-intro p {
    font-size: 18px;
    margin-top: 161px;
    display: block; }

/* 07. Work -------------------------------------------------- */
/** Work style 1 **/
.work-1-preview {
  position: relative;
  margin-top: 100px; }
  .work-1-preview img {
    -webkit-box-shadow: 10px 10px 0 0 #7ee6d7;
    box-shadow: 10px 10px 0 0 #7ee6d7; }
  .work-1-preview .right {
    right: 0; }
  .work-1-preview .left {
    left: 0; }

.work-1-info {
  background: #fff;
  width: 245px;
  padding: 40px 40px 30px 40px;
  position: absolute;
  z-index: 1;
  top: 140px; }
  .work-1-info .btn {
    margin-top: 10px; }

p.work-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  text-transform: uppercase;
  color: #2c2c2c; }
  p.work-title::after {
    background-color: #7ee6d7;
    content: "";
    height: 2px;
    width: 40px;
    display: block;
    margin: 16px 0 18px 0; }

/** Work style 2 **/
.page-content.work-2 {
  padding-top: 110px; }

.work-2-info {
  background: #fff;
  text-align: center;
  margin-bottom: 30px;
  padding: 30px; }
  .work-2-info p.work-title::after {
    margin-left: auto;
    margin-right: auto; }
  .work-2-info .btn {
    margin-top: 15px; }

/** Work style 3 **/
.page-content.work-3 {
  padding-top: 75px; }

.work-grid {
  padding: 0;
  list-style: none;
  position: relative;
  width: 100%; }

.work-grid li {
  position: relative;
  float: left;
  overflow: hidden;
  width: 33.3333333%;
  /* Fallback */
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3); }

.work-grid li a,
.work-grid li a img {
  display: block;
  width: 100%;
  cursor: pointer; }

.work-grid li a img {
  max-width: 100%; }

.work-grid li a div {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(126, 230, 215, 0.7);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-transtion: opacity 0.3s; }

.work-grid li a:hover div {
  opacity: 1; }

.work-grid li a div h3 {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4em;
  letter-spacing: 2px;
  padding: 0 10px; }

@media screen and (max-width: 1190px) {
  .work-grid li {
    width: 33.3333333%;
    /* Fallback */
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3); } }
@media screen and (max-width: 945px) {
  .work-grid li {
    width: 33.3333333%;
    /* Fallback */
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3); } }
@media screen and (max-width: 660px) {
  .work-grid li {
    width: 33.3333333%;
    /* Fallback */
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3); } }
@media screen and (max-width: 660px) {
  .work-grid li {
    width: 50%;
    /* Fallback */
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2); } }
@media screen and (max-width: 400px) {
  .work-grid li {
    width: 100%; } }
@media screen and (max-width: 300px) {
  .work-grid li {
    width: 100%; } }
/* 08. Single work -------------------------------------------------- */
.single-work .action {
  margin-top: 50px; }

.single-work-header {
  margin-top: 200px; }
  .single-work-header p {
    color: #2c2c2c; }
  .single-work-header hr {
    border-top: 2px solid #2c2c2c;
    margin-top: -30px; }

p.single-work-title {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 700; }

p.single-work-number {
  font-size: 40px;
  font-weight: 700;
  text-align: right;
  margin-top: 80px; }

.single-work-info {
  margin-bottom: 50px; }
  .single-work-info p {
    color: #2c2c2c;
    margin-bottom: 0; }

.single-work-content img, .single-work-content p {
  margin-bottom: 40px; }

/* 09. About -------------------------------------------------- */
.page-content.about h5 {
  margin: 0 0 25px 0; }

.side-title {
  color: #2c2c2c;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  writing-mode: lr-tb;
  position: absolute;
  top: 200px;
  left: -330px;
  width: 500px;
  text-align: right; }

.who-we-are {
  margin: 130px 0;
  position: relative; }

.what-we-do {
  margin: 150px 0 80px 0;
  position: relative; }

.service {
  background: #f4f4f4;
  width: 100%;
  height: 300px;
  display: table;
  margin-bottom: 60px; }

.serv-img {
  width: 100%;
  height: 300px; }

.serv-1-img {
  background: url(../images/about-1-4.jpg) no-repeat;
  background-size: cover; }

.serv-2-img {
  background: url(../images/about-1-5.jpg) no-repeat;
  background-size: cover; }

.serv-3-img {
  background: url(../images/about-1-6.jpg) no-repeat;
  background-size: cover; }

.serv-4-img {
  background: url(../images/about-1-7.jpg) no-repeat;
  background-size: cover; }

.service-info {
  background: #f4f4f4;
  padding: 20px 30px 0 30px;
  margin-bottom: 60px;
  height: 300px; }
  .service-info h3 {
    margin-bottom: 20px; }
  .service-info p {
    margin-bottom: 0; }

p.service-number {
  color: #7ee6d7;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0; }

.how-we-do {
  margin: 150px 0;
  position: relative; }

.diagram-1 {
  margin: 40px 0 80px 0; }

.diagram-bar-bg {
  background: #e7e7e7;
  width: 100%;
  height: 56px;
  margin-top: 6px; }

.diagram-bar {
  background: #7ee6d7;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  height: 56px;
  margin-top: -56px;
  padding-top: 17px;
  padding-left: 24px; }

.bar-1 {
  width: 20%; }

.bar-2 {
  width: 15%;
  margin-left: 18%; }

.bar-3 {
  width: 43%;
  margin-left: 32%; }

.bar-4 {
  width: 15%;
  margin-left: 75%; }

.bar-5 {
  width: 10%;
  margin-left: 90%; }

.diagram-2 {
  position: relative; }

.diagram-circle {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding-top: 95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  position: absolute; }

.circle-1 {
  background: #535353;
  opacity: 0.85;
  top: 0;
  left: 0;
  z-index: 1; }

.circle-2 {
  background: #969696;
  top: 0;
  left: 150px; }

.circle-3 {
  background: #535353;
  opacity: 0.85;
  top: 0;
  left: 0;
  z-index: 1; }

.circle-4 {
  background: #969696;
  top: 0;
  left: 150px; }

.our-team {
  position: relative;
  margin: 150px 0 0 0; }
  .our-team img {
    margin-bottom: 80px;
    -webkit-box-shadow: 10px 10px 0 0 #7ee6d7;
    box-shadow: 10px 10px 0 0 #7ee6d7; }

.team-member, .team-member-2 {
  background: #f4f4f4;
  width: 300px;
  position: absolute;
  padding: 30px 40px 30px 40px;
  top: 12%; }

.team-member {
  right: 15px; }

.team-member-2 {
  left: 15px; }

p.team-member-name {
  color: #2c2c2c;
  font-size: 26px;
  font-weight: 700;
  margin: 0; }

p.team-member-position {
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; }

.testimonials {
  position: relative;
  margin: 150px 0 0 0; }
  .testimonials img {
    margin-bottom: 180px; }

.testimonial-text {
  background: #fff;
  padding: 40px 50px 20px 55px;
  width: 460px;
  position: absolute;
  top: 60px;
  right: 15px; }
  .testimonial-text span {
    color: #7ee6d7;
    font-size: 70px;
    top: 0;
    left: 20px;
    position: absolute; }

p.testimonial-author {
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 700; }

/***** about 2 *****/
.about2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 75px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px; }
.about2 p.sub-header {
  font-size: 20px;
  text-align: center;
  margin-bottom: 80px; }
.about2 .testimonial-text {
  background: #f4f4f4; }

.about-me {
  background: #f4f4f4;
  margin: 120px 0 60px 0; }

.about-me-content {
  background: #fff;
  padding: 50px;
  position: relative;
  top: -50px; }
  .about-me-content ul.social-icons {
    text-align: center; }

p.about-me-title {
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px; }

/* 08. Blog -------------------------------------------------- */
/***** blog style 1 *****/
.blog {
  padding: 120px 0; }

.post-content {
  background: #fff;
  padding: 45px 65px;
  margin-bottom: 90px; }
  .post-content hr {
    border-top: 2px solid #e9e9e9;
    margin-bottom: 35px; }

p.post-date {
  color: #b6b6b6;
  font-size: 14px;
  margin-bottom: 0; }

p.post-title {
  color: #2c2c2c;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4em; }

a.read-more {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  display: block; }

.blog-nav {
  background: #7ee6d7;
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  transition: opacity 0.3s;
  -webkit-transtion: opacity 0.3s; }
  .blog-nav i {
    font-size: 16px;
    margin: 0 7px; }
  .blog-nav:hover {
    text-decoration: none;
    opacity: 0.75; }

a.prev {
  color: #18b79f; }

.next {
  margin-left: -2px; }

/***** blog style 2 *****/
.post-2-content {
  background: #fff;
  padding: 20px 50px 45px 50px;
  margin-bottom: 90px; }
  .post-2-content hr {
    border-top: 2px solid #e9e9e9;
    margin-bottom: 30px; }

p.post-2-title {
  color: #2c2c2c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em; }

/***** blog style 3 *****/
.blog-grid {
  padding: 0;
  list-style: none;
  position: relative;
  width: 100%; }

.blog-grid li {
  color: #2c2c2c;
  background: #fff;
  padding: 35px 45px 45px 45px;
  position: relative;
  float: left;
  overflow: hidden;
  width: 33.3333333%;
  /* Fallback */
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3); }
  .blog-grid li a, .blog-grid li p {
    color: #2c2c2c; }
  .blog-grid li hr {
    border-top: 2px solid #2c2c2c; }
  .blog-grid li:last-child {
    margin-bottom: 80px; }

p.post-3-date {
  font-size: 14px;
  font-weight: 600; }

p.post-3-title {
  font-size: 26px;
  font-weight: 700; }

li.grid-color {
  background: #7ee6d7; }

@media screen and (max-width: 1190px) {
  .blog-grid li {
    width: 33.3333333%;
    /* Fallback */
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3); } }
@media screen and (max-width: 945px) {
  .blog-grid li {
    width: 50%;
    /* Fallback */
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2);
    margin-bottom: 30px; } }
@media screen and (max-width: 660px) {
  .blog-grid li {
    width: 33.3333333%;
    /* Fallback */
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3); } }
@media screen and (max-width: 660px) {
  .blog-grid li {
    width: 50%;
    /* Fallback */
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2); } }
@media screen and (max-width: 400px) {
  .blog-grid li {
    width: 100%; } }
@media screen and (max-width: 300px) {
  .blog-grid li {
    width: 100%; } }
/* 09. Single post -------------------------------------------------- */
body.single-post {
  background: #fff; }

.single-post-intro {
  background: url(../images/single-post-intro.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 600px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.single-post-intro-title {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

p.single-post-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 90px; }

p.single-post-author {
  color: #fff;
  font-size: 18px;
  font-weight: 600; }

.single-post-content {
  background: #fff;
  padding-bottom: 70px;
  margin-bottom: 60px; }
  .single-post-content p, .single-post-content img {
    margin-bottom: 30px; }
  .single-post-content img {
    margin-left: auto;
    margin-right: auto; }
  .single-post-content hr {
    margin: 20px 0 50px 0; }

.color-bar {
  background: #7ee6d7;
  width: 100%;
  height: 6px;
  margin-bottom: 50px; }

p.post-headline {
  color: #2c2c2c;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.45em;
  margin-bottom: 35px; }

p.blog-quote {
  color: #2c2c2c;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 48px; }
  p.blog-quote span {
    color: #7ee6d7;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    position: absolute;
    top: 20px;
    left: 0; }

a.share {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 2px solid #7ee6d7;
  transition: background 0.3s;
  -webkit-transtion: background 0.3s; }
  a.share:hover {
    background: #7ee6d7;
    color: #fff;
    text-decoration: none; }
  a.share i {
    margin-right: 6px; }

/***** comments *****/
.comments {
  background: #f4f4f4;
  padding-bottom: 90px; }
  .comments h3 {
    text-align: center;
    margin-bottom: 50px; }
  .comments img {
    margin-bottom: 65px; }

a.comment-link {
  font-size: 14px;
  font-weight: 700;
  margin: 7px 0 0 0;
  display: block; }

p.comment-author {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 6px; }
  p.comment-author span {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    margin-left: 7px; }

/* 10. Contact -------------------------------------------------- */
body.contact-page footer {
  margin-top: -30px;
  margin-bottom: 0;
  position: relative;
  z-index: 2; }

.contact {
  position: relative;
  overflow: hidden; }

.contact-image, .contact-content {
  display: inline-block;
  height: 100%;
  width: 50%;
  position: relative;
  margin: 0; }

.contact-image {
  background: url(../images/contact-img.jpg) no-repeat;
  background-size: cover;
  height: 100vh;
  vertical-align: top; }

.contact-content {
  padding: 60px 0 100px 20px; }

.contact-info {
  margin-bottom: 60px; }
  .contact-info li {
    border-left: 1px solid #bfbfbf;
    position: relative;
    padding: 0 0 10px 20px;
    margin: 0 0 30px 25px; }
  .contact-info p.side-title-small {
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    width: 90px;
    position: absolute;
    top: 30px;
    left: -62px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    writing-mode: lr-tb; }
  .contact-info p.semibold {
    color: #2c2c2c; }

.contact-form-1 {
  padding-right: 50px; }

.contact .btn, .contact2 .btn {
  margin-top: 20px; }

p.contact-subtitle {
  color: #2c2c2c;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px; }

.contact2 {
  margin-bottom: 80px; }
  .contact2 .contact-info {
    text-align: center;
    margin: 80px 0 60px 0; }
  .contact2 li {
    text-align: left;
    margin: 0 40px;
    vertical-align: top; }
  .contact2 p.contact-subtitle {
    text-align: center; }

/* 11. Footer -------------------------------------------------- */
footer {
  background: #e7e7e7;
  padding: 25px 0 10px 30px;
  margin-bottom: 50px; }
  footer p {
    color: #5d5d5d;
    font-size: 12px; }

p.footer-email {
  text-align: right;
  padding-right: 30px; }

/* 12. Typography & Elements pages -------------------------------------------------- */
.typography-page {
  margin-top: 150px; }
  .typography-page section {
    margin-bottom: 85px; }
  .typography-page h1, .typography-page h2 {
    margin-bottom: 30px; }
  .typography-page h3, .typography-page h4 {
    margin-bottom: 20px; }

mark {
  background: #7ee6d7; }

blockquote {
  border-color: #7ee6d7; }

body.elements-page .nav-2 {
	top: 0;
}

p.section-title {
  background: #a5a5a5;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 30px;
  margin-bottom: 90px; }

/***** pricing tables *****/
.pricing-table {
  text-align: center;
  padding: 30px; }
  .pricing-table hr {
    border-top: 2px solid #7ee6d7;
    width: 150px;
    margin: 0 auto 35px auto; }
  .pricing-table ul {
    color: #6a6a6a;
    font-size: 18px; }
  .pricing-table li {
    margin-bottom: 7px; }
  .pricing-table .btn {
    margin-top: 30px; }

.pt-1, .pt-3 {
  border: 2px solid #dedede; }

p.pt-title {
  color: #7ee6d7;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0; }

p.pt-price {
  color: #2c2c2c;
  font-size: 72px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 15px; }
  p.pt-price span {
    font-size: 18px;
    font-size: 600;
    text-transform: uppercase; }

.pt-2 {
  background: #7ee6d7; }
  .pt-2 p, .pt-2 ul {
    color: #fff; }
  .pt-2 hr {
    border-color: #fff; }
  .pt-2 btn {
    border-color: #fff; }

.pt-3 p.pt-title {
  color: #ff6864; }
.pt-3 hr, .pt-3 .btn {
  border-color: #ff6864; }
.pt-3 .btn:hover {
  background: #ff6864; }

.buttons ul {
  text-align: center; }
.buttons li {
  padding: 10px 15px;
  margin-right: 25px; }
.buttons li.dark-bg {
  background: #a5a5a5; }

/***** navs *****/
.navs p.section-title {
  margin-bottom: 30px; }
.navs .nav-2 {
  position: relative; }
.navs .navbar, .navs nav-2 {
  margin-bottom: 50px; }

/***** forms *****/
.form-control {
  background: none;
  border-color: #757575;
  border-radius: 0;
  box-shadow: none; }

input {
  height: 44px;
  padding-left: 10px;
  margin-bottom: 20px; }

textarea {
  border-color: #757575; }

/***** tables *****/
.table-striped > tbody > tr:nth-of-type(odd) {
  background: #b9fff5; }

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  border: none;
  padding: 12px 8px; }

.table-bordered {
  border-color: #7ee6d7; }

/* 13. 404 page -------------------------------------------------- */
.page-404-letter {
  font-size: 340px;
  line-height: 340px;
  margin-top: 145px;
  margin-bottom: 50px; }

.page-404 {
  margin-bottom: 30px; }
  .page-404 p {
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px; }

/* 14. Coming soon -------------------------------------------------- */
.page-coming-soon {
  margin: 0;
  height: 100vh;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }
  .page-coming-soon input {
    background: #fff;
    border: none;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block; }
  .page-coming-soon .btn {
    display: inline-block;
    margin-left: 20px; }
  .page-coming-soon p {
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 600;
    margin: 50px 0 25px 0; }
  .page-coming-soon ul {
    margin-top: 50px; }

.page-coming-soon-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.coming-soon-letter {
  font-size: 120px;
  line-height: 120px; }

/* 15. Media queries -------------------------------------------------- */
@media only screen and (max-width: 1335px) {
  .side-title {
    line-height: 1.2em;
    text-align: center;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    writing-mode: lr-tb;
    top: 0;
    left: auto;
    margin-bottom: 70px;
    width: auto;
    position: relative; } }
@media only screen and (max-width: 1200px) {
  .work-1-info {
    top: 0; }

  .work-2-info {
    padding: 10px 15px 10px 15px;
    height: auto; }
    .work-2-info p.work-title::after {
      margin-top: 7px;
      margin-bottom: 5px; }

  .single-work hr {
    margin: 0 0 30px 0; }

  .diagram-bar {
    font-size: 16px; }

  .diagram-circle {
    width: 150px;
    height: 150px;
    padding-top: 70px; }

  .circle-2 {
    left: 100px; }

  .team-member, .team-member-2 {
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    width: 100%;
    margin-bottom: 40px; }

  .our-team img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; }
  .our-team .float-right {
    float: none; }

  .testimonials img {
    margin-bottom: 0; }

  .testimonial-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    margin-bottom: 50px; }

  .post-content {
    height: auto; }

  body.contact-page h1, body.contact-page2 h1 {
    font-size: 150px;
    padding-right: 30px; }
  body.contact-page .page-intro p, body.contact-page2 .page-intro p {
    margin-top: 110px; }

  .buttons li {
    margin: 0 10px 30px 10px; } }
@media only screen and (max-width: 1000px) {
  .page-intro h1 {
    float: none; }
  .page-intro p {
    margin: 0; } }
@media only screen and (max-width: 992px) {
  .work-2-info p.work-title {
    padding-top: 70px; }

  .who-we-are img {
    margin-bottom: 30px; }
  .who-we-are .spacer {
    margin-bottom: 40px; }

  .how-we-do {
    padding-bottom: 100px; }

  .diagram-bar {
    font-size: 13px;
    padding-left: 10px; }

  .diagram-circle {
    margin-top: 30px; }

  .blog-1 img {
    display: none; }

  .single-post-intro {
    height: 400px; }

  p.single-post-title {
    font-size: 60px; }

  p.post-headline {
    font-size: 24px; }

  body.contact-page .page-intro p, body.contact-page2 .page-intro p {
    margin-top: 20px; }

  .contact2 li {
    margin: 0 20px; }

  .pricing-table {
    margin-bottom: 50px; } }
@media only screen and (max-width: 768px) {
  .intro-letter {
    font-size: 570px; }

  h1 {
    font-size: 150px; }

  .work-1-info {
    position: relative;
    width: 100%;
    text-align: center; }

  p.work-title::after {
    margin-left: auto;
    margin-right: auto; }

  .work-1-preview .float-right {
    float: none; }

  .work-2 img {
    text-align: center;
    margin-left: auto;
    margin-right: auto; }

  .circle-3 {
    left: 270px; }

  .circle-4 {
    left: 370px; }

  .blog-2 img {
    display: none; }

  .single-work-content img {
    text-align: center;
    margin-left: auto;
    margin-right: auto; }

  .page-404-letter {
    font-size: 200px; }

  .coming-soon-letter {
    font-size: 100px; } }
@media only screen and (max-width: 700px) {
  p.single-work-title {
    font-size: 70px;
    line-height: 1em; }

  p.single-work-number {
    margin-top: 20px; }

  .bar-1, .bar-2, .bar-3, .bar-4, .bar-5 {
    margin-left: 0; }

  .contact-form-1 {
    padding-right: 20px; }

  body.contact-page h1, body.contact-page2 h1 {
    font-size: 100px; }
  body.contact-page .page-intro p, body.contact-page2 .page-intro p {
    margin-top: 20px; }

  .contact2 li {
    margin: 0 20px 40px 20px; } }
@media only screen and (max-width: 590px) {
  .intro {
    height: 600px; }

  .page-404 {
    height: 800px; }

  .action .btn {
    margin: 20px auto 0 auto;
    display: block;
    width: 120px; }

  p.side-title {
    font-size: 40px; } }
@media only screen and (max-width: 530px) {
  .intro-frame {
    border: none; }

  .intro-letter {
    font-size: 400px;
    line-height: 400px; }

  h1 {
    font-size: 100px; }

  p.single-work-title {
    font-size: 50px; }

  p.single-work-number {
    font-size: 35px;
    margin-top: 0; }

  .how-we-do {
    padding-bottom: 300px; }

  .circle-3 {
    left: 0;
    top: 200px; }

  .circle-4 {
    left: 100px;
    top: 200px; }

  .about2 h2 {
    font-size: 60px; }

  .about-me-content {
    padding: 20px; }

  .post-content {
    padding: 35px; }

  p.post-title {
    font-size: 40px; }

  p.single-post-title {
    font-size: 40px;
    line-height: 1.2em; }

  .contact-image {
    display: none; }

  .contact-content {
    width: 100%; }

  .page-404-letter {
    font-size: 180px; }

  .coming-soon-letter {
    font-size: 70px;
    line-height: 1.2em; } }
@media only screen and (max-width: 450px) {
  .intro, .intro-video {
    height: 450px; }

  .intro-letter {
    font-size: 300px;
    line-height: 300px; }

  h1 {
    font-size: 80px; }

  p.single-work-title {
    font-size: 35px; }

  p.single-work-number {
    font-size: 25px; }

  .about2 h2 {
    font-size: 40px; }

  .post-content {
    padding: 10px; }

  body.contact-page h1, body.contact-page2 h1 {
    font-size: 70px; }

  .contact-form-1 {
    padding-right: 5px; }

  .page-404-letter {
    font-size: 100px;
    line-height: 100px;
    margin-top: 130px; }

  .page-404 p {
    font-size: 18px; } }
@media only screen and (max-width: 320px) {
  h1 {
    font-size: 60px; }

  .serv-img {
    display: none; }

  .page-404-letter {
    margin-top: 100px; }

  .coming-soon-letter {
    font-size: 50px;
    line-height: 1em; } }