/*------------------------------------------------------------------

Theme Name: The Copywriter
Description: "The Copywriter" is Simple, Minimalistic, Clean and Professional HTML Theme.
Theme URL: http://theme.guruthemes.io/thecopywriter/html/multi-page/
Author: GuruThemes (https://www.guruthemes.io)

------------------------------------------------------------------
[Table of Contents]

0. Initializr Styles
1. Typography
2. Containers
3. Input Fields
4. Mobile Menu
  4.1. Default
5. Loader

6. Home Page
  6.1. Header
    6.1.1. Top Bar
    6.1.2. Content
    6.1.3. Bottom Bar
    7.1.4. Layouts
      6.1.4.1. With Background
      6.1.4.2. No Background
      6.1.4.3. Side Picture
  6.2. Titles
  6.3. Services
    6.3.1. Default
  6.4. About
    6.4.1. Default
    6.4.2. Left Aligned Big Picture
    6.4.2. Side Picture
  6.5. Testimonials
    6.5.1. Default

7. Inner Pages

8. About Page
  8.1. Default

9. Contact Page
  9.1. Default

10. Projects Page
  10.1. Default

11. Project Post Page
  11.1. Default

12. All Blog Posts Page
  12.1. Default

13. Blog Post Page
  13.1. Default

14. 404 - Page Not Found
  14.1. Default

15. Call to Action Banner
  15.1. Default

16. Footer
  16.1. Default

------------------------------------------------------------------
[Typography]

Body:               'Lato', sans-serif;
Headers:            'Playfair Display', sans-serif;
Paragraphs:         'Lato', sans-serif;

------------------------------------------------------------------
[Colors]

Heading:             #818181
Subheading:          #272727
Paragraph:           #5A5A5A
Button:              #F7BD50
Dark Background:     #1B1B1B

-------------------------------------------------------------------*/

/*------------------------------------------*/
/* 0. Initializr Styles */
/*------------------------------------------*/
*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0; padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent !important;
          tap-highlight-color: transparent !important;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

ul li {
  display: inline-block;
}

body::after {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0; top: 0;
  z-index: -1;
  opacity: 0.8;
  background:
      repeating-linear-gradient(90deg,
          #f2f3f4, #f2f3f4,
          transparent 0.04em, transparent 10%
      ) 50% no-repeat;
}

/* Remove Lines From Body Background */
body.no-lines::after { background: transparent; }

/* Button */
.button {
  cursor: pointer;
  border: none;
  outline: 0;
  background: #F7BD50;
  display: inline-block;
  padding: 13px 21px 13px 21px;
  color: #272727;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.5px;
  -webkit-transition: 0.15s all;
          transition: 0.15s all;
}

.button:hover {
  color: #FFFFFF;
  background: #343434;
}

.button::after { display: none; }

/* Add Border Radius to Elements */
img,
.button {
  border-radius: 4px;
}

/* Help Classes */
.margin-top { margin-top: 100px !important; }
.padding-top { padding-top: 100px !important; }

/*------------------------------------------*/
/* 1. Typography */
/*------------------------------------------*/

/* Primary Font */
body,
p,
header .content h2,
section .title h4,
.blog-post .body .list-of-posts a.blog-category,
footer h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}


header .content h2,
.blog-post .body .list-of-posts a.blog-category,
footer h2 {
  font-weight: 300;
}

/* Secondary Font */
h1, h2, h3, h4, h5, h6,
.testimonials .comments p.name,
.about .info .item p.projects a,
.blog-post .body .list-of-posts a.blog-name,
.blog-comments .comment .info p.name,
footer ul li {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 400;
}

body {
  font-size: 1.1em;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; padding: 0;
  color: #272727;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-weight: 700;
}

h1 { font-size: 1.2em; }
h2 { font-size: 0.85em; }
h3 { font-size: 4.2em; line-height: 1.6em; }
h4 { font-size: 0.88em; }
h5 { font-size: 3.4em; line-height: 1.2em; }
h6 { font-size: 1.2em; }

