﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Regular.eot');
  src: url('fonts/Lato/Lato-Regular.woff2') format('woff2'),
	   url('fonts/Lato/Lato-Regular.woff') format('woff'),
	   url('fonts/Lato/Lato-Regular.ttf') format('truetype'),
	   url('fonts/Lato/Lato-Regular.svg#Lato') format('svg'),
	   url('fonts/Lato/Lato-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Light.eot');
  src: url('fonts/Lato/Lato-Light.woff2') format('woff2'),
	   url('fonts/Lato/Lato-Light.woff') format('woff'),
	   url('fonts/Lato/Lato-Light.ttf') format('truetype'),
	   url('fonts/Lato/Lato-Light.svg#Lato') format('svg'),
	   url('fonts/Lato/Lato-Light.eot?#iefix') format('embedded-opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Bold.eot');
  src: url('fonts/Lato/Lato-Bold.woff2') format('woff2'),
	   url('fonts/Lato/Lato-Bold.woff') format('woff'),
	   url('fonts/Lato/Lato-Bold.ttf') format('truetype'),
	   url('fonts/Lato/Lato-Bold.svg#Lato') format('svg'),
	   url('fonts/Lato/Lato-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Black.eot');
  src: url('fonts/Lato/Lato-Black.woff2') format('woff2'),
	   url('fonts/Lato/Lato-Black.woff') format('woff'),
	   url('fonts/Lato/Lato-Black.ttf') format('truetype'),
	   url('fonts/Lato/Lato-Black.svg#Lato') format('svg'),
	   url('fonts/Lato/Lato-Black.eot?#iefix') format('embedded-opentype');
  font-weight: 900;
  font-style: normal;
}

/* BEGIN of CSS RESET */
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; */
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	line-height: 1.4;
	font-weight: normal;
	color: #000000;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 25px;
	font-size: 54px;
	line-height: 1.4;
	font-weight: 900;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 20px;
	font-size: 42px;
	line-height: 1.4;
	font-weight: 900;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 900;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 14px;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

p {
	padding: 0 0 25px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

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

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	padding: 17px 0 17px;
	background: #ffffff;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px #555555;
}

header + * {
	padding-top: 84px;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.logo {
	float: left;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 253px;
}

.logo img {
	display: block;
}

header a {
	color: inherit;
}

header h3 {
	line-height: 30px;
	padding: 0 0 0;
}

/*  */

.navbar {
	margin: 0 0 0;
	padding: 9px 0 9px;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
	padding: 0 0 0 32px;
}

.navbar-nav > li > a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 17px;
	line-height: 30px;
	color: #000000;
	background: transparent;
	font-weight: 400;
	text-transform: none;
	position: relative;
}

.navbar-nav > li.active > a {
	color: #000000;
	background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
	color: #000000;
	background: transparent;
}

/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

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

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 70px 0 70px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

html body .bg-gray {
	background-color: #dfdfd0;
}

html body .bg-black {
	background-color: #000000;
	color: #ffffff;
}

/*  */

html body .color-gray {
	color: #cccccc;
}

/*  */

