﻿/*
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: 'DIN';
  src: url('fonts/DIN/DIN-Regular.eot');
  src: url('fonts/DIN/DIN-Regular.woff2') format('woff2'),
	   url('fonts/DIN/DIN-Regular.woff') format('woff'),
	   url('fonts/DIN/DIN-Regular.ttf') format('truetype'),
	   url('fonts/DIN/DIN-Regular.svg#DIN') format('svg'),
	   url('fonts/DIN/DIN-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: 'DIN';
  src: url('fonts/DIN/DIN-Bold.eot');
  src: url('fonts/DIN/DIN-Bold.woff2') format('woff2'),
	   url('fonts/DIN/DIN-Bold.woff') format('woff'),
	   url('fonts/DIN/DIN-Bold.ttf') format('truetype'),
	   url('fonts/DIN/DIN-Bold.svg#DIN') format('svg'),
	   url('fonts/DIN/DIN-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: 700;
  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: 'DIN', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	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 27px;
	font-size: 44px;
	line-height: 54px;
	font-weight: 300;
	letter-spacing: .025em;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 36px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: .0em;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 35px;
	font-weight: 300;
	letter-spacing: .0em;
}

h4 {
	margin: 0 0 21px;
	padding: 0 0 33px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: .025em;
	text-transform: uppercase;
	position: relative;
}

h4:after {
	content: "";
	display: block;
	position: absolute;
	width: 72px;
	left: 0;
	bottom: 0;
	border-bottom: 2px solid;
}

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

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .025em;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	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;
}

.container {
	max-width: 1120px;
}

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

header {
	padding: 18px 0 16px;
	background: #FFFFFF;
	background: rgba(255, 255, 255, .9);
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px #d0c8c0;
	font-size: 14px;
	line-height: 19px;
	font-weight: 300;
	letter-spacing: .025em;
}

header + * {
	padding-top: 0;
}

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

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

.header-fixed .logo {
	max-width: 260px;
}

.header-fixed + * {
	padding-top: 0;
}

.header-fixed .text-right {
	padding: 3px 0 3px;
}

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

.logo img {
	display: block;
}

header p {
	padding: 0 0 0;
}

header a {
	color: #000000;
}

header a:hover {
	text-decoration: underline;
}

header .container-fluid {
	padding-right: 50px;
	padding-left: 50px;
}

header .text-right {
	padding: 18px 0 18px;
	text-align: right;
	float: right;
	max-width: 60%;
}

/* spinner css start */

.spinner-wr {
	background: #222222;
	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: #999999;
	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: relative;
    z-index: 100;
    top: 0;
    margin: 0 0 -20px;
    right: 0;
    /* 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: 100px 0 90px;
	position: relative;
}

.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 a:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

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

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

.box-video-wr .img-wr {
	position: absolute;
	overflow: hidden;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.video-wr {
	position: static;
	overflow: hidden;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.video-wr iframe, .video-wr video {
	width: 100%;
	min-width: 100%;
	margin: 0 0 0;
	display: block;
	/* display: none; */
	/* opacity: 0; */
	min-height: 100%;
}

.video-wr.active iframe, .video-wr.active video {
	display: block;
	opacity: 1;
}

.btns-video-wr {
	position: absolute;
	z-index: 20;
	right: 15px;
	bottom: 11px;
	color: #FFFFFF;
	text-align: right;
}

.btns-video-wr a {
	margin: 0 0 0;
	padding: 4px 0 0 1px;
	font-size: 14px;
	line-height: 1;
	color: #FFFFFF;
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	text-align: center;
	border: 1px solid;
	border-radius: 50px;
	border-radius: 50%;
}

.btns-video-wr a img {
	display: block;
	margin: 0 auto;
}

.btns-video-wr a i {
	display: inline-block;
	vertical-align: middle;
}

.btn-mute-video, body .btn-mute-video {
	font-size: 16px;
}

.btn-mute-video.active i:before {
	content: "\f026";
}

.btn-play-video, body .btn-play-video {
	font-size: 13px;
	padding: 5px 0 0 1px;
}

.btn-play-video.active i:before {
	content: "\f04c";
}

.video-copy {
    position: absolute;
    bottom: 10px;
    left: 15px;
    text-shadow: 0px 0px 1px #FFFFFF;
    color: #111111;
    font-weight: 300;
    font-size: 13px;
}

.video-copy strong {
	font-weight: 600;
}

.box-introducing h4 {
	padding-top: 45px;
}

.box-introducing h1 span {
	text-decoration: line-through;
}

body .box-portfolio-wr {
	padding: 0 0 0;
	overflow: hidden;
}

.box-portfolio-wr .container {
	padding: 0 0 0;
	width: 100%;
	max-width: 100%;
}

.portfolio-item {
	overflow: hidden;
	position: relative;
}

.portfolio-item .img-wr {
	position: relative;
	overflow: hidden;
}

.portfolio-item .img-wr img {
	width: 100%;
}

