﻿/*
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) ---------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Overpass:300,400,700,900&display=swap');

/* 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: 'Overpass', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: .015em;
	font-weight: normal;
	color: #313131;
}

.mt-130 {
	margin-top: 130px;
}

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: 900;
}

em {
	font-style:italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.0;
	font-weight: 900;
	letter-spacing: .01em;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 900;
	letter-spacing: -.025em;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.88;
	font-weight: 900;
	letter-spacing: .01em;
}

h4 {
	margin: 0 0 0;
	padding: 2px 0 28px;
	font-size: 22px;
	line-height: 1.36;
	font-weight: 900;
	letter-spacing: .01em;
	text-align: center;
}

h4 em {
	margin: 0 0 0;
	padding: 0 53px 0;
	display: inline-block;
	position: relative;
}

h4 em:before, h4 em:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 2px;
	width: 30px;
	border-bottom: 2px solid;
	height: 0;
	margin: auto;
}

h4 em:after {
	left: 0;
}

h4 em:before {
	right: 0;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.88;
	font-weight: 900;
	letter-spacing: -.025em;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .05em;
	color: #a1a1a1;
}

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

p {
	padding: 0 0 15px;
}

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;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.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 {
	background: #FFFFFF;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

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

.navbar, header, .logo, header + *, .header-top, .navbar-nav {
	-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;
	box-shadow: 0px 0px 4px 0px #efefef;
}

.header-fixed .header-top {
	padding: 15px 0 15px;
}

.header-fixed .navbar-nav {
	padding: 10px 0 6px;
}

.logo {
	float: none;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 200px;
	text-align: center;
}

.logo img {
	display: block;
	margin: 0 auto 0;
}

.social-links {
	padding: 1px 0 0;
}

.social-links a {
	color: #363636;
	font-size: 20px;
	margin: 0 27px 0 0;
	display: inline-block;
	vertical-align: middle;
}

.social-links a:hover {
	opacity: 1;
}

.social-links a i {
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover [class*="facebook"] {
	color: #3B5898;
}

a:hover [class*="twitter"] {
	color: #42C8F4;
}

a:hover [class*="youtube"] {
	color: #ca3737;
}

a:hover [class*="google-plus"] {
	color: #e3411f;
}

a:hover [class*="linkedin"] {
	color: #1686b0;
}

a:hover [class*="instagram"] {
	color: #222222;
}

.header-top {
	padding: 46px 0 43px;
}

.form-search {
	padding: 3px 0 0;
}

.form-search input {
	margin: 0 0 0;
	padding: 2px 3px 2px;
	width: 184px;
	color: #363636;
	border: none;
	border-bottom: 1px solid;
	background: #ffffff;
	outline: none;
	display: inline-block;
	vertical-align: middle;
	border-radius: 0;
}

.form-search button {
	margin: 0 0 0;
	padding: 2px 2px 2px;
	line-height: 1;
	font-size: 21px;
	color: #363636;
	border: none;
	background: #ffffff;
	outline: none;
	display: inline-block;
	vertical-align: middle;
	width: auto;
	border-radius: 0;
}

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

.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: 14px 0 10px;
	border-radius: 0;
	border: none;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	min-height: 0;
	float: none;
	text-align: center;
}

.navbar-nav > li {
	margin: 0 35px;
	padding: 0 0 0;
	outline: none;
	float: none;
	display: inline-block;
	text-align: center;
}

.navbar-nav > li:first-child {
	margin-left: 0;
}

.navbar-nav > li:last-child {
	margin-right: 0;
}

.navbar-nav > li > a {
	padding: 2px 2px 2px;
	margin: 0 0 0;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .025em;
	color: #363636;
	font-weight: 900;
	text-transform: uppercase;
	position: relative;
	background: transparent;
	display: inline-block;
}

.navbar-nav > li > a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 0;
	border-bottom: 2px solid;
	bottom: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.navbar-nav > li > a:hover:after {
	width: 100%;
}

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

.nav > li > a:focus, .nav > li > a:hover {
	color: #363636;
	background-color: transparent;
	opacity: 1;
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
	background-color: transparent;
}

.navbar-nav > li > .dropdown-menu {
	background-color: #e5e1d4;
}

.dropdown-menu li {
	position: relative;
}

.dropdown-menu li a {
	margin: 0 0 0;
	padding: 5px 20px 5px;
}

/* spinner css start */

