@charset "UTF-8";
.header-nav {
  padding-bottom: 0; }
  .header-nav > ul {
    /*-- 2й уровень --*/ }
    .header-nav > ul > li {
      padding-bottom: 15px; }
      .header-nav > ul > li.dropdown > a {
        background: url(../img/arrow-bottom.svg) no-repeat 92% 50%;
        background-size: 15px;
        padding-right: 30px; }
    .header-nav > ul > .dropdown ul {
      display: none; }
    .header-nav > ul > .dropdown > ul {
      min-height: 600px;
      position: absolute;
      background: linear-gradient(180deg, rgba(39, 45, 52, 0.98) 0%, #22272d 100%);
      padding: 15px 15px 20px;
      top: 100%;
      left: 0;
      right: 0;
      border-radius: 0 0 15px 15px;
      overflow: auto;
      visibility: hidden;
      opacity: 0;
      transform: translateY(-10px);
      transition: all .2s ease;
      display: block; }
      .header-nav > ul > .dropdown > ul::-webkit-scrollbar {
        width: 10px; }
      .header-nav > ul > .dropdown > ul::-webkit-scrollbar-track {
        background: #ccc; }
      .header-nav > ul > .dropdown > ul::-webkit-scrollbar-thumb {
        background-color: #0cbb65;
        border: 3px solid #0cbb65; }
      .header-nav > ul > .dropdown > ul a, .header-nav > ul > .dropdown > ul span {
        color: #fff; }
      .header-nav > ul > .dropdown > ul > li {
        max-width: 260px;
        /*-- 3й уровень --*/ }
        .header-nav > ul > .dropdown > ul > li > span {
          padding: 10px 20px;
          border-radius: 20px;
          display: inline-block;
          margin-bottom: 10px;
          max-width: 260px;
          width: 100%;
          background: #0cbb65 url(../img/next.svg) no-repeat 92% 50%;
          background-size: 15px;
          cursor: pointer; }
          .header-nav > ul > .dropdown > ul > li > span:hover {
            opacity: .7; }
        .header-nav > ul > .dropdown > ul > li:last-child > span {
          margin-bottom: 0; }
        .header-nav > ul > .dropdown > ul > li.dropdown a::before {
          background: linear-gradient(90deg, #2ec96c 0%, #2EC96C 53.92%, rgba(23, 99, 53, 0) 100%); }
        .header-nav > ul > .dropdown > ul > li.dropdown:hover ul, .header-nav > ul > .dropdown > ul > li.dropdown.active ul {
          display: flex; }
        .header-nav > ul > .dropdown > ul > li.dropdown:hover span, .header-nav > ul > .dropdown > ul > li.dropdown.active span {
          opacity: .7; }
        .header-nav > ul > .dropdown > ul > li.dropdown.large-menu > ul {
          height: 400px; }
        .header-nav > ul > .dropdown > ul > li.dropdown > ul {
          position: absolute;
          top: 0;
          left: 270px;
          flex-direction: column;
          flex-wrap: wrap;
          align-items: baseline;
          justify-content: flex-start;
          gap: 15px;
          width: calc(100% - 270px);
          height: 100%;
          padding: 25px 40px; }
          .header-nav > ul > .dropdown > ul > li.dropdown > ul > li {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 19%; }
            .header-nav > ul > .dropdown > ul > li.dropdown > ul > li > a {
              text-transform: none;
              font-size: 16px;
              font-weight: 500;
              line-height: 1.2; }
              .header-nav > ul > .dropdown > ul > li.dropdown > ul > li > a:hover {
                opacity: .8; }
            .header-nav > ul > .dropdown > ul > li.dropdown > ul > li > ul {
              display: flex;
              flex-direction: column;
              gap: 5px;
              align-items: baseline; }
              .header-nav > ul > .dropdown > ul > li.dropdown > ul > li > ul > li > a {
                color: #ccc;
                font-size: 14px;
                text-transform: none;
                font-weight: 300; }
                .header-nav > ul > .dropdown > ul > li.dropdown > ul > li > ul > li > a:hover {
                  opacity: .8; }
    .header-nav > ul > .dropdown:hover > ul {
      visibility: visible;
      transform: translateY(0);
      opacity: 1; }

.timeline {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  max-width: 75%;
  margin: 90px auto 0; }
  @media only screen and (max-width: 767px) {
    .timeline {
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin: 25px auto 0; } }
  .timeline:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #0CBB65;
    position: absolute;
    top: 50%;
    left: 0; }
    @media only screen and (max-width: 767px) {
      .timeline:after {
        display: none; } }
  .timeline li {
    list-style-type: none;
    position: relative;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .timeline li {
        width: 100%; } }
    .timeline li::after {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #0cbb65;
      border: 2px solid #0cbb65;
      transition: background-color .2s ease; }
      @media only screen and (max-width: 767px) {
        .timeline li::after {
          margin: 8px auto; } }
    .timeline li span {
      position: absolute;
      bottom: calc(100% + 20px);
      left: 50%;
      transform: translate(-50%, 0);
      display: flex;
      align-items: center;
      text-align: center;
      width: max-content;
      font-size: 14px; }
      @media only screen and (max-width: 767px) {
        .timeline li span {
          position: relative; } }

.gallery-works-content {
  overflow: hidden; }
  .gallery-works-content .swiper-button-next,
  .gallery-works-content .swiper-button-prev {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    border-radius: 24px;
    height: 70px;
    width: 70px;
    transition: ease-in-out 0.2s; }
    .gallery-works-content .swiper-button-next::after,
    .gallery-works-content .swiper-button-prev::after {
      display: none; }
    @media only screen and (max-width: 767px) {
      .gallery-works-content .swiper-button-next,
      .gallery-works-content .swiper-button-prev {
        display: none; } }
  .gallery-works-content .swiper-button-next {
    right: 0;
    background: #0CBB65 url("../img/icons/right-arrow-white.svg") 50% no-repeat;
    background-size: 28px; }
  .gallery-works-content .swiper-button-prev {
    left: initial;
    right: 100px;
    background: #0CBB65 url("../img/icons/left-arrow-white.svg") 50% no-repeat;
    background-size: 28px; }
  .gallery-works-content .swiper-pagination {
    bottom: -30px; }

.about-hero {
  padding: 100px 0 120px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover; }
  @media only screen and (max-width: 767px) {
    .about-hero {
      padding: 50px 0; } }
  .about-hero::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .about-hero .title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px; }
  .about-hero .description {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 50px;
    color: #fff; }
  .about-hero .elements {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; }
    @media only screen and (max-width: 767px) {
      .about-hero .elements {
        gap: 30px; } }
    .about-hero .elements .element_item .element__title {
      font-weight: 700;
      font-size: 64px;
      margin-bottom: 20px;
      color: #0CBB65; }
      @media only screen and (max-width: 767px) {
        .about-hero .elements .element_item .element__title {
          font-size: 40px;
          margin-bottom: 0; } }
    .about-hero .elements .element_item .element__desc {
      font-weight: 600;
      font-size: 20px;
      color: #fff; }

.block-content__2x {
  margin: 60px 0; }
  @media only screen and (max-width: 767px) {
    .block-content__2x {
      margin: 30px 0; } }
  .block-content__2x .block-content__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .block-content__2x .block-content__items .block-content__item {
      width: calc(100% / 2 - 15px);
      margin: 0 0 30px;
      background: #E0E6EB;
      padding: 30px 40px; }
      @media only screen and (max-width: 767px) {
        .block-content__2x .block-content__items .block-content__item {
          width: 100%; } }
      .block-content__2x .block-content__items .block-content__item .item__title {
        font-weight: 600;
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          .block-content__2x .block-content__items .block-content__item .item__title {
            font-size: 24px; } }
      .block-content__2x .block-content__items .block-content__item .item__desc {
        font-weight: 400;
        line-height: 24px; }

.content-block-3x {
  padding: 70px 0;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    .content-block-3x {
      padding: 30px 0; } }
  .content-block-3x h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600; }
    @media only screen and (max-width: 767px) {
      .content-block-3x h2 {
        font-size: 28px; } }
  .content-block-3x .content-block-3x__items {
    display: flex;
    flex-wrap: wrap; }
    .content-block-3x .content-block-3x__items .content-block-3x__item {
      width: calc(100% / 3 - 20px);
      margin: 0 10px 20px;
      border: 1px solid #CDCDCD;
      padding: 20px 15px;
      box-sizing: border-box;
      border-radius: 4px; }
      @media only screen and (max-width: 767px) {
        .content-block-3x .content-block-3x__items .content-block-3x__item {
          width: 100%; } }
      .content-block-3x .content-block-3x__items .content-block-3x__item .item-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px; }
      .content-block-3x .content-block-3x__items .content-block-3x__item .item-text {
        color: #888; }
        .content-block-3x .content-block-3x__items .content-block-3x__item .item-text a {
          color: #0CBB65;
          font-size: 18px;
          font-weight: 600;
          text-decoration: underline; }
          .content-block-3x .content-block-3x__items .content-block-3x__item .item-text a:hover {
            text-decoration: none; }

.webform-submission-counsultation-form-form {
  position: relative;
  z-index: 9; }



.node__content .links ul {display:none;}
/*# sourceMappingURL=sass.css.map */
