* {
	box-sizing: border-box;
	/*scrollbar-width: thin;*/
}


body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

address, caption, cite, code, dfn, th, var, h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
}

caption, th {
	text-align: left;
}

abbr, acronym, fieldset, img {
	border: 0;
}

a {
	color: #144c79;
}
/*
a:hover,
a:active
{
	color: #C71585;
}
*/
.clearfix:after {
	content: '';
	clear: both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}

q:before {
	content:'&laquo;';
}

q:after {
	content:'&raquo;';
}


.forbidden_select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* Чтобы работали переносы, должен быть указан lang="ru" в html */
.hyphens {
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.wrapper {
	margin: 0 auto;
	min-width: 320px;
	max-width: 960px;
	position: relative;
	padding: 0 20px;
}


* {
	font-family: 'Montserrat', sans-serif;
}



header {
	background: rgba(3, 57, 54, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
	min-height: 75px;
}

header.hover {
	background: #033936;
}

header > .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	gap: 20px;
}


header .logo {
	display: block;
	width: 35px;
	height: 35px;
	background: url('../images/deh_logo_white.svg') no-repeat center center/contain;
	flex-shrink: 0;
}

header .blocks {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

header .block1 {
	color: #fff;
	font-size: 16px;
	display: flex;
	gap: 5px;
	flex-direction: column;
}

header .block1 .schedule {
	font-size: 10px;
}

header .block1 .phone {
	font-size: 10px;
}

header .block2 {
	display: flex;
	gap: 20px;
}

header .wrapper_search {
	width: 160px;
	position: relative;
}

header .wrapper_search::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../images/magnifier.svg') no-repeat center center/contain;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}

header .wrapper_search input {
	width: 100%;
	height: 30px;
	background: transparent;
	border-radius: 50px;
	padding: 0 34px 0 10px;
	border: #fff solid 1px;
	outline: none;
	color: #fff;
}


header .wrapper_search input::placeholder {
	color: rgba(255,255,255,.5);
}

header .button_mobile_search {
	width: 26px;
	height: 26px;
	cursor: pointer;
	background: url('../images/magnifier.svg') no-repeat center center;
	border: #fff solid 1px;
	border-radius: 50%;
	background-size: 50%;
	display: none;
	flex-shrink: 0;
}


header .button_sign_in {
	min-height: 30px;
	height: 30px;
	width: 160px;
	font-size: 12px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	background-color: #CEF17B;
	font-weight: bold;
}

header .block1 a {
	color: #fff;
	text-decoration: none;
}

header .block1 a:hover {
	text-decoration: underline;
}




header .networks {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

header .networks a {
	width: 26px;
	height: 26px;
	background: #fff;
	border-radius: 50%;
	user-select: none;
	display: block;
	position: relative;
}

header .networks a::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	left: calc(50% - 8px);
	top: calc(50% - 8px);
}

header .networks a.telegram::before {
	background: url('../images/telegram.svg') no-repeat center center/90%;
}

header .networks a.youtube::before {
	background: url('../images/youtube.svg') no-repeat center center/contain;
}

header .networks a.rutube::before {
	background: url('../images/rutube.svg') no-repeat center center/contain;
}


header .networks a.vk::before {
	background: url('../images/vk.svg') no-repeat center center/contain;
}

header .networks a.chat::before {
	background: url('../images/chat.svg') no-repeat center center/80%;
}

header .networks a:hover {
	background: #CEF17B;
}





header .wrapper_languages {
	position: relative;
	display: flex;
	align-items: center;
}


header .wrapper_languages .button_select_language {
	display: flex;
	align-items: center;
	user-select: none;
	gap: 10px;
	padding-right: 20px;
	position: relative;
	background: url('../images/language_arrow_down.svg') no-repeat center right;
	text-decoration: none;
}

header .wrapper_languages .button_select_language .name {
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
}

header .wrapper_languages .button_select_language .language {
	height: 24px;
	width: 24px;
	background-size: contain;
}

header .wrapper_languages .button_select_language .language.rus
{
	background: url('../images/flags/rus.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.eng
{
	background: url('../images/flags/eng.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.gre
{
	background: url('../images/flags/gre.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.deu
{
	background: url('../images/flags/deu.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.lv
{
	background: url('../images/flags/lv.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.pl
{
	background: url('../images/flags/pl.svg') no-repeat center center;
}

header .wrapper_languages .button_select_language .language.esp
{
	background: url('../images/flags/esp.png') no-repeat center center;
}






header .wrapper_languages .list_languages {
	position: absolute;
	top: 34px;
	left: -10px;
	background: #F2F7F7;
	border-radius: 3px;
	width: 80px;
	z-index: 10000;
	display: none;
	flex-direction: column;
	padding: 5px 0;
}

header .wrapper_languages.opened .list_languages {
	display: flex;
}

header .wrapper_languages .list_languages .language
{
	height: 34px;
	padding: 5px 44px 5px 10px;
	display: flex;
	align-items: center;
	color: #07564E;
	text-transform: uppercase;
	font-size: 12px;
	user-select: none;
	cursor: pointer;
}

header .wrapper_languages .list_languages .language.rus
{
	background: url('../images/flags/rus.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.eng
{
	background: url('../images/flags/eng.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.gre
{
	background: url('../images/flags/gre.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.deu
{
	background: url('../images/flags/deu.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.lv
{
	background: url('../images/flags/lv.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.pl
{
	background: url('../images/flags/pl.svg') no-repeat right 10px center/30%;
}

header .wrapper_languages .list_languages .language.esp
{
	background: url('../images/flags/esp.png') no-repeat right 10px center/30%;
}


header .wrapper_languages .list_languages .language:hover {
	font-weight: bold;
	/*
	background-color: #07564E;
	color: #fff;
	*/
}


header .header_menu {
}

header .header_menu > .wrapper {
}

header .header_menu > .wrapper > ul {
	margin: 0;
	padding: 0;
	display: grid;
	list-style: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	grid-template-columns: repeat(9, 1fr);
}


header .header_menu .opened .link0 {
	color: #004E49 !important;
	font-weight: bold;
	position: relative;
}

header .header_menu .opened .link0::before {
	content: '';
	display: block;
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	height: 1px;
	background: #004E49;
}

header .header_menu .link0 {
	white-space: nowrap;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	display: flex;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	align-items: center;
	justify-content: center;
	width: 100%;
}

header .header_menu > .wrapper > ul > li {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	width: 100px;
}


header .header_menu,
header .header_menu > .wrapper > ul,
header .header_menu > .wrapper > ul > li,
header .header_menu .link0
{
	min-height: 40px;
}



header .header_menu > .wrapper > ul > li.selected {
}

header .header_menu > .wrapper > ul > li.selected .link0,
header .header_menu > .wrapper > ul > li a:hover
{
	font-weight: bold;
}



header .header_menu .submenu {
	display: none;
}

header .header_menu .submenu ul {
	margin: 0;
	padding: 20px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

header .header_menu .opened .submenu {
	display: block;
}


header .header_menu .wrapper_menu_item {

}


header .header_menu .opened .wrapper_menu_item {
	top: 0;
	position: absolute;
	background: #F2F7F7;
	width: 140px;
	z-index: 100000;
	border-radius: 6px;
	color: #004E49;
}



header .header_menu .opened .submenu a {
	color: #004E49;
	text-decoration: none;
	font-size: 12px;
	font-family: 'Montserrat Medium', sans-serif;
}


header .header_menu .opened .submenu a:hover {
	font-weight: bold;
}

header .header_menu .opened::after {
	content: '';
	display: block;
	position: absolute;
	height: 1px;
	left: 20px;
	right: 20px;
	bottom: 0;
	background: #004E49;
}

header .button_mobile_menu {
	width: 26px;
	height: 26px;
	background: url('../images/button_mobile_menu.svg') no-repeat center center;
	cursor: pointer;
	display: none;
	flex-shrink: 0;
}

header .mobile_menu {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	right: 0;
	bottom: 0;
	height: 100%;
	background: #fff;
	padding: 30px;
	z-index: 100000;
	overflow: auto;
}

header .mobile_menu.visible {
	display: block;
}


header .mobile_menu .close {
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	top: 18px;
	right: 20px;
	background: url('../images/close.svg') no-repeat center center/contain;
}



header .mobile_menu .networks {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin-bottom: 20px;
}

header .mobile_menu .networks a {
	width: 50px;
	height: 50px;
	background: #004E49;
}

header .mobile_menu .networks a::before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	position: absolute;
	left: calc(50% - 13px);
	top: calc(50% - 13px);
}



header .mobile_menu .networks a.telegram::before {
	background: url('../images/telegram_white.svg') no-repeat center center/90%;
}

header .mobile_menu .networks a.youtube::before {
	background: url('../images/youtube_white.svg') no-repeat center center/contain;
}

header .mobile_menu .networks a.rutube::before {
	background: url('../images/rutube_white.svg') no-repeat center center/contain;
}


header .mobile_menu .networks a.vk::before {
	background: url('../images/vk_white.svg') no-repeat center center/contain;
}

header .mobile_menu .networks a.chat::before {
	background: url('../images/chat_white.svg') no-repeat center center/80%;
}


header .mobile_menu .wrapper_schedule,
header .mobile_menu .wrapper_schedule a
{
	font-size: 20px;
	color: #004E49;
}

header .mobile_menu > ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

header .mobile_menu li {
}

header .mobile_menu li a {
	font-size: 20px;
	text-decoration: none;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	color: #004E49;
}

header .mobile_menu li a:hover,
header .mobile_menu .opened .link0
{
	font-family: 'Montserrat ExtraBold', 'Montserrat', sans-serif;
}



header .mobile_menu .submenu {
	display: none;
}

header .mobile_menu .submenu ul {
	margin: 0;
	padding: 20px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

header .mobile_menu .opened .submenu {
	display: block;
}


header .mobile_menu .wrapper_menu_item {

}


header .mobile_menu .opened .wrapper_menu_item {
}



header .mobile_menu .opened .submenu a {

}


header .mobile_menu .opened .submenu a:hover {
	font-weight: bold;
}





body.hide_scroll {
	overflow: hidden;
}


footer {
	min-height: 300px;
	background: #004E49;
}

footer .wrapper {
	padding: 40px 20px;
}

footer .menu {
	margin-bottom: 40px;
}

footer .menu ul {
	margin: 0;
	padding: 0;
	display: grid;
	list-style: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	grid-template-columns: repeat(9, 1fr);
	flex-wrap: wrap;
}

footer .menu a {
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	display: flex;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	align-items: center;
	justify-content: center;
}

footer .menu li {
	width: 100px;
}

footer .menu li.selected {
}

footer .menu li.selected a,
footer .menu a:hover
{
	font-family: 'Montserrat ExtraBold', 'Montserrat', sans-serif;
}

footer .blocks {
	display: flex;
	justify-content: space-between;
}

footer .blocks2 {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}


footer .blocks2 .block2 a {
	color: #C4FF56;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
}

footer .logo {
	display: block;
	width: 35px;
	height: 35px;
	background: url('../images/deh_logo_white.svg') no-repeat center center/contain;
	user-select: none;
}


footer .block1 {
	width: 20%;
}

footer .block2 {
	width: 45%;
	color: #fff;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 130%;
}

footer .block3 {
	width: 35%;
}

footer .contact_info,
footer .contact_info a
{
	color: #fff;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 130%;
}


footer .block4 {
	width: 25%;
}


footer .block4 .title {
	color: #fff;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
	text-align: right;
}

footer .networks {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
}

footer .networks a {
	width: 26px;
	height: 26px;
	background: #fff;
	border-radius: 50%;
	user-select: none;
	display: block;
	position: relative;
}

footer .networks a::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	left: calc(50% - 8px);
	top: calc(50% - 8px);
}

footer .networks a.telegram::before {
	background: url('../images/telegram.svg') no-repeat center center/90%;
}

footer .networks a.youtube::before {
	background: url('../images/youtube.svg') no-repeat center center/contain;
}

footer .networks a.rutube::before {
	background: url('../images/rutube.svg') no-repeat center center/contain;
}

footer .networks a.vk::before {
	background: url('../images/vk.svg') no-repeat center center/contain;
}

footer .networks a.chat::before {
	background: url('../images/chat.svg') no-repeat center center/80%;
}

footer .networks a:hover {
	background: #CEF17B;
}

.button {
	text-decoration: none;
	background: #CEF17B;
	user-select: none;
	cursor: pointer;
	color: #07564E;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
	min-height: 60px;
	border-radius: 50px;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 18px;
	text-align: center;
}


.button:hover {
	background-color: #fff;
}


.button.outline {
	background: transparent;
	border: #fff solid 1px;
	color: #fff;
}

.button.outline:hover {
	color: #07564E;
	background: #fff;
}


.button.outline.green {
	background: transparent;
	border: #004E49 solid 1px;
	color: #004E49;
}

.button.outline.green:hover,
.button.green:hover
{
	color: #fff;
	background: #004E49;
}


.section_breadcrumbs {

}

.section_breadcrumbs .wrapper {
	padding: 20px;
}

.breadcrumbs {
	display: flex;
	gap: 4px;
}

.breadcrumbs a {
}

.breadcrumbs .separator,
.breadcrumbs .link
{
	color: rgba(0, 78, 73, 0.5);
	text-decoration: none;
	font-size: 10px;
}

.section_breadcrumbs .separator,
.section_breadcrumbs .link
{
	color: #004E49;
}

.breadcrumbs a:hover {
	color: #004E49;
	text-decoration: underline;
}




@media all and (min-width: 4096px) {

	body {
		zoom: 4;
	}

}


@media all and (min-width: 2560px) and (max-width: 4095px) {
	body {
		zoom: 2;
	}
}


@media all and (min-width: 1366px) and (max-width: 2559px) {
	body {
		zoom: 1.25;
	}
}


/*
@media all and (min-resolution: 2dppx) {

	body {
		zoom: 2;
	}

}
*/

@media all and (max-width: 1280px) {



}

@media all and (max-width: 960px) {

	footer .menu ul {
		display: flex;
		justify-content: flex-start;
	}

	footer .menu li {
		width: auto;
	}

	header .header_menu > .wrapper > ul {
		display: flex;
	}

}


@media all and (max-width: 800px) {



	header {
		min-height: 60px;
	}

	header > .wrapper {
		padding: 12px 20px;
	}

	header .wrapper_languages {
	}


	header .wrapper_button_sign_in {
	}


	header .button_mobile_search {
		display: block;
		margin: 0 0 0 auto;
	}

	header .wrapper_search {
		display: none;
	}

	header .button_sign_in {
		width: 26px;
		height: 26px;
		min-height: auto;
		background: transparent url('../images/button_sign_in.svg') no-repeat center center;
	}

	header .button_sign_in .text {
		display: none;
	}

	header .button_mobile_menu {
		display: block;
	}

	header .header_menu {
		display: none;
	}

	header > .wrapper > .networks {
		display: none;
	}

	header .block1 {
		display: none;
	}


}

@media all and (max-width: 640px) {


}


@media all and (max-width: 480px) {

	footer .blocks2 {
		flex-direction: column;
		gap: 20px;
	}

	footer .blocks2 .block1 {
		display: none;
	}
	footer .blocks2 > * {
		width: 100%;
	}

	footer .blocks {
		flex-direction: column;
		gap: 20px;
	}

	footer .blocks > * {
		width: 100%;
	}

	footer .blocks .block1 {
		order: 1;
	}

	footer .blocks .block2 {
		order: 3;
	}

	footer .blocks .block3 {
		order: 2;
	}


}