/*
Theme Name: The A Theme
Version: 1.0
Author: Doyle See
Author URI: http://doylesee.com
*/

/* Fonts */
@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('fonts/proximanova-regular-webfont.eot');
    src: url('fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('fonts/proximanova-regular-webfont.woff') format('woff'),
         url('fonts/proximanova-regular-webfont.ttf') format('truetype'),
         url('fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_rgbold';
    src: url('fonts/proxima_nova_bold-webfont.eot');
    src: url('fonts/proxima_nova_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/proxima_nova_bold-webfont.woff2') format('woff2'),
         url('fonts/proxima_nova_bold-webfont.woff') format('woff'),
         url('fonts/proxima_nova_bold-webfont.ttf') format('truetype'),
         url('fonts/proxima_nova_bold-webfont.svg#proxima_nova_rgbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'aparajitaregular';
    src: url('fonts/aparaj-webfont.eot');
    src: url('fonts/aparaj-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/aparaj-webfont.woff2') format('woff2'),
         url('fonts/aparaj-webfont.woff') format('woff'),
         url('fonts/aparaj-webfont.ttf') format('truetype'),
         url('fonts/aparaj-webfont.svg#aparajitaregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
	color: #646464;
	font-family: 'aparajitaregular', serif;
	font-size: 20px;
}
h1, h2, h3, h4 {
	color: #8c8254;
	font-family: 'proxima_nova_rgbold', sans-serif;
	text-transform: uppercase;
}
h2 {
	font-size: 20px;
	letter-spacing: 6px;
	line-height: 20px;
	margin: 0;
}
p {
	font-size: 20px;
	line-height: 25px;
	margin: 0 0 18px 0;
}
a {
	color: #8c8254;
}
.row {
	max-width: 1120px;
}
::-webkit-scrollbar,
::-webkit-scrollbar-button,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
::-webkit-resizer  {
	background: #8e908f;
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background: #6f6f6f;
}

/* Element effects */
.effects {
	visibility: hidden;
}
/* Fade in */
.fadeIn{
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	
	animation-duration: 1s;	
	-webkit-animation-duration: 1s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		
	visibility: visible !important;	
}
.fadeInSlow {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	
	animation-duration: 3s;	
	-webkit-animation-duration: 3s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		
	visibility: visible !important;	
}
@keyframes fadeIn {
	0% {
		opacity: 0.0;		
	}	
	100% {
		opacity: 1;	
	}		
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0.0;		
	}
	100% {
		opacity: 1;	
	}		
}
/* Slide left */
.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	
	animation-duration: 2s;	
	-webkit-animation-duration: 2s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		
	visibility: visible !important;	
}
@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}		
	100% {
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}			
	100% {
		-webkit-transform: translateX(0%);
	}
}
/* Slide right */
.slideRight{
	animation-name: slideRight;
	-webkit-animation-name: slideRight;	
	animation-duration: 2s;	
	-webkit-animation-duration: 2s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		
	visibility: visible !important;	
}
@keyframes slideRight {
	0% {
		transform: translateX(-150%);
	}			
	100% {
		transform: translateX(0%);
	}	
}
@-webkit-keyframes slideRight {
	0% {
		-webkit-transform: translateX(-150%);
	}		
	100% {
		-webkit-transform: translateX(0%);
	}
}
/* Slide down */
.slideDown{
	animation-name: slideDown;
	-webkit-animation-name: slideDown;	
	animation-duration: 1s;	
	-webkit-animation-duration: 1s;
	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;	
	visibility: visible !important;						
}
@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}		
	100% {
		transform: translateY(0%);
	}		
}
@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}

