@media (min-width: 320px) and (max-width: 1024px){

	.header_contacts,
	.header_menu {
		display: none;
	}

	.main_directions {
	    flex-wrap: wrap;
	}

	.mobile_menu {
	    position: absolute;
	    top: 60px;
	    background: #2486df;
	    border-top: 2px solid white;
	    flex-wrap: wrap;
	    flex-direction: column;
	    width: 100%;
	    text-align: center;
	    z-index: 10;
	    padding: 10px 0px;
	}

	.mobile_menu a {
	    color: white;
	    text-decoration: none;
	    font-weight: bold;
	    font-size: 20px;
	    padding: 15px 20px;
	} 

	.mobile_menu a:not(:last-child) {
	    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}


	.center_cnt {
	    width: 100%;
	    padding: 0 20px;
	}

	.header_top_line {
	    padding: 15px 0;
	}

	.burger-click-region {
		display: block;
	    width: 30px;
	    height: 30px;
	    cursor: pointer;
	    position: relative;
	}

	.burger-menu-piece {
	  	display: block;
	  	position: absolute;
	  	width: 30px;
	  	border-top: 5px solid #ffffff;
	  	-webkit-transform-origin: 50% 50%;
	  	        transform-origin: 50% 50%;
	  	-webkit-transition: -webkit-transform 0.3s ease-out;
	  	transition: -webkit-transform 0.3s ease-out;
	  	transition: transform 0.3s ease-out;
	  	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	}

	.burger-menu-piece:nth-child(1) {
	  	top: 0;
	}

	.burger-menu-piece:nth-child(2) {
	  	top: 12px;
	  	opacity: 1;
	  	-webkit-transition: opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	  	transition: opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	  	transition: transform 0.3s ease-out, opacity 0s linear 0.15s;
	  	transition: transform 0.3s ease-out, opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	}

	.burger-menu-piece:nth-child(3) {
	  	top: 24px;
	}

	.active .burger-menu-piece:nth-child(1) {
	  	-webkit-animation: burger-open-top 0.3s ease-out forwards;
	    animation: burger-open-top 0.3s ease-out forwards;
	}

	.active .burger-menu-piece:nth-child(2) {
	  	opacity: 0;
	  	-webkit-transition: opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	  	transition: opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	  	transition: transform 0.3s ease-out, opacity 0s linear 0.15s;
	  	transition: transform 0.3s ease-out, opacity 0s linear 0.15s, -webkit-transform 0.3s ease-out;
	}

	.active .burger-menu-piece:nth-child(3) {
	  	-webkit-animation: burger-open-bot 0.3s ease-out forwards;
	    animation: burger-open-bot 0.3s ease-out forwards;
	}

	.closing .burger-menu-piece:nth-child(1) {
	  	-webkit-animation: burger-close-top 0.3s ease-out forwards;
	    animation: burger-close-top 0.3s ease-out forwards;
	}

	.closing .burger-menu-piece:nth-child(3) {
	  	-webkit-animation: burger-close-bot 0.3s ease-out forwards;
	    animation: burger-close-bot 0.3s ease-out forwards;
	}

	@-webkit-keyframes burger-open-top {
	  	50% {
	  	  -webkit-transform: translate3d(0, 12px, 0);
	  	          transform: translate3d(0, 12px, 0);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
	  	          transform: translate3d(0, 12px, 0) rotate(45deg);
	  	}
	}

	@keyframes burger-open-top {
	  	50% {
	  	  -webkit-transform: translate3d(0, 12px, 0);
	  	          transform: translate3d(0, 12px, 0);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
	  	          transform: translate3d(0, 12px, 0) rotate(45deg);
	  	}
	}
	@-webkit-keyframes burger-open-bot {
	  	50% {
	  	  -webkit-transform: translate3d(0, -12px, 0);
	  	          transform: translate3d(0, -12px, 0);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	          transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	}
	}
	@keyframes burger-open-bot {
	  	50% {
	  	  -webkit-transform: translate3d(0, -12px, 0);
	  	          transform: translate3d(0, -12px, 0);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	          transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	}
	}
	@-webkit-keyframes burger-close-top {
	  	0% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
	  	          transform: translate3d(0, 12px, 0) rotate(45deg);
	  	}
	  	50% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
	  	          transform: translate3d(0, 12px, 0) rotate(0deg);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 0, 0);
	  	          transform: translate3d(0, 0, 0);
	  	}
	}
	@keyframes burger-close-top {
	  	0% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
	  	          transform: translate3d(0, 12px, 0) rotate(45deg);
	  	}
	  	50% {
	  	  -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
	  	          transform: translate3d(0, 12px, 0) rotate(0deg);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 0, 0);
	  	          transform: translate3d(0, 0, 0);
	  	}
	}
	@-webkit-keyframes burger-close-bot {
	  	0% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	          transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	}
	  	50% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
	  	          transform: translate3d(0, -12px, 0) rotate(0deg);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 0, 0);
	  	          transform: translate3d(0, 0, 0);
	  	}
	}
	@keyframes burger-close-bot {
	  	0% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	          transform: translate3d(0, -12px, 0) rotate(-45deg);
	  	}
	  	50% {
	  	  -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
	  	          transform: translate3d(0, -12px, 0) rotate(0deg);
	  	}
	  	100% {
	  	  -webkit-transform: translate3d(0, 0, 0);
	  	          transform: translate3d(0, 0, 0);
	  	}
	}

	.direction_link {
	    opacity: 1;
	}

	.single_direction_cnt {
	    margin-top: 50px;
	}
	
	.main_directions {
	    margin-bottom: 50px;
	}
}


