
/*
Table Of Contents
 
 1.)  Typography
 2.)  Default Styles
 3.)  Header
 4.)  Content - Main
 5.)  Footer

========================================*/


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

@import url("brands.min.css") all;
@import url("light.min.css") all;
@import url("regular.min.css") all;
@import url("solid.min.css") all;
@import url("fontawesome.min.css") all;

@font-face {
    font-family: 'Flama';
    src: url('../webfonts/FlamaBookRegular.eot');
    src: url('../webfonts/FlamaBookRegular.eot') format('embedded-opentype'),
         url('../webfonts/FlamaBookRegular.woff2') format('woff2'),
         url('../webfonts/FlamaBookRegular.woff') format('woff'),
         url('../webfonts/FlamaBookRegular.ttf') format('truetype'),
         url('../webfonts/FlamaBookRegular.svg#Flama') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/*
 2.) Default Styles
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, 
*:before, 
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations */
@-webkit-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}

80% {
 -webkit-transform: scale(1);
}

100% {
 -webkit-transform: translateY(0);
}
}

@-moz-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}

80% {
 -moz-transform: scale(1);
}

100% {
 -moz-transform: translateY(0);
}
}


/* #Basic Styles */
body {
	font-family: "Flama", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	color: #ffffff;
	line-height: 26px; 
	background: #242424;
}


/*= Links 
=======================================================*/
a {
	color: #6cac9c;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #ffffff;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="tel:"], 
a[href^="fax:"] {
	color: #6cac9c;
	text-decoration: none;
}

a:hover[href^="tel:"], 
a:focus[href^="tel:"], 
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #ffffff;
	text-decoration: underline;
}


/*= Heading H1, H2, H3, H4, H5, H6, P 
=======================================================*/
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	padding: 0 0 30px 0;
	margin: 0;
}

h1,
h2 {
	font-size: 40px;
	line-height: 45px; 
	letter-spacing: 0.04em; 
}

h3 {
	font-size: 20px; 
	line-height: 26px;
}

h4 {
	font-size: 15px; 
	line-height: 22px;
}

p {
	padding: 0 0 25px 0;
}

h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child,
h5:last-child, 
h6:last-child, 
p:last-child {
	padding-bottom: 0;
}

b, 
strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.uppercase {
	text-transform: uppercase;
}

.center {
	text-align: center;
}

@media only screen and (max-width: 767px) {
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	padding: 0 0 12px 0;
}
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none; 
	padding: 0;
}

li {
	position: relative; 
	padding-left: 20px;
}

li:last-child {
	padding-bottom: 25px;
}

ul li ul,
ol li ol {
	padding: 0;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li:before {
	content: "";
	width: 4px;
	height: 4px;
	background: #ffffff;
	border-radius: 360px; 
	position: absolute;
	top: 13px;
	left: 0;
}


/*= Order List 
=======================================================*/
ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 25px;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 400;
	color: #ffffff;
	position: absolute;
	top: 1px;
	left: 0;
	padding: 0;
	margin: 0;
}


/* #Input
================================================= */
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align:top;
	font-family: "Flama", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #ffffff;
	line-height: 22px;
	letter-spacing: normal;
	padding: 0 0 10px 0;
	margin: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	font-family: "Flama", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #ffffff;
	line-height: 22px;
	letter-spacing: normal;
	white-space: nowrap;
	text-overflow: ellipsis;	
	background: none;
	box-shadow: none;
	border: 1px solid #6cac9c;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 13px 15px;
	margin: 0;
}

textarea {
	height: 180px;
	white-space: normal;
	outline: none;
	resize: none; 
	padding-top: 13px; 
	padding-bottom: 13px;
}

select {
	background-image: url(../img/select-arrow-down.png);
	background-size: 9px auto;
	background-repeat: no-repeat;
	background-position: top 16px right 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 43px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize option:not([disabled]) {
	color: #ffffff;
}

select.colorize option.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: #ffffff;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #6cac9c;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #6cac9c;
}

::-moz-placeholder {
	color: #6cac9c;
}

::-ms-input-placeholder {
	color: #6cac9c;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0; 
	border-color: #ffffff;
}


/* #Buttons
================================================== */
.btn,
.button,
input[type=".button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Flama", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #6cac9c;
	line-height: 22px;
	letter-spacing: normal;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	white-space: normal;
	background: none;	
	border: none;
	border-radius: 0;
	box-shadow: inset #6cac9c 0 0 0 1px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 14px 30px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus
.btn:not(:disabled):not(.disabled).active, 
.button:not(:disabled):not(.disabled):active {
	color: #ffffff;
	text-decoration: none; 
	outline: 0;
	box-shadow: inset #ffffff 0 0 0 1px;
}

.btn:focus,
.button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin: 20px 0 0 0;
}


/*= Container - Main
=======================================================*/
#container-main {
	width: 100%;
	float: left; 
	background:#000000; 
	overflow: hidden; 
	position: relative;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 570px;
	padding: 0 35px;
}
}

