@import url("reset.css");

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

body {
	position: relative;
	overflow-x: hidden;
	font: 400 14px Tahoma, Geneva, sans-serif;
	color: #7c7c7c;
}

body.overflow-y {
	overflow-y: hidden;
}

strong,
b {
	font-weight: 700;
}

h1 {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 30px;
	color: #000;
}

h2 {
	margin-bottom: 1em;
	font-weight: 800;
	font-size: 24px;
	color: #000;
}

h3 {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 18px;
	color: #000;
}

h4 {
	margin-bottom: 0.5em;
	font-weight: 600;
	font-size: 1em;
	color: #000;
}

h5 {
	font-weight: 500;
	font-size: 14px;
	color: #000;
}

ul,
ol {
	list-style: none;
	margin-bottom: 1em;
}

li {
	margin-bottom: 1em;
}

p {
	margin-bottom: 1em;
	line-height: 1.45em;
}

a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-ms-transition: all .25s;
	-o-transition: all .25s;
	transition: all .25s;
}

a:hover,
a:focus {
	text-decoration: underline;
}

sup {
	vertical-align: top;
}

small {
	font-size: 0.75em;
}

address {
	display: block;
	margin-bottom: 1em;
	line-height: 1.45em;
	font-style: normal;
}

hr {
	height: 1px;
	margin: .85em 0;
	border: none;
	background: #444;
}

.table {
	display: table;
	width: 100%;
	margin: 0 auto;
}

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

.t-left {
	text-align: left;
}

.t-right {
	text-align: right;
}

.btn {
	display: inline-block;
	min-width: 135px;
	margin: 10px 0;
	position: relative;
	z-index: 1;
	font: 400 13px/1.65em Tahoma, Geneva, sans-serif;
	color: #000;
	outline: none;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}

.btn span {
	position: relative;
	display: block;
	padding: 8px 28px;
	border: 1px solid #a68228;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.btn span:before {
	content: attr(data-hover);
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 8px 28px;
	border: 1px solid #a68228;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:hover span,
.btn:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}

.btn:hover span:before,
.btn:focus span:before {
	background: #a68228;
	color: #FFF;
}

.btn:hover,
.btn:focus {
	color: #a68228;
	text-decoration: none;
}

.btn-set {
	text-align: center;
}

.btn-set.to-left {
	text-align: left;
}

.btn-set.to-right {
	text-align: right;
}

table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

ul {
	list-style: none;
}

.content {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

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

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

/*--------- forms elements ---------*/
fieldset {
	margin-bottom: 1.7em;
}

legend {
	margin-bottom: 0.6em;
	font-weight: 400;
	color: #2c343a;
}

.t-input,
textarea {
	display: block;
	width: 100%;
	margin: 6px 0;
	padding: 8px 14px;
	border: 1px solid #d2d2d2;
	background: #FFF;
	outline: none;
	font: 14px Tahoma, Geneva, sans-serif;
	color: #0007c7c7c;
	-webkit-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-ms-transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

textarea {
	height: 104px;
}

.t-input:focus,
textarea:focus {
	border-color: #000;
}

.t-input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #7c7c7c;
}

.t-input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #7c7c7c;
}

.t-input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #7c7c7c;
}

.t-input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #7c7c7c;
}

/*------------------ header ------------------*/
.header {
	padding-top: 30px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: #000;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.main-page .header {
	background-image: url(../img/bg-1.jpg);
}

.header a {
	color: #FFF;
}

.header .bg-video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}

.header .bg-video video,
.header .bg-video img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.header .top {
	padding-bottom: 20px;
}

.header .left-panel {
	float: left;
}

.header .right-panel {
	float: right;
	padding: 21px 0;
}

.header .big-blocks {
	padding-bottom: 10px;
}

/*--------- logo ---------*/
.logo {
	float: left;
	margin-right: 187px;
	vertical-align: middle;
}

.logo img {
	display: block;
}

/*--------- to application ---------*/
.to-application {
	display: inline-block;
	margin-top: 35px;
	padding-bottom: 7px;
	border-bottom: 1px solid #a68228;
}