.spinner-wr {
	background: #FFFFFF;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/* display: none; */
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: #313131;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* 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 {
	background: #ffffff;
	min-height: 200px;
	position: relative;
}

.box-wr {
	padding: 30px 0 30px;
	position: relative;
}

.bg-white {
	background-color: #ffffff;
}

.bg-gray {
	background-color: #eeeeee;
}

.bg-transparent {
	background-color: transparent;
}

.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);
}

.img-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
	color: #ffffff;
}

.pos-bottom {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	bottom: 0;
}

body .box-banner {
	padding: 70px 0 0;
}

.box-banner h1 {
	padding: 0 0 12px;
	max-width: 500px;
	line-height: 1.33;
	letter-spacing: .04em;
}

.box-banner a {
	color: #ffffff;
}

.box-banner h6 {
	color: #ffffff;
}

.box-banner .img-wr img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.box-banner .btn-read-more {
	font-size: 12px;
}

.box-banner .pos-bottom {
	padding: 28px 31px 28px;
}

.block-thumb {
	margin: 0 auto 15px;
	text-align: center;
}

.block-thumb h6 {
	padding: 0 0 0;
}

.block-thumb h5 {
	padding: 0 0 12px;
	letter-spacing: .04em;
}

.block-thumb .img-wr {
	margin: 0 0 0;
}

.block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:230px;*/
}

.hwe_set_resp_hight_set
{
	height:800px !important;
}

@media screen and (max-width: 520px) {
   .hwe_set_resp_hight_set
{
	height:600px !important;
}

.block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:350px;*/
}
}

/*@media screen and (max-width: 320px) {

.box-content .container img {
  max-height: 211px;
  max-width: 291px;
}

}*/

@media screen and (max-width: 520px) and (min-width: 360px) {

	.box-content .container img {
	  max-height: 211px;
	  max-width: 325px;
	}

	.single .box-content .container img {
	  max-height: none;
	  max-width: 325px;
	}

}

@media screen and (max-width: 768px) and (min-width: 520px) {
   .block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:500px;*/
}

.box-content .container img {
  max-width: 720px;
}
}


@media screen and (max-width: 768px) and (min-width: 700px) {
   .block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:500px;*/
}

   .hwe_set_resp_hight_set
{
	height:750px !important;
	width:80%;
	margin-left:10%;
}
}

@media screen and (max-width: 700px) and (min-width: 620px) {
   .block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:500px;*/
}

   .hwe_set_resp_hight_set
{
	height:750px !important;
	width:90%;
	margin-left:5%;
}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
   .block-thumb .img-wr img {
	width: 100%;
	display: block;
	margin: 0 auto;
	/*height:200px;*/
}
}


.block-thumb .text-wr {
	padding: 16px 10px 0;
	position: relative;
}

.block-thumb a {
	color: #313131;
}

.block-thumb h2 {
	letter-spacing: .04em;
	padding: 9px 0 9px;
}

.block-thumb .btn-read-more {
	margin: 5px 0 0;
}

.isotope-grid-item .block-thumb {
	margin: 0 auto 48px;
}

.isotope-grid-item .block-thumb .text-wr {
	padding: 30px 10px 0;
}

.tag-item {
	margin: 0 10px 24px;
	padding: 8px 20px 4px;
	font-size: 15px;
	font-weight: 900;
	display: inline-block;
	border: 1px solid #f7f7f7;
	background: #f7f7f7;
	color: #717171;
	outline: none;
	text-align: center;
	min-width: 90px;
}

.tag-item:hover {
	border-color: #999999;
}

.tag-item > li:first-child {
	margin-left: 0;
}

.tag-item > li:last-child {
	margin-right: 0;
}

.filter-button-group {
	padding: 0 0 23px;
	text-align: center;
}

.divider-line {
	display: block;
	margin: 7px auto 17px;
	padding: 0 0 0;
	border-bottom: 2px solid;
	width: 30px;
}

.box-wr.bordered-top:before {
	content: "";
	display: block;
	margin: 0 auto;
	max-width: 1170px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	border-top: 1px solid #eaeaea;
}