@media only screen and (max-width: 399px) {
.container {
	padding: 0 20px;
}
}


/* Vertical Align - Middle */
.outer-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table;
	margin: 0 auto
}

.inner-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table-cell;
	vertical-align: middle;
}


/* Social - Links */
.social-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.social-links ul {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 -12px -20px -12px;
}

.social-links ul li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 12px 20px 12px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li span {
	display: none;
}

.social-links ul li a { 
	color: #8ba193;
	text-decoration: none;
}

.social-links ul li a:hover,
.social-links ul li a:focus,
.social-links ul li aactive {
	color: #ffffff;
}

.social-links ul li .fa-instagram { 
	font-size: 28px; 
	color: #65a293;
	line-height:1em; 
	margin-top:4px;
}

.social-links ul li .fa-instagram:hover,
.social-links ul li .fa-instagram:focus,
.social-links ul li .fa-instagram:active {
	color: #ffffff;
}


/*
 3.) Header
----------------------------------------*/

#header-main {
	width: 100%;
	height: 160px;
	float: left;
	background: #242424;
	position: relative;
	z-index: 50;
}

#header-main .container {
	max-width: 1260px
}

#header-main .logo {
	float: left;
	position: relative;
	z-index: 1;
	margin: 107px 0 0 0;
}

#header-main .logo img {
	max-width: 100%;
	max-height: 109px;
}

#header-main .social-links {
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 20px;
}

#header-main .nav-bar {
	width: 100%;
	float: left;
	display: none;
	text-align: center;
	position: absolute;
	top: 61px;
	left: 0;
	z-index: 2;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar nav {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar nav ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar nav ul li {
	width: 100%;
	float: left;
	font-size: 17px;
	color: #c6bdb2;
	line-height: 17px;
	padding: 0;
	margin: 0;
	height: calc(25vh - 15.5px);
}

#header-main .nav-bar nav ul li:before {
	display: none;
}



#header-main .nav-bar nav ul li a {
	width: 100%;
	float: left;
	color: #c6bdb2;
	text-decoration: none;
	text-transform: uppercase;
	background: #000000;
	     padding: 11vh 35px;
	
	padding-top: calc(12vh - 15.5px);
}

#header-main .nav-bar nav ul li:nth-child(2) a {
	background: #51695f;
}

#header-main .nav-bar nav ul li:nth-child(3) a {
	color: #51695f;
	background: #c5b000;
}

#header-main .nav-bar nav ul li:nth-child(4) a {
	color: #51695f;
	background: #f1c49c;
}

#header-main .menu-btn {
	width: 32px;
	height: 18px;
	float: left;
	display: none;
	cursor: pointer;
	z-index: 10001;
	position: absolute;
	top: 20px;
	right: 35px;
}

#header-main .menu-btn .icon-bar {
	width: 100%;
	float: right;
	text-decoration: none;
	position: relative;
}

#header-main .menu-btn .icon-bar span {
	width: 100%;
	height: 2px;
	float: left;
	background: #ffffff;
	position: relative;
	margin: 10px 0 0 0;
}

#header-main .menu-btn .icon-bar span:before {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: -9px;
	left: 0;
}

#header-main .menu-btn .icon-bar span:after {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: 9px;
	left: 0;
}

#header-main .menu-btn.active {
	color: #ffffff;
}

#header-main .menu-btn.active .icon-bar span {
	background: none;
}

#header-main .menu-btn.active .icon-bar span:before {
	height: 2px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

#header-main .menu-btn.active .icon-bar span:after {
	height: 2px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (max-width: 1199px) {
#header-main {
	height: 120px;
}

#header-main .logo {
	float: left;
	position: relative;
	z-index: 1;
	margin: 80px 0 0 0;
}

#header-main .logo img {
	max-width: 100%;
	max-height: 80px;
}
}

@media only screen and (max-width: 767px) {
		#header-main  {

    z-index: 4;
}
	#header-main .logo {

    z-index: 5;
}
	
	.project-links {
   z-index: 3 !important;
}
	
#header-main {
	height: 62px;
}

#header-main .container {
	max-width: 100%
}

#header-main .logo {
	margin: 30px 0 0 0;
}

#header-main .logo img {
	max-height: 65px;
}

#header-main .social-links {
	display: none;
}

#header-main .menu-btn {
	display: block;
}
}

@media only screen and (max-width: 399px) {
#header-main .menu-btn {
	right: 20px;
}

#header-main .nav-bar nav ul li a {
	padding: 67px 20px;
		     padding: 11vh 35px;
	
	padding-top: calc(12vh - 15.5px);
}
}


/*
 4.) Content - Main
----------------------------------------*/

#content-main {
	width: 100%;
	float: left;
}


/* Banner - Main */
.banner-main {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.banner-main img {
	width: 100%;
	min-width: 1200px;
	margin: 0 -600px;
}

@media only screen and (max-width: 767px) {
.banner-main img {
	min-width: 850px;
	margin: 0 -425px;
}
}


/*
 5.) Footer
----------------------------------------*/

#footer-main {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	background: #242424;
	position: relative;
	z-index: 4000;
	padding: 0 0 35px 0;
}

