/***********************************************************************************************/
/* FONTS */
/***********************************************************************************************/
@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700";

@font-face {
	font-family: "Journalism";
	src: url("../fonts/Journalism/journalism-regular.woff2") format("woff2"),
	     url("../fonts/Journalism/journalism-regular.woff") format("woff"),
	     url("../fonts/Journalism/journalism-regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Lifehack";
	src: url("../fonts/Lifehack/lifehack-regular.woff2") format("woff2"),
	     url("../fonts/Lifehack/lifehack-regular.woff") format("woff"),
	     url("../fonts/Lifehack/lifehack-regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}





/***********************************************************************************************/
/* SCAFFOLDING */
/***********************************************************************************************/
body {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: #3c2c39;
}

a {
	color: #fed136;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #e6b301;
	text-decoration: none;
}





/***********************************************************************************************/
/* TYPOGRAPHY */
/***********************************************************************************************/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: inherit;
	font-weight: 600;
	line-height: 1.2;
	color: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h4, .h4,
h5, .h5,
h6, .h6 {
	margin-top: 10px;
	margin-bottom: 10px;
}

h1, .h1 { font-size: 36px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 14px; }
h6, .h6 { font-size: 12px; }

p {
	margin: 0 0 20px;
}

small, .small {
	font-size: 12px;
}

ul, ol {
	margin-top: 0;
	margin-bottom: 20px;
}

ul ul, ul ol,
ol ol, ol ul {
	margin-bottom: 0;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

dl {
	margin-top: 0;
	margin-bottom: 20px;
}

dt,
dd {
	line-height: 1.42857143;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

blockquote {
	margin: 0 0 20px;
	padding: 10px 20px;
}

blockquote :last-child {
	margin-bottom: 0;
}

.text-left       { text-align: left; }
.text-right      { text-align: right; }
.text-center     { text-align: center; }

.font-light        { font-weight: 300; }
.font-normal       { font-weight: 400; }
.font-semibold     { font-weight: 600; }
.font-bold         { font-weight: 700; }

.text-muted         { color: #3f3f3e; }
.text-primary       { color: #163475; }
.text-secondary     { color: #4c4013; }
.text-tertiary      { color: #ab2293; }
.text-info          { color: #395075; }
.text-warning       { color: #fed136; }
.text-danger        { color: #a94442; }
.text-success       { color: #3c763d }

.bg-warning {
	background-color: #fed136;
	color: #4c4013;
}

.font-secondary { font-family: Lifehack, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }
.font-serif { font-family: Journalism, Georgia, "Times New Roman", Times, serif; }

.feature-page-header {
	margin: 0;
	font-weight: normal;
	line-height: 1;
	text-transform: uppercase;
}


@media (max-width: 767px) {
	.feature-page-header {
		font-size: 130px !important;
	}
}





/***********************************************************************************************/
/* GRID */
/***********************************************************************************************/
.row-10,
.form-horizontal .form-group.row-10 {
	margin-right: -5px;
	margin-left: -5px;
}

.row-10 > [class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}





/***********************************************************************************************/
/* FORMS */
/***********************************************************************************************/
label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="search"] {
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
			box-sizing: border-box;
    -webkit-appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
}

input[type="file"] {
	display: block;
}

input[type="range"] {
	display: block;
	width: 100%;
}

select[multiple],
select[size] {
	height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.form-group {
	margin-bottom: 15px;
}

.form-control {
	display: block;
	width: 100%;
	height: 36px;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 0;
	background-image: none;
	background-color: #fff;
	background-clip: padding-box;
	box-shadow: inset 0 3px 4px rgba(0, 0, 0, .2);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.42857143;
	color: #395075;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
	border-color: #163475;
	box-shadow: inset 0 3px 4px rgba(0, 0, 0, .2), 0 0 6px rgba(22, 52, 117, .6);
	outline: 0;
}

.form-control::-moz-placeholder { color: #999; opacity: 1; }
.form-control:-ms-input-placeholder { color: #999; }
.form-control::-webkit-input-placeholder { color: #999; }

textarea.form-control {
	height: auto;
}

.has-error .form-control {
	border-color: #a94442;
}

.has-error .form-control:focus {
	box-shadow: inset 0 3px 4px rgba(0, 0, 0, .2), 0 0 6px rgba(169, 68, 66, .6);
}

.has-error {
	color: #a94442;
}

.radio,
.checkbox {
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}

.radio label,
.checkbox label {
	min-height: 20px;
	margin-bottom: 0;
	padding-left: 20px;
	font-weight: normal;
	cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: absolute;
	margin-top: 4px \9;
	margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
	margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	padding-left: 20px;
	font-weight: normal;
	vertical-align: middle;
	cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
	margin-top: 0;
	margin-left: 10px;
}

.help-block {
	display: block;
	margin-top: 5px;
}





/***********************************************************************************************/
/* BUTTONS */
/***********************************************************************************************/
.btn {
	display: inline-block;
	margin: 0;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 0;
	background-image: none;
	box-shadow: 0 6px 9px rgba(0, 0, 0, .2);
	font-weight: bold;
	font-size: 14px;
	line-height: 1.42857143;
	white-space: nowrap;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;

	-ms-touch-action: manipulation;
		touch-action: manipulation;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

.btn:focus,
.btn:active:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn:active {
	background-image: none;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
	outline: 0;
}

.btn-md {
	padding: 5px 40px;
	font-size: 20px;
}

.btn-warning {
	border-color: #fed136;
	background-color: #fed136;
	color: #4c4013;
}

.btn-warning:hover,
.btn-warning:focus {
	border-color: #f6bf01;
	background-color: #fec503;
}

.btn-warning:active {
	border-color: #dcab01;
	background-color: #b48b01;
}





/***********************************************************************************************/
/* NAVS */
/***********************************************************************************************/
.nav:before, .nav:after { display: table; content: " "; }
.nav:after { clear: both; }

.nav {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.nav > li {
	display: block;
}

.nav > li > a {
	display: block;
	text-decoration: none;
}

.navbar-header:before, .navbar-header:after { display: table; content: " "; }
.navbar-header:after { clear: both; }

.navbar-collapse:before, .navbar-collapse:after { display: table; content: " "; }
.navbar-collapse:after { clear: both; }

.navbar-collapse {
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
	overflow-y: auto;
}

.navbar-toggle {
	float: right;
	margin: 8px 0;
	padding: 9px 10px;
	border: 1px solid #0a1735;
	border-radius: 4px;
	background-image: none;
	background-color: #163475;
}

.navbar-toggle:focus {
	outline: 0;
}

.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: #fff;
}

.navbar-toggle .icon-bar + .icon-bar {
	margin-top: 4px;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
	border-color: #202d42;
	background-color: #395075;
}


@media (min-width: 768px) {
	.navbar-collapse.collapse {
		display: block !important;
		height: auto !important;
		overflow: visible !important;
	}

	.navbar-collapse.in {
		overflow-y: visible;
	}

	.navbar-toggle {
		display: none;
	}
}





/***********************************************************************************************/
/* ALERTS */
/***********************************************************************************************/
.alert {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442;
}

.alert-success {
    border-color: #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d;
}





/***********************************************************************************************/
/* MODALS */
/***********************************************************************************************/
.modal-thanks .modal-header {
	padding: 50px 15px;
	border-bottom: 0;
}

.modal-thanks .modal-header .close {
	position: absolute;
	top: 5px;
	right: 10px;
	margin: 0;
	font-size: 30px;
}

.modal-thanks .modal-header .close span {
	display: block;
}





/***********************************************************************************************/
/* SITE-HEADER */
/***********************************************************************************************/
.site-header {
	padding: 55px 0 40px 0;
	background: #255b8c url("../img/header-bg.jpg") 50% 0 no-repeat;
	background-size: cover;
	color: #fff;
}

.site-header .logo {
	float: left;
	margin-left: 40px;
	overflow: hidden;
}

.site-header .logo a {
	float: left;
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
}

.site-header .logo a img {
	display: block;
}

.site-header .tel {
	float: right;
	margin-bottom: 10px;
	text-align: right;
}

.site-header .tel a {
	display: inline-block;
	font-weight: 600;
	font-size: 32px;
	line-height: 1;
	color: inherit;
	vertical-align: top;
	text-decoration: none;
}

.site-header .slogan {
	margin: 30px 0 100px 0;
}

.site-header .slogan img {
	display: block;
}

.site-header .navbar {
	float: right;
	clear: right;
}

.site-header .navbar-nav {
	font-size: 0.1px;
	word-spacing: 35px;
}

.site-header .navbar-nav > li {
	display: inline-block;
	vertical-align: top;
	word-spacing: normal;
}

.site-header .navbar-nav > li > a {
	font-weight: 400;
	font-size: 18px;
	text-decoration: none;
	color: #fff;
}

.site-header .navbar-nav > li > a:hover,
.site-header .navbar-nav > li > a:focus,
.site-header .navbar-nav > li.active > a,
.site-header .navbar-nav > li.active > a:hover,
.site-header .navbar-nav > li.active > a:focus {
	color: #fed136;
}


@media (max-width: 991px) {
	.site-header {
		padding: 40px 0;
	}

	.site-header .logo {
		float: none;
		margin-left: 0;
		text-align: center;
	}

	.site-header .logo a {
		float: none;
	}

	.site-header .tel {
		float: none;
		margin-top: 25px;
		margin-bottom: 30px;
		text-align: center;
	}

	.site-header .slogan {
		display: none;
	}

	.site-header .navbar {
		float: none;
	}

	.site-header .navbar-nav {
		text-align: center;
	}
}


@media (max-width: 767px) {
	.site-header .navbar-nav {
		text-align: left;
	}

	.site-header .navbar-nav > li {
		display: block;
	}

	.site-header .navbar-nav > li > a {
		padding: 10px 15px;
		background-color: #163475;
		font-size: 14px;
		color: #fff;
	}

	.site-header .navbar-nav > li + li > a {
		border-top: 1px solid #5273a8;
	}

	.site-header .navbar-nav > li > a:hover,
	.site-header .navbar-nav > li > a:focus,
	.site-header .navbar-nav > li.active > a,
	.site-header .navbar-nav > li.active > a:hover,
	.site-header .navbar-nav > li.active > a:focus {
		background-color: #5273a8;
		color: #fff;
	}
}





/***********************************************************************************************/
/* FEATURE-ABOUT */
/***********************************************************************************************/
.feature-about {
	padding: 115px 0 0 0;
	background: #e2eff5 url("../img/about-bg.jpg") 50% 100% no-repeat;
	background-size: cover;
	overflow: hidden;
}

.feature-about .feature-page-header {
	float: left;
	margin: 0 0 0 40px;
	font-size: 202px;
	letter-spacing: 8px;
	color: #ab2293;
}

.feature-about blockquote {
	float: right;
	width: 595px;
	margin: 150px 0 0 0;
	padding: 0;
	font-size: 16px;
}

.feature-about blockquote h2 {
	margin: 0 0 18px;
	font-weight: normal;
	font-size: 40px;
	line-height: 1;
	color: #163475;
}

.feature-about blockquote p {
	text-transform: uppercase;
}

.feature-about ul {
	margin: 130px 0 0 0;
	overflow: hidden;
}

.feature-about ul > li {
	position: relative;
	float: left;
	font-weight: 400;
	font-size: 17px;
	text-align: center;
	overflow: hidden;
}

.feature-about ul > li:first-child {
	height: 265px;
	margin-top: 95px;
}

.feature-about ul > li:last-child {
	height: 360px;
	margin-left: 40px;
}

.feature-about ul > li > div {
	width: 100%;
	border-radius: 50%;
	background-color: #fff;
}

.feature-about ul > li:first-child > div {
	width: 515px;
	height: 515px;
	padding: 90px 60px 0;
}

.feature-about ul > li:last-child > div {
	width: 500px;
	height: 500px;
	padding: 120px 70px 0;
}

.feature-about ul > li > div :last-child {
	margin-bottom: 0;
}


@media (max-width: 1199px) {
	.feature-about {
		padding-top: 70px;
	}

	.feature-about .feature-page-header {
		float: none;
		margin: 0 0 40px;
		text-align: center;
	}

	.feature-about blockquote {
		float: none;
		width: auto;
		max-width: 600px;
		margin: auto;
		padding: 15px;
		background-color: rgba(255, 255, 255, .5);
		text-align: center;
	}

	.feature-about ul > li {
		float: none;
	}

	.feature-about ul > li {
		max-width: 600px;
		margin: auto;
	}

	.feature-about ul > li:first-child {
		height: auto;
		margin-top: 0;
	}

	.feature-about ul > li:last-child {
		height: auto;
		margin-top: 40px;
		margin-left: auto;
	}

	.feature-about ul > li > div,
	.feature-about ul > li > div:first-child,
	.feature-about ul > li > div:last-child {
		width: auto;
		height: auto;
		padding: 30px;
		border-radius: 0;
	}
}


@media (max-width: 767px) {
	.feature-about {
		padding-top: 35px;
	}

	.feature-about ul {
		margin-top: 80px;
	}

	.feature-about ul > li {
		font-size: 14px;
	}

	.feature-about ul > li > div,
	.feature-about ul > li > div:first-child,
	.feature-about ul > li > div:last-child {
		padding: 15px;
	}
}





/***********************************************************************************************/
/* FEATURE-SERVICES */
/***********************************************************************************************/
.feature-services {
	padding: 35px 0 50px 0;
}

.feature-services .feature-page-header {
	float: right;
	margin: 0 0 35px;
	font-size: 165px;
	color: #fff;
}

.service-item {
	overflow: hidden;
}

.service-item + .service-item {
	margin-top: 100px;
}

.service-item > img {
	float: left;
	display: block;
	border-radius: 50%;
}

.service-item > div {
	float: left;
	margin-left: 100px;
}

.service-item:nth-child(even) > img {
	float: right;
}

.service-item:nth-child(even) > div {
	float: right;
	margin-left: 0;
	margin-right: 100px;
}

.service-item > div h3 {
	margin: 0 0 30px;
	font-size: 60px;
	line-height: 1;
	text-transform: uppercase;
}

.service-item > div ul {
	margin-bottom: 0;
	padding-left: 0;
	font-weight: 400;
	font-size: 24px;
	list-style: none;
}

.service-item > div ul > li + li {
	margin-top: 6px;
}

.service-item > div ul > li:before {
	content: "• ";
}


@media (max-width: 1199px) {
	.feature-services .feature-page-header {
		float: none;
		margin: 0 0 40px;
		text-align: center;
	}

	.service-item {
		text-align: center;
	}

	.service-item > img,
	.service-item:nth-child(even) > img {
		float: none;
		margin: 0 auto 30px;
	}

	.service-item > div,
	.service-item:nth-child(even) > div {
		float: none;
		margin: 0;
	}
}


@media (max-width: 767px) {
	.service-item + .service-item {
		margin-top: 50px;
	}

	.service-item > div h3 {
		margin-bottom: 20px;
		font-size: 24px;
	}

	.service-item > div ul {
		font-size: 16px;
	}
}





/***********************************************************************************************/
/* FEATURE-PORTFOLIO */
/***********************************************************************************************/
.feature-portfolio {
	padding: 35px 0 130px 0;
	background: #333067 url("../img/portfolio-bg.jpg") 50% 100% no-repeat;
	background-size: cover;
	color: #fff;
}

.feature-portfolio .feature-page-header {
	margin: 0 0 10px;
	font-size: 178px;
}

.grid-item {
	float: left;
	width: 20%;
	padding: 5px;
}

.grid-item--width2 {
	width: 40%;
}

.grid-sizer {
	width: 20%;
}

.grid-item img {
	position: relative;
	display: block;
	transition: transform .5s;
}

.grid-item img:hover {
	z-index: 1;
	transform: scale(1.1);
}


@media (max-width: 1199px) {
	.feature-portfolio .feature-page-header {
		text-align: center;
	}
}


@media (max-width: 767px) {
	.feature-portfolio {
		padding-bottom: 50px;
	}
}





/***********************************************************************************************/
/* FEATURE-CLIENTS */
/***********************************************************************************************/
.feature-clients {
	padding: 45px 0 20px 0;
	background: #e8e5db url("../img/clients-bg.jpg") 50% 100% no-repeat;
	background-size: cover;
	color: #3f3f3e;
}

.feature-clients .feature-page-header {
	float: right;
	margin: 0;
	font-size: 182px;
}

.feature-clients .clients-desc {
	float: left;
	width: 555px;
	margin: 25px 0 0 0;
	font-size: 24px;
}

.feature-clients .clients-desc :last-child {
	margin-bottom: 0;
}

.feature-clients ul {
	margin-bottom: 0;
	padding-left: 0;
	font-size: 0.1px;
	list-style: none;
}

.feature-clients ul > li {
	position: relative;
	float: left;
	display: inline-block;
	font-size: 14px;
	word-spacing: normal;
	vertical-align: top;
}

.feature-clients ul > li:nth-child(1) { margin-top: 25px; }
.feature-clients ul > li:nth-child(2) { margin-top: -15px; margin-left: 40px; }
.feature-clients ul > li:nth-child(3) { top: 30px; margin-left: 270px; }
.feature-clients ul > li:nth-child(4) { top: -15px; margin-left: -80px; }
.feature-clients ul > li:nth-child(5) { top: 40px; margin-left: 125px; }
.feature-clients ul > li:nth-child(6) { float: right; margin-top: 60px; }
.feature-clients ul > li:nth-child(7) { margin-top: -25px; margin-left: 50px; clear: both; }
.feature-clients ul > li:nth-child(8) { float: right; top: -25px; margin-right: 190px; }

.feature-clients ul > li img {
	display: block;
}


@media (max-width: 1199px) {
	.feature-clients {
		background-image: none;
	}

	.feature-clients .feature-page-header {
		float: none;
		margin: 0 0 40px;
		text-align: center;
	}

	.feature-clients .clients-desc {
		float: none;
		width: auto;
		margin: 0 0 40px;
		text-align: center;
	}

	.feature-clients ul {
		text-align: center;
		word-spacing: 30px;
	}

	.feature-clients ul > li {
		position: static;
		float: none !important;
		margin: 0 0 30px !important;
	}
}


@media (max-width: 767px) {
	.feature-clients {
		padding-top: 35px;
	}

	.feature-clients .clients-desc {
		font-size: 18px;
	}

	.feature-clients ul > li img {
		width: 220px;
	}
}





/***********************************************************************************************/
/* FEATURE-MAP */
/***********************************************************************************************/
.feature-map {
	padding: 15px 0 80px 0;
	background: #3a4662 url("../img/map-bg.jpg") 50% 100% no-repeat;
	background-size: cover;
	color: #fff;
}

.feature-map .feature-page-header {
	margin-bottom: 15px;
	font-size: 150px;
	color: #fed136;
}

.feature-map-left {
	float: left;
	width: 360px;
}

.feature-map .address {
	margin-bottom: 15px;
	font-size: 20px;
}

.feature-map .address b {
	font-weight: 600;
}

.feature-map .tel {
	margin-bottom: 80px;
}

.feature-map .tel a {
	display: inline-block;
	font-weight: bold;
	font-size: 30px;
	line-height: 1;
	vertical-align: top;
	text-decoration: none;
	color: #fff;
}

.feature-map form {
	max-width: 500px;
	margin: auto;
}

.feature-map form .h3 {
	margin: 0 0 20px;
	padding-left: 60px;
	background: url("../img/envelope.png") 0 50% no-repeat;
	font-weight: normal;
	font-size: 30px;
}

.feature-map form textarea {
	height: 125px;
	resize: none;
}

.feature-map .map-outer {
	position: relative;
	float: right;
	width: 590px;
	height: 590px;
	margin: 45px auto 0;
	border-radius: 50%;
}

.feature-map .map-outer .map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.feature-map .map-outer .map > div,
.feature-map .map-outer .map .gm-style {
	border-radius: inherit;
}


@media (max-width: 1199px) {
	.feature-map {
		padding-top: 35px;
	}

	.feature-map .feature-page-header {
		text-align: center;
	}

	.feature-map-left {
		float: none;
		width: auto;
	}

	.feature-map .address {
		text-align: center;
	}

	.feature-map .tel {
		text-align: center;
	}

	.feature-map .map-outer {
		float: none;
	}
}


@media (max-width: 991px) {
	.feature-map .map-outer {
		width: auto;
		height: 0;
		padding-bottom: 56.25%;
		border-radius: 0;
		overflow: hidden;
	}
}


@media (max-width: 767px) {
	.feature-map {
		padding-bottom: 50px;
	}
}





/***********************************************************************************************/
/* SITE-FOOTER */
/***********************************************************************************************/
.site-footer {
	padding: 11px 0;
	background-color: #141a25;
	text-align: center;
	color: #fff;
}

.site-footer .logo {
	float: left;
}

.site-footer .logo a {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
}

.site-footer .logo a img {
	display: block;
	width: 165px;
	height: 38px;
}

.site-footer .tel {
	float: right;
	margin-top: 7px;
}

.site-footer .tel a {
	display: inline-block;
	font-weight: bold;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
	color: #fff;
}

.site-footer .nav {
	margin-top: 6.5px;
	font-size: 0.1px;
	word-spacing: 35px;
	overflow: hidden;
}

.site-footer .nav > li {
	display: inline-block;
	vertical-align: top;
	word-spacing: normal;
}

.site-footer .nav > li > a {
	font-size: 18px;
	text-decoration: none;
	color: #fff;
}

.site-footer .nav > li > a:hover,
.site-footer .nav > li > a:focus,
.site-footer .nav > li.active > a,
.site-footer .nav > li.active > a:hover,
.site-footer .nav > li.active > a:focus {
	color: #fed136;
}


@media (max-width: 1199px) {
	.site-footer {
		padding: 25px 0;
	}

	.site-footer .logo {
		float: none;
		margin-bottom: 25px;
	}

	.site-footer .tel {
		float: none;
		margin-top: 0;
		margin-bottom: 25px;
	}

	.site-footer .nav {
		margin-top: 0;
		word-spacing: 20px;
	}

	.site-footer .nav > li {
		margin-bottom: 5px;
	}

	.site-footer .nav > li > a {
		font-size: 14px;
	}
}