.to-application:hover,
.to-application:focus {
	color: #a68228;
	text-decoration: none;
}

.to-application.mob {
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	border: none;
	font-size: 16px;
	text-align: center;
	line-height: 43px;
	background: #a68228;
}

/*--------- .language ---------*/
.language {
	display: inline-block;
	margin:0 25px;
	vertical-align: middle;
}

/*--------- socials ---------*/
.socials {
	clear: both;
	margin: 1em 0;
	font-size: 16px;
}

.socials li {
	display: inline-block;
	margin: 0 18px 0 0;
	vertical-align: middle;
}

.socials li a:hover,
.socials li a:focus {
	opacity: .5;
}

.socials.inline {
	display: inline-block;
	margin: 0 28px;
	vertical-align: middle;
}

/*--------- top menu ---------*/
.top-menu {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.top-menu .toggle {
	display: inline-block;
	margin: 0 23px;
	position: relative;
	z-index: 1;
	vertical-align: middle;
}

.top-menu .toggle:before {
	content: "";
	display: inline-block;
	width: 49px;
	height: 49px;
	vertical-align: middle;
	background: #000 url(../img/icon-menu.png) center no-repeat
}

.top-menu.is-active .toggle:before {
	background-image: url(../img/icon-close.png);
}

.top-menu .menu {
	width: 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 70px;
	overflow: hidden;
	font-size: 16px;
	white-space: nowrap;
	background: #000;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	transition: all .4s ease-out;
}

.top-menu.is-active .menu {
	overflow: visible;
}

.top-menu .menu li {
	display: inline-block;
	margin: 0;
}

.top-menu .menu li a {
	display: block;
	padding: 15px 27px;
	color: #FFF;
	background: #000;
}

.top-menu .menu li a:hover,
.top-menu .menu li a:focus,
.top-menu .menu li a.active {
	text-decoration: none;
	background: #cc2026;
}

/*--------- big menu ---------*/
.big-menu {
	margin: 10px 0;
}

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

.big-menu .item .inner {
	display: block;
	height: 223px;
	padding: 49px 30px 10px;
	position: relative;
	overflow: hidden;
	background: #a91f15;
	background: rgba(169, 31, 21, .8);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	font-size: 13px;
	color: #FFF;
}

.big-menu .item .inner:hover {
	text-decoration: none;
}

.big-menu .item.big {
	width: 40%;
}

.big-menu .item.bg-none .inner {
	background: none;
}

.big-menu .item.yellow .inner {
	background: #a68228;
	background: rgba(166, 130, 40, .8);
}

.big-menu .item h3 {
	color: #FFF;
}

.big-menu .item .icon {
	float: right;
	margin-right: 60px;
}

.big-menu .item .icon + p {
	width: 230px;
}

.big-menu .item .icon-link .fa {
	border-color: #FFF;
}

.big-menu .item .icon-mob {
	display: none;
	width: 37px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 27px;
	text-align: center;
}

.big-menu .item .icon-mob:before {
	content: "";
	display: inline-block;
	height: 100%;
	margin-left: -4px;
	vertical-align: middle;
}

.big-menu .item .icon-mob img {
	display: inline-block;
	max-width: 98%;
	vertical-align: middle;
}

/*--------- background slider ---------*/
.bg-slider {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.bg-slider .slider,
.bg-slider .slide,
.bg-slider .bx-wrapper,
.bg-slider .bx-viewport,
.bg-slider .slide img {
	height: 100%;
}

.bg-slider .slide img {
	display: block;
	width: 100%;
}

/*--------- partners slider ---------*/
.partners-slider {
	margin: 14px 0;
	padding: 20px 64px;
	position: relative;
	background: #FFF;
}

.partners-slider .bx-wrapper {
	position: static;
}

.partners-slider .slide {
	height: 54px;
	text-align: center;
}

.partners-slider .slide:before {
	content: "";
	display: inline-block;
	height: 100%;
	margin-left: -4px;
	vertical-align: middle;
}

.partners-slider .slide img {
	display: inline-block;
	max-width: 98%;
	max-height: 100%;
	vertical-align: middle;
}

/*--------- page title ---------*/
.page-title {
	padding: 40px 0 20px;
	text-align: center;
	color: #FFF;
}

.page-title h1 {
	color: #FFF;
}

/*------------------ main content ------------------*/
main {
	padding: 20px 0;
	background: url(../img/bg.jpg) left top no-repeat;
}

.title {
	font-size: 18px;
	overflow: hidden;
}

.title:after {
	content: "";
	display: block;
	width: 256px;
	height: 1px;
	margin-top: 11px;
	background: #a68228;
}

.icon-link {
	display: inline-block;
	margin: 1em 0;
	font-size: 11px;
}

.icon-link:hover,
.icon-link:focus {
	opacity: .5;
}

.icon-link .fa,
.more .icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	border: 2px solid #181818;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	vertical-align: middle;
	text-align: center;
	line-height: 22px;
}

.more .icon {
	position: relative;
	text-align: center;
}

.ball-rotate {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
}

.ball-rotate > div {
	margin: 0 auto;
	position: relative;
}

.ball-rotate > div,
.ball-rotate > div:after,
.ball-rotate > div:before {
	background-color: #000;
	width: 3px;
	height: 3px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.ball-rotate > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.more:hover .ball-rotate > div:first-child,
.more:focus .ball-rotate > div:first-child {
	-webkit-animation: rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
	-moz-animation: rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
	animation: rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
}

.ball-rotate > div:after,
.ball-rotate > div:before {
	content: "";
	position: absolute;
	top: 0;
	opacity: .8;
}

.ball-rotate > div:before {
	left: -6px;
}

.ball-rotate > div:after {
	right: -6px;
}

/*--------- breadcrumbs ---------*/
.breadcrumbs {
	margin: 20px 0;
	padding: 0 64px;
	color: #9c9c9c;
	font-weight: 700;
}

.breadcrumbs li {
	display: inline-block;
	margin: 0;
	vertical-align: top;
}

.breadcrumbs li:after {
	content: "/";
	display: inline-block;
	margin: 0 3px;
}

.breadcrumbs li:last-child:after {
	content: none;
}

.breadcrumbs li a {
	color: #9c9c9c;
}

.breadcrumbs li a:hover,
.breadcrumbs li a:focus,
.breadcrumbs li:last-child a {
	color: #000;
}

/*--------- page section ---------*/
.p-section {
	padding: 25px 0;
}

.p-section .s-title {
	margin-bottom: 2em;
}

/*--------- section news ---------*/
.s-news .content {
	padding: 0 64px;
}

.s-news .all-news {
	float: right;
	margin-top: 0;
}

.s-news .all-news.mob {
	float: none;
	display: none;
}

/*--------- news ---------*/
.news {
	letter-spacing: 44px;
	text-align: center;
}

.news * {
	letter-spacing: normal;
}

.news .item {
	display: inline-block;
	width: 346px;
	vertical-align: top;
	text-align: left;
	font-size: 12px;
}

.news .item .photo-link {
	display: block;
	margin-bottom: 12px;
}

.news .item .photo-link img {
	display: block;
	width: 100%;
}

.news .item .title {
	font-size: 16px;
}

/*--------- big news ---------*/
.big-news .item {
	padding: 20px 0;
	font-size: 12px;
}

.big-news .item .title {
	font-size: 16px;
}

.big-news .item .text {
	float: left;
	width: 42.18%;
	padding: 92px 64px 10px;
}

.big-news .item .photo {
	margin-left: 42.18%;
}

.big-news .item .photo img {
	display: block;
	width: 100%;
}

.big-news .item:nth-child(even) .text {
	float: right;
	direction: rtl;
}

.big-news .item:nth-child(even) .photo {
	margin-left: 0;
	margin-right: 42.18%;
}

.big-news .item:nth-child(even) .more .icon {
	margin-right: 0;
	margin-left: 8px;
}

/*--------- single article ---------*/
.single-article {
	padding: 20px 0;
}

.single-article .content {
	padding: 0 64px;
}

.single-article .photo {
	float: left;
	width: 54.86%;
	margin: 0 40px 20px 0;
	position: relative;
}

.single-article .photo .photo-img {
	display: block;
	width: 100%;
}

.single-article .photo .meta {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0),rgba(0, 0, 0, .65));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65));
	font-weight: 700;
	font-size: 12px;
	color: #FFF;
}