#footer-main:before {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(../img/footer-bg.png) no-repeat top center;
	background-size: 100% auto;
	position: absolute;
	top: -100px;
	left: 0;
}

#footer-main .container {
	max-width: 100%;
}

#footer-main .address-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 15px;
	line-height: 21px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	padding: 0 0 65px 0;
	margin: 0 0 -20px 0;
}

#footer-main .address-txt:last-child {
	padding-bottom: 0;
}

#footer-main .address-txt p {
	width: 37.50%;
	float: left;
	padding: 0 50px 0 0;
	margin: 0 0 20px 0;
}

#footer-main .address-txt ul {
	width: 62.50%;
	float: left;
	padding: 0 0 20px 0;
	margin: 0 0 -12px 0;
}

#footer-main .address-txt ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 50px 12px 0;
}

#footer-main .address-txt ul li:before {
	display: none;
}

#footer-main .address-txt ul li:last-child {
	margin-right: 0;
}

#footer-main .social-links {
	display: none;
	padding-bottom: 20px;
}

#footer-main .social-links:last-child {
	padding-bottom: 0;
}

#footer-main .copyrights {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 10px;
	color: #c6bdb2;
	line-height: 16px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	margin: 0 0 -10px 0;
}

#footer-main .copyrights p {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 30px 10px 0;
}

#footer-main .copyrights p:last-child {
	margin-right: 0;
}

@media only screen and (max-width: 1199px) {
#footer-main .address-txt p {
	width: 50%;
}

#footer-main .address-txt ul {
	width: 50%;
}
}

@media only screen and (max-width: 991px) {
#footer-main .address-txt p {
	width: 100%;
	padding: 0;
}

#footer-main .address-txt ul {
	width: 100%;
}
}

@media only screen and (max-width: 767px) {
#footer-main {
	padding: 30px 0;
}

#footer-main:before {
	top: -30px;
}

#footer-main .container {
	padding: 0 20px;
}

#footer-main .social-links {
	display: inline-block;
}

#footer-main .copyrights p {
	margin: 0 20px 10px 0;
}
}


/*
 6.) Project - Landing
----------------------------------------*/

/* Content - Inner */
.content-inner {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 200px 0 300px 0;
}

@media only screen and (max-width: 1199px) {
.content-inner {
	padding: 150px 0 200px 0;
}
}

@media only screen and (max-width: 767px) {
.content-inner {
	padding: 100px 0 110px 0;
}
}


/* Content - Inner */
.content-inner2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 200px 0 0 0;
}

@media only screen and (max-width: 1199px) {
.content-inner2 {
	padding: 150px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.content-inner2 {
	padding: 100px 0 0 0;
}
}


/* Project - Links */
.project-links {
	width: 100%;
	float: left;
	position: relative;
	z-index: 5000;
}

.project-links .work-link {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	color: #ffffff;
	line-height: 22px;
	text-transform: uppercase;
	padding: 0;
	margin: 0 50px 0 0;
}

.project-links .work-link a {
	color: #c6bdb2;
	text-decoration: none;
}

.project-links .work-link a:hover,
.project-links .work-link a:focus,
.project-links .work-link a:active {
	color: #ffffff;
}

.project-links ul {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 -12px -12px -12px;
}

.project-links ul li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	color: #f1c49c;
	line-height: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 0;
	margin: 0 12px 12px 12px;
}

.project-links ul li:before {
	display: none;
}

.project-links ul li a {
	color: #f1c49c;
	text-decoration: none;
}

.project-links ul li a:hover,
.project-links ul li a:focus,
.project-links ul li a:active {
	color: #ffffff;
}

@media only screen and (min-width: 768px) {
.project-links {
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	padding-top: 84%;
	position: absolute;
	top: 60px;
	left: 0;
}
}

@media only screen and (max-width: 767px) {
.project-links {
	text-align: right;
	margin-bottom: 25px;
}

.project-links .work-link {
	float: left;
}

.project-links ul {
	float: right414;
}
}


/* Project - Imgs */
.project-imgs {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.project-imgs .container {
	max-width: 1155px;
}

.project-imgs ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 -35px 0;
}

.project-imgs ul li {
	width: 50%;
	float: left;
	padding: 0;
	margin: 0 0 35px 0;
}

.project-imgs ul li:before {
	display: none;
}

.project-imgs .show-mbl {
	display: none;
}

.project-imgs .box {
	width: 100%;
	float: left;
	position: relative;
}

.project-imgs .box h3 {
	width: 100%;
	float: left;
	font-size: 17px;
	color: #c6bdb2;
	line-height: 21px;
	text-transform: uppercase;
	padding: 0;
}

.project-imgs .box .figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin-bottom: 20px;
}

.project-imgs .box .figure:last-child {
	margin-bottom: 0;
}