@media (min-width: 320px) and (max-width: 767px){

	.logo_text strong {
	    display: block;
	    font-size: 14px;
	    color: #246bb1;
	    font-family: 'open_sansextrabold';
	    margin-top: 5px;
	}

	.logo img {
    	margin-right: 15px;
	}

	.logo_text {
    	font-size: 12px;
	}

	.header_bottom_line .center_cnt {
		justify-content: center;
	}

	.main_page_content .center_cnt {
		padding: 0; 
	}

	.single_direction {
   	 	width: 100%;
    	height: 330px;
    	border-bottom: 2px solid white;
	}

	h1 {
	    font-size: 30px;
	    margin: 20px 0 25px;
    	line-height: 40px;
	}

	h2 {
		font-size: 22px;
		margin-bottom: 15px;
    	line-height: 28px;
	}

	h3 {
	    font-size: 18px;
	    line-height: 26px;
	}

	.text_content_area ul, 
	.text_content_area ol {
	    margin: 20px 0;
	}

	.text_content_area ul li,
	.text_content_area ol li,
	.text_content_area p {
	    line-height: 24px;
	    font-size: 14px;
	}

	.news_item {
	    width: 100%;
	    margin: 0 0px 50px 0;
	}

	.news_item:last-child {
		margin-bottom: 30px;
	}

	.main_news_list {
	    padding: 0 20px;
	}

	.all_news_btn {
	    margin: 0 auto 50px;
	    width: 280px;
	}

	.footer_col {
		width: 100%;
	}

	.footer_col:not(:nth-of-type(3)){
		display: none;
	}

	.socials {
	    margin-right: 0;
	}

	.footer_socials a:last-child {
		margin-right: 0 !important;
	}

	.footer_phone {
	    margin-bottom: 35px;
	}

	.copyright {
	    position: relative;
	    margin-top: 30px;
	}

	.news_item_img {
		height: 330px;
	}

	.news_filters {
	    margin: 20px 0 40px;
	    flex-wrap: wrap;
	}

	.news_cats {
	    flex-wrap: wrap;
	    width: 100%;
	    margin-bottom: 15px;
	}

	.news_cat {
	    width: 100%;
    	text-align: center;	
	}

	.news_cat:not(:last-child) {
	    border-right: none;
	    border-bottom: 2px solid #2486df;
	}

	.c_select {
		width: 50%;
		max-width: 364px;
		min-width: 280px; 
	}

	.news_content .main_news_list {
	    padding: 0px;	
	}

	.single_news_thumb {
	    float: none;
	    margin: 0 0 20px 0;
	    max-width: 350px;
	    width: calc(100% - 10px);
	}

	.single_news_head {
	    font-size: 12px;
	    margin-bottom: 25px;
	}

	.single_news_page h1 {
	    margin: 30px 0 15px;
	}

	.news_cnt iframe {
	    height: 300px !important;
	}

	.sbn_gallery_item {
	    height: 160px;
	    width: calc(50% - 15px);
	    margin: 0 15px 15px 0px;
	}

	.sbn_gallery_item:nth-of-type(2n) {
		margin-right: 0 !important;
	}

	.sbn_gallery_item:nth-of-type(5n) {
	    margin-right: 15px;
	}

	.partnership_forms {
		flex-wrap: wrap;
	}

	.partnership_forms .form {
    	width: 100%;
    	margin-right: 0;
   	    padding: 25px 25px 25px;
	}

	.partner_form {
		margin-bottom: 30px;
	}

	.partner_send, .filial_send {
		width: auto;
	}

	.form_title {
		line-height: 28px;	
	}

	.cf_double {
		flex-wrap: wrap;
	}

	.partner_form textarea, 
	.filial_form textarea {
	    height: 120px;
	}

	.partner_age {
	    width: 100%;
	    margin-right: 0;
	    margin-bottom: 15px;
	}

	.partner_car {
		position: absolute;
	}

	.report_form {
	    padding: 35px 25px;	
	    margin-top: 40px;
	}

	.cf_left {
	    width: 100%;
	    margin-right: 0;
	}

	.contacts_form textarea, 
	.report_form textarea {
    	width: 100%;
	}

	.contacts_send, .report_send, .faq_send {
		width: 100% !important;
	}


	.faq_q:before {
		top: -10px;
	}

	.faq_form {
		padding: 30px 25px;
	}

	.faq_form textarea {
    	width: 100%;
	}

	.faq_send,
	.contacts_send {
	    padding: 16px 10px;	
	}

	.rehab_center_item {
	    width: 100%;
	    margin: 0 0 40px 0;
	}

	.rehab_tab_head {
		flex-wrap: wrap;
	}

	.rehab_step {
    	width: 100%;
    	margin: 0 0 2px 0 !important;
	}

	.rehab_tab_body {
	    padding: 0 25px 30px;
	}

	.rehab_center_item_img img {
		width: 100%;
		height: auto;
	}

	.rehab_phone, .rehab_name, .rehab_send {
	    width: 100%;
	}

	.rehab_form {
		margin: 0 -27px -32px -27px;	
	}

	.rehab_form {
		padding: 30px 15px;
	}

	.rehab_name,
	.rehab_phone {
		margin: 0 0 15px 0;
	}

	.contacts_content > div {
	    width: 100%;
	    font-size: 14px;
	}

	.contacts_content > div:not(:last-child) {
		margin-bottom: 25px;
	}

	.contacts_form {
    	padding: 35px 25px 50px;		
	}

	.rehab_send, .contacts_send, .report_send, .faq_send, .partner_send, .filial_send {
		font-size: 14px;
		padding: 16px 20px;
	}

	.single_rc_page h1 {
		font-size: 22px;
	    line-height: 30px;
	}

	.rc_gallery_item {
		width: calc(50% - 7px);
		margin: 0 14px 14px 0 !important;
	}

	.rc_gallery_item:nth-of-type(2n){
		margin-right: 0 !important;
	}
}

