/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * A mixin which helps you to add depth to elements according to the Google Material Design spec:
 * http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality
 *
 * Please note that the values given in the specification cannot be used as is. To create the same visual experience
 * the blur parameter has to be doubled.
 *
 * Adapted from a LESS version at https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d
 *
 * Original Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)
 *
 * Example usage:
 *
 * .card {
 *     width: 95px;
 *     height: 95px;
 *     background: #f4f4f4;
 *     -webkit-transition: all 250ms;
 *     -moz-transition: all 250ms;
 *     transition: all 250ms;
 *     @include box_shadow(1);
 *     &:hover {
 *         @include box_shadow(3);
 *         -webkit-transform: translateY(-5px);
 *         -moz-transform: translateY(-5px);
 *         transform: translateY(-5px);
 *     }
 * }
 *
 */
html {
  background-color: rgba(0, 75, 30, 0.02);
  height: 100%; }

body {
  height: 100%; }

*,
*::before,
*::after {
  appearance: none;
  box-sizing: border-box; }

a {
  color: #00a554;
  cursor: pointer;
  text-decoration: none;
  transition: 250ms; }
  a:hover {
    color: #ff3200;
    text-decoration: none; }

html,
body {
  color: #003715;
  font: normal 16px "Arial", "Helvetica", sans-serif;
  line-height: 1.4; }

.wf-active body,
.wf-active div,
.wf-active span,
.wf-active applet,
.wf-active object,
.wf-active iframe,
.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active h4,
.wf-active h5,
.wf-active h6,
.wf-active p,
.wf-active blockquote,
.wf-active pre,
.wf-active a,
.wf-active abbr,
.wf-active acronym,
.wf-active address,
.wf-active big,
.wf-active cite,
.wf-active code,
.wf-active del,
.wf-active dfn,
.wf-active em,
.wf-active img,
.wf-active ins,
.wf-active kbd,
.wf-active q,
.wf-active s,
.wf-active samp,
.wf-active small,
.wf-active strike,
.wf-active strong,
.wf-active sub,
.wf-active sup,
.wf-active tt,
.wf-active var,
.wf-active b,
.wf-active u,
.wf-active i,
.wf-active center,
.wf-active dl,
.wf-active dt,
.wf-active dd,
.wf-active ol,
.wf-active ul,
.wf-active li,
.wf-active fieldset,
.wf-active form,
.wf-active label,
.wf-active legend,
.wf-active table,
.wf-active caption,
.wf-active tbody,
.wf-active tfoot,
.wf-active thead,
.wf-active tr,
.wf-active th,
.wf-active td,
.wf-active article,
.wf-active aside,
.wf-active canvas,
.wf-active details,
.wf-active embed,
.wf-active figure,
.wf-active figcaption,
.wf-active footer,
.wf-active header,
.wf-active hgroup,
.wf-active menu,
.wf-active nav,
.wf-active output,
.wf-active ruby,
.wf-active section,
.wf-active summary,
.wf-active time,
.wf-active mark,
.wf-active audio,
.wf-active video {
  font-family: "Open Sans", sans-serif; }