.project-imgs .box .figure img {
	width: 100%;
}

.project-imgs ul li:first-child .box {
	width: 80.25%;
	float: right;
}

.project-imgs ul li:nth-child(2) {
	margin-top: 16%;
	margin-bottom: 0;
}

.project-imgs ul li:nth-child(2) .box {
	padding-top: 40px;
}

.project-imgs ul li:nth-child(2) .box .figure {
	margin-bottom: 0;
}

.project-imgs ul li:nth-child(2) .box h3 {
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 19% 0 20px;
}

.project-imgs ul li:nth-child(3) {
	margin-bottom: 70px;
}

.project-imgs ul li:nth-child(3) .box .figure {
    width: 100%;
    margin-bottom: 0;
    margin-top: -12%;
}

.project-imgs ul li:nth-child(3) .box h3 {
    width: 31.10%;
    position: absolute;
    bottom: -40px;
    left: 68.90%;
    padding: 0 0 0 20px;
}

.project-imgs ul li:nth-child(4) {
    margin-top: 4%;
}

.project-imgs ul li:nth-child(4) .box {
    width: 100%;
    padding-right: 40%;
    float: right;
    margin-top: 10%;
}

.project-imgs ul li:nth-child(5) .box {
	width: 73.05%;
}

.project-imgs ul li:nth-child(5) .box h3 {
	text-align: right;
	padding: 0 0 0 20px;
}

.project-imgs ul li:nth-child(6) {
    margin-top: 0%;
    margin-bottom: 0;
}

.project-imgs ul li:nth-child(6) .box {
	width: 79.70%;
	float: right;
	padding-top: 40px;
}

.project-imgs ul li:nth-child(6) .box .figure {
	margin-bottom: 0;
}

.project-imgs ul li:nth-child(6) .box h3 {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 20px 0 0;
}

.project-imgs ul li:nth-child(7) {
	margin-top: 11%;
	margin-bottom: 0;
}

.project-imgs ul li:nth-child(7) .box {
	padding-top: 40px;
}

.project-imgs ul li:nth-child(7) .box .figure {
	width: 58.06%;
	margin-bottom: 0;
}

.project-imgs ul li:nth-child(7) .box h3 {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 20px;
}

.project-imgs ul li:nth-child(8) {
	margin-top: -5.5%;
}

.project-imgs ul li:nth-child(8) .box {
	width: 97.72%;
	float: right;
}