.single-article .photo .meta .inner {
	width: 100%;
	padding: 0 35px 25px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.single-article .photo .meta span {
	display: inline-block;
	margin: 0 45px 10px 0;
}

.single-article .photo .meta span img {
	display: inline-block;
	margin-right: 8px;
}

/*--------- review form ---------*/
.review-form {
	margin: 2em 0 2em 54.86%;
	padding-left: 40px;
	overflow: hidden;
}

.review-form .two-inputs {
	margin: 6px 0;
	/*overflow: hidden;*/
}

.review-form .two-inputs .t-input {
	width: 49.68%;
	margin: 0;
}

.review-form .two-inputs .t-input:first-child {
	float: left;
}

.review-form .two-inputs .t-input:last-child {
	float: right;
}

/*--------- share block ---------*/
.share-block {
	margin: 2em 0 2em 54.86%;
	padding-left: 40px;
	text-align: center;
}

.share-block .inner {
	padding: 30px 20px 10px;
	border: 1px solid #a68228;
}

.share-block h3 {
	font-size: 13px;
	color: #262626;
}

/*--------- section error ---------*/
.error-page main {
	background: #101010;
}

.s-error {
	text-align: center;
	color: #FFF;
}

.s-error .photo-404 {
	display: block;
	margin: 0 auto 35px;
}

.s-error .btn {
	color: #FFF;
}

/*--------- section contacts ---------*/
.s-contacts {
	color: #000;
}

.s-contacts .content {
	padding: 0 128px;
}

.s-contacts .accordion {
	margin-bottom: 4em;
}

.s-contacts .accordion:first-child {
	float: left;
	width: 320px;
}

.s-contacts .map {
	float: right;
	width: 62.5%;
	height: 400px;
}

.s-contacts .accordion.inline {
	clear: both;
	margin-bottom: 2em;
}

.s-contacts .accordion.inline .item {
	float: left;
	width: 31.25%;
	margin-right: 3.125%;
}

.s-contacts .accordion.inline .item:last-child {
	margin-right: 0;
}

.s-contacts .accordion.inline .ui-accordion-header {
	min-height: 61px;
}

.s-contacts .accordion .ui-accordion-content > * {
	padding-left: 34px;
}

.s-contacts h3 {
	margin-bottom: 1.5em;
	font-size: 14px;
	text-transform: uppercase;
}

.s-contacts a {
	color: #000;
}

.s-contacts address {
	background: url(../img/icon-marker-mini.png) 0 center no-repeat;
	color: #828282;
}

.s-contacts .phones {
	background: url(../img/icon-phone.png) 0 center no-repeat;
	color: #828282;
}

.s-contacts .email {
	display: block;
	background: url(../img/icon-envelope-mini.png) 0 center no-repeat;
	color: #828282;
}

.s-contacts .socials {
	margin: 0;
}

.s-contacts .socials li:first-child {
	margin-left: 0;
}

/*--------- single gallery ---------*/
.single-gallery .content {
	padding: 0 64px;
}

/*--------- gallery ---------*/
.gallery .main-photo {
	margin-bottom: 20px;
	position: relative;
}

.gallery .main-photo img {
	display: block;
	width: 100%;
}

.gallery .main-photo .controls {
	width: 47px;
	position: absolute;
	bottom: 0;
	left: 0;
}


.gallery .main-photo .controls.right {
	left: auto;
	right: 0;
}

.gallery .main-photo .controls a {
	display: block;
	height: 47px;
	background-color: #000;
	background-color: rgba(0, 0, 0, .75);
	background-position: center;
	background-repeat: no-repeat;
}

.gallery .main-photo .controls a:hover,
.gallery .main-photo .controls a:focus {
	background-color: rgba(0, 0, 0, .5);
}

.gallery .main-photo .controls a.prev {
	background-image: url(../img/arrow-prev.png);
}

.gallery .main-photo .controls a.next {
	background-image: url(../img/arrow-next.png);
}

.gallery .main-photo .controls a.pause {
	background-image: url(../img/icon-pause.png);
}

.gallery .main-photo .controls a.zoom {
	background-image: url(../img/icon-zoom.png);
}

.gallery .thumbnails {
	margin: 20px 0;
	text-align: right;
}

.gallery .thumbnails a {
	display: inline-block;
	margin: 0 0 6px 2px;
}

.gallery .thumbnails a:hover,
.gallery .thumbnails a:focus {
	opacity: .5;
}

.gallery .thumbnails a img {
	display: block;
	width: 61px;
	height: 55px;
	-o-object-fit: cover;
	object-fit: cover;
}

/*--------- gallery folders ---------*/
.s-gallery-folders .content {
	padding: 0 64px;
}

.gallery-folders {
	padding: 45px 0;
	border-top: 1px solid #a68228;
	letter-spacing: 11px;
}

.gallery-folders .item {
	display: inline-block;
	width: 176px;
	height: 159px;
	margin: 5px 0;
	position: relative;
	vertical-align: top;
	letter-spacing: normal;
}

.gallery-folders .item .photo {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gallery-folders .item a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .36);
	font-size: 13px;
	font-weight: 700;
	color: #FFF;
}