@media (min-width: 480px) and (max-width: 767px){
	.news_cat {
	    width: 50%;
    	text-align: center;	
	}

	.news_cat:nth-of-type(1),
	.news_cat:nth-of-type(3) {
	    border-right: 2px solid #2486df;
	}

	.news_cat:nth-of-type(3) {
		border-bottom: none;
	}
}


@media (min-width: 768px) and (max-width: 1024px){
	.rc_gallery_item {
		width: calc(25% - 11px);
		margin: 0 14px 14px 0 !important;
	}

	.rc_gallery_item:nth-of-type(4n){
		margin-right: 0 !important;
	}

	.rehab_center_item_img img {
	    width: 100%;
	    height: auto;
	}

	.rehab_phone, 
	.rehab_name {
		width: calc(50% - 8px);
	}

	.rehab_phone {
		margin-right: 0;
	}

	.rehab_send {
		width: 100%;
		margin-top: 15px;
	}

	.single_direction {
	    width: 50%;
	    border-bottom: 2px solid white;
	}

	.single_direction:nth-of-type(2n) {
	    border-left: 2px solid white;
	}

	h1 {
	    margin-bottom: 20px;	
	}

	h2 {
		font-size: 26px;
	}

	.news_cat {
	    padding: 15px 20px;
	    font-size: 14px;
	}

	.c_select_options {
		top: 46px;
	}

	.c_select {
		width: 175px;
		font-size: 14px;
	}

	.sbn_gallery_item {
	    height: 260px;
	    width: calc(33.333% - 10px);
	    margin: 0 15px 15px 0px;
	}

	.sbn_gallery_item:nth-of-type(3n) {
		margin-right: 0 !important;
	}

	.sbn_gallery_item:nth-of-type(5n) {
	    margin-right: 15px;
	}

	.partnership_forms .form {
   	    padding: 35px 25px 35px;
	}

	.partner_car ~ label {
		font-size: 12px;
	}

	.partner_car {
		position: absolute;
	}

	.partner_age {
    	width: 97px;
	}

	.form_title {
	    margin-bottom: 25px;
	    line-height: 28px;
	}
}