@media only screen and (max-width: 767px) {
.project-imgs .show-mbl {
	display: block;
}

.project-imgs .hide-mbl {
	display: none;
}

.project-imgs .container {
	max-width: 570px;
}

.project-imgs ul {
	margin: 0 0 -25px 0;
}

.project-imgs ul li {
	width: 100%;
	margin: 0 0 25px 0;
}

.project-imgs .box {
	width: 100%;
	float: left;
	position: relative;
}

.project-imgs .box .figure {
	margin-bottom: 25px;
}

.project-imgs ul li:first-child .box {
	width: 100%;
}

.project-imgs ul li:nth-child(2) {
	margin-top: 0;
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(2) .box {
	padding-top: 0;
}

.project-imgs ul li:nth-child(2) .box .figure {
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(2) .box h3 {
	text-align: left;
	position: relative;
	padding: 0;
}

.project-imgs ul li:nth-child(3) {
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(3) .box .figure {
	width: 100%;
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(3) .box h3 {
	width: 100%;
	position: relative;
	left: 0;
	padding: 0;
}

.project-imgs ul li:nth-child(4) {
	margin-top: 0;
}

.project-imgs ul li:nth-child(4) .box {
	width: 100%;
}

.project-imgs ul li:nth-child(5) .box {
	width: 100%;
}

.project-imgs ul li:nth-child(5) .box h3 {
	text-align: left;
	padding: 0;
}

.project-imgs ul li:nth-child(6) {
	margin-top: 0;
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(6) .box {
	width: 100%;
	padding-top: 0;
}

.project-imgs ul li:nth-child(6) .box .figure {
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(6) .box h3 {
	position: relative;
	padding: 0;
}

.project-imgs ul li:nth-child(7) {
	margin-top: 0;
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(7) .box {
	padding-top: 0;
}

.project-imgs ul li:nth-child(7) .box .figure {
	width: 100%;
	margin-bottom: 25px;
}

.project-imgs ul li:nth-child(7) .box h3 {
	text-align: left;
	position: relative;
	padding: 0;
}

.project-imgs ul li:nth-child(8) {
	margin-top: 0;
}

.project-imgs ul li:nth-child(8) .box {
	width: 100%;
}
}


/*
 7.) Project - Detail
----------------------------------------*/

/* Back - To - Link */
.back-to-link {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	color: #c6bdb2;
	line-height: 22px;
	text-transform: uppercase;
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	position: absolute;
	top: 70px;
	left: 28px;
	padding: 0;
}

.back-to-link a {
	float: left;
	color: #c6bdb2;
	text-decoration: none;
	position: relative;
}

.back-to-link a:before {
	content: "";
	width: 90px;
	height: 25px;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	-webkit-transform: rotate3d(0, 0, 1, -90deg);
	transform: rotate3d(0, 0, 1, -90deg);
	background: url(../img/arrow-left.png) no-repeat top center;
	background-size: auto 25px;
	position: absolute;
	top: -70px;
	left: -22px;
}

.back-to-link a:hover,
.back-to-link a:focus,
.back-to-link a:active {
	color: #ffffff;
}

.back-to-link a:hover:before,
.back-to-link a:focus:before,
.back-to-link a:active:before {
	background-image: url(../img/arrow-left-white.png);
}

@media only screen and (max-width: 1199px) {
.back-to-link {
	left: -15px;
}
}

@media only screen and (max-width: 767px) {
.back-to-link {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1px;
	top: 35px;
	left: -12px;
}

.back-to-link a:before {
	width: 80px;
	height: 16px;
	background-size: auto 16px;
	top: -40px;
	left: -24px;
}
}


/* Project - List */
.project-list {
	width: 100%;
	overflow: hidden;
	padding: 0 0 180px 0;
}

.project-list:last-child {
	padding-bottom: 0;
}

.project-list .show-mbl {
	display: none;
}

.project-list .article {
	width: 100%;
	float: left;
	margin: 0 0 45px 0;
}

.project-list .article h3 {
	font-size: 17px;
	line-height: 22px;
	letter-spacing: 1.5px;
	padding: 0;
}

.project-list .article .lrg-txt {
	font-size: 17px;
	color: #c6bdb2;
	line-height: 22px;
}

.project-list .article .figure {
	width: 71.80%;
	float: left;
	text-align: center;
	overflow: hidden;
}

.project-list .article .figure img {
	width: 100%;
}

.project-list .article .aside {
	width: 28.20%;
	float: right;
	padding: 0 0 400px 27px;
}

.project-list .article.sml {
	width: 28.20%;
	float: right;
}

.project-list .article.medium {
	width: 71.80%;
	float: left;
}

.project-list .article.margin-minus {
	margin-top: -360px;
}

.project-list .article.sml .figure,
.project-list .article.medium .figure {
	width: 100%;
}

.project-list .article.sml .figure:last-child,
.project-list .article.medium .figure:last-child {
	margin-bottom: 0;
}

.project-list .article.sml .txt-max,
.project-list .article.medium .txt-max {
	width: 100%;
	float: left;
	padding: 40px 0 0 45px;
}

.project-list .article.medium .txt-max {
	padding-right: 50px;
}

.project-list .articles-out {
	width: 100%;
	float: left;
	margin: 0 0 -45px 0;
}

@media only screen and (max-width: 1199px) {
.project-list {
	padding: 0 0 100px 0;
}

.project-list .article {
	margin: 0 0 40px 0;
}

.project-list .article .figure {
	width: 60%;
}

.project-list .article .aside {
	width: 40%;
	padding: 0 0 340px 20px;
}

.project-list .article.sml {
	width: 40%;
}

.project-list .article.medium {
	width: 60%;
}

.project-list .article.margin-minus {
	margin-top: -280px;
}

.project-list .article.sml .txt-max,
.project-list .article.medium .txt-max {
	padding: 30px 0 0 30px;
}

.project-list .article.medium .txt-max {
	padding-right: 30px;
}

.project-list .articles-out {
	margin: 0 0 -40px 0;
}
}

@media only screen and (max-width: 767px) {
.project-list {
	padding: 0 0 80px 0;
}

.project-list .show-mbl {
	display: block;
}

.project-list .hide-mbl {
	display: none;
}

.project-list .article {
	margin: 0 0 22px 0;
}

.project-list .article .figure {
	width: 100%;
}

.project-list .article .aside {
	width: 100%;
	padding: 0 0 40px 0;
}

.project-list .article .aside:last-child {
	padding-bottom: 0;
}

.project-list .article.sml {
	width: 100%;
}

.project-list .article.medium {
	width: 100%;
}

.project-list .article.margin-minus {
	margin-top: 0;
}

.project-list .article.sml .aside,
.project-list .article.sml .txt-max,
.project-list .article.medium .txt-max {
	padding: 30px 0 20px 0;
}

.project-list .article.medium .txt-max {
	padding-right: 0;
}

.project-list .articles-out {
	width: 100%;
	float: left;
	margin: 0 0 -22px 0;
}
}


/* Banner - Single */
.banner-single {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin-bottom: 100px;
}

.banner-single:last-child {
	margin-bottom: 0;
}

.banner-single .show-mbl {
	display: none;
}

.banner-single .figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
}

.banner-single .figure img {
	width: 100%;
}

@media only screen and (max-width: 1199px) {
.banner-single {
	margin-bottom: 80px;
}
}

@media only screen and (max-width: 767px) {
.banner-single {
	margin-bottom: 22px;
}

.banner-single .show-mbl {
	display: block;
}

.banner-single .hide-mbl {
	display: none;
}
}


/* Client - Details */
.client-details {
	width: 100%;
	float: left;
}

.client-details .figure {
	width: 28.20%;
	float: right;
	text-align: center;
	overflow: hidden;
}

.client-details .figure img {
	width: 100%;
}

.client-details .aside {
	width: 71.80%;
	float: left;
	padding: 120px 0 0 0;
}

.client-details .aside h3 {
	font-size: 17px;
	color: #51695f;
	line-height: 21px;
	letter-spacing: 1.5px;
	padding: 0 0 12px 0;
}

.client-details .aside h3:last-child {
	padding-bottom: 0;
}

.client-details .aside p {
	font-size: 17px;
	line-height: 17px;
	padding: 0 0 18px 0;
}

.client-details .aside p:last-child {
	padding-bottom: 0;
}

.client-details .aside .txt-max {
	width: 100%;
	max-width: 400px;
	float: left;
}

.client-details .aside .split-txt {
	width: 100%;
	float: left;
	padding: 0 0 70px 0;
}

.client-details .aside .split-txt:last-child {
	padding-bottom: 0;
}

.client-details .aside .split-txt .left-txt,
.client-details .aside .split-txt .right-txt {
	width: 50%;
	float: left;
}

.client-details .aside .split-txt .left-txt {
	padding-right: 30px;
}

.client-details .aside .box {
	width: 100%;
	max-width: 640px;
	float: right;
	color: #000000;
	background: #9ec2b9;
	padding: 50px 30px 300px 30px;
}

@media only screen and (max-width: 1199px) {
.client-details .figure {
	width: 40%;
}

.client-details .aside {
	width: 60%;
	padding: 70px 0 0 0;
}

.client-details .aside .split-txt {
	padding: 0 0 50px 0;
}

.client-details .aside .split-txt .left-txt,
.client-details .aside .split-txt .right-txt {
	width: 100%;
	padding-bottom: 50px;
}

.client-details .aside .split-txt .left-txt {
	padding-right: 0;
}

.client-details .aside .split-txt .left-txt:last-child,
.client-details .aside .split-txt .right-txt:last-child {
	padding-bottom: 0;
}

.client-details .aside .box {
	max-width: 100%;
	padding: 50px 30px 200px 30px;
}
}

@media only screen and (max-width: 767px) {
.client-details .figure {
	width: 100%;
	margin: 0 0 60px 0;
}

.client-details .figure img {
	width: 100%;
}

.client-details .aside {
	width: 900%;
	background: #9ec2b9;
	padding: 0 400%;
	margin: 0 -400%;
}

.client-details .aside .box {
	width: 100%;
	background: none;
	padding: 40px 30px 110px 30px;
	margin: 0;
}
}


/*
 8.) Practice
----------------------------------------*/

/* Feature - List */
.feature-list {
	width: 100%;
	overflow: hidden;
}

.feature-list .top-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 30px;
	line-height: 38px;
	text-align: center;
	padding: 0 0 160px 0;
}

.feature-list .top-cont p:last-child {
	padding-bottom: 0;
}

.feature-list .top-cont .aside {
	width: 100%;
	max-width: 670px;
	float: none;
	display: inline-table;
	vertical-align: top;
	text-align: left;
}

.feature-list .article {
	width: 100%;
	float: left;
	margin-bottom: 85px;
}

.feature-list .article:last-child {
	margin-bottom: 0;
}

.feature-list .article .figure {
	width: 36.65%;
	float: left;
	text-align: center;
	overflow: hidden;
}

.feature-list .article .figure img {
	max-width: 100%;
}

.feature-list .article .aside {
	width: 63.35%;
	float: right;
	padding: 0 0 0 8.5%;
	margin: -8px 0 0 0;
}

.feature-list .article .aside h2 {
	text-transform: uppercase;
}

.feature-list .article .aside p:last-child {
	padding-bottom: 0;
}

.feature-list .article-out {
	width: 100%;
	float: left;
	color: #000000;
	background: #ffffff;
	padding: 85px 40px 200px 75px;
}

@media only screen and (max-width: 1199px) {
.feature-list .top-cont {
	font-size: 26px;
	line-height: 34px;
	padding: 0 0 100px 0;
}

.feature-list .article {
	margin-bottom: 70px;
}

.feature-list .article .figure {
	width: 40%;
}

.feature-list .article .aside {
	width: 60%;
	padding: 0 0 0 40px;
	margin: -8px 0 0 0;
}

.feature-list .article .aside h2 br {
	display: none;
}

.feature-list .article-out {
	padding: 70px 40px 170px 40px;
}
}

@media only screen and (max-width: 767px) {
.feature-list .top-cont {
	font-size: 23px;
	line-height: 33px;
	padding: 0 0 70px 0;
}

.feature-list .top-cont .aside {
	max-width: 100%;
}

.feature-list .article {
	margin-bottom: 70px;
}

.feature-list .article .figure {
	width: 100%;
	margin: 0 0 0 0;
}

.feature-list .article .figure img {
	width: 100%;
}

.feature-list .article .aside {
	width: 100%;
	padding: 0 0 35px 0;
	margin: 0;
}

.feature-list .article .aside:last-child {
	padding-bottom: 0;
}

.feature-list .article-out {
	width: 900%;
	padding: 40px 400% 110px 400%;

	margin: 0 -400%;
}
}


/*
 9.) Team
----------------------------------------*/


/* Articles - List */
.articles-list {
	width: 100%;
	background: #000000;
	overflow: hidden;
	padding-bottom: 150px;
}

.articles-list .container {
	max-width: 980px;
}

.articles-list .top-cont {
	width: 100%;
	float: left;
	padding: 0 0 100px 0;
}

.articles-list .top-cont:last-child {
	padding-bottom: 0;
}

.articles-list .top-cont:last-child {
	padding-bottom: 0;
}

.articles-list .top-cont .txt-max {
	width: 100%;
	max-width: 750px;
	float: left;
}

.articles-list .article {
	width: 50%;
	float: left;
	margin-bottom: 80px;
}

.articles-list .article .figure {
	width: 62.27%;
	float: right;
	text-align: center;
	overflow: hidden;
}

.articles-list .article .figure img {
	width: 100%;
}

.articles-list .article .aside {
	width: 100%;
	float: left;
	padding: 0 15% 0 0;
	margin: -20px 0 0 0;
}

.articles-list .article .aside h3 {
	font-size: 15px;
	color: #ffffff;
	line-height: 26px;
	text-transform: uppercase;
	padding: 0 60% 15px 0;
}

.articles-list .article .aside h3:last-child {
	padding-bottom: 0;
}

.articles-list .article .aside h3 a {
	color: #ffffff;
	text-decoration: none;
}

.articles-list .article .aside h3 a:hover,
.articles-list .article .aside h3 a:focus,
.articles-list .article .aside h3 a:active {
	color: #c6bdb2;
}

.articles-list .article .aside p {
	font-size: 17px;
	color: #9ec2b9;
	line-height: 30px;
}

.articles-list .article .aside p a {
	color: #c6bdb2;
	text-decoration: none;
}

.articles-list .article .aside p a:hover,
.articles-list .article .aside p a:focus,
.articles-list .article .aside p a:active {
	color: #ffffff;
}

.articles-list .article:nth-child(odd) {
	margin-top: 90px;
}

.articles-list .article:nth-child(even) .figure {
	float: left;
}

.articles-list .article:nth-child(even) .aside {
	padding: 30px 5% 0 35px;
	margin: 0;
}

.articles-list .articles-out {
	width: 100%;
	float: left;
	margin: 0 0 -80px 0;
}

@media only screen and (max-width: 767px) {
.articles-list {
	padding-bottom: 100px;
}

.articles-list .container {
	max-width: 570px;
}

.articles-list .top-cont .txt-max {
	max-width: 100%;
}

.articles-list .article {
	width: 100%;
}

.articles-list .article .figure {
	width: 100%;
	text-align: left;
	margin: 0 0 35px 0;
}

.articles-list .article .figure img {
	max-width: 170px;
}

.articles-list .article .aside {
	max-width: 270px;
	padding: 0;
	margin: 0;
}

.articles-list .article:nth-child(odd) {
	margin-top: 0;
}

.articles-list .article:nth-child(even) .aside {
	padding: 0;
}
}


/* Team - List */
.team-list {
	width: 100%;
	overflow: hidden;
}

.team-list .container {
	max-width: 980px;
}

.team-list .article {
	width: 50%;
	float: left;
	margin-bottom: 80px;
}

.team-list .article .figure {
	width: 45%;
	float: right;
	text-align: center;
	overflow: hidden;
}

.team-list .article .figure img {
	width: 100%;
}

.team-list .article .aside {
	width: 55%;
	float: left;
	padding: 0 15px 0 0;
	margin: -5px 0 0 0;
}

.team-list .article .aside h3 {
	font-size: 15px;
	color: #ffffff;
	line-height: 26px;
	text-transform: uppercase;
	padding: 0 0 5px 0;
}

.team-list .article .aside h3:last-child {
	padding-bottom: 0;
}

.team-list .article .aside h3 a {
	color: #ffffff;
	text-decoration: none;
}

.team-list .article .aside h3 a:hover,
.team-list .article .aside h3 a:focus,
.team-list .article .aside h3 a:active {
	color: #c6bdb2;
}

.team-list .article .aside p {
	font-size: 17px;
	line-height: 30px;
}

.team-list .article .aside p a {
	color: #c6bdb2;
	text-decoration: none;
}

.team-list .article .aside p a:hover,
.team-list .article .aside p a:focus,
.team-list .article .aside p a:active {
	color: #ffffff;
}

.team-list .article:nth-child(even) {
	margin-top: 80px;
	margin-bottom: 0;
}

.team-list .article:nth-child(even) .figure {
	width: 45.90%;
	float: left;
}

.team-list .article:nth-child(even) .aside {
	width: 54.10%;
	float: right;
	padding-right: 0;
	padding-left: 15px;
}

.team-list .articles-out {
	width: 100%;
	float: left;
}

@media only screen and (max-width: 991px) {
.team-list .article .aside h3 {
	padding: 0;
}

.team-list .article .aside p {
	font-size: 14px;
	line-height: 20px;
}
}

@media only screen and (max-width: 767px) {
.team-list .container {
	max-width: 570px;
	padding: 0;
}

.team-list .article {
	width: 49.27%;
	margin-bottom: 80px;
}

.team-list .article .figure {
	width: 100%;
}

.team-list .article .aside {
	width: 100%;
	padding: 10px 15px 0 35px;
	margin: 0;
}

.team-list .article .aside h3 {
	padding: 0;
}

.team-list .article .aside p {
	font-size: 12px;
	line-height: 18px;
}

.team-list .article:nth-child(even) {
	width: 50.27%;
	margin-top: 80px;
	margin-bottom: 0;
}

.team-list .article:nth-child(even) .figure {
	width: 100%;
}

.team-list .article:nth-child(even) .aside {
	width: 100%;
	padding-right: 35px;
	padding-left: 15px;
}
}

@media only screen and (max-width: 399px) {
.team-list .article .aside {
	padding: 10px 15px 0 20px;
}

.team-list .article:nth-child(even) .aside {
	padding-right: 20px;
	padding-left: 15px;
}
}


/*
 10.) News
----------------------------------------*/

/* News - List */
.news-article {
	width: 100%;
/* 	overflow: hidden; */
}

.news-article .container {
	max-width: 960px;
	padding: 0;
}

.news-article .top-cont {
	width: 100%;
	float: left;
	font-size: 17px;
	line-height: 30px;
	padding: 0 50px 120px 50px;
}

.news-article .top-cont:last-child {
	padding-bottom: 0;
}

.news-article .top-cont .txt-max {
	width: 100%;
	max-width: 730px;
	float: left;
}

.news-article .article {
	width: 33.33%;
	float: left;
	padding: 0 8px 0 8px;
	margin: 0 0 100px 0;
}

.news-article .article .box {
	width: 100%;
	float: left;
	text-decoration: none;
}

.news-article .article .box .top-txt {
	width: 100%;
	float: left;
	padding: 0 0 10px 0;
}

.news-article .article .box .top-txt:last-child {
	padding-bottom: 0;
}

.news-article .article .box .figure {
	width: 100%;
	float: left;
	margin: 0 0 10px 0;
}

.news-article .article .box .figure:last-child {
	margin-bottom: 0;
}

.news-article .article .box .figure img {
	width: 100%;
}

.news-article .article .box .readmore a {
	color: #000000;
}

.news-article .article .box .readmore a:hover,
.news-article .article .box .readmore a:focus,
.news-article .article .box .readmore a:active {
	color: #000000;
	text-decoration: underline;
}

.news-article .articles-out {
	width: 100%;
	float: left;
	padding: 0 42px 0 42px;
	margin: 0 0 -100px 0;
}

@media only screen and (max-width: 991px) {
.news-article .article {
	width: 50%;
}
}

@media only screen and (max-width: 767px) {
.news-article .container {
	max-width: 570px;
	padding: 0 35px;
}

.news-article .top-cont {
	padding: 0 0 55px 0;
}

.news-article .top-cont .txt-max {
	max-width: 100%;
}

.news-article .article {
	width: 100%;
	padding: 0;
	margin: 0 0 150px 0;
}

.news-article .articles-out {
	padding: 0;
	margin: 0 0 -150px 0;
}
}

@media only screen and (max-width: 399px) {
.news-article .container {
	padding: 0 20px;
}
}


/* SideBar */
.slide-bar {
	float: right;
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	position: absolute;
	top: 430px;
	right: -276px;
}

.slide-bar ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.slide-bar ul li {
	width: 100%;
	float: left;
	font-size: 17px;
	color: #51695f;
	line-height: 21px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}

.slide-bar ul li:before {
	display: none;
}

.slide-bar ul li a {
	width: 500%;
	float: left;
	color: #51695f;
	text-decoration: none;
	background: #f1c49c;
	padding: 18px 70px;
}

.slide-bar ul li:nth-child(2) a {
	background: #c5b000;
}

.slide-bar ul li:nth-child(3) a {
	color: #c6bdb2;
	background: #51695f;
}

.slide-bar ul li:nth-child(4) a {
	color: #c6bdb2;
	background: #000000;
}

@media only screen and (max-width: 1199px) {
.slide-bar {
	top: 325px;
	right: -207px;
}

.slide-bar ul li a {
	padding: 15px 50px;
}
}

@media only screen and (max-width: 767px) {
.slide-bar {
	display: none;
}
}


/* Background - Colors */
.orange-bg {
	color: #242424;
	background: #eac5a1;
}

.green-bg {
	background: #51695f;
}