/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* 
===============================
	property:		font-size
	pseudonim: 	    fs
	example: 		font-size(16)
	default:			
===============================
*/
/* 
===============================
    property:       font-weight
    pseudonim:      
    example:        weight(400)
    default:            
===============================
*/
/* 
===============================
	property:		border
	pseudonim: 	
	example: 		border(1)
	default:		this({1px} {solid} {})
===============================
*/
/* 
===============================
	property:		line-height
	pseudonim: 	
	example: 		border(1)
	default:		this({1px} {solid} {})
===============================
*/
/* 
===============================
    property:       background-color
    pseudonim:  
    example:        bg(#000000)
    default:        
===============================
*/
/* 
===============================
    property:       text-indent
    pseudonim:  
    example:        indent(10)
    default:        
===============================
*/
/* 
===============================
    property:       border-radius
    pseudonim:  
    example:        rounded(4)
    default:        
===============================
*/
/* 
===============================
	property:		vertical-align (middle with pseudo-elements using)
	pseudonim: 	
	example: 		valMiddle(true) / valMiddle(false)
	default:			this({false})
===============================
*/
/* ==============================
    Common
============================== */
/* Style */
/* Path */
/* Media */
/* ==============================
    Methods
============================== */
.clearBorder {
  border: none;
}
/* valign middle */
/* position */
/* text-shadow */
/*
===============================
    Frames
===============================
*/
#reStyle .clear {
  padding: 0;
  margin: 0;
}
#reStyle .links {
  cursor: pointer;
  outline: 0 none;
}
#reStyle .links:hover,
#reStyle .links:visited,
#reStyle .links:focus {
  text-decoration: none;
  outline: 0 none;
}
#reStyle .listClear {
  list-style: none;
}
#table .table {
  display: table;
  width: 100%;
}
#table .cell {
  display: table-cell;
}
#table .middle {
  vertical-align: middle;
}
#button .main {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  background-color: #f8d51e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 10;
  font-family: 'Kelson Sans';
  display: inline-block;
  padding: 9px 25px;
  color: #343434;
  border: 2px solid #F8D51E;
}
#button .main .glyphicon.left {
  margin-right: 20px;
}
#button .main .glyphicon.right {
  margin-left: 20px;
}
#button .main:hover {
  background-color: transparent;
  text-decoration: none;
}
#button .main:focus {
  color: #343434;
  text-decoration: none;
}
#button .main:active {
  color: #343434;
  text-decoration: none;
}
#button .main.animated {
  background-color: #f8d51e;
  padding: 10px 25px;
  border: none;
}
#button .main.animated span {
  position: relative;
  z-index: 20;
}
#button .main.animated:before {
  background-color: #2764a5;
  content: '';
  display: black;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
