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

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

@font-face {
  font-family: 'GreatVibes';
  src: url('fonts/GreatVibes/GreatVibes-Regular.eot');
  src: url('fonts/GreatVibes/GreatVibes-Regular.woff2') format('woff2'),
	   url('fonts/GreatVibes/GreatVibes-Regular.woff') format('woff'),
	   url('fonts/GreatVibes/GreatVibes-Regular.ttf') format('truetype'),
	   url('fonts/GreatVibes/GreatVibes-Regular.svg#GreatVibes') format('svg'),
	   url('fonts/GreatVibes/GreatVibes-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  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 {
	margin: 0 auto;
	font-family: 'LifeSavers', sans-serif;
	font-size: 24px;
	line-height: 1.22;
	font-weight: normal;
	color: #222222;
}

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: 2px 0 38px;
	font-size: 36px;
	font-weight: 400;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	padding: 0 0 0px;
	font-size: 30px;
	font-weight: 400;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	font-weight: 400;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	font-weight: 400;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
	font-weight: 400;
}

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

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

p {
	padding: 0 0 28px;
}

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

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

.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;
	box-shadow: 0px 1px 3px 0px #222222;
}

header + * {
	/* padding-top: 100px; */
}

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

.homepage header {
	top: auto;
	bottom: 0;
	background-color: rgba(0, 0, 0, .85);
}

body .logo {
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 400px;
	top: 39px;
	left: 34px;
	text-shadow: 0px 1px 2px #ffffff;
	position: absolute;
	z-index: 5;
	float: left;
	display: block;
	font-family: 'PetitFormalScript';
	color: #000000;
	text-align: center;
}

.logo h1 {
	font-size: 60px;
	padding: 0 0 0 20px;
	line-height: 1;
	font-family: 'GreatVibes';
}

.logo h4 {
	font-size: 24px;
	padding: 0 0 10px;
	line-height: 1;
}

.logo h5 {
	font-size: 18px;
	padding: 0 0 0;
	line-height: 1;
}

.logo img {
	display: block;
}

.logo.pos-absolute {
	position: absolute;
	left: auto;
	right: 80px;
	top: 100px;
	opacity: .5;
	color: #ffffff;
	text-shadow: 0px 0px 2px #333333;
}

.header-fixed .logo.pos-absolute {
	opacity: 0;
	top: -100px;
}

.pos-absolute h1 {
	font-size: 36px;
	padding: 0 0 0 10px;
}

.pos-absolute h4 {
	font-size: 15px;
	padding: 0 0 8px;
}

.pos-absolute h5 {
	font-size: 12px;
}

header .container {
	width: 1400px;
	max-width: 98%;
}

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

.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;
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.navbar-nav > li > a {
	padding: 19px 10px 18px;
	margin: 0 15px 0;
	font-size: 24px;
	line-height: 1;
	color: #000000;
	font-weight: 400;
	text-transform: none;
	position: relative;
	background: transparent;
	font-family: 'PetitFormalScript';
}

.navbar-nav > li > a img {
	display: block;
}

.navbar-nav .link-contacts {
	float: right;
}

.navbar-nav .link-instagram {
	float: right;
}

.navbar-nav .link-gift {
	float: right;
}

.navbar-nav .link-icon a {
	padding: 0 0 0;
	margin: 0 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.navbar-nav li a i {
	padding: 0 0 0;
	margin: 12px 6px 12px;
	width: 38px;
	height: 38px;
	font-size: 20px;
	color: #ffffff;
	background: #333333;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50px;
	border-radius: 50%;
	position: relative;
}

.navbar-nav li a .fa-instagram {
	font-size: 21px;
}

.navbar-nav li a .fa-envelope {
	padding: 2px 0 0;
	font-size: 19px;
}

.navbar-nav li a .fa-gift {
	font-size: 23px;
}

.navbar-nav li a i:before {
	display: inline-block;
	vertical-align: middle;
	vertical-align: -moz-middle-with-baseline;
	vertical-align: -webkit-baseline-middle;
}

.navbar-nav li a i:after {
	/* content: ""; */
	content: none;
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	border: 2px solid;
	border-radius: 50px;
	border-radius: 50%;
}

.navbar-nav li a i + span {
	font-size: 0;
	display: none;
}

.navbar-nav .link-icon a:after {
	content: none;
}

.navbar-nav .link-home {
	float: left;
}

.navbar-nav .link-home.active {
	opacity: 0;
}

.navbar-nav .link-home a i {
	font-size: 30px;
	padding: 2px 0 0;
	color: #333333;
	background: transparent;
}

.navbar-nav .link-home a i:after {
	content: none;
}

.navbar-nav .link-home a i:before {
	vertical-align: middle;
}

.homepage .navbar-nav .link-icon a i {
	background: #ffffff;
	color: #333333;
}

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

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

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

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

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

.homepage .navbar-nav > li > a {
	color: #ffffff;
}

.homepage .navbar-nav > li.active > a {
	color: #ffffff;
}

.homepage .nav > li > a:focus, .homepage .nav > li > a:hover {
	color: #ffffff;
}

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

/* spinner css start */

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

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

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

}