.l-drus-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff; }
  .l-drus-header__box {
    display: flex;
    justify-content: space-between; }
  .l-drus-header__logo {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 48px;
    padding: 4px 0; }
    @media (min-width: 744px) {
      .l-drus-header__logo {
        height: 72px; } }
    .l-drus-header__logo:hover {
      opacity: .75; }
  .l-drus-header__logo-text {
    color: #003715;
    display: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    padding-left: 8px;
    text-transform: uppercase; }
    @media (min-width: 744px) {
      .l-drus-header__logo-text {
        display: block; } }
  .l-drus-header__logo-img {
    background-image: url(/img/sprite.png);
    background-position: 0px -92px;
    width: 40px;
    height: 40px;
    display: inline-block; }
  .l-drus-header__form {
    box-sizing: border-box;
    display: flex;
    height: 48px;
    padding: 8px; }
    @media (min-width: 484px) {
      .l-drus-header__form {
        width: 320px; } }
    @media (min-width: 744px) {
      .l-drus-header__form {
        height: 72px;
        padding: 16px;
        width: 320px; } }
    @media (min-width: 1112px) {
      .l-drus-header__form {
        padding-right: 0;
        width: 800px; } }
  .l-drus-header__form-input {
    appearance: normal;
    border: 1px solid #acb3ba;
    border-radius: 4px 0 0 4px;
    border-right: 0;
    box-sizing: border-box;
    display: block;
    flex-grow: 2;
    font-size: 16px;
    height: 32px;
    line-height: 1;
    padding: 4px 8px;
    width: 40%; }
    @media (min-width: 744px) {
      .l-drus-header__form-input {
        height: 40px; } }
    @media (min-width: 1112px) {
      .l-drus-header__form-input {
        border-radius: 0; } }
  .l-drus-header__form-select-box {
    align-items: center;
    border: 1px solid #acb3ba;
    border-radius: 4px 0 0 4px;
    border-right: 0;
    box-sizing: border-box;
    display: none;
    flex-grow: 2;
    font-size: 16px;
    height: 40px;
    line-height: 1;
    position: relative;
    width: 40%; }
    @media (min-width: 1112px) {
      .l-drus-header__form-select-box {
        display: flex; } }
    .l-drus-header__form-select-box::after {
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid #004b1e;
      content: '';
      display: block;
      height: 0;
      pointer-events: none;
      position: absolute;
      right: 8px;
      width: 0;
      z-index: 0; }
    .l-drus-header__form-select-box span {
      color: #004b1e;
      display: block;
      padding: 4px 8px; }
    .l-drus-header__form-select-box select {
      display: block;
      height: 40px;
      opacity: 0;
      position: absolute;
      width: 100%; }
  .l-drus-header__form-submit {
    align-items: center;
    appearance: normal;
    background-color: #ffd400;
    border: 1px solid #acb3ba;
    border-radius: 0 4px 4px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-shrink: 2;
    height: 32px;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 48px; }
    @media (min-width: 744px) {
      .l-drus-header__form-submit {
        height: 40px;
        width: 64px; } }
    .l-drus-header__form-submit:hover {
      opacity: .75; }
    .l-drus-header__form-submit span {
      background-image: url(/img/sprite.png);
      background-position: 0px -168px;
      width: 20px;
      height: 20px;
      display: block;
      height: 20px;
      margin: 0 auto;
      width: 20px; }
  .l-drus-header__menu {
    align-items: center;
    box-sizing: border-box;
    color: #004b1e;
    cursor: pointer;
    display: flex;
    height: 48px;
    padding: 4px 0; }
    @media (min-width: 744px) {
      .l-drus-header__menu {
        height: 72px; } }
    @media (min-width: 1112px) {
      .l-drus-header__menu {
        display: none; } }
    .l-drus-header__menu:hover {
      opacity: .75; }
      @media (min-width: 744px) {
        .l-drus-header__menu:hover {
          color: #004b1e;
          text-decoration: underline; } }
    .l-drus-header__menu--active {
      transform: rotate(90deg); }
  .l-drus-header__menu-img {
    background-image: url(/img/sprite.png);
    background-position: 0px -132px;
    width: 24px;
    height: 24px;
    display: inline-block; }

