@-webkit-keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}

@-webkit-keyframes onAutoFillStart {
	0% {
		opacity: .99;
	}

	to {
		opacity: 1;
	}
}

@keyframes onAutoFillStart {
	0% {
		opacity: .99;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes onAutoFillCancel {
	0% {
		opacity: .99;
	}

	to {
		opacity: 1;
	}
}

@keyframes onAutoFillCancel {
	0% {
		opacity: .99;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes autofill {
	to {
		color: inherit;
		background: transparent;
	}
}

@keyframes autofill {
	to {
		color: inherit;
		background: transparent;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

body {
	color: #1b1b1b;
	font-family: Lato;
	font-size: 16px;
	line-height: 1;
}

.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background-color: #1b1b1b;
	z-index: 1100;
}

.header__wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

.header__logo {
	width: 158px;
	height: 60px;
	min-width: 115px;
	display: block;
}

.header__hamburger {
	width: 22px;
	height: 14px;
	color: #fff;
}

@media only screen and (min-width:1025px) {
	.header__hamburger {
		display: none;
	}
}

@media only screen and (max-width:1024px) {
	.header__menu {
		transition: .3s;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 100;
		background-color: rgba(0,0,0,.6);
		opacity: 0;
		pointer-events: none;
		transition-delay: .3s;
	}

	.header__menu_show {
		opacity: 1;
		pointer-events: all;
		transition-delay: 0s;
	}
}

@media only screen and (min-width:1025px) {
	.header__menu {
		width: 100%;
	}
}

.header__menu-close {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: row;
	width: calc(100% - 250px);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}

@media only screen and (min-width:1025px) {
	.header__menu-close {
		display: none;
	}
}

.header__menu-close svg {
	width: 24px;
	height: 24px;
	margin-right: 16px;
	margin-top: 18px;
	color: #fff;
}

@media only screen and (min-width:481px) {
	.header__menu-close svg {
		margin-right: 23px;
	}
}

@media only screen and (max-width:1024px) {
	.header__menu-wrapper {
		transition: transform .3s;
		transform: translateX(-250px);
		padding: 40px 16px 16px;
		transition-delay: 0s;
		width: 100%;
		height: 100%;
		max-width: 250px;
		background-color: #1b1b1b;
		overflow: auto;
	}
}

.header__menu-links {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

@media only screen and (min-width:1025px) {
	.header__menu-links {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		flex-direction: row;
	}
}

.header__menu-link {
	text-decoration: none;
	position: relative;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .01em;
	line-height: 1.2;
	white-space: nowrap;
}

.header__menu-link:not(:last-child) {
	margin-bottom: 20px;
}

.header__menu-link:before {
	transition: .3s;
	transform: scaleX(0);
	content: "";
	height: 1px;
	position: absolute;
	top: calc(100% + 6px);
	left: -5px;
	right: -5px;
	background-color: #b69858;
	pointer-events: none;
}

@media only screen and (min-width:1025px) {
	.header__menu-link {
		transition: .3s;
		font-size: 14px;
	}

	.header__menu-link:not(:last-child) {
		margin-bottom: 0;
	}

	.header__menu-link:not(:first-child) {
		margin-left: 34px;
	}

	.header__menu-link:hover {
		color: #b69858;
	}

	.header__menu-link:hover:before {
		transform: scale(1);
	}
}

@media only screen and (min-width:1550px) {
	.header__menu-link {
		font-size: 16px;
	}

	.header__menu-link:not(:first-child) {
		margin-left: 40px;
	}
}

@media only screen and (max-width:1024px) {
	.header__menu_show .header__menu-wrapper {
		transform: translateX(0);
		transition-delay: .3s;
	}
}

.header__left {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
}

.footer {
	background-color: #1b1b1b;
	color: #fff;
	padding-top: 18px;
	padding-bottom: 22px;
	font-size: 17px;
	font-weight: 500;
	line-height: 20px;
}

.slider {
	position: relative;
	margin-top: 50px;
	margin-bottom: 50px;
	overflow: hidden;
}

@media only screen and (min-width:481px) {
	.slider {
		margin-bottom: 46px;
	}
}

@media only screen and (min-width:1025px) {
	.slider {
		margin-top: 65px;
		margin-bottom: 71px;
	}
}

.slider__wrapper {
	overflow: hidden;
}

.slider__swiper {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width:1025px) {
	.slider__swiper {
		overflow: hidden;
	}
}

.slider__item,.slider__swiper-wrapper {
	display: flex;
	transition-property: transform;
}

.slider__item {
	width: 100%;
	height: 100%;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	background-color: #1b1b1b;
	position: relative;
	flex-shrink: 0;
}

.slider__item:before {
	content: "";
	display: block;
	padding-top: 75.806%;
}

@media only screen and (min-width:481px) {
	.slider__item:before {
		padding-top: 60%;
	}
}

@media only screen and (min-width:1025px) {
	.slider__item:before {
		padding-top: 32.052%;
	}
}

.slider picture {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
}

.slider picture img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.slider__arrow {
	width: 33px;
	height: 33px;
	transition: .3s;
	position: absolute;
	top: calc(50% - 20px);
	color: #fff;
	z-index: 10;
}

@media only screen and (min-width:1025px) {
	.slider__arrow:hover {
		transform: scale(1.2);
		cursor: pointer;
	}
}

.slider__arrow-prev {
	left: 21px;
}

@media only screen and (min-width:481px) {
	.slider__arrow-prev {
		left: 29px;
	}
}

@media only screen and (min-width:1025px) {
	.slider__arrow-prev {
		left: 37px;
	}
}

.slider__arrow-next {
	right: 21px;
}

@media only screen and (min-width:481px) {
	.slider__arrow-next {
		right: 29px;
	}
}

@media only screen and (min-width:1025px) {
	.slider__arrow-next {
		right: 37px;
	}
}

.slider__arrow-next svg {
	transform: rotate(180deg);
}

.slider__bullets {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	margin-top: 8px;
}

@media only screen and (min-width:481px) {
	.slider__bullets {
		margin-top: 12px;
	}
}

@media only screen and (min-width:1025px) {
	.slider__bullets {
		margin-top: 16px;
	}
}

.slider__bullets-item {
	width: 44px;
	height: 3px;
	background-color: #cbcbcb;
	border-radius: 3px;
}

.slider__bullets-item:not(:first-child) {
	margin-left: 16px;
}

.slider__bullets-item_active {
	background-color: #b69858;
}

.top-menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 50px;
}

@media only screen and (min-width:481px) and (max-width:1024px) {
	.top-menu {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 34px;
	}

	.top-menu>* {
		margin-left: 15px;
		margin-right: 15px;
		width: calc(50% - 15px);
		margin-bottom: 30px;
	}

	.top-menu>:nth-of-type(2n-1) {
		margin-left: 0;
	}

	.top-menu>:nth-of-type(2n) {
		margin-right: 0;
	}
}

@media only screen and (min-width:1025px) {
	.top-menu {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 110px;
	}

	.top-menu>* {
		margin-left: 8.5px;
		margin-right: 8.5px;
		width: calc(20% - 13.6px);
		margin-bottom: 0;
	}

	.top-menu>:nth-of-type(5n-4) {
		margin-left: 0;
	}

	.top-menu>:nth-of-type(5n) {
		margin-right: 0;
	}
}

.top-menu__item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	overflow: hidden;
	background-color: #1b1b1b;
	box-shadow: 0 0 4px rgba(0,0,0,.5);
	border-radius: 3px;
	padding: 16px 10px 14px;
	color: #fff;
	text-decoration: none;
	letter-spacing: .01em;
	text-transform: uppercase;
	text-align: center;
}

@media only screen and (max-width:480px) {
	.top-menu__item {
		width: 100%;
	}
}

.top-menu__item:not(:first-child) {
	margin-top: 16px;
}

@media only screen and (min-width:481px) {
	.top-menu__item:not(:first-child) {
		margin-top: 0;
	}
}

@media only screen and (min-width:1025px) {
	.top-menu__item {
		position: relative;
	}

	.top-menu__item:hover span {
		color: #b69858;
	}

	.top-menu__item:hover img {
		transform: scale(1.2);
	}

	.top-menu__item:before {
		content: "";
		display: block;
		padding-top: 78.71%;
	}
}

.top-menu__item img {
	display: none;
}

@media only screen and (min-width:1025px) {
	.top-menu__item img {
		width: 100%;
		height: 100%;
		top: 0;
		display: block;
		border-radius: inherit;
		-o-object-fit: cover;
		object-fit: cover;
		z-index: 5;
	}
}

@media only screen and (min-width:1025px) {
	.top-menu__item img,.top-menu__item span {
		transition: .3s;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.top-menu__item span {
		z-index: 10;
		background-color: rgba(0,0,0,.65);
		padding-top: 9px;
		padding-bottom: 10px;
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
}

.about {
	background-color: #1b1b1b;
	color: #fff;
	margin-bottom: 34px;
	font-size: 17px;
	line-height: 20px;
}

@media only screen and (min-width:1025px) {
	.about {
		margin-bottom: 94px;
	}
}

.about h2 {
	font-size: 28px;
	line-height: 37px;
	font-family: Playfair Display;
	letter-spacing: .02em;
	color: #b69858;
	margin-bottom: 22px;
}

@media only screen and (min-width:1025px) {
	.about h2 {
		line-height: 40px;
		font-size: 30px;
		margin-bottom: 8px;
	}
}

.about p {
	padding: 0;
	margin: 0 0 22px;
}

.about__wrapper {
	padding-top: 30px;
	padding-bottom: 36px;
	background-image: url(/front-end/assets/img/about/mobile.svg);
	background-repeat: no-repeat;
	background-position: 100% calc(100% - 40px);
}

@media only screen and (min-width:1025px) {
	.about__wrapper {
		padding-top: 19px;
		padding-bottom: 31px;
		background-image: url(/front-end/assets/img/about/desktop.svg);
		background-repeat: no-repeat;
		background-position: calc(100% - 152px) 100%;
	}
}

.title {
	font-family: Playfair Display;
	font-size: 30px;
	line-height: 40px;
	position: relative;
}

.title_centered {
	text-align: center;
}

.title_centered h2 {
	padding-left: 20px;
}

.title h2 {
	font-family: Playfair Display;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: .02em;
	background-color: #fff;
	position: relative;
	z-index: 10;
	display: inline-block;
	padding-right: 20px;
}

.title:before {
	width: 100%;
	height: 1px;
	content: "";
	display: block;
	position: absolute;
	top: calc(50% + 3.5px);
	left: 0;
	right: 0;
	background-color: #1b1b1b;
	z-index: 5;
}

.news {
	overflow: hidden;
	margin-bottom: 34px;
}

@media only screen and (min-width:1025px) {
	.news {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 90px;
	}

	.news>* {
		margin-left: 24px;
		margin-right: 24px;
		width: calc(50% - 24px);
		margin-bottom: 0;
	}

	.news>:nth-of-type(2n-1) {
		margin-left: 0;
	}

	.news>:nth-of-type(2n) {
		margin-right: 0;
	}
}

@media only screen and (max-width:1024px) {
	.news__column {
		margin-bottom: 34px;
	}
}

.news__column-title {
	margin-bottom: 20px;
}

@media only screen and (min-width:1025px) {
	.news__column-title {
		margin-bottom: 44px;
	}
}

.news__title {
	font-family: Playfair Display;
	font-size: 22px;
	line-height: 29px;
	letter-spacing: .02em;
	margin-bottom: 9px;
}

@media only screen and (min-width:1025px) {
	.news__title {
		margin-bottom: 8px;
	}
}

.news__desc {
	margin-bottom: 8px;
	color: #737373;
	font-size: 17px;
	line-height: 20px;
}

@media only screen and (min-width:1025px) {
	.news__desc {
		margin-bottom: 10px;
	}
}

.news picture img {
	width: 100%;
	margin-bottom: 10px;
}

@media only screen and (min-width:481px) {
	.news picture img {
		width: 154px;
		height: 114px;
		min-width: 114px;
		margin-bottom: 0;
		margin-right: 16px;
	}
}

.news a {
	color: #4f4f4f;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: .01em;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	text-transform: uppercase;
}

@media only screen and (max-width:480px) {
	.news__column-wrapper {
		display: flex;
	}
}

@media only screen and (max-width:480px) {
	.news__column-wrapper,.news__item {
		transition-property: transform;
	}

	.news__item {
		width: 100%;
		flex-shrink: 0;
	}
}

@media only screen and (min-width:481px) {
	.news__item {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
	}
}

@media only screen and (min-width:481px) {
	.news__item:not(:first-child) {
		margin-top: 34px;
	}
}

@media only screen and (min-width:1025px) {
	.news__item:not(:first-child) {
		margin-top: 40px;
	}
}

.news__column-bullets {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	margin-top: 18px;
}

@media only screen and (min-width:481px) {
	.news__column-bullets {
		display: none;
	}
}

.news__column-bullets-item {
	width: 44px;
	height: 3px;
	background-color: #cbcbcb;
	border-radius: 3px;
}

.news__column-bullets-item:not(:first-child) {
	margin-left: 16px;
}

.news__column-bullets-item_active {
	background-color: #b69858;
}

.gallery {
	padding-bottom: 34px;
}

@media only screen and (min-width:1025px) {
	.gallery {
		padding-bottom: 94px;
	}
}

.gallery__title {
	margin-bottom: 32px;
}

@media only screen and (min-width:1025px) {
	.gallery__title {
		margin-bottom: 57px;
	}
}

.ui-gallery {
	transition: .3s;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	opacity: 0;
}

.ui-gallery,.ui-gallery * {
	pointer-events: none;
}

.ui-gallery_show {
	opacity: 1;
}

.ui-gallery_show,.ui-gallery_show * {
	pointer-events: all;
}

.ui-gallery__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.8);
	z-index: 10;
}

.ui-gallery__close {
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	border-radius: 50%;
	transition: .3s;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 20;
	padding: 10px;
	background-color: #fff;
	cursor: pointer;
}

@media only screen and (min-width:1025px) {
	.ui-gallery__close:hover {
		transform: scale(1.3);
	}
}

.ui-gallery__close svg {
	width: 16px;
	height: 16px;
}

.ui-gallery__swiper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: relative;
	z-index: 15;
	overflow: hidden;
}

.ui-gallery__swiper-item,.ui-gallery__swiper-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	transition-property: transform;
}

.ui-gallery__swiper-item {
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-shrink: 0;
	position: relative;
}

.ui-gallery__swiper-item img,.ui-gallery__swiper-item svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.ui-gallery__bullets {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	z-index: 20;
}

.ui-gallery__bullet {
	width: 12px;
	height: 12px;
	min-width: 12px;
	border-radius: 50%;
	box-shadow: 0 0 14px 0 #000;
	background-color: #fff;
	cursor: pointer;
	margin-bottom: 10px;
}

.ui-gallery__bullet:not(:last-child) {
	margin-right: 10px;
}

.ui-gallery__bullet_active {
	background-color: #b69858;
}

.ui-gallery__arrow {
	width: 50px;
	height: 50px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	transition: .3s;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	color: #fff;
	position: absolute;
	top: calc(50% - 15px);
	z-index: 20;
	cursor: pointer;
}

.ui-gallery__arrow_prev {
	transform: rotate(180deg);
	left: 20px;
}

.ui-gallery__arrow_next {
	right: 20px;
}

@media only screen and (min-width:1025px) {
	.ui-gallery__arrow {
		opacity: .7;
		pointer-events: all;
	}

	.ui-gallery__arrow:hover {
		opacity: 1;
	}
}

.ui-gallery__arrow svg {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width:1025px) {
	.ui-article__gallery-wrapper {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: -19px;
	}

	.ui-article__gallery-wrapper>* {
		margin-left: 9.5px;
		margin-right: 9.5px;
		width: calc(12.5% - 16.625px);
		margin-bottom: 19px;
	}

	.ui-article__gallery-wrapper>:nth-of-type(8n-7) {
		margin-left: 0;
	}

	.ui-article__gallery-wrapper>:nth-of-type(8n) {
		margin-right: 0;
	}
}

.ui-article__gallery-item {
	cursor: pointer;
	position: relative;
}

.ui-article__gallery-item img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width:1025px) {
	.ui-article__gallery-item:after {
		width: 100;
		height: 100;
		transition: .3s;
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #000;
		opacity: .2;
	}

	.ui-article__gallery-item:hover:after {
		opacity: 0;
	}
}

.ui-article__gallery-item:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.gallery__swiper-bullets {
	display: none;
}

@media only screen and (max-width:1024px) {
	.gallery__swiper {
		overflow: hidden;
	}

	.gallery__swiper-wrapper {
		display: flex;
		transition-property: transform;
	}

	.gallery__swiper-item {
		flex-shrink: 0;
		transition-property: transform;
	}

	.gallery__swiper-bullets {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		margin-top: 16px;
	}

	.gallery__swiper-bullets-item {
		width: 14px;
		height: 3px;
		min-width: 14px;
		background-color: #cbcbcb;
		border-radius: 3px;
		margin-bottom: 10px;
	}

	.gallery__swiper-bullets-item:not(:first-child) {
		margin-left: 6px;
	}

	.gallery__swiper-bullets-item_active {
		background-color: #b69858;
	}
}

.coords {
	position: relative;
	padding-bottom: 47px;
}

@media only screen and (min-width:1025px) {
	.coords {
		padding-bottom: 107px;
	}
}

.coords__title {
	margin-bottom: 32px;
}

@media only screen and (min-width:1025px) {
	.coords__title {
		margin-bottom: 57px;
	}
}

.coords__wrapper {
	position: relative;
	background-color: #cbcbcb;
	box-shadow: 0 0 4px rgba(0,0,0,.5);
	margin-bottom: 40px;
}

@media only screen and (min-width:1025px) {
	.coords__wrapper {
		margin-bottom: 65px;
	}
}

.coords__wrapper:before {
	content: "";
	display: block;
	padding-top: 128.28%;
}

@media only screen and (min-width:481px) {
	.coords__wrapper:before {
		padding-top: 51.283%;
	}
}

.coords__wrapper>* {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media only screen and (min-width:481px) {
	.coords__items {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 0;
	}

	.coords__items>* {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(32% - 16px);
		margin-bottom: 32px;
	}
    .coords__items>:nth-of-type(1) {
		margin-left: 0;
	}

	.coords__items>:nth-of-type(3) {
		margin-right: 0;
	}

    .coords__items>:nth-of-type(4) {
		margin-left: 0;
	}

    .coords__items>:nth-of-type(6) {
		margin-right: 0;
	}
    .coords__items>:nth-of-type(7) {
		margin-left: 0;
	}
}

@media only screen and (max-width:480px) {
	.coords__item:not(:first-child) {
		margin-top: 37px;
	}
}

.coords__item img {
	width: 100%;
	height: auto;
	margin-bottom: 14px;
}

@media only screen and (min-width:1025px) {
	.coords__item img {
		margin-bottom: 57px;
	}
}

.coords__value {
	font-size: 17px;
	line-height: 20px;
}

.coords__value:not(:last-child) {
	margin-bottom: 10px;
}

@media only screen and (min-width:1025px) {
	.coords__value:not(:last-child) {
		margin-bottom: 39px;
	}
}

@media only screen and (min-width:1025px) {
	.coords__value {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
	}
}

.coords__value-title {
	color: #4f4f4f;
	margin-bottom: 10px;
}

@media only screen and (min-width:1025px) {
	.coords__value-title {
		width: 200px;
		min-width: 200px;
		margin-bottom: 0;
		padding-left: 10px;
	}
}

.ymaps-2-1-77-controls__toolbar_left,.ymaps-2-1-77-copyright__content,.ymaps-2-1-77-gototech,.ymaps-2-1-77-gotoymaps__container,.ymaps-2-1-77-gotoymaps__text,.ymaps-2-1-79-controls__toolbar_left,.ymaps-2-1-79-copyright__content,.ymaps-2-1-79-gototaxi,.ymaps-2-1-79-gototech,.ymaps-2-1-79-gotoymaps__container,.ymaps-2-1-79-gotoymaps__text {
	display: none!important;
}