.gallery-folders .item a:hover,
.gallery-folders .item a:focus {
	background-color: rgba(0, 0, 0, .2);
}

.gallery-folders .item a span {
	position: absolute;
	bottom: 5px;
	left: 15px;
	right: 15px;
}

.gallery-folders .item.is-active a {
	display: none;
}

/*------------------ footer ------------------*/
.footer .top {
	padding: 55px 0;
	background: #262626;
	color: #828282;
}

.footer .top .content {
	padding: 0 64px;
}

.footer .top h4 {
	margin-bottom: 1.7em;
	color: #FFF;
}

.footer .top a {
	color: #828282;
}

.footer .top-mob {
	display: none;
	padding: 50px 0 25px;
	background: #262626;
	color: #FFF;
	text-align: center;
	font-size: 18px;
}

/*--------- footer about ---------*/
.f-about {
	float: left;
	width: 190px;
	margin-right: 14.75%;
	padding: 44px 0;
}

/*--------- footer menu ---------*/
.f-menu {
	float: left;
	width: 150px;
	margin-right: 8.42%;
}

/*--------- bottom menu ---------*/
.bottom-menu li {
	margin-bottom: .75em;
}

.bottom-menu li a {
	display: inline-block;
	position: relative;
	padding-bottom: 4px;
}