.pagination {
	margin: 20px 0 0;
	text-align: center;
}

.pagination a, body .pagination li a, .pagination>li:first-child>a, .pagination>li:first-child>span {
	padding: 9px 20px 6px;
	margin: 0 0 0;
	border: none;
	border-left: 1px solid #ebebeb;
	border-right: 1px solid #ebebeb;
	font-size: 16px;
	line-height: 1;
	color: #464646;
	font-weight: 900;
	background: #ffffff;
	border-radius: 0;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
	border-left: none;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-right: none;
}

.pagination li a.active {
	background-color: #ebebeb;
}

.pagination li a:hover {
	color: #464646;
}

body .btn-read-more {
	position: relative;
	display: inline-block;
	padding: 0 0 2px;
	margin: 0 0 0;
	font-weight: 900;
}

body .btn-read-more:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 2px solid;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body .btn-read-more:hover:after {
	left: 50%;
	right: 50%;
}

body .btn-main {
	padding: 10px 15px 8px;
	margin: 0 auto 0;
	font-size: 14px;
	line-height: 18px;
	min-width: 150px;
	color: #FFFFFF;
	width: auto;
	font-style: normal;
	background: #464646;
	border: 2px solid #464646;
	font-weight: 900;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 0;
}

body .btn-main:hover {
	color: #1b2030;
	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, form button {
	display: block;
	margin: 0 0 0;
	padding: 12px 10px 6px;
	font-size: 15px;
	line-height: 18px;
	color: #1b2030;
	background-color: #FFFFFF;
	outline: none;
	width: 100%;
	border: 2px solid #e0e0e0;
	border-radius: 0;
	letter-spacing: .04em;
}

form input[type="submit"], form button {
	font-size: 15px;
	font-weight: 900;
	margin: 0 0 0;
	background-color: #464646;
	border-color: #464646;
	color: #ffffff;
}

form input[type="submit"]:hover, form button:hover {
	background-color: #ffffff;
	color: #464646;
}

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 {
	font-size: 16px;
	line-height: 28px;
	font-weight: 900;
}

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

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

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

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

*:focus::-webkit-input-placeholder {
	color: #1b2030;
	text-indent: 620px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	color: #1b2030;
	text-indent: 620px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	color: #1b2030;
	text-indent: 620px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	color: #1b2030;
	text-indent: 620px;
	opacity: 0;
}

.box-banner + .box-content {
	padding: 20px 0 10px;
}

.box-content .text-center h6 {
	font-size: 12px;
	color: #313131;
	padding: 11px 0 11px;
}

.box-content .text-right .social-links a {
	font-size: 18px;
	margin: 0 5px 0 20px;
}

.box-content h1 {
	padding: 0 0 20px;
	letter-spacing: .035em;
}

.box-content h2.text-center {
	padding-top: 16px;
}

.box-content h2 {
	padding: 0 0 15px;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -.025em;
}

.box-content h2 + h5 {
	margin: -16px 0 0;
	padding: 0 0 10px;
	color: #717171;
}

.box-content ul, .box-content ol {
	padding: 6px 0 3px 20px;
}

.box-content ul + ol {
	padding-top: 0;
	margin-top: -3px;
}

.box-content li {
	margin: 0 0 14px;
}

.box-content p + .row {
	padding: 14px 0 0;
}

.box-content .block-thumb .text-wr {
	padding: 15px 10px 0;
}

.box-content .row + .row + p {
	padding-top: 14px;
}

.box-content p a {
	color: #2a2a2a;
	text-decoration: underline;
	font-style: italic;
}

.box-content:first-child h1.text-center:first-child {
	padding-top: 26px;
}

.box-content h2 + h5 + p {
	padding-top: 25px;
}

.box-content h1 + .divider-line {
	margin: 2px auto 25px;
}

.block-thumb.alignright {
	margin: 35px 0 10px 45px;
}

.block-thumb.alignright + p {
	margin-top: 36px;
}

.block-thumb.alignleft {
	margin: 35px 45px 10px 0;
}

.block-thumb.alignleft + p {
	margin-top: 36px;
}

.tags-wr {
	padding: 24px 0 0;
}

.tags-wr span {
	padding: 0 0 0;
	margin: 0 23px 0 0;
	display: inline-block;
	font-size: 14px;
	color: #a1a1a1;
	font-weight: 900;
	text-transform: uppercase;
}

.block-team {
	padding: 54px 0 0;
}

.team-item {
	margin: 0 0 60px;
	padding: 0 0 65px;
	border-bottom: 1px solid #eaeaea;
	display: table;
	width: 100%;
}

.team-item:last-of-type {
	border: none;
	margin: 0 0 0;
	padding: 0 0 30px;
}

.team-item .img-wr {
	display: table-cell;
	vertical-align: middle;
	min-width: 210px;
}

.team-item .img-wr img {
	width: 170px;
	display: block;
	margin: 0;
	border-radius: 100px;
	border-radius: 50%;
}

.team-item h2 {
	font-size: 20px;
	padding: 0 0 8px;
}

.team-item p {
	padding: 0 0 0;
}

.team-item .text-wr {
	display: table-cell;
	vertical-align: middle;
}

.block-gray {
	margin: 100px auto 15px;
	padding: 50px 15px 35px;
	max-width: 770px;
	background-color: #f7f7f7;
	color: #151515;
}

.block-gray h1 {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 0;
}

.block-gray h2 {
	font-size: 22px;
	color: #a1a1a1;
	padding: 18px 0 15px;
}

.block-gray .btn-main {
	margin: 26px auto 15px;
}

#instamax-photo-list-div, #instamax-tabs, #instamax, .instamax {
	background-color: red;
	max-width: 100% !important;
}