/* Button effects */
/* Sweep To Top */
.hvr-sweep-to-top,
.blog__nav-buttons a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before,
.blog__nav-buttons a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #8c8254;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active,
.blog__nav-buttons a:hover, .blog__nav-buttons a:focus, .blog__nav-buttons a:active {
  color: #fff;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before,
.blog__nav-buttons a:hover:before, .blog__nav-buttons a:focus:before, .blog__nav-buttons a:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* General page styles */
.preloader {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
}
.sk-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }
@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.page {
	display: none;
}
.section {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	padding: 80px 0;
	position: relative;
}
.section__overlay {
	height: 100%;
	left: 0;
	opacity: 0.8;
	position: absolute;
	top: 0;
	width: 100%;
}
.section__copy {
	position: relative;
	z-index: 2;
}
.section__button {
	background: #411a2c;
	border: 1px solid #bfb68b;
	color: #fff;
	display: inline-block;
	font-family: 'aparajitaregular', serif;
	font-size: 19px;
	letter-spacing: 4px;
	line-height: 19px;
	text-transform: uppercase;
}
ul.page-nav {
	position: fixed;
	margin: 0;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99998;
}
ul.page-nav li {
	line-height: 10px;
	list-style: none;
	margin: 10px 0;
}
ul.page-nav li a {
	background: rgba(0,0,0,0.5);
	border-radius: 5px;
	display: block;
	height: 10px;
	width: 10px;
}

/* Menu section */
.slicknav_menu,
.slicknav_btn {
	background: #0f0f0f;
	display: block;
	z-index: 99999;
}
.slicknav_btn {
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
}
.slicknav_nav ul {
	margin: 0;
}
.slicknav_nav a {
	color: #6f6f6f;
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 10px;
	height: 55px;
	line-height: 55px;
	margin: 0;
	text-transform: uppercase;
}
.slicknav_nav a:hover {
	background: #0f0f0f;
	border-bottom: 4px solid #8c8254;
	border-radius: 0;
	color: #8c8254;
}
.menu {
	display: none;
}

/* Home page */
#home h2 {
	color: #fff;
	font-size: 26px;
	letter-spacing: 9px;
	line-height: 26px;
	margin: 0;
}
#home h3 {
	color: #fff;
}
/* Home page: Section 1 */
#home .section-1 {
	background-image: url('img/home-section-1-bg.jpg');
	text-align: center;
}
#home .section-1 .section__overlay {
	background: #411a2c;
	opacity: 0.8;
	z-index: 1;
}
#home img.section-1__logo {
	margin: 0 0 25px 0;
}
#home .section-1 h2 {
	color: #bfb68b;
	font-family: 'aparajitaregular', serif;
	font-size: 19px;
	letter-spacing: 8px;
	line-height: 19px;
	margin: 0 0 41px 0;
}
#home .section-1 a.section__button {
	background-color: rgba(65,26,44,0.6);
	font-size: 16px;
	line-height: 16px;
	margin: 0;
	padding: 9px 26px 7px 26px;
}
/* Home page: Section 2 */
#home .section-2 {
	background-image: url('img/home-section-2-bg.jpg');
	overflow: hidden;
}
#home .section-2 .section__overlay {
	background: #242424;
	opacity: 0.3;
	z-index: 1;
}
#home .section-2__image {
	display: none;
}
#home .section-2 .section__copy {
	color: #fff;
}
#home .section-2 .section__copy h2 {
	margin: 0 0 24px;
}
#home .section-2 .section__copy h3 {
	font-family: 'aparajitaregular', serif;
	font-size: 23px;
	font-weight: bold;
	line-height: 23px;
	margin: 0 0 21px 0;
	text-transform: none;
}
#home .section-2 a.section__button {
	margin: 17px 0 0 0;
	padding: 9px 27px 7px 27px;
}
/* Home page: Section 3 */
#home .section-3 {
	background-image: url('img/home-section-3-bg.jpg');
	padding: 0;
	text-align: center;
}
#home .section-3 .section__copy {
	background-color: rgba(65,26,44,0.9);
	margin-top: 0 !important;
	padding: 60px 16px 49px 16px;
}
#home .section-3 h2 {
	margin: 0 0 62px 0;
}
#home .section-3__item img {
	margin: 0 0 46px 0;
}
#home .section-3__item h3 {
	font-size: 17px;
	line-height: 17px;
	margin: 0 0 26px 0;
}
#home .section-3__item p {
	color: #d2c99e;
	font-size: 18px;
	line-height: 26px;
}