.bottom-menu li a:hover,
.bottom-menu li a:focus {
	text-decoration: none;
}

.bottom-menu li a:hover:after,
.bottom-menu li a:focus:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #a68228;
}

/*--------- footer gallery ---------*/
.f-gallery {
	float: left;
	width: 165px;
}

/*--------- mini gallery ---------*/
.mini-gallery li {
	float: left;
	margin: 0 5px 5px 0;
}

.mini-gallery li a {
	display: block;
}

.mini-gallery li a:hover,
.mini-gallery li a:focus {
	opacity: .5;
}

.mini-gallery li a img {
	display: block;
	width: 76px;
	height: 76px;
}

/*--------- footer contacts ---------*/
.f-contacts {
	float: right;
	width: 225px;
}

/*--------- contacts icons ---------*/
.contacts-icons {
	margin-bottom: 50px;
	text-align: center;
}

.contacts-icons li {
	display: inline-block;
	width: 32%;
	margin: 0;
	position: relative;
	vertical-align: middle;
}

.contacts-icons li:after {
	content: "";
	display: block;
	width: 1px;
	height: 21px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #575757;
}

.contacts-icons li:last-child:after {
	content: none;
}

.contacts-icons li a,
.contacts-icons li img {
	display: inline-block;
}

/*--------- footer bottom ---------*/
.footer .bottom {
	padding: 9px 0;
	font-size: 11px;
	color: #a68228;
	text-align: center;
	background: #2f2f2f;
}