.img-wr {
	position: relative;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.container-sm {
	max-width: 850px;
}

/*  */

.vertical-align-wr {
	display: table;
	width: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

body .btn-main {
	padding: 11px 26px 11px;
	margin: 0 auto 0;
	font-size: 20px;
	line-height: 24px;
	color: #ffffff;
	width: auto;
	font-style: normal;
	background: #79796a;
	border: 2px solid #79796a;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 0;
}

body .btn-main:hover {
	color: #79796a;
	background: #ffffff;
	opacity: 1;
}

/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 5px 10px 5px;
	font-size: 14px;
	line-height: 16px;
	color: #1b2030;
	background-color: #FFFFFF;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #c0c0c0;
	border-radius: 3px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #1b2030;
	border-color: #1b2030;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #1b2030;
	border-color: #1b2030;
	opacity: 1;
}

form label {
	display: block;
}

*::-webkit-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

body .box-video {
	padding: 0 0 0;
	margin: 0 0 0;
}

.video-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.video-wr video {
	padding: 0 0 0;
	margin: 0 auto 0;
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

/*  */

body .box-columns {
	overflow: hidden;
}

.box-columns + .box-columns {
	padding-top: 0;
}

html body .padding-0 {
	padding: 0 0 0;
}

html body .margin-0 {
	margin: 0 0 0;
}

.columns-equal-height-container {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.columns-equal-height-container .text-wr {
	padding: 0 0 0 75px;
}

.columns-equal-height-container.img-right .text-wr {
	padding: 0 75px 0 0;
}

.columns-equal-height-container .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 1000px;
	position: relative;
}

.columns-equal-height-container .img-wr img {
	margin: 0 0 0;
	display: block;
}

.columns-equal-height-container.img-left .img-wr {
	float: right;
}

.columns-equal-height-container.img-left .img-wr img {
	margin-left: auto;
}

.columns-equal-height-container.img-left [class*="col-"]:first-child {
	float: right;
}

.columns-equal-height-container .text-wr *:not(a):last-child {
	padding-bottom: 0;
}

.column-equal-height-item.vertical-align-middle {
	width: 1000px;
}

.column-equal-height-item .btn-main {
	margin: 13px auto 0;
}

/*  */

body .box-thumbs-simple {
	padding: 0 0 0;
}

.box-thumbs-simple a {
	color: inherit;
}

.thumb-simple-item {
	height: 450px;
	padding: 0 0 0;
	margin: 0 0 0;
	background-image: url('img/bg-gray-1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.col-sm-4:nth-child(even) .thumb-simple-item {
	background-image: url('img/bg-gray-2.jpg');
}

.thumb-simple-item h2 {
	padding: 0 0 0;
}

.thumb-simple-item .vertical-align-middle {
	padding: 15px;
}

/*  */

body .box-img {
	padding: 0 0 0;
}

.box-img .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-img .img-wr img {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
}

/*  */

.box-heading {
	padding:  50px 0 50px;
}

.box-heading h1 {
	padding: 0 0 0;
}

/*  */

.box-simple .btn-main {
	margin: 10px auto 10px;
}

/*  */













/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	font-size: 16px;
	padding: 50px 0 50px;
	margin: 0 0 0;
	background: #111111;
	color: #ffffff;
}

footer a {
	color: inherit;
}

footer h5 {
	font-size: 20px;
	padding: 0 0 15px;
	font-weight: 700;
}

footer p {
	padding: 0 0 0;
}

footer ul {
	padding: 0 0 0;
	margin: 0 0 0;
}

footer li {
	padding: 0 0 3px;
	margin: 0 0 0;
	list-style: none;
}

footer .container {
	max-width: 1100px;
}

.tdu {
	text-decoration: underline;
}

.social-links {
	font-size: 35px;
	line-height: 1;
	padding: 0 0 0;
	margin: 0 0 0;
}

.social-links a {
	margin: 0 5px 5px 0;
	display: inline-block;
}



/* 5 - END of footer ---------------------------------------------------------- */

/*Start Projects*/
.column-projects {
  float: left;
  width: 33.33%;
  padding: 10px;
}

.container-projects {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.container-projects img {vertical-align: middle;}

.container-projects .content-projects {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 100%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}
/*End Projects*/
			
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1230px) {
	.container {
		width: 1200px;
	}
}

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

@media screen and (max-width: 1199px) {
body {
	font-size: 16px;
	line-height: 1.4;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
}
h2 {
	padding: 0 0 15px;
	font-size: 30px;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 14px;
}
p {
	padding: 0 0 15px;
}
.logo {
	max-width: 200px;
}
.navbar-nav > li > a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 15px;
	line-height: 30px;
}
.navbar-nav > li {
	padding: 0 0 0 25px;
}
.navbar {
	margin: 0 0 0;
	padding: 5px 0 5px;
}
header + * {
	padding-top: 74px;
}
.box-wr {
	padding: 50px 0 50px;
}
.columns-equal-height-container .img-wr {
	width: auto;
}
.columns-equal-height-container .text-wr {
	padding: 0 0 0 30px;
}
.columns-equal-height-container.img-right .text-wr {
	padding: 0 30px 0 0;
}
.column-equal-height-item .btn-main {
	margin: 10px auto 0;
}
body .btn-main {
	padding: 8px 20px 8px;
	margin: 0 auto 0;
	font-size: 16px;
	line-height: 24px;
}
.thumb-simple-item {
	height: 250px;
}
footer {
	font-size: 14px;
	padding: 40px 0 40px;
}









}

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

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
	line-height: 1.4;
}
h1 {
	padding: 0 0 15px;
	font-size: 30px;
}
h2 {
	padding: 0 0 15px;
	font-size: 25px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 14px;
}
p {
	padding: 0 0 15px;
}
.logo {
	max-width: 157px;
}
.navbar-nav > li {
	padding: 0 0 0 15px;
}
.navbar {
	margin: 0 0 0;
	padding: 2px 0 2px;
}
header + * {
	padding-top: 68px;
}
.box-wr {
	padding: 35px 0 35px;
}
.back-to-top {
	width: 24px;
	height: 24px;
	-webkit-background-size: contain;
	background-size: contain;
}









}

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