.img-overlay {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .7);
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.portfolio-item .img-overlay {
	opacity: 0;
}

.portfolio-item:hover .img-overlay {
	opacity: 1;
}

.img-overlay:hover {
	opacity: 1;
}

.img-overlay-text {
	padding: 10px 20px 20px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.portfolio-item .img-overlay-text {
	margin: 0 auto -200px;
}

.portfolio-item:hover .img-overlay-text {
	margin-bottom: 0;
}

.portfolio-item h2 {
	padding: 0 0 7px;
}

.portfolio-item a {
	color: #FFFFFF;
}

.isotope-grid-wr .row {
	margin: 0 0 0;
}

.isotope-grid-wr [class*="col-"] {
	padding: 0 0 0;
}

body .box-footer-wr {
	margin: -3px 0 0;
	padding: 0 0 0;
	color: #FFFFFF;
	text-align: center;
}

.box-footer-wr .btn-main {
	margin: 0 0 0 30px;
}

.box-footer-wr a {
	color: #FFFFFF;
}

.box-footer-wr a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.box-footer-wr .btn-main {
	color: #FFFFFF;
	background: transparent;
}

.box-footer-wr .btn-main:hover {
	color: #000000;
	background: #FFFFFF;
	text-decoration: none;
}

.box-footer-wr .img-wr img {
	width: 100%;
}

.vcenter {
	height: 100%;
	white-space: nowrap;
}

.vcenter:before,
.vcenter >* {
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	word-spacing: normal;
}

.vcenter:before {
	content: "";
	height: 100%;
}

.copy-wr {
	padding: 20px 20px 24px;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0;
	position: absolute;
	left: 0;
	bottom: 0;
}

body .btn-main, .form-wr input[type="submit"] {
	padding: 13px 37px 13px;
	margin: 0 auto 0;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: .025em;
	color: #000000;
	background: #FFFFFF;
	width: auto;
	font-style: normal;
	border: 1px solid;
	font-weight: 300;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 0;
}

body .btn-main:hover {
	color: #FFFFFF;
	background: #333333;
	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"] {
	padding: 15px 16px 15px;
	font-size: 16px;
	margin: 0 0 0;
}

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

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

.fancybox-lock .fancybox-overlay {
	overflow-x: hidden;
}

.fancybox-wrap {
	max-width: 100%;
}

.fancybox-skin {
	padding: 0 0 0;
	border-radius: 0;
}

.portfolio-popup-item {
	max-width: 100%;
	padding: 31px 57px 38px;
	width: 1280px;
}

.portfolio-popup-item h4 {
	margin: 11px 0 21px;
	padding: 0 0 24px;
}

.portfolio-popup-item h3 {
	padding: 0 0 29px;
}

.portfolio-popup-item .btn-main {
	padding: 7px 20px 9px;
	margin: 44px auto 0;
}

.portfolio-popup-item p {
	padding: 0 5px 0 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}

.portfolio-popup-item .slick-slide > img {
	margin: 0 auto;
	display: block;
	width: 100%;
}

.fancybox-inner {
	height: auto !important;
}

.fancybox-close {
	top: 9px;
	right: 9px;
	background: url('img/i-close.png') no-repeat center;
}

.slick-slide {
	outline: none;
}

.fancybox-skin {
	margin: 0 auto 30px;
}

.slick-prev, .slick-next {
	width: 32px;
	height: 52px;
	top: 55%;
}

.slick-prev {
	background: url('img/i-arr-l.png') no-repeat center;
	left: 0;
}

.slick-next {
	background: url('img/i-arr-r.png') no-repeat center;
	right: 0;
}

.slick-prev:hover, .slick-prev:focus {
	background: url('img/i-arr-l.png') no-repeat center;
	opacity: .66;
}

.slick-next:hover, .slick-next:focus {
	background: url('img/i-arr-r.png') no-repeat center;
	opacity: .66;
}

.slick-prev:before, .slick-next:before {
	color: transparent;
	font-size: 0;
	opacity: 0;
}

.slick-dots li button:before {
	font-size: 14px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	opacity: 1;
	color: #eaeaea;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #3d3d3d;
}

.slick-dots li button {
	width: 18px;
	height: 18px;
	padding: 4px;
}

.slick-dots li {
	width: 19px;
	height: 19px;
	margin: 0 0;
}

.slick-dots {
	bottom: 0;
	padding: 0 13px 13px;
	text-align: left;
}

.portfolio-item-feedback {
	padding: 23px 0 10px;
}

.portfolio-item-feedback p {
	padding: 0 0 0;
	font-size: 12px;
	line-height: 18px;
}

.portfolio-item-feedback h6 {
	text-transform: uppercase;
	padding: 7px 0 0;
}

.portfolio-item-feedback .img-wr {
	margin: 5px 10px 0 0;
	width: 45px;
	float: left;
}

.portfolio-item-feedback .img-wr img {
	display: block;
}

.portfolio-item-feedback:after {
	content: "";
	display: block;
	clear: both;
}

.text-wr {
	overflow: hidden;
}

body .btn-fancy-control {
	padding: 0 3px 0;
	color: #000000;
	font-weight: 300;
	font-size: 16px;
	letter-spacing: .025em;
	position: absolute;
	bottom: -2px;
}

.btn-fancy-control i {
	float: left;
	font-size: 24px;
	position: relative;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.btn-fancy-prev {
	left: 0;
}

.btn-fancy-prev i {
	margin: 1px 13px 0 0;
	left: 0;
	float: left;
}

.btn-fancy-prev:hover i {
	left: -8px;
}

.btn-fancy-next {
	right: 0;
}

.btn-fancy-next i {
	margin: 1px 0 0 13px;
	right: 0;
	float: right;
}

.btn-fancy-next:hover i {
	right: -8px;
}

/* 4 - END of .content ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 1199px) {
header .container-fluid {
	padding-right: 10px;
	padding-left: 10px;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
}
h2 {
	padding: 0 0 15px;
	font-size: 28px;
	line-height: 1.2;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
}
h4 {
	margin: 0 0 15px;
	padding: 0 0 20px;
	font-size: 15px;
	line-height: 1.2;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
	line-height: 1.2;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
	line-height: 1.2;
}
.fancybox-close {
	top: 0;
	right: 0;
}
.portfolio-popup-item {
	padding: 18px 17px 35px;
}



}

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

@media screen and (max-width: 991px) {
header {
	padding: 6px 0 6px;
	font-size: 12px;
}
.logo {
	max-width: 260px;
}
body {
	font-size: 14px;
	line-height: 18px;
}
header .text-right {
	padding: 3px 0 3px;
}
.box-wr {
	padding: 50px 0 50px;
}
.box-introducing h4 {
	padding-top: 10px;
}
h1 {
	font-size: 35px;
}
h2 {
	font-size: 22px;
}
h3 {
	font-size: 18px;
}
h4 {
	margin: 0 0 15px;
	padding: 0 0 20px;
	font-size: 15px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 12px;
}
.box-footer-wr .btn-main {
	margin: 15px 10px 0;
}
.portfolio-popup-item h3 {
	padding: 0 0 15px;
}
.portfolio-popup-item h4 {
	margin: 0 0 15px;
	padding: 0 0 18px;
}
.portfolio-popup-item p {
	padding: 0 0 0 0;
	font-size: 12px;
	line-height: 16px;
}
body .btn-fancy-control {
	padding: 0 3px 0;
	font-size: 14px;
	bottom: -5px;
}
.btn-fancy-control i {
	font-size: 18px;
}
.portfolio-popup-item .btn-main {
	margin: 15px auto 10px;
}
.copy-wr {
	padding: 10px 10px 10px;
	font-size: 12px;
}
.img-overlay-text {
	padding: 10px 10px 15px;
}
.img-overlay-text h5 {
	padding: 0;
}
.portfolio-item h2 {
	padding: 0 0 3px;
}



}

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

@media screen and (max-width: 767px) {
.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 .text-right {
	text-align: center;
	float: none;
	max-width: 100%;
}
.logo {
	float: none;
}
header {
	padding: 6px 0 6px;
	font-size: 11px;
	position: static;
}
.header-fixed {
	padding: 6px 0 6px;
	position: static;
}
.isotope-grid-wr [class*="col-"] {
	padding: 0 0 0;
	/* position: static !important; */
	width: 50%;
	float: left;
}
.box-footer-wr .img-overlay {
	position: static;
	padding: 30px 0 30px;
	height: auto;
}
.box-footer-wr .vcenter:before, .box-footer-wr .vcenter >* {
	display: block;
}
.copy-wr {
	padding: 0 10px 0;
	font-size: 12px;
	position: static;
}
.box-introducing {
	text-align: center;
}
.box-introducing h4:after {
	left: 0;
	right: 0;
	margin: auto;
}
.portfolio-item .img-overlay {
	opacity: 1;
}
.portfolio-item .img-overlay-text {
	margin: 0 auto 0;
}
.btns-video-wr {
	right: 10px;
}
.box-wr {
	padding: 30px 0 30px;
}
.box-introducing h4 {
	padding-top: 0;
}
.box-footer-wr .btn-main {
	margin: 20px 10px 0;
}
.portfolio-popup-item {
	padding: 15px 0px 30px;
}
.portfolio-item-slider {
	margin: 10px auto 0;
}
.slick-dots {
	padding: 0 7px 5px;
}
.slick-prev, .slick-next {
	width: 32px;
	height: 52px;
	top: 58%;
}



}

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

@media screen and (max-width: 500px) {
.portfolio-popup-item {
	padding: 15px 0px 30px;
}

.isotope-grid-wr [class*="col-"] {
	position: static !important;
	width: 100%;
	float: none;
}


}

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