/* Paragraphs */
p {
  line-height: 23px;
  font-size: 0.95em;
  color: #5A5A5A;
}

p,
p.one-column {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

p.two-columns {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

p.three-columns {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

/* Links */
a {
  color: #272727;
  position: relative;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #F7BD50;
  left: 0; right: 0; margin: 0 auto;
  bottom: -6px;
  opacity: 0;
  -webkit-transition: 0.3s all;
          transition: 0.3s all;
}

a:hover::after {
  opacity: 1;
}

.social a::after {
  display: none;
}

::-webkit-selection { color: #FFFFFF; background: #1B1B1B; }
   ::-moz-selection { color: #FFFFFF; background: #1B1B1B; }
        ::selection { color: #FFFFFF; background: #1B1B1B; }

/*------------------------------------------*/
/* 2. Containers */
/*------------------------------------------*/
.full-width,
.fixed-width,
.fixed-width-smaller {
  position: relative;
  margin: auto;
}

.full-width { width: 100%; }
.fixed-width { width: 80%; }
.fixed-width-smaller { width: 75%; }

/*------------------------------------------*/
/* 3. Input Fields */
/*------------------------------------------*/

/* Input Placeholder - Default */
input::-webkit-placeholder { color: #787878; }
input:-moz-placeholder { color: #787878; }
input::-moz-placeholder { color: #787878; }
input::-ms-placeholder { color: #787878; }
input::placeholder { color: #787878; }

textarea::-webkit-placeholder { color: #787878; }
textarea:-moz-placeholder { color: #787878; }
textarea::-moz-placeholder { color: #787878; }
textarea::-ms-placeholder { color: #787878; }
textarea::placeholder { color: #787878; }

/* Input Placeholder - Clicked */
input:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-moz-placeholder { color: transparent; }
input:focus::-moz-placeholder { color: transparent; }
input:focus:-ms-input-placeholder { color: transparent; }

textarea:focus::-webkit-input-placeholder { color: transparent; }
textarea:focus:-moz-placeholder { color: transparent; }
textarea:focus::-moz-placeholder { color: transparent; }
textarea:focus:-ms-input-placeholder { color: transparent; }

/* Input Fields */
input,
textarea {
  width: 100%;
  padding: 18px 10px 18px 10px;
  margin: 8px 0 8px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #424242;
  color: #FFFFFF;
  -webkit-transition: 0.3s all;
          transition: 0.3s all;
  font-size: 0.9em;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 1px solid #FFFFFF;
}

textarea {
  text-transform: none;
  resize: none;
  overflow: auto;
  box-sizing: border-box;
  padding-bottom: 80px;
  overflow-x: hidden;
}

input[type='submit'] {
  border: none;
  outline: 0;
  cursor: pointer;
  background: #F7BD50;
  display: inline-block;
  border-radius: 2px;
  padding: 17px 25px 17px 25px;
  text-transform: uppercase;
  color: #272727;
  -webkit-transition: 0.3s all;
          transition: 0.3s all;
}

input[type='submit']:hover {
  background: #343434;
  color: #FFFFFF;
}

/*------------------------------------------*/
/* 4. Mobile Menu */
/*------------------------------------------*/

/*---------------------------------*/
/* 4.1. Default */
/*---------------------------------*/
.mobile-menu.default {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  visibility: hidden;
}

.mobile-menu.default .left-side,
.mobile-menu.default .right-side {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  z-index: 9998;
  background: #adadad;
}

  .mobile-menu.default .left-side {
      left: 0;
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
      transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }
  .mobile-menu.default .right-side {
      right: 0;
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%);
      transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }

.menu-opened .mobile-menu.default .left-side,
.menu-opened .mobile-menu.default .right-side {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
          transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.mobile-menu.default nav {
  display: none;
}

.menu-opened .mobile-menu.default {
  visibility: visible;
}

.menu-opened .mobile-menu.default nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0; right: 0; margin: 0 auto;
  z-index: 9999;
  display: block;
  text-align: center;
}

.menu-opened .mobile-menu.default nav ul li {
  display: block;
  margin: 50px 0 50px 0;
  font-family: 'Playfair Display', sans-serif;
  font-size: 1.5em;
}

.menu-opened .mobile-menu.default nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
}

.menu-opened .mobile-menu.default nav.show {
  -webkit-animation: showNav 1s;
          animation: showNav 1s;
}

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

  60% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@keyframes showNav {
 0% {
     opacity: 0;
  }

  60% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

/*------------------------------------------*/
/* 5. Loader */
/*------------------------------------------*/

/* Hide All Elements */
header.home .top-bar h1,
header.home .top-bar nav,
header.home .top-bar .hamburger,
header .content h2,
header .content .explore,
header.side-picture .content .right > div img,
header .bottom-bar .social,
header .bottom-bar .down-arrow,
header .bottom-bar .copyright {
  opacity: 0;
}

header.background::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
  background: #272727;
  opacity: 1;
}

.loaded header.background::after {
  opacity: 0.6;
  transition: 0.7s all;
}

/* Loaded */
.loaded header .top-bar h1,
.loaded header .top-bar nav,
.loaded header .top-bar .hamburger,
.loaded header .content h2,
.loaded header .content .explore,
.loaded header.side-picture .content .right > div img,
.loaded header .bottom-bar .social,
.loaded header .bottom-bar .down-arrow,
.loaded header .bottom-bar .copyright {
  opacity: 1;
}

.loaded header .top-bar h1 {
  -webkit-transition: 0.6s 0.4s all;
          transition: 0.6s 0.4s all;
}

.loaded header .top-bar nav,
.loaded header .top-bar .hamburger {
  -webkit-transition: 0.5s 0.5s all;
          transition: 0.5s 0.5s all;
}

.loaded header .content h2 {
  -webkit-transition: 0.6s 0.7s all;
          transition: 0.6s 0.7s all;
}

.loaded header .content .explore {
  -webkit-transition: 0.6s 0.8s all;
          transition: 0.6s 0.8s all;
}

.loaded header.side-picture .content .right > div img {
  -webkit-transition: 0.6s 1s all;
          transition: 0.6s 1s all;
}

.loaded header .bottom-bar .social {
  -webkit-transition: 0.7s 1s all;
          transition: 0.7s 1s all;
}

.loaded header .bottom-bar .down-arrow {
  -webkit-transition: 0.7s 1.2s all;
          transition: 0.7s 1.2s all;
}

.loaded header .bottom-bar .copyright {
  -webkit-transition: 0.7s 1.4s all;
          transition: 0.7s 1.4s all;
}

/*------------------------------------------*/
/* 6. Home Page */
/*------------------------------------------*/

/*---------------------------------*/
/* 6.1. Header */
/*---------------------------------*/
header {
  height: 100vh;
  position: relative;
}

/*---------------------------*/
/* 6.1.1. Top Bar */
/*---------------------------*/
header .top-bar {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  padding: 30px 0 30px 0;
}

header .top-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .top-bar .container .logo {
  width: 40%;
}

header .top-bar .container .navigation {
  text-align: right;
  width: 60%;
}

header .top-bar .container .logo h1 a::after { display: none; }

header .top-bar .container .navigation ul li {
  position: relative;
  margin: 0 0 0 45px;
  font-size: 0.9em;
}

header .top-bar .container .navigation ul li+li::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #adadad;
  opacity: 0.25;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  transform: translateY(-52%);
  left: -29px;
}

header.background .top-bar .container .navigation ul li+li::after {
  background: #FFFFFF;
}

/* Hamburger */
.hamburger {
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

.hamburger-box {
  width: 20px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 19px;
  height: 1px;
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  background: #1B1B1B;
}

button.hamburger:hover span {
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}

  .hamburger-inner::before { top: -3px; }
  .hamburger-inner::after { bottom: -3px; }

.hamburger--slider .hamburger-inner {
  top: 5px;
}

.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
  top: 14px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
      -ms-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
  background: #1B1B1B;
}

.hamburger--slider.is-active .hamburger-inner::before {
  opacity: 0;
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -7px, 0);
      -ms-transform: rotate(-45deg) translate3d(-5.71429px, -7px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -7px, 0);

}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -14px, 0) rotate(-90deg);
      -ms-transform: translate3d(0, -14px, 0) rotate(-90deg););
          transform: translate3d(0, -14px, 0) rotate(-90deg);
  background: #1B1B1B;
}

.hamburger:focus,
.hamburger:active,
.hamburger.active,
.hamburger:focus:active {
  background-image: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

  /* Sticky Top Bar */
  .headroom {
    will-change: transform;
    -webkit-transition: 0.3s all;
            transition: 0.3s all;
  }

  header.home.side-picture .top-bar.headroom--pinned .container .navigation ul li+li::after,
  header.home.no-background .top-bar.headroom--pinned .container .navigation ul li+li::after,
  header.inner .top-bar.headroom--pinned .container .navigation ul li+li::after {
    background: #FFFFFF;
  }

  header.home.side-picture .top-bar.headroom--top .container .navigation ul li+li::after,
  header.home.no-background .top-bar.headroom--top .container .navigation ul li+li::after,
  header.inner .top-bar.headroom--top .container .navigation ul li+li::after {
    background: #1B1B1B;
  }

  .headroom--pinned {
    opacity: 1;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    background: #1B1B1B;
  }

  .headroom--pinned h1 a,
  .headroom--pinned a,
  .headroom--pinned i {
    color: #FFFFFF;
  }

  .headroom--pinned nav a::after { background: #F7BD50; }

  .headroom--unpinned {
    opacity: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .headroom--top {
    background: transparent;
  }

  .headroom--top h1 a,
  .headroom--top a,
  .headroom--top i {
    color: #1B1B1B;
  }

  .headroom--top nav a::after { background: #F7BD50; }

.menu-opened .top-bar h1 a,
.menu-opened .top-bar a {
  color: #FFFFFF;
}

.menu-opened .top-bar .hamburger-inner,
.menu-opened .top-bar .hamburger-inner::before,
.menu-opened .top-bar .hamburger-inner::after,
.menu-opened .top-bar .hamburger--slider.is-active .hamburger-inner,
.menu-opened .top-bar .hamburger--slider.is-active .hamburger-inner::after,
.headroom--pinned .hamburger-inner,
.headroom--pinned .hamburger-inner::before,
.headroom--pinned .hamburger-inner::after,
.headroom--pinned .hamburger--slider.is-active .hamburger-inner,
.headroom--pinned .hamburger--slider.is-active .hamburger-inner::after {
  background: #FFFFFF;
}

.headroom--top .hamburger-inner,
.headroom--top .hamburger-inner::before,
.headroom--top .hamburger-inner::after,
.headroom--top .hamburger--slider.is-active .hamburger-inner,
.headroom--top .hamburger--slider.is-active .hamburger-inner::after {
  background: #1B1B1B;
}

/*---------------------------*/
/* 6.1.2. Content */
/*---------------------------*/
header .content {
  z-index: 1;
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  width: 50%;
}

header .content h2 {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: #818181;
}

header .content h3 {
  line-height: 1.1em;
}

header .content h3 > span {
  font-style: normal;
  font-weight: 400;
}

  /* Word Typeing */
  .typed-cursor {
    opacity: 1;
    font-size: 0.85em;
    margin-left: 5px;
    -webkit-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
  }

  @-webkit-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }

  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }

header .content .explore {
  margin-top: 25px;
}

/*---------------------------*/
/* 6.1.3. Bottom Bar */
/*---------------------------*/
header .bottom-bar {
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  bottom: 2em;
  z-index: 1;
}

/* Social Icons */
header .bottom-bar .social ul li {
  margin: 0 60px 0 0;
  font-size: 1.2em;
}

header .bottom-bar .social ul li a {
  color: #272727;
  opacity: 0.75;
  -webkit-transition: 0.2s all;
          transition: 0.2s all;
}

header .bottom-bar .social ul li a:hover {
  opacity: 1;
}

/* Go Down Arrow */
header .bottom-bar .down-arrow {
  display: block;
  border: none;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all .2s ease-in;
          transition: all .2s ease-in;
  -webkit-animation: bounceArrow 2s infinite 2s;
          animation: bounceArrow 2s infinite 2s;
}

header .bottom-bar .down-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 6px);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 2px solid #1B1B1B;
  border-width: 0px 0 2px 2px;
}

@-webkit-keyframes bounceArrow {
  0%,
  100%,
  20%,
  50%,
  80% { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
  40% { -webkit-transform: translateY(-10px); -ms-transform: translateY(-10px); transform: translateY(-10px); }
  60% { -webkit-transform: translateY(-5px); -ms-transform: translateY(-5px); transform: translateY(-5px); }
}

@keyframes bounceArrow {
  0%,
  100%,
  20%,
  50%,
  80% { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
  40% { -webkit-transform: translateY(-10px); -ms-transform: translateY(-10px); transform: translateY(-10px); }
  60% { -webkit-transform: translateY(-5px); -ms-transform: translateY(-5px); transform: translateY(-5px); }
}

/*---------------------------*/
/* 6.1.4. Layouts */
/*---------------------------*/

/*-------------------*/
/* 6.1.4.1. With Background */
/*-------------------*/
header.background {
  background: url(../img/header-background.jpg) no-repeat center center fixed;
  background-size: cover;
  background-attachment: scroll;
}

header.background h1 a,
header.background nav a,
header.background .content h2,
header.background .content h3 {
  color: #FFFFFF;
}

header.background .bottom-bar .social ul li a {
  color: #FFFFFF;
}

header.background .bottom-bar .down-arrow::before {
  border: 2px solid #FFFFFF;
  border-width: 0px 0 2px 2px;
}

header.background .hamburger-inner,
header.background .hamburger-inner::before,
header.background .hamburger-inner::after {
  background: #FFFFFF;
}

/*-------------------*/
/* 6.1.4.2. No Background */
/*-------------------*/
header.no-background::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  background: #F8F8F7;
  z-index: -1;
}

/*-------------------*/
/* 6.1.4.3. Side Picture */
/*-------------------*/
header.side-picture .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}

header.side-picture .content .left,
header.side-picture .content .right {
  position: relative;
  width: 50%;
}

header.side-picture .content .left {
  text-align: left;
}

header.side-picture .content .left h3 {
  font-size: 3.8em;
}

header.side-picture .content .right {
  text-align: right;
}

header.side-picture .content .right > div {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-55%, -50%);
      -ms-transform: translate(-55%, -50%);
          transform: translate(-55%, -50%);
  text-align: right;
}

header.side-picture .content .right > div img {
  max-width: 155%;
  height: auto;
  border-radius: 6px;
}

/*---------------------------------*/
/* 6.2. Titles */
/*---------------------------------*/
section .title {
  text-align: center;
  margin: auto;
  width: 70%;
}

section .title h4 {
  margin-bottom: 54px;
  position: relative;
  text-transform: uppercase;
  font-style: normal;
  color: #818181;
}

section .title h4::after {
  content: '';
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  bottom: -29px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #feda6a;
}

section .title h5 {
  position: relative;
  margin-bottom: 35px;
}

/*---------------------------------*/
/* 6.3. Services */
/*---------------------------------*/

/*---------------------------*/
/* 6.3.1. Default */
/*---------------------------*/
.services.default {
  text-align: center;
}

.services.default .title h5 {
  margin-bottom: 25px;
}

.services.default .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.services.default .list .service {
  width: 50%;
  padding: 0 2% 0 2%;
  margin: 50px 0 0 0;
}

.services.default .list .service h6 {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-size: 1.6em;
}

/* Titles Underline */
.services.default .list .service h6::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 12px;
  background: #F7BD50;
  opacity: 0.2;
}

.services.default .list .service p {
  margin: auto;
  margin-top: 15px;
  width: 75%;
}

/*---------------------------------*/
/* 6.4. About Me */
/*---------------------------------*/
.about-home.default,
.about-home.side-picture {
  padding: 100px 0 100px 0;
  background: #1B1B1B;
}

.about-home.default .text p,
.about-home.side-picture .container .right p {
  color: #BABABA;
}

/*---------------------------*/
/* 6.4.1. Default */
/*---------------------------*/
.about-home.default .text {
  text-align: center;
  margin: auto;
  width: 70%;
}

.about-home.default h5 {
  color: #FFFFFF;
}

.about-home.default .text p {
  color: #BABABA;
}

.about-home.default .text a.button {
  margin-top: 35px;
}

/*---------------------------*/
/* 6.4.2. Side Picture */
/*---------------------------*/
.about-home.side-picture .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-home.side-picture .container .left,
.about-home.side-picture .container .right {
  width: 50%;
}

.about-home.side-picture .container .left {
  text-align: center;
}

.about-home.side-picture .container .left img {
  max-width: 70%;
}

.about-home.side-picture .container .right .title {
  width: 100%;
  text-align: left;
}

.about-home.side-picture .container .right .title h4::after {
  left: 0;
  right: 100%;
}

.about-home.side-picture .container .right .title h5 {
  margin-bottom: 25px;
  font-size: 2.7em;
  color: #FFFFFF;
}

.about-home.side-picture .container .right p {
  color: #BABABA;
}

.about-home.side-picture .container .right a.button {
  margin-top: 25px;
}

/*---------------------------------*/
/* 6.5. Testimonials */
/*---------------------------------*/

/*---------------------------*/
/* 6.5.1. Default */
/*---------------------------*/
.testimonials.default {
  margin-bottom: 140px;
}

.testimonials.default .comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.testimonials.default .comments .testimonial {
  text-align: center;
  width: 33%;
}

.testimonials.default .comments img {
  border-radius: 50%;
  max-width: 110px;
}

.testimonials.default .comments p.name {
  margin: 20px 0 6px 0;
  line-height: 1.3em;
  font-size: 1.7em;
  color: #272727;
}

.testimonials.default .comments p.name span {
  display: block;
}

.testimonials.default .comments p.position {
  position: relative;
  margin: 0 0 60px 0;
  text-transform: uppercase;
  font-size: 0.75em;
  color: #5A5A5A;
}

.testimonials.default .comments p.position::after {
  content: '';
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  bottom: -35px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F7BD50;
}

.testimonials.default .comments p.text {
  margin: auto;
  width: 80%;
}

  /* inActive Items */
  .slick-active { opacity: 0.25 }
  /* Circle Color */
  .testimonials.default .comments .slick-active p.position::after { background: #d3d3d3 }

  /* Current Item */
  .slick-current { opacity: 1 }
  /* Circle Color */
  .testimonials.default .comments .slick-current p.position::after { background: #feda6a }

/*------------------------------------------*/
/* 7. Inner Pages */
/*------------------------------------------*/
header.inner {
  height: auto;
}

/* Add Top Margin to Main Content Section */
.about-page.default,
.about-page.left-aligned-big-picture,
.contact-page.default {
  margin-top: 140px;
}

/* Titles Overrides */
.about-page.default .title h2,
.contact-page.default .title h2,
.about-page.left-aligned-big-picture .title h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.85em;
  margin-bottom: 54px;
  position: relative;
  text-transform: uppercase;
  font-style: normal;
  color: #818181;
}

.about-page.default .title h2::after,
.contact-page.default .title h2::after,
.about-page.left-aligned-big-picture .title h2::after {
  content: '';
  position: absolute;
  left: 0; right: 0; margin: 0 auto;
  bottom: -29px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #feda6a;
}

.about-page.default .title h3,
.contact-page.default .title h3,
.about-page.left-aligned-big-picture .title h3 {
  font-size: 3em;
  line-height: 1.15em;
  position: relative;
  margin-bottom: 35px;
}

/*------------------------------------------*/
/* 8. About Page */
/*------------------------------------------*/

/*---------------------------------*/
/* 8.1. Default*/
/*---------------------------------*/
.about-page.default .image,
.about-page.default .info {
  width: 52%;
  margin: auto;
}

.about-page.default .title {
  width: 50%;
}

.about-page.default .image img {
  max-width: 100%;
  margin: 20px 0 15px 0;
}

.about-page.default .info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 0 40px 0;
}

.about-page.default .info .item:last-child {
  padding: 40px 0 0 0;
}

.about-page.default .info .item .subtitle {
  align-self: flex-start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8em;
  padding: 6px 0 0 0;
  width: 30%;
}

.about-page.default .info .item .description {
  width: 70%;
}

/* Clients */
.about-page.default .info .item .clients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.about-page.default .info .item .clients span {
  font-family: 'Playfair Display', sans-serif;
  width: 50%;
  margin: 0 0 25px 0;
}

.about-page.default .info .item .clients span a {
  font-family: 'Playfair Display', sans-serif;
  display: inline-block;
}

/* Social */
.about-page.default .info .item .social ul li {
  font-size: 1.1em;
  margin: 0 35px 0 0;
}

/* Contact */
.about-page.default .info .item .contact .email {
  font-family: 'Playfair Display', sans-serif;
  font-size: 1.2em;
}

/*---------------------------*/
/* 6.4.2. Left Aligned Big Picture */
/*---------------------------*/
.about-page.left-aligned-big-picture .container {
  width: 80%;
  padding: 0 20% 0 5%;
}

.about-page.left-aligned-big-picture .title {
  width: 100%;
}

.about-page.left-aligned-big-picture .title h2,
.about-page.left-aligned-big-picture .title h3 {
  text-align: left;
}

.about-page.left-aligned-big-picture .title h3 {
  font-size: 3em;
}

.about-page.left-aligned-big-picture .title h2::after {
  right: 100%;
}

.about-page.left-aligned-big-picture .image {
  margin-bottom: 25px;
}

.about-page.left-aligned-big-picture .image img {
  max-width: 100%;
}

/* Three Box Informations*/
.about-page.left-aligned-big-picture .three-box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 65px 0 30px 0;
}

.about-page.left-aligned-big-picture .three-box-info .item {
  width: 33%;
}

.about-page.left-aligned-big-picture .three-box-info .item p.heading {
  font-size: 0.9em;
  margin-bottom: 4px;
  opacity: 0.8;
}

.about-page.left-aligned-big-picture .three-box-info .item p.content {
  color: #272727;
}

.about-page.left-aligned-big-picture .info .item {
  padding: 30px 0 30px 0;
}

.about-page.left-aligned-big-picture .info .item:last-child {
  padding: 30px 0 0 0;
}

.about-page.left-aligned-big-picture .info .item h4 {
  font-size: 2.6em;
  margin-bottom: 35px;
}

/* Services */
.about-page.left-aligned-big-picture .info .item.services .service {
  margin-bottom: 30px;
}

.about-page.left-aligned-big-picture .info .item.services .service:last-child {
  margin-bottom: 0;
}

.about-page.left-aligned-big-picture .info .item.services .service h5 {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.about-page.left-aligned-big-picture .info .item.services .service h5::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 12px;
  background: #F7BD50;
  opacity: 0.2;
}

/* Projects */
.about-page.left-aligned-big-picture .info .item.projects ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.about-page.left-aligned-big-picture .info .item.projects ul li {
  justify-content: space-between;
  width: 49%;
}

.about-page.left-aligned-big-picture .info .item.projects ul li a {
  position: relative;
  display: inline-block;
  margin: 0 0 25px 30px;
}

.about-page.left-aligned-big-picture .info .item.projects ul li a::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #feda6a;
}

/*------------------------------------------*/
/* 9. Contact Page */
/*------------------------------------------*/

/*---------------------------------*/
/* 9.1. Default*/
/*---------------------------------*/
.contact-page.default .container {
  width: 80%;
  padding: 0 20% 0 5%;
}

.contact-page.default .title {
  width: 100%;
}

.contact-page.default .title h2,
.contact-page.default .title h3,
.contact-page.default .title h6 {
  text-align: left;
}

.contact-page.default .title h2::after {
  right: 100%;
}

/* Three Box Informations*/
.contact-page.default .three-box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 70px 0 30px 0;
}

.contact-page.default .three-box-info .item {
  width: 33%;
}

.contact-page.default .three-box-info .item p.heading {
  font-size: 0.9em;
  margin-bottom: 4px;
  opacity: 0.8;
}

.contact-page.default .three-box-info .item p.content {
  color: #272727;
}

/* Contact Form */
.contact-page.default .contact-form {
  background: #161616;
}

.contact-page.default .contact-form .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-page.default .contact-form .container .form {
  width: 90%;
}

.contact-page.default .contact-form .container .form label.error {
  position: relative;
  color: #FFFFFF;
  margin: 5px 0 0 10px;
  font-size: 0.75em;
  display: inline-block;
}

.contact-page.default .contact-form .container .title h6 {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 2.5em;
}

.contact-page.default .contact-form .container .form .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-page.default .contact-form .container .form .content,
.contact-page.default .contact-form .container .form .textarea {
  width: 100%;
}

.contact-page.default .contact-form .container .form .content .input-field {
  width: 49%;
}

.contact-page.default .contact-form .container .form .textarea {
  margin-bottom: 15px;
}

.contact-page.default .contact-form .container .form .button {
  margin-top: 10px;
}

.contact-page.default .contact-form .container .form #success,
.contact-page.default .contact-form .container .form #error {
  display: none;
}

.contact-page.default .contact-form .container .form #success p,
.contact-page.default .contact-form .container .form #error p {
  display: block;
  position: absolute;
  width: 80%;
  top: 50%;
  transform: translateY(-50%);
  left: 6%; right: 20%;
  text-align: left;
  line-height: 1.6em;
}

#success p { color: #FFFFFF; }
#error p { color: #FFFFFF; }

/*---------------------------------*/
/* 15. Call to Action Banner */
/*---------------------------------*/

/*---------------------------*/
/* 15.1. Default */
/*---------------------------*/
.call-to-action.default {
  background: #161616;
  padding: 60px 0 60px 0;
}

.call-to-action.default .container {
  text-align: center;
}

.call-to-action.default .container h6 {
  padding: 0 15% 30px 15%;
  font-size: 3em;
  color: #FFFFFF;
}

/*------------------------------------------*/
/* 16. Footer */
/*------------------------------------------*/

/*---------------------------------*/
/* 16.1. Default */
/*---------------------------------*/
footer.default {
  padding: 30px 0 30px 0;
  background: #1B1B1B;
  font-size: 0.9em;
}

footer.default .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

footer.default .container .left,
footer.default .container .right {
  width: 50%;
}

footer.default .container .left ul.social-icons li {
  margin: 0 40px 0 0;
  font-size: 1.2em;
}

footer.default .container .left ul.social-icons li a {
  opacity: 0.45;
  color: #FFFFFF;
  -webkit-transition: all .3s;
          transition: all .3s;
}

footer.default .container .left ul.social-icons li a::after {
  display: none;
}

footer.default .container .left ul.social-icons li a:hover {
  opacity: 1;
  color: #FFFFFF;
}

footer .container .right {
  text-align: right;
}

footer .container .right small {
  text-transform: uppercase;
  color: #5C5C5C;
}

footer .container .right small a {
  opacity: 0.45;
  color: #FFFFFF;
  -webkit-transition: all .3s;
          transition: all .3s;
}

footer .container .right small a:hover {
  opacity: 1;
}