#button .main.animated:hover {
  text-decoration: none;
  color: #ffffff;
}
#button .main.animated:hover:before {
  width: 100%;
}
#button .main.button__inverse_colors:hover {
  color: #ffffff;
}
#button .main.button__broader {
  padding: 9px 40px;
}
/* ==============================
    Common tags
============================== */
html {
  font-size: 16px;
}
/* ==============================
    Common classes
============================== */
.ajax-loader {
  display: none !important;
}
.owl-carousel figure {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.table-outer {
  display: table;
  width: 100%;
}
.table-inner {
  display: table-cell;
  vertical-align: middle;
}
.w_full {
  width: 100%;
}
.w_50 {
  width: 50%;
}
.button {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  background-color: #f8d51e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 10;
  font-family: 'Kelson Sans';
  display: inline-block;
  padding: 9px 25px;
  color: #343434;
  border: 2px solid #F8D51E;
}
.button .glyphicon.left {
  margin-right: 20px;
}
.button .glyphicon.right {
  margin-left: 20px;
}
.button:hover {
  background-color: transparent;
  text-decoration: none;
}
.button:focus {
  color: #343434;
  text-decoration: none;
}
.button:active {
  color: #343434;
  text-decoration: none;
}
.button.animated {
  background-color: #f8d51e;
  padding: 10px 25px;
  border: none;
}
.button.animated span {
  position: relative;
  z-index: 20;
}
.button.animated:before {
  background-color: #2764a5;
  content: '';
  display: black;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.button.animated:hover {
  text-decoration: none;
  color: #ffffff;
}
.button.animated:hover:before {
  width: 100%;
}
.button.button__inverse_colors:hover {
  color: #ffffff;
}
.button.button__broader {
  padding: 9px 40px;
}
.caret {
  margin-bottom: 7px;
}
.sm-block {
  display: block;
}
.sm-center {
  text-align: center;
}
.bg-mask {
  position: relative;
}
.bg-mask:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.25);
}
.inline {
  display: inline-block;
}
.glyphicon.right {
  margin-right: 7px;
}
/* ==============================
    Contact form 7
============================== */
.wpcf7-not-valid {
  box-shadow: inset 1px 1px 4px rgba(187, 7, 28, 0.65), inset -1px -1px 4px rgba(187, 7, 28, 0.65);
}
.wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7-response-output {
  text-align: center !important;
  margin: 10px 0 !important;
  padding-top: 5px !important;
  font: 400 16px 'Helvetica Neue' !important;
  border: none !important;
  color: #FFFFFF !important;
}
.wpcf7-mail-sent-ok {
  text-align: center !important;
  margin: 10px 0 !important;
  border: none !important;
  color: #FFFFFF !important;
}
/* ==============================
    Sections
============================== */
header {
  padding-bottom: 10px;
  margin-bottom: 0;
}
header .mobile {
  display: none;
}
header .desktop {
  display: block;
}
header .header {
  margin: 15px 0;
  min-height: 80px;
}
header .header_left,
header .header_middle,
header .header_right {
  min-height: 80px;
  float: left;
}
header .logo img {
  width: 100%;
  max-width: 80px;
}
header .header_left {
  width: 35%;
}
header .header_right {
  width: 35%;
}
header .header_middle {
  width: 30%;
  min-width: 80px;
}
header .header_title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  font-family: 'Kelson Sans';
  color: #2764a5;
}
header .header_contacts {
  margin: 15px 0;
  float: none;
  display: block;
}
header .header_phone {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #b5b5b5;
}
header .header_phone span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #383636;
  display: block;
  padding-top: 4px;
}
.menu {
  background-color: #2764a5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  z-index: 1000;
}
.menu .icon-bar {
  background-color: #ffffff;
}
.menu .menu_items .active a {
  background-color: #27598c;
}
.menu .menu_items a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-family: 'Helvetica Neue';
  color: #fefefe;
  padding: 35px 25px;
}
.menu .menu_items a:hover {
  background-color: #27598c;
}
.menu .dropdown-menu {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  background-color: #27598c;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #ffffff;
  min-width: 240px;
  border: none;
  margin: 0;
}
.menu .dropdown-menu a {
  padding: 10px 35px;
}
.menu .dropdown-menu a:hover {
  background-color: #2764a5;
  color: #ffffff;
}
.menu .dropdown-menu .sub a {
  padding: 10px 45px;
}
.menu .dropdown-menu .line-bottom {
  margin-bottom: 15px;
}
.menu .nav .open > a,
.menu .nav .open > a:focus,
.menu .nav .open > a:hover {
  background-color: #27598c;
}
.menu .nav > li > a:focus {
  background-color: #2764a5;
}
.menu .nav > li > a:hover {
  background-color: #27598c;
}
section {
  position: relative;
  z-index: 500;
}
section.hero {
  background-size: cover !important;
}
section.hero .hero_content {
  font-family: 'Kelson Sans';
  color: #FFFFFF;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
section.hero .hero_wide {
  min-height: 350px;
}
section.hero .hero_narrow {
  min-height: 200px;
}
section.hero .hero_title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
}
section.hero .hero_title span {
  display: block;
}
section.hero .hero_title br {
  display: block;
}
section.hero .hero_text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 110%;
}
section.hero .hero_text.v_padds {
  padding: 10px 0 15px;
}
section.content {
  padding-bottom: 40px;
}
section.content .content_description {
  min-height: 425px;
  margin: 55px 0;
  background: url('../images/bg-medicine.png') no-repeat center;
}
section.content .content_title,
section.content h2,
section.content h3,
section.content h4,
section.content h5 {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  margin: 0 0 25px;
}
section.content .content_subtitle {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  margin-bottom: 15px;
}
section.content .content_text,
section.content p {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  padding: 0 15px;
  color: #383838;
}
section.content .owl_img-wrapper {
  float: none;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
section.content .owl_desc-wrapper {
  background-color: #f7f7f7;
  float: none;
  width: 100%;
  min-height: 350px;
  padding: 35px 50px 0;
}
section.content .owl_desc-wrapper .button {
  margin-top: 15px;
}
section.content .content__bg {
  background-color: #f7f7f7;
}
section.content .content_text__a {
  color: #383838;
}
section.content .content_text__b {
  color: #42535d;
}
section.content .content_text__uppercase {
  text-transform: uppercase;
}
section.content .content_text__indent {
  text-indent: 15px;
}
section.subscribe {
  background: url('../images/bg-main.jpg');
}
section.subscribe .subscribe_wrapper {
  width: 100%;
  min-height: 490px;
}
section.subscribe .subscribe_title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #ffffff;
}
section.subscribe .subscribe_title.padds {
  padding: 30px 65px;
}
section.subscribe .subscribe_input {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  background-color: rgba(228, 227, 213, 0.3);
  font-family: 'Helvetica Neue';
  width: 350px;
  border: none;
  color: #ffffff;
  padding: 7px 15px;
  display: block;
  margin: 0 auto 10px;
}
section.subscribe .subscribe_input #input .prop {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input #input .disable {
  display: none;
}
section.subscribe .subscribe_input:active,
section.subscribe .subscribe_input:focus {
  background-color: transparent;
  outline: 2px solid #ffffff;
}
section.subscribe .subscribe_input::placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input::-webkit-input-placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input:-moz-placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input::-moz-placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input:-ms-input-placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.subscribe .subscribe_input::-ms-input-placeholder {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #ffffff;
  text-align: right;
}
section.blog {
  padding: 25px 0;
}
section.blog .blog_title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #383939;
  margin-bottom: 15px;
}
section.blog .blog_subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #545454;
  margin-bottom: 20px;
}
section.blog .blog_subtitle__marked {
  position: relative;
  padding-left: 30px;
  line-height: 39px;
}
section.blog .blog_subtitle__marked:before {
  background-color: #f8d51e;
  content: '';
  display: block;
  width: 15px;
  height: 100%;
  position: absolute;
  left: 0;
}
section.blog .blog_text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #383838;
}
section.blog .post {
  margin: 0 0 30px 0;
}
section.blog .post:after {
  content: '';
  display: block;
  clear: both;
}
section.blog .post .button {
  float: right;
}
section.blog .post_featured {
  float: left;
  width: 35%;
  max-width: 370px;
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}
section.blog .post_content {
  background-color: #f7f7f7;
  width: 65%;
  min-height: 400px;
  float: left;
  padding: 10px 30px;
}
section.blog .post_title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #42535d;
}
section.blog .post_excerpt {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #42535d;
}
section.blog .post_date,
section.blog .post_tag {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #9a9fa4;
  margin-right: 30px;
  margin-bottom: 10px;
}
section.blog .post_tag a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #9a9fa4;
}
section.blog .post_tag a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #2764a5;
  text-decoration: none;
}
section.blog .blog_text__hpadds {
  padding: 0 30px;
}
section.blog .blog_text__bmargs {
  margin-bottom: 50px;
}
section.blog .button {
  margin-top: 10px;
}
section.blog .most {
  padding-bottom: 20px;
  margin-bottom: 50px;
}
section.blog .most_featured {
  height: 200px;
  overflow: hidden;
}
section.blog .most_featured img {
  margin: 0 auto;
}
section.blog .most_title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #545454;
  margin: 20px 0;
}
section.blog .most_text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #949494;
  padding: 0 10px;
}
section.blog .pagenavi {
  margin-bottom: 20px;
}
section.blog .pagenavi ul {
  padding: 0;
  margin: 0;
}
section.blog .pagenavi li {
  display: inline-block;
  list-style: none;
  margin: 0 4px;
}
section.blog .pagenavi li a,
section.blog .pagenavi li span {
  background-color: #f7f7f7;
  padding: 12px 15px;
  color: #000000;
}
section.blog .pagenavi li a.current,
section.blog .pagenavi li span.current {
  background-color: #f8d51e;
}
section.blog .pagenavi li a:hover,
section.blog .pagenavi li span:hover {
  background-color: #f8d51e;
  text-decoration: none;
}
div.single {
  padding: 50px 0;
}
div.single p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Kelson Sans';
  color: #141414;
  margin: 15px 0;
  padding: 0 15px;
}
div.single .single_pagination {
  background-color: #f7f7f7;
  margin: 40px 0 10px;
  padding: 25px;
}
div.single .single_pagination:after {
  content: '';
  display: block;
  clear: both;
}
div.single .single_pagination .button {
  margin: 5px 0;
  width: 100%;
  max-width: 300px;
}
div.single .single_pagination__mobile-margin {
  margin-top: 35px;
}
div.single.contributions {
  padding: 25px 0 50px;
}
div.single.contributions h1,
div.single.contributions h2,
div.single.contributions h3,
div.single.contributions h4,
div.single.contributions h5,
div.single.contributions h6 {
  margin-top: 35px;
  margin-bottom: 30px;
}
aside .sidebar {
  margin-bottom: 30px;
}
aside .tags {
  padding: 0;
  margin: 0;
  list-style: none;
}
aside .tag {
  background-color: #f7f7f7;
  display: block;
  margin-bottom: 8px;
  padding: 10px;
  color: #373737;
}
aside .tag:hover {
  text-decoration: none;
}
aside .tag.tag__marked {
  position: relative;
  padding-left: 30px;
  z-index: 10;
}
aside .tag.tag__marked span {
  position: relative;
  z-index: 20;
}
aside .tag.tag__marked:before {
  background-color: #f8d51e;
  content: '';
  display: black;
  width: 15px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
aside .tag.tag__marked:hover:before {
  width: 100%;
}
footer {
  background-color: #2a3841;
  text-align: center;
  padding: 35px 0 50px;
  position: relative;
  z-index: 5001;
}
footer .footer-menu li {
  float: none;
  display: inline-block;
  padding: 10px 15px;
}
footer .footer-menu li a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 120%;
  font-family: 'Helvetica Neue';
  color: #fefefe;
  padding: 0;
}
footer .footer-menu li a:hover {
  color: #f8d51e;
}
footer .nav > li > a:focus,
footer .nav > li > a:hover {
  background-color: transparent;
}
footer .btt {
  border: 1px solid #ffffff;
  width: 80px;
  height: 38px;
  margin: 0 auto;
  position: relative;
}
footer .btt img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -10.5px;
}
footer .btt:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
footer .btt.mt {
  margin-top: 15px;
}
.owl-nav {
  position: absolute;
  top: 275px;
  left: auto;
  right: 25px;
  width: auto;
}
.owl-prev {
  float: left;
}
.owl-next {
  float: right;
}
.owl-prev,
.owl-next {
  background-color: #f7f7f7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  width: 45px;
  height: 45px;
  position: relative;
  margin: 0 5px;
}
.owl-prev img,
.owl-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -4px;
}
.owl-prev:active,
.owl-next:active,
.owl-prev:focus,
.owl-next:focus {
  background-color: #f7f7f7;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: #f8d51e;
}
.mt_clear {
  margin-top: 0;
}
/* ==============================
    Media queries
============================== */
/* 240px */
/* 320px */
/* 480px */
@media screen and (max-width: 480px) {
  .xs-block {
    display: block;
  }
  .xs-center {
    text-align: center;
  }
  .xs-pull-clear {
    float: none !important;
  }
  header {
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  header .mobile {
    display: block;
  }
  header .desktop {
    display: none;
  }
  header .header {
    margin: 15px 0;
    min-height: 0;
  }
  header .header_middle {
    float: none;
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin-bottom: 15px;
  }
  header .header_middle img {
    width: 75px;
    height: auto;
  }
  header .header_title {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
  }
  header .header_contacts {
    min-height: 0;
    float: none;
    width: 100%;
  }
  header .header_phone {
    width: 100%;
  }
  .menu .menu_items {
    padding-bottom: 5px;
  }
  .menu .menu_items li {
    float: none;
  }
  .menu .menu_items a {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 5px 15px;
  }
  .menu .navbar-collapse {
    padding: 0;
  }
  .menu .dropdown-menu {
    font-size: 15px;
    font-size: 0.9375rem;
    position: static;
    width: 100%;
    float: none;
    box-shadow: none;
    margin-bottom: 5px;
  }
  .menu .dropdown-menu .sub a {
    padding: 5px 25px;
  }
  section.hero {
    text-align: center;
  }
  section.hero .hero_content {
    padding: 50px 15px;
  }
  section.hero .hero_wide,
  section.hero .hero-narrow {
    min-height: 0;
  }
  section.hero .hero_title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 130%;
  }
  section.hero .hero_title br {
    display: none;
  }
  section.hero .hero_text {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 130%;
  }
  section.content {
    padding-bottom: 25px;
  }
  section.content .content_description {
    background-size: 100% auto;
    margin: 35px 0;
  }
  section.content .content_text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 130%;
  }
  section.content .content_text.h_padds {
    padding: 0;
  }
  section.content .content_title,
  section.content .content_subtitle {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 130%;
  }
  section.content .content_text__indent {
    text-indent: 0px;
  }
  section.content .slider-text {
    padding: 10px 5px 25px;
  }
  section.content .owl_img-wrapper {
    float: none;
    width: 100%;
    height: 300px;
  }
  section.content .owl_desc-wrapper {
    float: none;
    width: 100%;
    min-height: 300px;
    padding: 25px 15px 5px;
  }
  section.content .owl-item {
    text-align: center;
  }
  section.subscribe .subscribe_wrapper {
    min-height: 0;
    padding: 50px 5px;
  }
  section.subscribe .subscribe_title {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 130%;
  }
  section.subscribe .subscribe_title.padds {
    padding: 0;
  }
  section.subscribe .subscribe_input {
    width: 100%;
    display: block;
    margin: 25px 0;
  }
  section.blog {
    padding: 15px 0;
  }
  section.blog .blog_title {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 130%;
  }
  section.blog .blog_subtitle {
    border-bottom: 10px solid #f8d51e;
    text-align: center;
    padding-left: 0;
  }
  section.blog .blog_subtitle:before {
    display: none;
  }
  section.blog .blog_text__hpadds {
    padding: 0 15px;
  }
  section.blog .blog_text__bmargs {
    margin-bottom: 35px;
  }
  section.blog .post_featured {
    float: none;
    width: 100%;
    max-width: 100%;
  }
  section.blog .post_content {
    float: none;
    width: 100%;
    text-align: center;
    padding: 25px 15px;
  }
  section.blog .post_date,
  section.blog .post_tag {
    margin: 10px 0 20px;
  }
  section.blog .button {
    float: none;
  }
  section.blog .most-popular {
    margin-bottom: 0;
  }
  section.blog .most {
    margin-bottom: 50px;
  }
  div.single {
    padding: 25px 0;
    text-align: center;
  }
  div.single p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  div.single .single_pagination {
    padding: 10px 0;
  }
  div.single .single_pagination .button {
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
    margin: 5px 0;
    padding: 9px 5px;
  }
  aside .sidebar {
    margin-bottom: 25px;
  }
  footer .footer-menu li {
    display: block;
  }
  footer .btt {
    width: 60px;
    height: 30px;
  }
  footer .btt.mt {
    margin-top: 35px;
  }
  .owl-nav {
    position: absolute;
    top: 225px;
    left: auto;
    right: 25px;
    width: auto;
  }
  .owl-prev {
    float: left;
  }
  .owl-next {
    float: right;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  header {
    padding-bottom: 10px;
  }
  header .header_left {
    width: 40%;
  }
  header .header_right {
    width: 40%;
  }
  header .header_middle {
    width: 20%;
  }
  header .header_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  header .header_contacts {
    min-height: 0;
    float: none;
    width: 100%;
    text-align: center;
  }
  section.hero .hero_content {
    padding-left: 75px;
  }
  section.hero .hero_wide {
    padding-left: 75px;
    text-align: left;
  }
  section.hero .hero_narrow {
    padding-left: 35px;
    padding-right: 35px;
    text-align: center;
  }
  section.hero .hero_title {
    font-size: 34px;
    font-size: 2.125rem;
  }
  section.content {
    padding-bottom: 45px;
  }
  section.content .owl_img-wrapper {
    float: none;
    width: 100%;
    height: 450px;
  }
  section.content .owl_desc-wrapper {
    float: none;
    width: 100%;
    min-height: 450px;
    padding: 35px 50px 0;
  }
  section.content .owl_desc-wrapper .button {
    margin-top: 15px;
  }
  section.subscribe .subscribe_title.padds {
    padding: 30px 130px;
  }
  section.subscribe .subscribe_input {
    margin: 0 -3px 0 0;
    display: inline-block;
  }
  section.subscribe .subscribe_wrapper {
    min-height: 450px;
  }
  section.blog .post_featured {
    min-height: 270px;
  }
  section.blog .post_content {
    min-height: 270px;
  }
  div.single p {
    padding: 0 30px;
  }
  div.single .single_pagination__mobile-margin {
    margin-top: 0;
  }
  .owl-nav {
    width: auto;
    left: 80%;
    right: auto;
    top: 375px;
    bottom: auto;
  }
  .owl-prev {
    float: left;
  }
  .owl-next {
    float: right;
  }
}
@media (max-width: 991px) {
  .md-block {
    display: block;
  }
  .menu .menu_items li {
    float: none;
  }
  .menu .menu_items a {
    padding: 10px 15px;
  }
  .menu .dropdown-menu {
    position: static;
    width: 100%;
    float: none;
    box-shadow: none;
    margin-bottom: 5px;
  }
}
/* Medium devices (from 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-header .collapse,
  .navbar-toggle {
    display: block !important;
  }
  .navbar-header {
    float: none;
  }
  div.single .single_pagination .button {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 9px 12px;
    width: auto;
    max-width: 100%;
  }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .md-table {
    display: table;
  }
  header {
    padding-bottom: 0;
    margin-bottom: -40px;
  }
  header .header_contacts {
    display: table;
    min-height: 80px;
  }
  .navbar-collapse.collapse {
    padding: 0;
  }
  .menu .menu_items a {
    padding: 30px 7px;
  }
  .menu .dropdown-menu a {
    padding: 10px 35px;
  }
  .menu .dropdown-menu .sub a {
    padding: 10px 45px;
  }
  section.hero .hero_wide {
    min-height: 350px;
  }
  section.hero .hero_narrow {
    min-height: 200px;
  }
  section.hero .hero_title {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 110%;
  }
  section.content {
    padding-bottom: 50px;
  }
  section.content .content_text {
    font-size: 16px;
    font-size: 1rem;
  }
  section.content .content_text.h_padds {
    padding: 0 90px;
  }
  section.content .content_subtitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
  section.content .slider-text {
    padding: 0 20px;
  }
  section.content .owl_img-wrapper {
    float: left;
    width: 50%;
  }
  section.content .owl_desc-wrapper {
    float: left;
    width: 50%;
    padding: 5px 15px 5px 25px;
  }
  section.blog .blog_text__hpadds {
    padding: 0 180px;
  }
  section.blog .most-popular {
    margin-bottom: 80px;
  }
  section.blog .most {
    margin-bottom: 0;
  }
  .owl-nav {
    width: auto;
    left: 35%;
    top: 375px;
  }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  header .header_title span {
    display: block;
  }
  .navbar-collapse.collapse {
    padding: 0 15px;
  }
  .menu .menu_items a {
    padding: 30px 15px;
  }
  .menu .dropdown-menu a {
    padding: 10px 35px;
  }
  section.hero .hero_title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  section.content {
    padding-bottom: 90px;
  }
  section.content .content_text.h_padds {
    padding: 0 180px;
  }
  section.content .owl_img-wrapper {
    float: left;
    width: 50%;
  }
  section.content .owl_desc-wrapper {
    float: left;
    width: 50%;
    padding: 35px 50px;
  }
  section.blog {
    padding: 50px 0;
  }
  section.blog .post_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  section.blog .pagenavi {
    margin-top: 50px;
  }
  div.single p {
    padding: 0 50px;
  }
}