#tiles li {
	position: relative !important;
	display: inline-block !important;
	left: auto !important;
	top: auto !important;
	bottom: auto !important;
	right: auto !important;
}

.instafeed.slick-slider {
	padding: 0 0 0;
	margin: 18px 0 18px;
}

.instafeed.slick-slider img {
	display: block;
	margin: 0 auto;
	height: 270px;
	width: auto;
}

.instafeed.slick-slider a {
	font-size: 18px;
	position: relative;
	display: block;
}

.instafeed.slick-slider .img-overlay {
	padding: 15px 20px 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: 0;
	overflow: hidden;
}

.instafeed.slick-slider a:hover {
	opacity: 1;
}

.instafeed.slick-slider a:hover .img-overlay {
	opacity: 1;
}

.instafeed.slick-slider a i {
	margin: 0 -200px;
	min-width: 25px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.instafeed.slick-slider a:hover i {
	margin: 0 0;
}

.instafeed.slick-slider a .insta-likes {
	display: block;
}

.instafeed.slick-slider a .insta-comments {
	display: block;
}

.instafeed.slick-slider a .fa-instagram {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 26px;
	color: #ffffff;
}

.slick-prev:before, .slick-next:before {
	font-size: 30px;
	opacity: .75;
	color: #ffffff;
	text-shadow: 0px 0px 1px #222222;
}

.slick-prev, .slick-next {
	width: 30px;
	text-align: center;
	height: 30px;
	margin: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: 0;
}

.slick-slider:hover .slick-prev, .slick-slider:hover .slick-next {
	opacity: 1;
}





















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

footer {
	padding: 45px 0 22px;
	background: #ffffff;
	border-top: 1px solid #eaeaea;
}

footer a {
	color: #313131;
}

footer p {
	color: #717171;
	padding: 12px 0 8px;
}

footer h2 {
	padding: 8px 0 8px;
}

footer .social-links {
	padding: 22px 0 27px;
	text-align: center;
}

footer .social-links a {
	font-size: 22px;
	margin: 0 10px 0;
	min-width: 32px;
}

.footer-top {
	padding: 0 0 20px;
}

.form-subscribe input {
	width: 75%;
	float: left;
}

.form-subscribe button {
	width: 25%;
	float: right;
}

.footer-slider {
	padding: 0 0 0;
	margin: 18px 0 18px;
}

.footer-slider img {
	display: block;
	margin: 0 auto;
	height: 270px;
	width: auto;
}

.slide-item {
	outline: none;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

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

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

@media screen and (max-width: 1229px) {
.tag-item {
	margin: 0 10px 20px;
	padding: 8px 20px 4px;
	font-size: 15px;
}






}

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

@media screen and (max-width: 1199px) {
.navbar-nav > li {
	margin: 0 35px;
}
.social-links a {
	font-size: 20px;
	margin: 0 20px 0 0;
}
.form-search input {
	width: 160px;
}
.tag-item {
	margin: 0 5px 10px;
	padding: 8px 12px 4px;
	font-size: 12px;
	min-width: 70px;
}
.form-subscribe {
	text-align: center;
}
footer h2 {
	padding: 0 0 10px;
}
footer p {
	padding: 0 0 15px;
}
body .box-banner {
	padding: 40px 0 0;
}
.box-content .row + .row + p {
	padding-top: 0;
}
.tags-wr {
	padding: 10px 0 0;
}
.block-thumb.alignright {
	margin: 15px 0 10px 30px;
}
.block-thumb.alignright + p {
	margin-top: 10px;
}
.block-thumb.alignleft {
	margin: 15px 30px 10px 0;
}
.block-thumb.alignleft + p {
	margin-top: 10px;
}
.box-content:first-child h1.text-center:first-child {
	padding-top: 20px;
}

















}

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

@media screen and (max-width: 991px) {
.social-links a {
	font-size: 18px;
	margin: 0 15px 0 0;
}
.form-search input {
	width: 140px;
}
.navbar-nav > li {
	margin: 0 20px;
}
body .box-banner {
	padding: 30px 0 0;
}
body {
	font-size: 14px;
}
h1 {
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
}
h2 {
	padding: 0 0 15px;
	font-size: 18px;
	line-height: 1.6;
}
h3 {
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.6;
}
h4 {
	padding: 0 0 25px;
	font-size: 18px;
	line-height: 1.6;
}
h4 em {
	padding: 0 40px 0;
}
h4 em:before, h4 em:after {
	bottom: 2px;
	width: 20px;
	border-bottom: 2px solid;
}
h5 {
	padding: 0 0 15px;
	font-size: 13px;
	line-height: 1.6;
}
h6 {
	padding: 0 0 15px;
	font-size: 10px;
}
.block-thumb .text-wr {
	padding: 10px 4px 0;
}
.tag-item {
	margin: 0 3px 8px;
	padding: 6px 10px 3px;
	font-size: 12px;
	min-width: 25px;
}
.filter-button-group {
	padding: 0 0 15px;
}
.block-thumb h2 {
	letter-spacing: .01em;
	padding: 4px 0 4px;
}
.isotope-grid-item .block-thumb .text-wr {
	padding: 16px 4px 0;
}
.divider-line {
	margin: 2px auto 10px;
}
.isotope-grid-item .block-thumb {
	margin: 0 auto 30px;
}
.block-thumb .btn-read-more {
	margin: 0 0 0;
}
footer {
	padding: 20px 0 20px;
}
.footer-slider, .instafeed.slick-slider {
	margin: 2px 0 2px;
}
footer .social-links {
	padding: 15px 0 15px;
}
.footer-slider img, .instafeed.slick-slider img {
	height: 200px;
}
.box-banner h1 {
	max-width: 450px;
}
.box-content .block-thumb .text-wr {
	padding: 10px 4px 0;
}
.box-content .col-md-5.text-left {
	text-align: center;
}
.box-content .col-md-5.text-right {
	text-align: center;
}
.box-content h1 {
	padding: 0 0 15px;
	letter-spacing: .01em;
}
.box-content .text-center h6 {
	font-size: 11px;
	padding: 0 0 10px;
}
.box-content .social-links {
	padding: 1px 0 12px;
}
.box-content h2.text-center {
	padding-top: 0;
}
.box-content h2 {
	font-size: 18px;
}
.box-content h2 + h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}
.tags-wr span {
	margin: 0 10px 0 0;
	font-size: 12px;
}
.block-thumb.alignright {
	margin: 10px 0 10px 20px;
	max-width: 50%;
}
.block-thumb.alignright + p {
	margin-top: 10px;
}
.block-thumb.alignleft {
	margin: 10px 20px 10px 0;
	max-width: 50%;
}
.block-thumb.alignleft + p {
	margin-top: 10px;
}
.box-content h2 + h5 + p {
	padding-top: 0;
}
.block-team {
	padding: 20px 0 0;
}
.team-item {
	margin: 0 0 20px;
	padding: 0 0 20px;
}
.team-item:last-of-type {
	padding: 0 0 10px;
}
.block-gray h1 {
	font-size: 25px;
}
.block-gray {
	margin: 0 auto 0;
	padding: 50px 15px 35px;
}
.block-gray .btn-main {
	margin: 10px auto 15px;
}
.block-gray h2 {
	font-size: 18px;
	padding: 0 0 15px;
}
.instafeed.slick-slider a {
	font-size: 13px;
}
.instafeed.slick-slider a i {
	margin: 0 0;
	min-width: 15px;
}
.instafeed.slick-slider .img-overlay {
	opacity: 1;
	padding: 10px 15px 0;
}
.instafeed.slick-slider a .fa-instagram {
	font-size: 20px;
}
.slick-prev, .slick-next {
	opacity: 1;
}






}

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

@media screen and (max-width: 767px) {
body {
	font-size: 12px;
}
h1 {
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
}
h2 {
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.6;
}
h3 {
	padding: 0 0 15px;
	font-size: 14px;
	line-height: 1.6;
}
h4 {
	padding: 0 0 15px;
	font-size: 15px;
	line-height: 1.6;
}
h5 {
	padding: 0 0 15px;
	font-size: 12px;
	line-height: 1.6;
}
h6 {
	padding: 0 0 15px;
	font-size: 10px;
}
.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;
}
header {
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 0 10px;
	text-align: center;
}
header + * {
	padding-top: 45px;
}
body .box-banner {
	padding: 0 0 0;
}
.box-wr {
	padding: 20px 0 20px;
}
.box-banner .btn-read-more {
	font-size: 10px;
}
.box-banner h1 {
	padding: 0 0 5px;
	font-size: 18px;
}
.box-banner h6 {
	padding: 0 0 8px;
}
.block-thumb {
	margin: 0 auto 10px;
}
.pagination a, body .pagination li a, .pagination>li:first-child>a, .pagination>li:first-child>span {
	padding: 7px 9px 4px;
	font-size: 10px;
}
.pagination {
	margin: 5px 0 5px;
	padding: 0 0 0;
}
.form-subscribe input {
	width: 60%;
}
.form-subscribe button {
	width: 40%;
}
form input, form textarea, form select, form button {
	padding: 12px 10px 6px;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: .01em;
}
.footer-slider img, .instafeed.slick-slider img {
	height: 150px;
}
footer .social-links a {
	font-size: 20px;
	margin: 0 6px 0;
	min-width: 26px;
}
.back-to-top {
	width: 20px;
	height: 24px;
	background-size: contain;
}
.divider-line {
	margin: 0 auto 5px;
}
.logo {
	max-width: 120px;
	position: relative;
	z-index: 5;
	margin: 2px 0 0;
}
.navbar {
	clear: none;
}
.header-top {
	padding: 30px 0 10px;
	margin: 0 0 0;
}
.social-links a {
	font-size: 18px;
	margin: 0 10px 0;
}
.social-links {
	padding: 1px 0 15px;
	text-align: center;
}
header .text-right {
	text-align: center;
}
.form-search input {
	width: 140px;
	background: transparent;
}
.form-search button {
	background: transparent;
}
.navbar-nav > li {
	display: block;
	margin: 0 0 10px;
}
.navbar-nav > li > a {
	font-size: 18px;
}
.team-item .img-wr img {
	width: 100px;
}
.team-item .img-wr {
	min-width: 115px;
}
.block-team {
	padding: 10px 0 0;
}
.team-item h2 {
	font-size: 16px;
	padding: 0 0 4px;
}
.block-gray h1 {
	font-size: 22px;
}
.block-gray {
	padding: 40px 15px 20px;
}













}

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

@media screen and (max-width: 550px) {
/*.box-banner .img-wr img {
	width: 200%;
	max-width: 200%;
	margin: 0 -47%;
	min-height: 220px;
}*/
.box-banner .img-wr {
	overflow: hidden;
	margin: 0 -15px;
}
.block-thumb.alignright {
	margin: 10px auto 10px;
	max-width: 100%;
	float: none;
}
.block-thumb.alignright + p {
	margin-top: 0;
}
.block-thumb.alignleft {
	margin: 10px auto 10px;
	max-width: 100%;
	float: none;
}
.block-thumb.alignleft + p {
	margin-top: 0;
}










}

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