@media screen and (max-width: 767px) {
body {
	font-size: 14px;
	line-height: 1.4;
}
h1 {
	padding: 0 0 15px;
	font-size: 25px;
}
h2 {
	padding: 0 0 15px;
	font-size: 20px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 14px;
}
p {
	padding: 0 0 15px;
}
.navbar-toggle .icon-bar {
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.navbar-toggle.active .icon-bar {
	margin: 0;
	height: 3px;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
	top: -10px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-toggle {
	padding: 0 0 0;
	margin: 0 0 0;
	border: none;
	min-height: 25px;
	position: relative;
	z-index: 5;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 7px;
}
.navbar-toggle .icon-bar {
	width: 36px;
	height: 3px;
	background: #000000;
}
.logo {
	max-width: 127px;
	margin: 0 0 0;
}
.column-equal-height-item {
	height: auto !important;
}
header {
	padding: 13px 0 13px;
}
.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	position: static;
}
.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: rgba(255, 255, 255, 0.95);
	text-align: center;
	height: 100vh;
	overflow: auto;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 20px 0 20px;
}
.navbar-nav > li {
	padding: 0 0 0 0;
}
.navbar-nav > li > a {
	padding: 0 0 0;
	margin: 10px 0 10px;
	font-size: 20px;
	line-height: 30px;
}
header + * {
	padding-top: 51px;
}
.box-wr {
	padding: 30px 0 30px;
}
.columns-equal-height-container .text-wr, .columns-equal-height-container.img-right .text-wr {
	padding: 30px 0 30px;
	text-align: center;
}
.columns-equal-height-container.img-left [class*="col-"]:first-child {
	float: none;
}
.columns-equal-height-container.img-left .img-wr {
	float: none;
}
.columns-equal-height-container .img-wr {
	padding: 0 0 0;
	margin: 0 -15px 0;
}
footer {
	font-size: 16px;
	padding: 40px 0 40px;
	text-align: center;
}
footer h5 {
	font-size: 18px;
	padding: 20px 0 15px;
}
.social-links a {
	margin: 0 5px 5px;
}
body .box-columns {
	padding: 0;
}






}

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

@media screen and (max-width: 550px) {
.thumb-simple-item {
	height: 150px;
}

.column-projects {
  float: left;
  width: 100%;
  padding: 10px;
}




}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