/* Services page */
#services h2 {
	margin: 0 0 25px 0;
}
#services .section p:last-child {
	margin: 0;
}
/* Services page: Section 1 */
#services .section-1 {
	background-image: url('img/services-section-1-bg.jpg');
	min-height: 656px;
}
#services .section-1 h1 {
	/* background: url('img/services-section-1-h1-bg.png') no-repeat center top; */
	color: #2b2b2b;
	font-size: 37px;
	letter-spacing: 4px;
	line-height: 54px;
	margin: 0 0 66px 0;
	text-align: center;
	vertical-align: bottom;
}
#services .section-1 h3 {
	font-family: 'aparajitaregular', serif;
	font-size: 20px;
	line-height: 20px;
	margin: 0 0 21px 0;
	text-transform: none;
}
/* Services page: Section 2 */
#services .section-2 {
	min-height: 520px;
}
#services .section-2__image {
	display: none;
}
/* Services page: Section 3 */
#services .section-3 {
	background: #f3f3f3;
	min-height: 474px;
	overflow: hidden;
}
#services .section-3__image {
	display: none;
}

/* Blog listing page */
.blog__wrapper {
	padding: 106px 0 0 0;
}
.blog__heading h1 {
	color: #2b2b2b;
	letter-spacing: 8px;
}
.blog__list {
	border-top: 1px solid #e6e6e6;
	padding: 30px 0 0 0;
}
.blog__item {
	border-top: 1px dotted #e6e6e6;
	margin: 0 0 13px 0;
	padding: 48px 0 0 0;
}
.blog__item:first-child {
	border: medium none;
	padding: 0;
}
.blog__item h2 {
	font-size: 18px;
	letter-spacing: 0;
	line-height: 18px;
	margin: 0 0 8px 0;
}
.blog__item-date {
	color: #999;
	font-size: 19px;
	line-height: 19px;
	margin: 0 0 18px 0;
}
.blog__item-image {
	margin: 0 0 20px 0;
}
.blog__item p {
	font-size: 17px;
	line-height: 22px;
	margin: 0 0 20px 0;
}
a.blog__item-read-more {
	background: url('img/blog__item-read-more-bg.png') no-repeat right center;
	color: #411a2c;
	font-size: 19px;
	letter-spacing: 4px;
	line-height: 19px;
	margin: 0;
	padding: 0 27px 0 0;
	text-transform: uppercase;
}
.blog__nav-buttons {
	margin: 8px 0 0 0;
}
.blog__nav-buttons .page-numbers {
	display: none;
}
.blog__nav-buttons .page-numbers.next,
.blog__nav-buttons .page-numbers.prev {
	background: #411a2c;
	border: 1px solid #bfb68b;
	color: #fff;
	display: inline-block;
	font-family: 'aparajitaregular', serif;
	font-size: 19px;
	letter-spacing: 4px;
	line-height: 19px;
	padding: 14px 22px 7px 22px;
	text-transform: uppercase;
}
.blog__sidebar {
	border-top: 1px solid #e6e6e6;
	padding: 30px 0 0 42px;
}
.blog__sidebar-item {
	margin: 0 0 67px 0;
}
.blog__sidebar-item h2 {
	color: #411a2c;
	letter-spacing: 0;
	margin: 0 0 30px 0;
}
.blog__sidebar-item ul {
	margin: 0;
}
.blog__sidebar-item ul li {
	line-height: 20px;
	list-style: none;
	margin: 0 0 9px 0;
}
.blog__sidebar-item ul li a {
	color: #2b2b2b;
	font-size: 20px;
	line-height: 20px;
}
.blog__sidebar-item ul li a:hover {
	color: #8c8254;
}