.l-drus-header-list {
  background-color: #004b1e;
  text-align: center;
  display: none; }
  @media (min-width: 1112px) {
    .l-drus-header-list {
	  text-align: center;
      background-color: transparent;
      display: block; } }
  .l-drus-header-list__list {
    box-sizing: border-box;
    margin: 0 8px;
    max-width: 1096px;
    min-width: 234px; }
    @media (min-width: 744px) {
      .l-drus-header-list__list {
        margin: 0 auto;
		text-align: center;
        width: 728px; } }
    @media (min-width: 1112px) {
      .l-drus-header-list__list {
        width: 1096px;
		text-align: center;		} }
    @media (min-width: 484px) {
      .l-drus-header-list__list {
        display: flex;
        flex-wrap: wrap; } }
    @media (min-width: 1112px) {
      .l-drus-header-list__list {
        flex-wrap: wrap;
        justify-content: space-around; } }
  .l-drus-header-list__item {
    border-bottom: 1px solid #fff;
	
    line-height: 1;
    padding: 8px 0; }
    @media (min-width: 484px) {
      .l-drus-header-list__item {
        width: 50%; } }
    @media (min-width: 744px) {
      .l-drus-header-list__item {
        width: 33.33%; } }
    @media (min-width: 1112px) {
      .l-drus-header-list__item {
        border-bottom: 0;
        margin-left: 16px;
        padding: 8px 0;
        text-align: center;
        width: auto; } }
  .l-drus-header-list__link {
    color: #fff;
    display: block;
    font-weight: 300;
    line-height: 1; }
    @media (min-width: 1112px) {
      .l-drus-header-list__link {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 0;
		text-align:center;
        color: #003715;
        font-size: 12px;
         } }
    .l-drus-header-list__link:hover {
      color: #ced5de; }
      @media (min-width: 1112px) {
        .l-drus-header-list__link:hover {
          background-color: transparent;
          color: #ff3200;
          text-decoration: none; } }
    @media (min-width: 1112px) {
      .l-drus-header-list__link--active {
        color: #ff3200;
        text-decoration: none; } }

.l-drus-article {
  position: relative; }
  .l-drus-article__header {
    margin-bottom: 32px; }
    @media (min-width: 1112px) {
      .l-drus-article__header {
        margin-bottom: 48px; } }
  .l-drus-article__h1 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.1; }
    @media (min-width: 484px) {
      .l-drus-article__h1 {
        font-size: 28px; } }
    @media (min-width: 744px) {
      .l-drus-article__h1 {
        font-size: 32px; } }
    @media (min-width: 1112px) {
      .l-drus-article__h1 {
        font-size: 28px; } }
    .l-drus-article__h1--item {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .l-drus-article__header-text {
    font-size: 14px;
    padding-top: 4px; }
  .l-drus-article__section {
    margin-bottom: 32px; }
    @media (min-width: 1112px) {
      .l-drus-article__section {
        margin-bottom: 10px; } }
    .l-drus-article__section--white {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      background-color: #fff;
      border-radius: 2px;
      padding: 16px; }
      @media (min-width: 744px) {
        .l-drus-article__section--white {
          padding: 32px; } }
    .l-drus-article__section--ads {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      background-color: #fff;
      border-radius: 2px; }
    @media (min-width: 1112px) {
      .l-drus-article__section--ads-item {
        margin-bottom: 0;
        padding: 32px 32px 0; } }
  .l-drus-article__h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px; }
    @media (min-width: 484px) {
      .l-drus-article__h2 {
        font-size: 24px; } }
    @media (min-width: 744px) {
      .l-drus-article__h2 {
        font-size: 28px; } }
    @media (min-width: 1112px) {
      .l-drus-article__h2 {
        font-size: 32px; } }
  @media (min-width: 744px) {
    .l-drus-article__item {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  @media (min-width: 1112px) {
    .l-drus-article__item {
      position: relative; } }
  .l-drus-article__item-item {
    margin-bottom: 16px; }
    @media (min-width: 744px) {
      .l-drus-article__item-item {
        margin-bottom: 0;
        width: 49%; } }
    @media (min-width: 1112px) {
      .l-drus-article__item-item {
        width: 31%; } }
    .l-drus-article__item-item:last-of-type {
      margin-bottom: 0; }
    .l-drus-article__item-item p {
      margin-bottom: 8px; }
      .l-drus-article__item-item p:last-of-type {
        margin-bottom: 0; }
      .l-drus-article__item-item p.time {
        color: #004b1e;
        display: block;
        font-size: 14px;
        font-weight: 300;
        line-height: 1;
        padding: 0 8px;
        position: relative;
        top: -10px; }
    .l-drus-article__item-item .open-status {
      display: inline-block; }
      .l-drus-article__item-item .open-status::before {
        content: ' ';
        display: table; }
      .l-drus-article__item-item .open-status::after {
        clear: both;
        content: ' ';
        display: table; }
      .l-drus-article__item-item .open-status span {
        background-color: #004b1e;
        border-radius: 16px;
        color: #fff;
        display: block;
        font-size: 12px;
        font-weight: 300;
        line-height: 1;
        padding: 4px 8px;
        position: relative;
        top: -2px; }
        @media (min-width: 484px) {
          .l-drus-article__item-item .open-status span {
            top: -4px; } }
        @media (min-width: 1112px) {
          .l-drus-article__item-item .open-status span {
            top: -5px; } }
      .l-drus-article__item-item .open-status--open span {
        background-color: #00a554; }
      .l-drus-article__item-item .open-status--closed span {
        background-color: #ff3200; }
    .l-drus-article__item-item b {
      font-size: 32px;
      font-weight: 300; }
    .l-drus-article__item-item--ads {
      display: none; }
      @media (min-width: 1112px) {
        .l-drus-article__item-item--ads {
          display: block;
          width: 336px; } }
  .l-drus-article__btn-box {
    margin-top: 16px;
    width: 100%; }
    @media (min-width: 484px) {
      .l-drus-article__btn-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; } }
  .l-drus-article__two {
    display: flex;
    flex-direction: column;
    width: 100%; }
    .l-drus-article__two--reverse {
      flex-direction: column-reverse; }
    @media (min-width: 1112px) {
      .l-drus-article__two {
        flex-direction: row; } }
  @media (min-width: 1112px) {
    .l-drus-article__two-first {
      flex-grow: 2;
      margin-right: 32px; } }
  .l-drus-article__two-first--reverse {
    margin-top: 8px; }
  @media (min-width: 1112px) {
    .l-drus-article__two-second {
      flex-shrink: 0;
      width: 336px; } }
  .l-drus-article__direction-map {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    height: 200px;
    width: 100%; }
    @media (min-width: 744px) {
      .l-drus-article__direction-map {
        height: 300px; } }
    @media (min-width: 1112px) {
      .l-drus-article__direction-map {
        height: 450px; } }
  .l-drus-article__btn {
    color: #003715;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    text-decoration: underline; }
    .l-drus-article__btn:hover {
      color: #ff3200; }
  .l-drus-article__stars {
    color: #ced5de;
    font-size: 14px;
    padding-bottom: 8px; }
    .l-drus-article__stars i {
      color: #ffd400;
      font-size: 20px;
      text-shadow: 1px 1px 2px #004b1e; }
  .l-drus-article__user-content {
    width: 100%; }
    .l-drus-article__user-content img {
      height: auto;
      max-width: 100%; }
    .l-drus-article__user-content p {
      margin-bottom: 8px; }
    .l-drus-article__user-content b,
    .l-drus-article__user-content strong {
      font-weight: 700; }
    .l-drus-article__user-content i,
    .l-drus-article__user-content em {
      font-style: italic; }

.l-drus-pre-footer {
  background-color: #fff;
  border-bottom: 1px solid #ced5de;
  display: none;
  font-size: 12px;
  margin-top: 32px;
  padding: 16px 0; }
  @media (min-width: 744px) {
    .l-drus-pre-footer {
      display: block; } }
  .l-drus-pre-footer__main-box {
    display: flex; }
  .l-drus-pre-footer__box {
    flex-grow: 2;
    padding-right: 16px;
    width: 100%; }
    .l-drus-pre-footer__box:last-of-type {
      padding-right: 0; }
  .l-drus-pre-footer__header {
    color: #00a554;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1; }
  .l-drus-pre-footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .l-drus-pre-footer__list-item {
    padding-top: 8px;
    position: relative; }
    .l-drus-pre-footer__list-item--two {
      width: 49%; }
  .l-drus-pre-footer__link {
    color: #004b1e;
    font-size: 12px;
    line-height: 1;
    text-decoration: none; }
    .l-drus-pre-footer__link:hover {
      color: #004b1e;
      text-decoration: underline; }

.l-drus-footer {
  background-color: #003715;
  color: #fff;
  font-size: 12px;
  padding: 16px 0;
  text-align: center; }
  .l-drus-footer__link {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    text-transform: uppercase; }
    .l-drus-footer__link:hover {
      color: #fff;
      text-decoration: none; }
  @media (min-width: 484px) {
    .l-drus-footer__list {
      display: flex;
      justify-content: center; } }
  .l-drus-footer__list-item {
    padding: 0 8px 8px; }
  .l-drus-footer__list-link {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    text-transform: uppercase; }
    @media (min-width: 484px) {
      .l-drus-footer__list-link {
        font-size: 14px;
        font-weight: 300;
        text-transform: none; } }
    .l-drus-footer__list-link:hover {
      color: #fff;
      text-decoration: none; }

.l-drus-aside {
  display: none; }
  @media (min-width: 1112px) {
    .l-drus-aside {
      display: block; } }
  .l-drus-aside__section {
    display: block;
    margin-bottom: 32px; }
    @media (min-width: 1112px) {
      .l-drus-aside__section {
        margin-bottom: 48px; } }
    .l-drus-aside__section--ads {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      background-color: #fff;
      border-radius: 2px; }
    .l-drus-aside__section--map {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      background-color: #fff;
      border-radius: 2px;
      height: 336px; }
  .l-drus-aside__header {
    border-bottom: 1px solid #acb3ba;
    font-size: 20px;
    margin-bottom: 12px;
    padding-bottom: 4px; }

.l-drus-aside-list__item {
  margin-bottom: 16px; }
  .l-drus-aside-list__item:last-of-type {
    margin-bottom: 0; }

.l-drus-aside-list__link--header {
  color: #003715;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  text-decoration: underline; }
  .l-drus-aside-list__link--header:hover {
    color: #003715;
    text-decoration: none; }

.l-drus-aside-list__flex {
  display: flex;
  justify-content: space-between; }

.l-drus-aside-list__small {
  color: #004b1e;
  display: block;
  font-size: 14px; }
  .l-drus-aside-list__small::before {
    content: ' ';
    display: table; }
  .l-drus-aside-list__small::after {
    clear: both;
    content: ' ';
    display: table; }
  .l-drus-aside-list__small--top-indent {
    margin-top: 4px; }
    .l-drus-aside-list__small--top-indent b {
      color: #ffd400;
      text-shadow: 0 0 2px rgba(0, 75, 30, 0.5); }

.l-drus-aside-list__btn {
  align-items: center;
  border: 1px solid #acb3ba;
  border-radius: 2px;
  color: #003715;
  display: flex;
  font-size: 12px;
  justify-content: center;
  line-height: 1;
  margin-left: 16px;
  padding: 4px 8px; }
  .l-drus-aside-list__btn:hover {
    background-color: #3acc8f;
    border: 1px solid #00a554;
    color: #003715; }

.l-drus-aside-list__icon {
  align-items: center;
  background-color: #3acc8f;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  margin-right: 8px;
  width: 24px; }
  .l-drus-aside-list__icon--info span {
    background-image: url(/img/sprite.png);
    background-position: 0px -12px;
    width: 12px;
    height: 12px;
    display: block; }

.l-drus-main__box {
  box-sizing: border-box;
  margin: 0 8px;
  max-width: 1096px;
  min-width: 234px; }
  @media (min-width: 744px) {
    .l-drus-main__box {
      margin: 0 auto;
      width: 728px; } }
  @media (min-width: 1112px) {
    .l-drus-main__box {
      width: 1096px; } }

.l-drus-main__main {
  padding-top: 32px; }
  @media (min-width: 1112px) {
    .l-drus-main__main {
      display: flex; } }
  @media (min-width: 1112px) {
    .l-drus-main__main--item {
      padding-top: 0; } }

.l-drus-main__article {
  flex-grow: 2; }

.l-drus-main__aside {
  padding-top: 32px; }
  @media (min-width: 1112px) {
    .l-drus-main__aside {
      flex-shrink: 0;
      margin-left: 32px;
      padding-top: 0;
      width: 336px; } }

.l-drus-main__map {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  height: 160px;
  width: 100%; }
  @media (min-width: 484px) {
    .l-drus-main__map {
      height: 240px; } }
  @media (min-width: 744px) {
    .l-drus-main__map {
      height: 320px; } }

.c-drus-add-rev {
  background: linear-gradient(to bottom, rgba(0, 75, 30, 0) 0%, #e7f0f9 100%);
  border: 1px solid #ced5de;
  border-radius: 4px;
  margin-top: 16px; }
  .c-drus-add-rev__text {
    color: #004b1e;
    font-size: 14px;
    padding: 16px;
    text-align: center; }
  .c-drus-add-rev__btn {
    border-top: 1px solid #ced5de;
    color: #004b1e;
    display: block;
    font-size: 20px;
    line-height: 1;
    padding: 16px;
    text-align: center; }
    .c-drus-add-rev__btn:hover {
      color: #004b1e; }
  .c-drus-add-rev__star {
    display: inline-block;
    font-size: 28px;
    text-shadow: 1px 1px 2px #004b1e; }
    .c-drus-add-rev__star--active {
      color: #ffd400; }

.c-drus-form {
  width: 100%; }
  .c-drus-form__label {
    display: block;
    margin-bottom: 12px; }
    @media (min-width: 744px) {
      .c-drus-form__label {
        margin-bottom: 16px; } }
  .c-drus-form__input {
    appearance: none;
    border: 1px solid #ced5de;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    height: 32px;
    line-height: 1;
    margin-top: 8px;
    padding: 8px;
    width: 100%; }
    .c-drus-form__input:disabled {
      color: #ced5de; }
    .c-drus-form__input--submit {
      background-color: #ffd400;
      border: 1px solid #ffa81f;
      color: #003715;
      cursor: pointer;
      display: inline-block;
      padding: 0 8px;
      width: auto; }
      .c-drus-form__input--submit:hover {
        opacity: .7; }
  .c-drus-form__btn {
    border: 1px solid;
    border-radius: 2px;
    display: inline-block;
    height: 32px;
    line-height: 1;
    margin-top: 8px;
    padding: 7px 16px; }
  .c-drus-form__two {
    display: flex; }
  .c-drus-form__two-item {
    flex-shrink: 1; }
    .c-drus-form__two-item--wide {
      flex-grow: 2;
      flex-shrink: 0;
      margin-right: 8px; }

.c-drus-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .c-drus-list--page-num {
    justify-content: flex-start; }
  .c-drus-list__item {
    margin-bottom: 16px;
    width: 100%; }
    .c-drus-list__item:last-of-type {
      margin-bottom: 0; }
    @media (min-width: 484px) {
      .c-drus-list__item--4 {
        width: 48.5%; }
        .c-drus-list__item--4:nth-last-of-type(2) {
          margin-bottom: 0; } }
    @media (min-width: 744px) {
      .c-drus-list__item--4 {
        width: 31.5%; }
        .c-drus-list__item--4:nth-last-of-type(3) {
          margin-bottom: 0; } }
    @media (min-width: 1112px) {
      .c-drus-list__item--4 {
        width: 23.5%; }
        .c-drus-list__item--4:nth-last-of-type(4) {
          margin-bottom: 0; } }
    @media (min-width: 1112px) {
      .c-drus-list__item--2 {
        width: 49.1%; }
        .c-drus-list__item--2:nth-last-of-type(3) {
          margin-bottom: 0; } }
    .c-drus-list__item--header {
      position: relative;
      text-align: center;
      width: 100%; }
      .c-drus-list__item--header::after {
        background: linear-gradient(to right, rgba(0, 75, 30, 0) 0%, rgba(0, 75, 30, 0.5) 25%, #003715 50%, rgba(0, 75, 30, 0.5) 75%, rgba(0, 75, 30, 0) 100%);
        content: ' ';
        display: block;
        height: 2px;
        position: absolute;
        top: 48%;
        width: 100%;
        z-index: 0; }
      .c-drus-list__item--header span {
        background-color: #fff;
        border-radius: 50%;
        color: #004b1e;
        display: inline-block;
        font-size: 24px;
        font-weight: 300;
        line-height: 1;
        padding: 0 8px;
        position: relative;
        text-transform: uppercase;
        z-index: 10; }
        @media (min-width: 484px) {
          .c-drus-list__item--header span {
            font-size: 28px; } }
        @media (min-width: 744px) {
          .c-drus-list__item--header span {
            font-size: 32px; } }
        @media (min-width: 1112px) {
          .c-drus-list__item--header span {
            font-size: 40px; } }
    .c-drus-list__item--page-num {
      align-items: center;
      display: flex;
      justify-content: center;
      margin-right: 16px;
      width: 7%; }
      .c-drus-list__item--page-num:last-of-type {
        margin-bottom: 16px; }
    .c-drus-list__item--photo {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      background-position: center;
      background-size: cover;
      cursor: pointer;
      height: 110px;
      width: 47.5%; }
      @media (min-width: 484px) {
        .c-drus-list__item--photo {
          height: 140px;
          width: 31.5%; } }
      @media (min-width: 744px) {
        .c-drus-list__item--photo {
          height: 120px;
          width: 120px; } }
  .c-drus-list__link--nav {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: rgba(0, 75, 30, 0.02);
    border-radius: 2px;
    color: #003715;
    display: block;
    font-size: 14px;
    padding: 8px 24px 8px 8px;
    position: relative; }
    .c-drus-list__link--nav::after {
      color: #ced5de;
      content: '\3009';
      display: block;
      font-size: 16px;
      position: absolute;
      right: -2px;
      top: 6px;
      transition: 250ms; }
    .c-drus-list__link--nav:hover {
      background-color: #ced5de;
      color: #003715; }
      .c-drus-list__link--nav:hover::after {
        color: #e7f0f9; }
  .c-drus-list__link--page-num {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    align-items: center;
    background-color: #fff;
    border-radius: 2px;
    color: #00a554;
    display: flex;
    font-size: 14px;
    justify-content: center;
    padding: 8px 16px;
    width: 48px; }
    .c-drus-list__link--page-num:hover {
      box-shadow: none;
      background-color: rgba(0, 75, 30, 0.02);
      color: #003715; }
    .c-drus-list__link--page-num.active {
      box-shadow: none;
      background-color: #ced5de;
      color: #003715;
      cursor: default; }

.c-drus-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  padding: 16px; }
  .c-drus-card__box {
    display: flex; }
  .c-drus-card__clean {
    box-shadow: none;
    padding: 0; }
  .c-drus-card__img {
    background-position: center;
    background-size: cover;
    border: 1px solid #ced5de;
    border-radius: 2px;
    display: none;
    flex-shrink: 0;
    height: 137px;
    margin-right: 16px;
    position: relative;
    width: 137px; }
    @media (min-width: 484px) {
      .c-drus-card__img {
        display: block; } }
  .c-drus-card__stars {
    background-color: #ffd400;
    border-bottom: 1px solid #ced5de;
    border-left: 1px solid #ced5de;
    color: #004b1e;
    display: block;
    font-size: 20px;
    font-weight: 300;
    padding: 4px 8px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0; }
  .c-drus-card__info {
    flex-grow: 2; }
  .c-drus-card__header {
    font-size: 18px;
    text-decoration: underline; }
    .c-drus-card__header:hover {
      color: #00a554;
      text-decoration: none; }
  .c-drus-card__line {
    font-size: 14px;
    margin-top: 4px; }
    .c-drus-card__line--small {
      color: #004b1e;
      font-size: 12px; }
  .c-drus-card__category {
    color: #003715;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-right: 4px;
    padding: 0;
    text-decoration: underline; }
    .c-drus-card__category:hover {
      color: #ff3200;
      text-decoration: none; }
  .c-drus-card__open-status {
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    margin-right: 8px; }
    .c-drus-card__open-status--open {
      color: #00a554; }
    .c-drus-card__open-status--closed {
      color: #ff3200; }
  .c-drus-card__open-text {
    color: #004b1e;
    font-size: 12px; }

.c-drus-sub-nav {
  display: none; }
  @media (min-width: 744px) {
    .c-drus-sub-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: left; } }
  .c-drus-sub-nav__item {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 1;
    margin: 16px 16px 0 0; }
  .c-drus-sub-nav__link {
    border-bottom: 1px dashed;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1; }
    .c-drus-sub-nav__link:hover {
      border-bottom-color: transparent; }
    .c-drus-sub-nav__link--active {
      background-color: #00a554;
      border-bottom: 1px dashed transparent;
      border-radius: 16px;
      color: #fff;
      cursor: default;
      margin-top: -4px;
      padding: 4px 10px 4px 8px;
      position: relative; }
      .c-drus-sub-nav__link--active:hover {
        color: #fff; }

.c-drus-table td {
  border-bottom: 1px solid #ced5de;
  font-size: 14px;
  padding: 8px; }
  .c-drus-table td:last-of-type {
    text-align: right; }

.c-drus-table tr.active {
  background-color: #e7f0f9; }

.c-drus-table tr:last-of-type td {
  border-bottom: 0; }

.c-drus-modal__bg {
  background-color: #003715;
  bottom: 0;
  display: none;
  left: 0;
  opacity: .8;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000; }

.c-drus-modal__content {
  align-items: center;
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10001; }

.c-drus-modal__content-box {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: #fff;
  max-height: 90%;
  max-width: 90%;
  padding: 8px;
  position: relative;
  z-index: 10002; }
  @media (min-width: 484px) {
    .c-drus-modal__content-box {
      padding: 16px; } }
  @media (min-width: 744px) {
    .c-drus-modal__content-box {
      padding: 24px; } }
  @media (min-width: 1112px) {
    .c-drus-modal__content-box {
      padding: 32px; } }
  .c-drus-modal__content-box img {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%; }

.c-drus-modal__close {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  align-items: center;
  background-color: #ffd400;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 24px;
  z-index: 10003; }

.c-drus-review {
  border-bottom: 1px solid #ced5de;
  padding-bottom: 8px; }
  .c-drus-review:last-of-type {
    border-bottom: 0; }
  .c-drus-review__line {
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 8px; }
    .c-drus-review__line::before {
      content: ' ';
      display: table; }
    .c-drus-review__line::after {
      clear: both;
      content: ' ';
      display: table; }
    .c-drus-review__line--small {
      color: #004b1e;
      font-size: 12px; }
      .c-drus-review__line--small a {
        color: #004b1e;
        text-decoration: underline; }
        .c-drus-review__line--small a:hover {
          text-decoration: none; }
  .c-drus-review__stars {
    float: left;
    font-size: 18px; }
    .c-drus-review__stars b {
      color: #ffd400;
      display: inline-block;
      text-shadow: 1px 1px 2px #004b1e; }
    .c-drus-review__stars span {
      font-size: 14px; }
  .c-drus-review__date {
    display: inline-block;
    float: right; }

@media (min-width: 744px) {
  .c-drus-social {
    display: flex; } }

.c-drus-social__item {
  margin-bottom: 8px; }
  @media (min-width: 484px) {
    .c-drus-social__item {
      margin-bottom: 16px; } }
  @media (min-width: 744px) {
    .c-drus-social__item {
      margin-bottom: 0;
      margin-right: 24px; } }
  @media (min-width: 1112px) {
    .c-drus-social__item {
      margin-bottom: 0;
      margin-right: 32px; } }
  .c-drus-social__item:last-of-type {
    margin-bottom: 0; }
    @media (min-width: 744px) {
      .c-drus-social__item:last-of-type {
        margin-right: 0; } }

.c-drus-social__link {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  align-items: center;
  border: 1px solid #acb3ba;
  border-radius: 2px;
  color: #003715;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1;
  padding: 4px 8px; }
  @media (min-width: 484px) {
    .c-drus-social__link {
      padding: 8px 16px; } }
  .c-drus-social__link:hover {
    color: #fff; }
  .c-drus-social__link div {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 32px;
    justify-content: center;
    margin-right: 8px;
    width: 32px; }
  .c-drus-social__link span {
    display: block; }
  .c-drus-social__link--fb:hover {
    background-color: #3b5998; }
  .c-drus-social__link--fb div {
    background-color: #3b5998; }
  .c-drus-social__link--fb span {
    background-image: url(/img/sprite.png);
    background-position: 0px -48px;
    width: 9px;
    height: 16px; }
  .c-drus-social__link--gp:hover {
    background-color: #dd4b39; }
  .c-drus-social__link--gp div {
    background-color: #dd4b39; }
  .c-drus-social__link--gp span {
    background-image: url(/img/sprite.png);
    background-position: 0px -64px;
    width: 16px;
    height: 16px;
    background-color: #dd4b39; }
  .c-drus-social__link--tw:hover {
    background-color: #00aced; }
  .c-drus-social__link--tw div {
    background-color: #00aced; }
  .c-drus-social__link--tw span {
    background-image: url(/img/sprite.png);
    background-position: 0px -200px;
    width: 19px;
    height: 16px;
    background-color: #00aced; }

.l-drus-bread {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  border-top: 1px solid #ced5de;
  display: none; }
  @media (min-width: 744px) {
    .l-drus-bread {
      display: block; } }
  .l-drus-bread__box {
    box-sizing: border-box;
    margin: 0 8px;
    max-width: 1096px;
    min-width: 234px;
    border-left: 1px solid #ced5de;
    display: flex;
    overflow: hidden; }
    @media (min-width: 744px) {
      .l-drus-bread__box {
        margin: 0 auto;
        width: 728px; } }
    @media (min-width: 1112px) {
      .l-drus-bread__box {
        width: 1096px; } }
  .l-drus-bread__item {
    margin-right: 16px;
    padding: 8px 16px;
    position: relative; }
    .l-drus-bread__item::before {
      background-color: #acb3ba;
      content: ' ';
      display: block;
      height: 1px;
      position: absolute;
      right: -20px;
      top: 9px;
      transform: rotate(45deg);
      width: 28px; }
    .l-drus-bread__item::after {
      background-color: #acb3ba;
      bottom: 9px;
      content: ' ';
      display: block;
      height: 1px;
      position: absolute;
      right: -20px;
      transform: rotate(-45deg);
      width: 28px; }
    .l-drus-bread__item:last-of-type::before {
      display: none; }
    .l-drus-bread__item:last-of-type::after {
      display: none; }
  .l-drus-bread__link {
    color: #003715;
    font-size: 12px;
    line-height: 1; }

.p-drus-first {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  align-items: center;
  background-color: #004b1e;
  background-image: url("/img/bg_first_small.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  height: 300px;
  justify-content: center;
  width: 100%; }
  @media (min-width: 484px) {
    .p-drus-first {
      background-image: url("/img/bg_first_big.jpg");
      height: 400px; } }
  @media (min-width: 744px) {
    .p-drus-first {
      height: 475px; } }
  .p-drus-first__box {
    box-sizing: border-box;
    margin: 0 8px;
    max-width: 1096px;
    min-width: 234px;
    width: 100%; }
    @media (min-width: 744px) {
      .p-drus-first__box {
        margin: 0 auto;
        width: 728px; } }
    @media (min-width: 1112px) {
      .p-drus-first__box {
        width: 1096px; } }
  .p-drus-first__form-name {
    background-color: #fff;
    border-radius: 2px 2px 0 0;
    display: inline-block;
    font-size: 12px;
    line-height: 1.2;
    padding: 8px; }
    @media (min-width: 744px) {
      .p-drus-first__form-name {
        font-size: 14px;
        padding: 16px; } }
  .p-drus-first__form {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background-color: #fff;
    border-radius: 0 2px 2px;
    width: 100%; }
    @media (min-width: 1112px) {
      .p-drus-first__form {
        padding-right: 16px; } }

.p-item-video {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.p-item-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
video::-internal-media-controls-download-button {
display:none;
}

video::-webkit-media-controls-enclosure {
overflow:hidden;
}

video::-webkit-media-controls-panel {
width: calc(100% + 30px); /* Adjust as needed */
}

	  .l-drus-header__logo2 {
    width: 600px;
    display: inline-block; }