@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
4. Menu
5. Home
6. News
7. Sidebar
8. Footer


/*********************************
4. Menu
*********************************/

.menu_container
{
	position: fixed;
	top: 0;
	right: -50vw;
	width: 50vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 101;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	visibility: hidden;
	opacity: 0;
}
.menu_container.active
{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.menu
{
	position: absolute;
	top:150px;
	left: 0;
	padding-left: 15%;
}
.menu_inner
{
	width: 100%;
	height: 100%;
}
.menu_list
{
	-webkit-transform: translateY(1.5rem);
	-moz-transform: translateY(1.5rem);
	-ms-transform: translateY(1.5rem);
	-o-transform: translateY(1.5rem);
	transform: translateY(1.5rem);
	-webkit-transition: all 1000ms 400ms ease;
	-moz-transition: all 1000ms 400ms ease;
	-ms-transition: all 1000ms 400ms ease;
	-o-transition: all 1000ms 400ms ease;
	transition: all 1000ms 400ms ease;
	opacity: 0;
}
.menu_container.active .menu_list
{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}
.menu_item
{
	margin-bottom: 5px;
}
.menu_item a
{
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #272727;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_item a:hover
{
	color: #f28b00;
}
.menu_close_container
{
	position: absolute;
	top: 86px;
	right: 79px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	z-index: 10;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu_close
{
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close::after
{
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #f28b00;
}
.menu_extra
{
	position: absolute;
	left: 0;
	bottom: 0;
	padding-left: 15%;
	padding-bottom: 25px;
}
.menu_appointment a
{
	font-size: 13px;
	color: #000f9f;
}
.menu_emergencies
{
	font-size: 13px;
	color: #272727;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height: 473px;
}
.home_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home_container
{
	position: absolute;
	left: 0;
	bottom: 118px;
	width: 100%;
}
.home_title
{
	font-size: 30px;
	font-weight: 900;
	color: #ffffff;
	/*
	-webkit-text-stroke-width: 1px;
	  -webkit-text-stroke-color: #ffffff;
	  */
}
.home_title span
{
	color: #f28b00;
}
.breadcrumbs
{
	margin-top: -2px;
}
.breadcrumbs ul li
{
	display: inline-block;
	position: relative;
}
.breadcrumbs ul li:not(:last-child)::after
{
	display: inline-block;
	position: relative;
	content: '/';
	margin-left: 7px;
	margin-right: 2px;
}
.breadcrumbs ul li,
.breadcrumbs ul li a
{
	font-size: 14px;
	font-weight: 900;
	color: #000;
	-webkit-text-stroke-width: 0.7px;
  	-webkit-text-stroke-color: #ffffff;
}

/*********************************
6. News
*********************************/

.news
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 94px;
	padding-bottom: 91px;
}
.news_post
{
	width: 100%;
	background: #f5f7fa;
}
.news_post:not(:last-child)
{
	margin-bottom: 43px;
}
.news_image
{
	width: 100%;
	vertical-align: center;
}
.news_image img
{
	max-width: 100%;
}
.news_date
{
	position: absolute;
	left: 22px;
	top: 21px;
	width: 69px;
	height: 69px;
	background: #37aee2;
}
.news_day
{
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 0.75;
}
.news_month
{
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 0.75;
	margin-top: 10px;
}
.news_body
{
	padding-top: 25px;
	padding-left: 53px;
	padding-bottom: 30px;
	padding-right: 54px;
}
.news_title
{
	padding-top: 17px;
}
.news_title a
{
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	color: #262d38;
}
.news_title2::before
{
	display: block;
	position: absolute;
	left: 1px;
	top: 0;
	width: 54px;
	height: 3px;
	background: #f28b00;
	content: '';
}
.news_info
{
	margin-top: 4px;
	padding-left: 3px;
}
.news_info ul li
{
	display: inline-block;
	position: relative;
}
.news_info ul li:not(:last-child)::after
{
	display: inline-block;
	content: '|';
	margin-left: 5px;
	margin-right: 2px;
	font-size: 12px;
	font-weight: 400;
}
.news_info ul li span,
.news_info ul li a
{
	font-size: 12px;
	font-weight: 400;
}
.news_comments a
{
	color: #696969;
}
.news_author a,
.news_tags a
{
	color: #f28b00;
}
.news_text
{
	margin-top: 28px;
}
.news_link
{
	margin-top: 10px;
}
.news_link a
{
	display: inline-block;
	position: relative;
	font-size: 15px;
	font-weight: 400;
	color: #f28b00;
	line-height: 0.75;
}
.news_link a::after
{
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #f28b00;
	content: '';
}
.news_page_nav
{
	margin-top: 90px;
}
.news_page_nav ul li
{
	display: inline-block;
	border: 1px solid #ddd;
	padding:10px;
}
.news_page_nav ul li:not(:last-child)
{
	margin-right: 8px;
}
.news_page_nav ul li a
{
	font-size: 15px;
	font-weight: 600;
	color: #696969;
	line-height: 0.75;
}
.news_page_nav ul li.active a
{
	color: #f28b00;
}

/*********************************
7. Sidebar
*********************************/

.sidebar
{
	width: 100%;
	background: #FFFFFF;
}
.search_input
{
	width: 100%;
	height: 56px;
	background: #f5f7fa;
	border: none;
	outline: none;
	padding-left: 25px;
}
.search_input::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #696969 !important;
}
.search_input:-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #696969 !important;
}
.search_input::-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #696969 !important;
} 
.search_input:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #696969 !important;
}
.search_input::input-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #696969 !important;
}
.search_button
{
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 56px;
	background: #626d7f;
	text-align: center;
	border: none;
	outline: none;
	cursor: pointer;
}
.search_button:focus
{
	outline: none;
}
.sidebar_categories
{
	margin-top: 0px;
}
.sidebar_section_title2::after
{
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: calc(100% - 107px);
	height: 2px;
	background: #f28b00;
	content: '';
}
.sidebar_title
{
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	color: #232323;
}
.sidebar_section ul
{
	padding-left: 41px;
	margin-top: 30px;
}
.sidebar_section ul li:not(:last-child)
{
	margin-bottom: 12px;
}
.sidebar_section ul li a
{
	font-size: 16px;
	font-weight: 400;
	color: #696969;
}
.sidebar_archives
{
	margin-top: 84px;
}
.box
{
	width: 100%;
	height: 287px;
	background: #000f9f;
	padding-left: 42px;
	padding-top: 29px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.box::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #f28b00;
	content: '';
}
.box_title
{
	font-size: 20px;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: 11px;
}
.working_hours
{
	padding-top: 29px;
	padding-right: 60px;
	margin-top: 88px;
}
.working_hours_list
{
	margin-top: 40px;
}
.working_hours_list ul li
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
}
.working_hours_list ul li:not(:last-child)
{
	margin-bottom: 15px;
}
.box_icon
{
	width: 37px;
	height: 37px;
}
.box_icon img
{
	max-width: 100%;
}
.box_text
{
	font-size: 14px;
	line-height: 2.14;
	color: #FFFFFF;
	font-weight: 400;
	margin-top: 23px;
}
.ad
{
	width: 100%;
	height: 437px;
	margin-top: 95px;
}
.ad::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #f28b00;
	content: '';
}
.ad_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.ad_content
{
	width: 100%;
	padding-left: 60px;
	padding-right: 60px;
	text-align: center;
	margin-bottom: 58px;
}
.ad_text
{
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.46;
}
.ad_text span
{
	color: #f28b00;
}
.ad_button
{
	margin-top: 37px;
}

.info-contact {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: #262d38;
	color: #fff;
	padding-top: 5px;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	border-radius: 100%;
}

.info-contact li span {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	padding-left: 10px;
}