/* Blog details page */
.blog__heading a {
	color: #411a2c;
	display: inline-block;
	font-size: 19px;
	height: 13px;
	line-height: 19px;
	margin: 0 0 24px 0;
	text-transform: uppercase;
}
.blog__heading a:first-child {
	border-right: 1px solid #411a2c;
	padding: 0 26px 0 0;
	margin-right: 26px;
}
.blog__item--details {
	margin: 0 0 77px 0;
}
.blog__item--details h1 {
	font-size: 18px;
	letter-spacing: 0;
	line-height: 18px;
	margin: 0 0 8px 0;
}
.blog__comments h2 {
	color: #2b2b2b;
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 40px 0;
}
.blog__comments .comment {
	border-bottom: 1px solid #ededed;
	margin: 0 0 35px 0;
	min-height: 187px;
	position: relative;
}
.blog__comments .comment:last-child {
	border: medium none;
}
.blog__comments .comment:before,
.blog__comments .comment:after {
	content: " ";
	display: table;
}
.blog__comments .comment:after {
	clear:both;
}
.blog__comments .comment-author {
	border: medium none;
	float: left;
	margin: 0 8% 0 0;
	padding: 0;
	width: 12%;
}
.blog__comments .comment-author cite {
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 16px;
}
.blog__comments .comment-author span {
	display: none;
}
.blog__comments .comment-meta {
	padding: 0 0 14px 0;
}
.blog__comments .comment-meta a {
	color: #999;
	display: inline-block;
	font-size: 19px;
	line-height: 19px;
}
.blog__comments .comment p {
	font-size: 17px;
	line-height: 22px;
	margin: 0 0 27px 0;
}
.blog__comments .reply {
	display: none;
}
.blog__comment-form {
	max-width: 682px;
	width: 100%;
}
.blog__comment-form h2 {
	color: #2b2b2b;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 16px;
	margin: 0 0 43px 0;
}
.blog__comment-form p {
	margin: 0 0 28px 0;
}
.blog__comment-form label {
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 16px;
	line-height: 45px;
}
.blog__comment-form input[type="text"],
.blog__comment-form input[type="email"],
.blog__comment-form textarea {
	background: #f2f2f2;
	border: medium none;
	box-shadow: none;
	height: 45px;
	margin: 0;
}
.blog__comment-form textarea {
	height: 185px;
	resize: none;
}
.blog__comment-form input[type="submit"] {
	cursor: pointer;
	padding: 11px 24px 6px 24px;
}
.blog__comment-form input[type="submit"]:hover {
	background: #bfb68b;
}
.comment-form-captcha:before,
.comment-form-captcha:after {
	content:" ";
	display:table;
}
.comment-form-captcha:after { clear:both; }
#cbnet-rscc-captcha-verify { display: none; }

/* Contact section */
.contact {
	background-image: url('img/contact-bg.jpg');
	padding: 0;
}
.contact .section__overlay {
	background: #000;
}
.contact .section__copy {
	text-align: center;
}
#home .contact h2,
#services .contact h2 {
	color: #fff;
	font-size: 26px;
    letter-spacing: 9px;
    line-height: 26px;
	margin: 0 0 39px 0 !important;
}
.contact p {
	color: #d2c99e;
	font-size: 29px;
	line-height: 28px;
	margin: 0 0 61px 0;
}
.contact .section__button {
	margin: 0 0 46px 0;
	padding: 9px 16px 7px 19px;
}
p.contact__phone {
	font-size: 19px;
	letter-spacing: 4px;
	line-height: 19px;
}
p.contact__phone span {
	color: #fff;
	font-family: 'proxima_nova_rgbold', sans-serif;
	font-size: 25px;
	letter-spacing: 8px;
	line-height: 25px;
}
p.contact__address {
	color: #9e9e9e;
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 20px;
	line-height: 31px;
	margin: 0 0 26px 0;
}
.contact__social-media {
	margin: 0 0 50px 0;
}
.contact__social-media a {
	background-color: transparent;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	border: 1px solid #6f6f6f;
	border-radius: 23px;
	display: inline-block;
	height: 46px;
	text-indent: -99999px;
	width: 46px;
}
a.contact__social-media--facebook {
	background: url('img/contact__social-media--facebook.png');
}
a.contact__social-media--twitter {
	background: url('img/contact__social-media--twitter.png');
}
a.contact__social-media--google-plus {
	background: url('img/contact__social-media--google-plus.png');
}
a.contact__social-media--linkedin {
	background: url('img/contact__social-media--linkedin.png');
}
.contact__social-media a:hover {
	background-color: #411a2c;
	background-position: 0px 46px;
	border: 1px solid #fff;
}

/* Footer section */
.footer {
	background: #0f0f0f;	
	margin: 80px 0 0 0;
	padding: 10px 0;
}
.footer__logo {
	margin: 0 37px 0 0;
	padding-right: 0;
	text-align: right;
}
.footer__copyright p {
	color: #717171;
	font-family: 'proxima_nova_rgregular', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	line-height: 15px;
	margin: 0;
	text-transform: uppercase;
}