.double-bounce1 {
	display: none;
}

.double-bounce2 {
	background: url('img/lily.gif') no-repeat center center;
	-webkit-background-size: contain;
	background-size: contain;
}

@-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 */

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

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

.content {
	background: #333333;
	color: #ffffff;
	position: relative;
}

.box-wr {
	/* padding: 110px 0 50px; */
	padding: 130px 0 60px;
	position: relative;
}

.container-1130 {
	margin: 0 auto;
	max-width: 1132px;
	padding: 0 0;
}

.box-wr, .slide-item {
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr {
	position: relative;
}

.col-sm-4 .img-wr {
	margin: 0 38px 0 0;
}

.img-wr img {
	width: 100%;
	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 {
	opacity: 1;
}

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

.bordered {
	position: relative;
}

.bordered::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 6px solid #cccccc;
}

body .box-slider {
	padding: 0 0 0;
	display: block;
}

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

.vcenter .container {
	text-align: left;
}

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

.vcenter:before {
	content: "";
	height: 100%;
	margin: 0 -5px 0 0;
}

.fullScreenHeight {
	display: table;
	width: 100%;
}

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

.text-wr {
	padding: 12px 0 0 0;
}

.thumb-items-wr {
	margin: 0 -25px;
	text-align: center;
	text-align: center;
}

.thumb-items-wr h5 {
	padding: 40px 0 15px;
}

.thumb-item {
	margin: 14px 6px 20px;
	width: 276px;
	padding: 0 0 0;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.thumb-item .img-wr {
	border: 6px solid #cccccc;
	box-shadow: none;
}

.thumb-item .img-wr img {
	display: block;
	margin: 0 auto;
	width: 100%;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: .75;
}

.thumb-item:hover .img-wr img {
	opacity: 1;
}

.thumb-item .img-overlay {
	padding: 5px 8px 6px;
	top: auto;
	background: rgba(0, 0, 0, .5);
	color: #ffffff;
}

.thumb-item .img-wr:before {
	content: none;
}

a[data-fancybox*="gallery"]:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -60px;
	bottom: 100%;
	margin: auto;
	width: 30px;
	height: 30px;
	background: url('img/i-zoom.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

a[data-fancybox*="gallery"]:hover:after {
	top: 0;
	bottom: 0;
}

.img-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

body .btn-main, form input[type="submit"], form button {
	margin: 20px auto 0;
	padding: 13px 22px 11px;
	font-size: 24px;
	line-height: 1.2;
	color: #FFFFFF;
	width: auto;
	font-style: normal;
	background: #000000;
	border: 2px solid #000000;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 4px;
}

html body .btn-main:hover {
	color: #FFFFFF;
	background: #000000;
	border: 2px solid #000000;
}

.form-row {
	margin-bottom: 17px;
}

form {
	margin: 9px 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: 13px 22px 11px;
	font-size: 24px;
	line-height: 1.2;
	color: #dddddd;
	background-color: transparent;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #000000;
	border-radius: 4px;
}

form input:hover, form textarea:hover, form select:hover {
	opacity: .9;
}

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

form label {
	font-size: 16px;
	line-height: 28px;
	font-weight: 700;
}

form textarea {
	min-height: 130px;
}

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

.activity-map-wr {
	max-width: 771px;
	/* margin: -84px auto 0; */
    margin: 0 auto 0;
	padding: 0 0 0;
	position: relative;
	right: 23px;
}

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

.activity-map-wr .btn-icon {
	position: absolute;
}

.activity-map-wr .btn-icon:hover {
	opacity: 1;
}

.activity-map-wr .btn-icon img {
	display: block;
	margin: 0 auto;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.activity-map-wr .btn-icon:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

h1 + .container-1130 > h5 {
	padding: 0 40px 0;
	line-height: 1;
}

.box-wr + .box-wr {
	border-top: 1px solid #3a3939;
}

body .btn-scroll-down {
	display: block;
	position: relative;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 20px auto 0;
	width: 162px;
	padding: 0 0 0;
}

body .btn-scroll-down:hover {
	bottom: -6px;
}

.tooltip {
	font-family: inherit;
	font-size: 14px;
	z-index: 10;
}

.btn-scroll-prev, .btn-scroll-next {
	right: 40px;
	margin: 0 0 0;
	width: 52px;
	position: fixed;
	z-index: 20;
	display: none;
}

.btn-scroll-prev.active, .btn-scroll-next.active {
	display: block;
}

.btn-scroll-prev:hover, .btn-scroll-next:hover {
	margin: -6px 0;
	opacity: 1;
}

.btn-scroll-prev img , .btn-scroll-next img {
	display: block;
}

.btn-scroll-prev {
	top: 110px;
}

.btn-scroll-next {
	bottom: 50px;
}

h1 i {
	display: inline-block;
	vertical-align: middle;
	margin: -12px 10px 0;
}

h1 i img {
	display: block;
	margin: 0 auto;
}

h1 a > img {
	display: inline-block;
	vertical-align: sub;
	margin: 0 4px -3px 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
	left: 0;
}

h1 a:hover > img {
	left: -6px;
}

h1 a {
	color: inherit;
}

.slide-item {
	outline: none;
}

.logo-photographer {
	display: block;
	position: absolute;
	right: 20px;
	bottom: 80px;
}

.css-blink {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

.pos-bottom {
	padding: 40px 0 15px;
	/* position: absolute; */
	left: 0;
	right: 0;
	padding: 0 0 30px;
	bottom: 0;
}

.box-popup {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #333333;
	display: none;
}

.box-popup p a {
	color: #99ffff;
}

.box-popup .container-1130 {
	max-width: 920px;
}

.error_message {
    padding: 5px 0 20px;
    color: #ff5b5b;
}

#succsess_page h1 {
    color: #00a000;
}
























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

footer {
	background: #878787;
}

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

@media (min-width: 1290px) {
	.container {
		width: 1260px;
	}
}

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

@media screen and (max-height: 790px) {
	body .btn-scroll-down {
		position: relative;
	}
}

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

@media screen and (max-width: 1289px) {
.navbar-nav > li > a {
	margin: 0 12px 0;
}









}

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

@media screen and (max-width: 1199px) {
.navbar-nav > li > a {
	padding: 22px 5px 22px;
	margin: 0 5px 0;
	font-size: 20px;
}
body {
	font-size: 20px;
	line-height: 1.25;
}
h1 {
	padding: 0 0 20px;
	font-size: 28px;
}
h2 {
	padding: 0 0 15px;
	padding: 0 0 0px;
	font-size: 26px;
}
h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;
}
h5 {
	padding: 0 0 15px;
	font-size: 16px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
p {
	padding: 0 0 15px;
}
.box-wr {
	padding: 130px 0 30px;
	position: relative;
}
.col-sm-4 .img-wr {
	margin: 0 0 0;
}
.text-wr {
	padding: 10px 0 0;
}
.thumb-items-wr {
	margin: 0 -10px;
}
.thumb-item {
	margin: 14px 4px 0;
	width: 200px;
}
form {
	margin: 0 0 0;
}
form input, form textarea, form select {
	padding: 10px 13px 9px;
	font-size: 18px;
}
h1 a > img[src*="i-arr-left"] {
	max-width: 35px;
	margin: 0 4px 0 0;
}















}

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

@media screen and (max-width: 991px) {
body {
	font-size: 16px;
	line-height: 1.25;
}
h1 {
	padding: 0 0 20px;
	font-size: 24px;
}
h2 {
	padding: 0 0 15px;
	padding: 0 0 0px;
	font-size: 22px;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.navbar-nav > li > a {
	padding: 24px 5px 22px;
	margin: 0 2px 0;
	font-size: 15px;
}
.box-wr {
	padding: 130px 0 30px;
}
.bordered::before {
	border: 3px solid #cccccc;
}
.thumb-item {
	margin: 10px 3px 0;
	width: 170px;
}
.thumb-item .img-wr {
	border: 3px solid #cccccc;
}
.thumb-item .img-overlay {
	padding: 4px 5px 5px;
}
.thumb-items-wr h5 {
	padding: 30px 0 15px;
}
.activity-map-wr {
	max-width: 771px;
	/* margin: -50px auto 0; */
    margin: 0 auto 0;
	right: 0;
}
.btn-scroll-prev, .btn-scroll-next {
	right: 15px;
	width: 26px;
}
.btn-scroll-prev {
	top: 65px;
}
.btn-scroll-next {
	bottom: 13px;
}
body .btn-scroll-down {
	margin: 30px auto 0;
	width: 81px;
}

















}

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

@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: 10px 10px 10px;
	margin: 0 0 0;
	border: none;
	min-height: 25px;
	position: relative;
	z-index: 5;
	background: #000000;
	float: left;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 7px;
}
.navbar-toggle .icon-bar {
	width: 36px;
	height: 3px;
	background: #ffffff;
}
header .container {
	max-width: 100%;
	padding: 11px 13px 11px;
}
.homepage header {
	top: 0;
	bottom: auto;
	background-color: transparent;
}
.logo h1 {
	font-size: 36px;
	padding: 0 0 0 10px;
}
.logo h4 {
	font-size: 16px;
	padding: 0 0 6px;
}
.logo h5 {
	font-size: 14px;
}
body .logo {
	top: 21px;
	left: auto;
	right: 25px;
}
header {
	box-shadow: none;
	background: transparent;
}
.navbar {
	position: static;
	text-align: left;
}
.navbar-collapse {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #333333;
	min-height: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.navbar-nav {
	padding: 110px 15px 110px;
}
.navbar-nav .link-home {
	float: none;
}
.navbar-nav .link-contacts {
	float: none;
}
.navbar-nav .link-instagram {
	float: none;
}
.navbar-nav > li {
	display: block;
}
.navbar-nav > li > a {
	padding: 10px 8px 10px;
	margin: 0 2px 10px;
	font-size: 24px;
}
body .logo {
	color: #ffffff;
	text-shadow: 0px 0px 0px #000000;
}
.homepage .logo {
	color: #000000;
	text-shadow: 0px 1px 2px #ffffff;
}
.nav-active .logo {
	color: #ffffff;
	text-shadow: 0px 0px 0px #000000;
}
.box-wr {
	padding: 130px 0 40px;
}
body {
	font-size: 14px;
}
h1 {
	padding: 0 0 20px;
	font-size: 22px;
}
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;
	font-size: 13px;
}
h6 {
	padding: 0 0 15px;
	font-size: 11px;
}
.navbar-nav > li > a {
	color: #ffffff;
}
.nav > li > a:focus, .nav > li > a:hover {
	color: #ffffff;
}
.navbar-nav > li.active > a {
	color: #ffffff;
}
.navbar-nav > li > a:after {
	content: none;
}
.header-fixed .logo {
	opacity: 0;
	top: -100px;
}
.navbar-collapse.in {
	overflow-y: auto;
	height: 100%;
}
.col-sm-4 .img-wr {
	margin: 0 auto 10px;
	max-width: 300px;
}
.col-sm-8 .text-wr {
	padding: 10px 0 0;
	text-align: center;
}
h1 + .container-1130 > h5 {
	padding: 0 5px 0;
}
.activity-map-wr {
	max-width: 771px;
	margin: 25px auto 0;
}
.btn-scroll-prev, .btn-scroll-next {
	right: 7px;
}
.box-wr + .box-wr {
	border-top: 1px solid #3a3939;
	padding: 90px 0 40px;
}
.btn-scroll-prev {
	top: 10px;
	z-index: 99;
}
.btn-scroll-next {
	bottom: 10px;
}
.box-wr + .box-wr h1 {
	text-align: center;
}
.navbar-nav li a i {
	font-size: 0;
	display: none;
	margin: 0 0 0;
}
.navbar-nav .link-instagram a i {
	display: block;
}
.navbar-nav li a i + span {
	font-size: 24px;
	display: block;
}
.navbar-nav .link-icon a {
	padding: 10px 8px 10px;
	margin: 0 2px 10px;
	font-size: 24px;
}
button.navbar-toggle.active {
	background: #333333;
}
.logo-photographer {
	right: 0;
	bottom: 5px;
	left: 0;
	width: 100px;
	margin: auto;
}
.homepage .navbar-nav .link-instagram a i {
	display: block;
	margin: 0 0 0;
}
.pos-bottom {
	position: static;
}
h1 a > img[src*="i-arr-left"] {
	max-width: 28px;
	margin: 0 4px 0 0;
}
.tooltip.top {
	display: none !important;
}
.logo.pos-absolute {
	top: 21px;
	left: auto;
	right: 25px;
}
.header-fixed .logo {
	opacity: 0;
	top: -100px;
}
.navbar-nav .link-gift {
	float: none;
}
#hellobar-pusher+header {
    margin: 40px 0 0;
}












}

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

@media screen and (max-width: 550px) {
.thumb-item {
	margin: 5px 1px 0;
	width: 150px;
}
.activity-map-wr .btn-icon img {
	-webkit-transform: scale(.7);
	transform: scale(.7);
	margin: -5px -3px 0;
}





}

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