.footer .bottom p {
	margin-bottom: .25em;
}

.footer .bottom a {
	color: #FFF;
}

/*--------- copyright ---------*/
.copyright {
	float: left;
}

/*--------- powered ---------*/
.powered {
	float: right;
}

@media screen and (max-width:768px) {
	body {
		font-size: 18px;
	}
	
	.content {
		padding: 0 20px;
	}
	
	.btn {
		display: block;
		max-width: 320px;
		margin: 40px auto;
		font-size: 18px;
		line-height: 77px;
		border-width: 2px;
	}
	
	.socials {
		font-size: 34px;
	}
	
	.socials li {
		margin: 0 40px;
	}
	
	.header {
		padding-top: 43px;
	}
	
	.header .top {
		padding: 25px 0;
	}
	
	.header .socials {
		display: none;
	}
	
	.header .big-blocks {
		padding-bottom: 0;
	}
	
	.logo {
		margin: 0;
	}
	
	.logo img {
		width: 168px;
	}
	
	.to-application {
		display: none;
	}
	
	.to-application.mob {
		display: block;
	}
	
	.language {
		margin: 0 10px;
	}
	
	.language .ui-selectmenu-button span.ui-selectmenu-text {
		padding: 12px 24px 12px 13px;
		font-size: 16px;
	}
	
	.toggle-menu {
		margin: 0 0 0 10px;
	}
	
	.toggle-menu:before {
		width: 46px;
		height: 35px;
		background-image: url(../img/icon-menu-big.png);
	}
	
	.big-menu .item,
	.big-menu .item.big {
		float: none;
		width: auto;
		padding: 5px 0;
	}
	
	.big-menu .item.not-mob {
		display: none;
	}
	
	.big-menu .item .inner {
		height: auto;
		padding: 30px 32px 29px 27px;
	}
	
	.big-menu .item p,
	.big-menu .item .icon,
	.big-menu .item .btn-set {
		display: none;
	}
	
	.big-menu .item .icon-mob {
		display: block;
	}
	
	.big-menu .item h3 {
		margin: 0;
	}
	
	.partners-slider {
		margin: 0 -20px 0;
	}
	
	.partners-slider .bx-wrapper .bx-prev {
		left: 20px;
	}
	
	.partners-slider .bx-wrapper .bx-next {
		right: 20px;
	}
	
	.title:after {
		width: auto;
	}
	
	.icon-link {
		font-size: 18px;
		text-transform: uppercase;
	}
	
	.icon-link .fa {
		width: 54px;
		height: 54px;
		line-height: 54px;
		font-size: 30px;
	}
	
	.s-news .content {
		padding: 0 20px;
	}
	
	.s-news .all-news {
		display: none;
	}
	
	.s-news .all-news.mob {
		display: block;
	}
	
	.news {
		letter-spacing: normal;
	}
	
	.news .item {
		display: block;
		width: auto;
		margin-bottom: 45px;
		font-size: 18px;
	}
	
	.big-news {
		display: none;
	}
	
	.footer .top {
		display: none;
	}
	
	.footer .top-mob {
		display: block;
	}
	
	.footer .top-mob .socials a {
		color: #FFF;
	}
	
	.footer .bottom {
		padding: 22px 0;
		font-size: 16px;
		color: #5d5d5d;
	}
	
	.copyright,
	.powered {
		float: none;
	}
}

@media screen and (max-width:480px) {
	.logo img {
		width: 120px;
	}
	
	.header .right-panel {
		padding: 0;
	}
	
	.socials li {
		margin: 0 20px;
	}
}