@media only screen and (min-width : 480px) {
}
@media only screen and (min-width : 768px) {
	/* 768 Home page */
	#home .section-2__image {
		bottom: 0;
		display: block;
		position: absolute;
		right: 50%;
		text-align: right;
		width: 100%;
		z-index: 0;
	}	
	#home .section-3 {
		padding: 80px 0;
	}
	#home .section-3 .section__copy {
		margin-top: auto !important;
	}
	
	/* 768 Services page */
	#services .section-2__image {
		bottom: 0;
		display: block;
		position: absolute;
		right: 60%;
	}
	#services .section-3__image {
		bottom: 0;
		display: block;
		left: 50%;
		position: absolute;
		width: 100%;
	}
	
	/* Blog details page */
	.blog__sidebar {
		padding: 30px 0 0 16px;
	}
	
	/* 768 Contact section */
	.section.contact {
		padding: 80px 0;
	}
	
	/* 768 Footer section */
	#home .footer,
	#services .footer {
		bottom: 0;
		position: absolute;
		width: 100%;
	}
	.footer.footer--fixed {
		bottom: 0;
		position: fixed;
		width: 100%;
	}
}
@media only screen and (min-width : 992px) {
	/* 992 Menu section */
	.slicknav_menu {
		display: none;
	}
	.menu {
		background: #0f0f0f;
		display: block;
		top: 0;
		width: 100%;
		z-index: 99999;
	}
	#home .menu,
	#services .menu	{		
		position: absolute;	
	}
	#menu-js {
		position: fixed;
	}
	#menu-js.sticky {
		-moz-box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		position: fixed;
	}
	.menu__logo {
		padding-right: 0;
		padding-top: 12px;
		text-align: left;
	}
	.menu__list ul {
		height: 55px;
		margin: 0;
		text-align: center;
	}
	.menu__list ul li {
		display: inline-block;
		line-height: 55px;
		list-style: none;
		margin: 0 24px;
	}
	.menu__list ul li a {
		color: #6f6f6f;
		display: block;
		font-family: 'proxima_nova_rgregular', sans-serif;
		font-size: 10px;
		height: 55px;
		line-height: 55px;
		min-width: 76px;
		text-transform: uppercase;
	}
	.menu__list ul li a:hover {
		color: #8c8254;
	}
	.menu__list ul li.current-menu-item a {
		color: #8c8254;
		border-bottom: 4px solid #8c8254;
	}
	.menu__list ul li.current-menu-item a:hover {
		border: medium none;
	}
	/* Underline From Center */
	.menu ul li a {
	  display: inline-block;
	  vertical-align: middle;
	  -webkit-transform: translateZ(0);
	  transform: translateZ(0);
	  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	  -moz-osx-font-smoothing: grayscale;
	  position: relative;
	  overflow: hidden;
	}
	.menu ul li a:before {
	  content: "";
	  position: absolute;
	  z-index: -1;
	  left: 50%;
	  right: 50%;
	  bottom: 0;
	  background: #8c8254;
	  height: 4px;
	  -webkit-transition-property: left, right;
	  transition-property: left, right;
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	  -webkit-transition-timing-function: ease-out;
	  transition-timing-function: ease-out;
	}
	.menu ul li a:hover:before,
	.menu ul li a:focus:before,
	.menu ul li a:active:before {
	  left: 0;
	  right: 0;
	}
	.menu__contact {
		color: #8c8254;
		font-family: 'proxima_nova_rgbold', sans-serif;
		font-size: 20px;
		letter-spacing: 3px;
		line-height: 55px;
		padding-left: 0;
		text-align: center;
	}
	
	/* Blog details page */
	.blog__sidebar {
		padding: 30px 0 0 0;
	}
}
@media only screen and (min-width : 1200px) {
	/* Blog details page */
	.blog__sidebar {
		padding: 30px 0 0 42px;
	}
	.blog__comments .comment-author {
		min-height: 200px;
	}
	.blog__comments .comment-meta {
		left: 0;
		margin: 0 8% 0 0;
		position: absolute;
		top: 120px;
		width: 12%;
	}
	.blog__comment-form label {
		float: left;
		margin: 0 4% 0 0;
		width: 16%;
	}
	.blog__comment-form input[type="text"],
	.blog__comment-form input[type="email"],
	.blog__comment-form textarea {
		float: left;
		width: 80%;
	}
	.blog__comment-form input[type="submit"] {
		margin: 0 0 0 20%;
	}
}