/*=========== GOOGLE FONTS ============*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
/**/
@-webkit-keyframes mainSubmenu {
  from {
    opacity: 0;
    top: 80%;
  }
  to {
    opacity: 1;
    top: 100%;
  }
}
@keyframes mainSubmenu {
  from {
    opacity: 0;
    top: 80%;
  }
  to {
    opacity: 1;
    top: 100%;
  }
}
/*Services accordeon*/
@-webkit-keyframes imgAccActive {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes imgAccActive {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes imgAccNotactive {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
@keyframes imgAccNotactive {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
@-webkit-keyframes navBlocksActive {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes navBlocksActive {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*========== CSS VARIABLES ===========*/
:root {
  --font: Roboto, sans-serif;
  --f-light: 300;
  --f-normal: 400;
  --f-medium: 500;
  --f-bold: 600;
  --f-14: 14px;
  --f-18: 18px;
  /*---- Colors text -----*/
  --hue-t: 216;
  --sat-t: 40%;
  --text-color: hsl(var(--hue-t), var(--sat-t), 15%);
  --title-color: hsl(var(--hue-t), var(--sat-t), 17%);
  --text-second-color: hsl(var(--hue-t), 35%, 22%);
  --text-light: hsl(var(--hue-t), 57%, 24%);
  --text-light-second: hsl(var(--hue-t), 15%, 44%);
  --text-placeholder: hsl(var(--hue-t), 30%, 59%);
  --text-blue-light: #9ea9be;
  --text-green: #1b735c;
  --text-white: #fff;
  --text-dark-green: #075258;
  --text-gray: #515864;
  /*-----Colors -----*/
  --green: #00a651;
  --green-hover: #049459;
  --green-second: #1b735c;
  --gray: #797e86;
  --yellow: #f29f05;
  --border-gray: #c1c8d8;
  --border-green-second: #1b735c;
  --border-error: #fc5367;
  --bg-white: #fff;
  --bg-braun: #f4f2eb;
  --bg-light-green: #eef7f4;
  --bg-light-gray: #f8f9fb;
  --bg-dark: #2b3858;
  --bg-dark-mobile: #2b3858e6;
  --bg-dark-green: #075258;
  /*-----Size-----*/
  --header-h: 70px;
  --header-h-mob: 60px;
  --z-main: 1000;
}

*, ::after, ::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
  font-family: var(--font);
  font-weight: var(--f-normal);
  font-size: var(--f-14);
  padding-top: var(--header-h);
}

h1, h2, h3 {
  font-weight: var(--f-bold);
  color: var(--title-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body.over {
  overflow: hidden;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
}

.main {
  width: 100%;
}

.page {
  width: 100%;
}

.mr__r-32 {
  margin-right: 32px;
}
.mr__b-20 {
  margin-bottom: 20px;
}
.mr__b-mob24 {
  margin-bottom: 24px;
}
@media screen and (min-width: 576px) {
  .mr__b-mob24 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .mr__b-mob24 {
    margin-bottom: 0px;
  }
}

.section {
  width: 100%;
  padding: 60px 0;
}
.section__title {
  width: 100%;
  color: var(--title-color);
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section__title {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title {
    padding: 0;
  }
}
.section__title-sub h2 {
  margin-bottom: 24px;
}
.section__title h1 {
  font-size: 48px;
}
.section__title h2 {
  font-size: 36px;
}
@media screen and (min-width: 576px) {
  .section__title h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  .section__title h2 {
    font-size: 44px;
  }
}
.section__title span {
  font-size: 32px;
  font-weight: var(--f-medium);
}
.section__title-green {
  color: var(--green-second);
}
.section__title-center {
  text-align: center;
  margin-bottom: 60px;
}
.section__title-duble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.section__title-duble-30 {
  width: 100%;
}
.section__title-duble-30 .title-r {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .section__title-duble-30 .title-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.section__title-duble-30 .title-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section__title-duble-30 .title-l {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 70%;
    text-align: left;
  }
}
.section__title-count {
  font-size: 16px;
  color: var(--text-light);
  opacity: 0.7;
}
.section__title-count a {
  color: var(--text-green);
}
.section__title-count a:focus, .section__title-count a:active {
  color: var(--text-green);
}
.section__title-count a:hover {
  color: var(--text-dark-green);
}
.section__subtitle {
  font-size: 18px;
}

.bg_braun {
  background-color: var(--bg-braun);
}
.bg_light_green {
  background-color: var(--bg-light-green);
}
.bg_light_green .section__title h2 {
  color: var(--text-light);
}
.bg_dark {
  background-color: var(--bg-dark);
}
.bg_white {
  background-color: var(--bg-white);
}
.bg_form_page {
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("../assets/img/pic2.png");
}
@media screen and (min-width: 576px) {
  .bg_form_page {
    background-position: 50% 36%;
  }
}
@media screen and (min-width: 768px) {
  .bg_form_page {
    padding-bottom: 160px;
    background-position: calc(50% - 220px) 150%;
  }
}
@media screen and (min-width: 992px) {
  .bg_form_page {
    background-position: calc(50% - 440px) 100%;
  }
}

.tabs {
  width: 100%;
}
.tabs__nav {
  width: 100%;
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
  padding-left: 24px;
}
@media screen and (min-width: 768px) {
  .tabs__nav {
    padding-left: 0;
  }
}
.tabs__nav-item {
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: var(--f-medium);
  cursor: pointer;
  position: relative;
  color: var(--text-light-second);
  white-space: nowrap;
}
.tabs__nav-item.active {
  color: var(--text-dark-green);
}
.tabs__nav-item.active::after {
  opacity: 1;
}
.tabs__nav-item:not(:last-child) {
  padding-right: 24px;
}
.tabs__nav-item:not(:first-child) {
  padding-left: 24px;
}
.tabs__nav-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--text-green);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.tabs__nav-item:hover::after {
  opacity: 1;
}
.tabs__items {
  width: 100%;
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .tabs__items {
    padding: 0;
  }
}
.tabs__item {
  display: none;
}
.tabs__item.active {
  display: block;
}

.article__text {
  width: 100%;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: var(--f-light);
  color: var(--text-second-color);
}
.article__text p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  margin-bottom: 24px;
}
.article__text p a {
  color: var(--text-green);
  text-decoration: underline;
}
.article__text p a:hover {
  color: var(--text-dark-green);
}
.article__text .text__i {
  font-style: italic;
}
.article__text-list {
  margin: 24px 0 0px;
}
.article__text-list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}
.article__text-list li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--text-green);
}
.article__text-img {
  width: 100%;
  max-height: 370px;
  margin-bottom: 32px;
  overflow: hidden;
}
.article__text-img img {
  width: 100%;
}

/*========== HEDER ========*/
header {
  height: var(--header-h-mob);
  background-color: var(--bg-white);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: var(--z-main);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media screen and (min-width: 576px) {
  header {
    height: var(--header-h);
  }
}
header.h__shadow {
  -webkit-box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
          box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}
header .header__l {
  height: 100%;
  width: auto;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  header .header__l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  header .header__l {
    padding-left: 0;
  }
}
header .header__r {
  height: 100%;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  header .header__r {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  header .header__r {
    padding-right: 0;
  }
}
header .header__r .geo__header-label {
  display: none;
}
@media screen and (min-width: 768px) {
  header .header__r .geo__header-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .header__mobile {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .header__mobile {
    display: none;
  }
}
header .header__mobile-top {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--bg-white);
  z-index: 100;
}
header .header__mobile-btn {
  border: none;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
}
header .header__mobile-btn-menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header__mobile-btn-menu.active span:nth-child(1) {
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  opacity: 0;
}
header .header__mobile-btn-menu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .header__mobile-btn-menu.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
header .header__mobile-btn-login {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../assets/img/ico/logingray.svg");
}
header .header__mobile-btn-butter {
  width: 24px;
  height: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header__mobile-btn-butter span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gray);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
header .header__mobile-logo {
  max-width: 100px;
  height: auto;
}
header .header__mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: var(--header-h-mob);
  display: none;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  z-index: 50;
}
header .header__mobile-menu.active {
  display: block;
}
header .header__mobile-menu-block {
  background-color: var(--bg-white);
  position: relative;
  z-index: 10;
  padding: 0px 20px 48px;
}
header .header__mobile-menu-van {
  width: 100%;
}
header .header__mobile-menu-footer {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
}
header .header__mobile-menu-footer .btn__clear {
  font-size: 18px;
  color: var(--green-second);
}
header .header__mobile-menu-bg {
  background-color: rgba(80, 80, 80, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: var(--header-h-mob);
  left: 0;
  z-index: 0;
  backdrop-filter: blur(10px);
}
header .header__mobile-search {
  width: 50%;
}
header .header__logo a {
  display: block;
  height: 36px;
  width: 88px;
}
@media screen and (min-width: 992px) {
  header .header__logo a {
    width: 88px;
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  header .header__logo a {
    width: auto;
  }
}
header .header__logo img {
  height: 100%;
  width: auto;
}
header .header__nav {
  padding-left: 20px;
  min-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 992px) {
  header .header__nav {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  header .header__nav {
    padding-left: 48px;
  }
}
header .header__nav-menu {
  width: 100%;
  height: 100%;
}
header .header__nav-menu-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4px;
}
header .header__nav-menu-item {
  height: 100%;
  margin: 0 16px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: var(--f-medium);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
@media screen and (min-width: 1200px) {
  header .header__nav-menu-item {
    margin: 0 24px;
  }
}
header .header__nav-menu-item.active .header__submenu {
  -webkit-animation-name: mainSubmenu;
          animation-name: mainSubmenu;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__nav-menu-item:hover .header__submenu {
  display: block;
  -webkit-animation-name: mainSubmenu;
          animation-name: mainSubmenu;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__nav-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: var(--text-color);
}
header .header__nav-menu-link:hover {
  color: var(--text-dark-green);
}
header .header__nav-menu span {
  display: block;
  position: relative;
  padding-right: 20px;
}
header .header__nav-menu span::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  right: 0px;
  top: calc(50% - 6px);
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../assets/img/ico/arrow.svg");
}
header .header__nav-menu-empty span::after {
  display: none;
}
header .header__submenu {
  position: absolute;
  background-color: var(--bg-white);
  padding: 40px 18px 40px;
  border-radius: 4px;
  top: 90%;
  left: 0px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
          box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
}
header .header__submenu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: var(--border-green-second);
}
header .header__submenu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header__submenu-colum {
  padding: 0 20px;
}
header .header__submenu-colum li {
  white-space: nowrap;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}
header .header__submenu-colum-title {
  margin-bottom: 28px;
  color: var(--text-light-second);
  text-transform: uppercase;
  font-size: 14px;
}
header .header__submenu-colum-link {
  margin-bottom: 16px;
}
header .header__submenu-colum-link a {
  color: var(--text-color);
}
header .header__submenu-colum-link a:hover {
  color: var(--text-dark-green);
}
header .header__submenu-colum-all {
  margin-top: 28px;
  font-weight: var(--f-normal);
}
header .header__submenu-colum-all a {
  color: var(--text-dark-green);
}
header .header__submenu-colum-all a:hover {
  color: var(--text-green);
}

.footer {
  background-color: var(--bg-dark-green);
  color: var(--text-white);
  padding: 72px 20px 60px;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 200px;
    padding: 72px 0 0;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 18px;
    font-weight: var(--f-normal);
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__content {
    padding: 0;
  }
}
.footer__content-rcolum {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer__content-rcolum {
    margin-bottom: 0;
  }
}
.footer__content-rcolum a {
  color: var(--text-white);
  display: block;
  margin-bottom: 4px;
  text-decoration: underline;
}

.geo__header {
  padding: 0 20px;
  color: var(--text-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}
@media screen and (min-width: 768px) {
  .geo__header {
    position: relative;
    top: auto;
    left: auto;
    padding: 0 48px;
  }
}
.geo__header:hover {
  color: var(--text-dark-green);
}
.geo__header:hover svg path {
  fill: var(--text-dark-green);
}
.geo__header-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: var(--f-medium);
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.geo__header-label-mobile {
  font-size: 18px;
}
.geo__header-ico {
  margin-right: 4px;
}
.geo__header-ico svg {
  width: 28px;
  height: auto;
}
.geo__header-ico svg path {
  fill: var(--text-color);
}
.geo__header-accet {
  position: absolute;
  top: 72px;
  left: 0;
  width: 300px;
  display: none;
}
.geo__header-accet.active {
  display: block;
}
@media screen and (min-width: 768px) {
  .geo__header-accet {
    top: 40px;
  }
}
.geo__accet {
  background-color: var(--bg-white);
  padding: 24px;
  -webkit-box-shadow: 0px 2px 12px 0px rgba(26, 40, 61, 0.25);
          box-shadow: 0px 2px 12px 0px rgba(26, 40, 61, 0.25);
  border-radius: 4px;
  border-top: 3px solid var(--border-green-second);
}
.geo__accet-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.geo__accet-city {
  font-size: 18px;
  margin-bottom: 24px;
}
.geo__accet-city span {
  font-weight: var(--f-medium);
}
.geo__accet-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.geo__accet-btn {
  height: 40px;
  width: 46%;
  background-color: var(--green-second);
  border: 2px solid var(--green-second);
  color: var(--text-white);
  font-size: 15px;
}
.geo__accet-btn:hover {
  background-color: var(--green-hover);
  border: 2px solid var(--green-hover);
}
.geo__accet-btn-l {
  background-color: var(--bg-white);
  color: var(--green-second);
}
.geo__accet-btn-l:hover {
  border: 2px solid var(--green-hover);
  color: var(--green-hover);
  background-color: var(--bg-white);
}

/*-----SEARCH-----*/
.search__header {
  min-width: 80px;
  height: 40px;
  display: none;
}
@media screen and (min-width: 768px) {
  .search__header {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .search__header {
    min-width: 260px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .search__header {
    min-width: 400px;
    width: 400px;
  }
}
.search__header-form {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}
@media screen and (min-width: 768px) {
  .search__header-form {
    display: block;
  }
}
.search__header-form_mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .search__header-form_mobile {
    display: none;
  }
}
.search__header-input {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid var(--border-gray);
  outline: none;
  padding: 0 46px 0 16px;
  color: var(--text-color);
  font-weight: var(--f-medium);
  font-family: var(--font);
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search__header-input::-webkit-input-placeholder {
  color: var(--text-placeholder);
}
.search__header-input::-moz-placeholder {
  color: var(--text-placeholder);
}
.search__header-input:-ms-input-placeholder {
  color: var(--text-placeholder);
}
.search__header-input::-ms-input-placeholder {
  color: var(--text-placeholder);
}
.search__header-input::placeholder {
  color: var(--text-placeholder);
}
.search__header-input:focus, .search__header-input :active {
  border-color: var(--border-green-second);
}
.search__header-btn {
  width: 36px;
  height: 36px;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 4px;
  right: 8px;
}
.search__header-btn svg {
  width: 80%;
  height: auto;
}
.search__header-btn svg path {
  fill: var(--text-placeholder);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search__header-btn:hover svg path {
  fill: var(--border-green-second);
}
.search__section {
  height: 48px;
  margin: 0 24px;
  position: relative;
  width: 100%;
}
.search__section-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media screen and (min-width: 768px) {
  .search__section-wrap {
    width: 160px;
  }
}
.search__section-wrap.select {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search__section-wrap.select {
    width: 340px;
  }
}
@media screen and (min-width: 992px) {
  .search__section-wrap.select {
    width: 400px;
  }
}
.search__section form {
  position: relative;
  width: 100%;
}
.search__section form input {
  width: 100%;
  height: 48px;
  outline: none;
  border-radius: 24px;
  border: 1px solid var(--border-green-second);
  font-size: 16px;
  padding: 0 48px 0 16px;
}
.search__section form input.select {
  border: 1px solid var(--border-gray);
}
.search__section form input::-webkit-input-placeholder {
  font-weight: var(--f-medium);
  color: var(--text-placeholder);
}
.search__section form input::-moz-placeholder {
  font-weight: var(--f-medium);
  color: var(--text-placeholder);
}
.search__section form input:-ms-input-placeholder {
  font-weight: var(--f-medium);
  color: var(--text-placeholder);
}
.search__section form input::-ms-input-placeholder {
  font-weight: var(--f-medium);
  color: var(--text-placeholder);
}
.search__section form input::placeholder {
  font-weight: var(--f-medium);
  color: var(--text-placeholder);
}
.search__section form button[type=submit] {
  width: 36px;
  height: 36px;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 8px;
  right: 8px;
}
.search__section form button[type=submit] svg {
  width: 80%;
  height: auto;
}
.search__section form button[type=submit] svg path {
  fill: var(--text-placeholder);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search__section form button[type=submit]:hover svg path {
  fill: var(--border-green-second);
}
.search__section-mobile_h {
  margin: 0;
}
.search__section-mobile_h .search__section-wrap.select {
  width: 200%;
}

.rayting__bottom {
  margin-bottom: 44px;
  margin-top: 24px;
}
.rayting__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .rayting__nav {
    padding: 0 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .rayting__nav {
    padding: 0;
  }
}
.rayting__list {
  margin-bottom: 24px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .rayting__list {
    padding: 0 20px;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .rayting__list {
    padding: 0;
  }
}
.rayting__list-row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .rayting__list-row {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .rayting__list-row {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.rayting__card {
  border: 2px solid var(--border-gray);
  border-radius: 4px;
  min-width: 100%;
  position: relative;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .rayting__card {
    min-width: 240px;
  }
}
@media screen and (min-width: 992px) {
  .rayting__card {
    min-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .rayting__card {
    min-width: 360px;
  }
}
.rayting__card-preview {
  width: 100%;
  height: 200px;
}
.rayting__card-preview-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.rayting__card-info {
  padding: 20px 32px;
}
@media screen and (min-width: 768px) {
  .rayting__card-info {
    padding: 16px 12px;
  }
}
@media screen and (min-width: 992px) {
  .rayting__card-info {
    padding: 20px 32px;
  }
}
.rayting__card-info-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px) {
  .rayting__card-info-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 992px) {
  .rayting__card-info-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.rayting__card-info-logo {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-gray);
  border-radius: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .rayting__card-info-logo {
    margin: 0 auto 24px;
  }
}
@media screen and (min-width: 992px) {
  .rayting__card-info-logo {
    margin: 0;
  }
}
.rayting__card-info-name {
  width: calc(100% - 56px);
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .rayting__card-info-name {
    padding: 0;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .rayting__card-info-name {
    width: calc(100% - 56px);
    padding-left: 20px;
  }
}
.rayting__card-info-name h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: var(--f-medium);
}
.rayting__card-info-rayting {
  margin: 8px 0;
  color: var(--yellow);
  font-size: 16px;
  font-weight: var(--f-medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rayting__card-info-rayting ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 8px;
}
.rayting__card-info-rayting ul li {
  display: block;
  margin: 0 2px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../assets/img/ico/star.svg");
}
.rayting__card-info-rayting ul li.not-active {
  opacity: 0.3;
}
.rayting__card-info-description {
  margin: 8px 0;
  font-size: 16px;
  color: var(--text-light-second);
}
.rayting__card-info-description p {
  text-indent: 16px;
  line-height: 1.3;
}
.rayting__card-info-adress {
  color: var(--text-light-second);
  font-size: 14px;
  position: relative;
  margin-top: 24px;
  font-weight: var(--f-normal);
  padding-left: 28px;
  margin-bottom: 20px;
}
.rayting__card-info-adress p {
  opacity: 0.8;
  line-height: 1.4;
}
.rayting__card-info-adress::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 16px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../assets/img/ico/city3.svg");
  background-size: cover;
}
.rayting__card-link {
  padding: 20px 32px 36px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.rayting__card-link a {
  display: block;
  position: relative;
  padding-left: 24px;
  color: var(--text-green);
  font-size: 16px;
  font-weight: var(--f-medium);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rayting__card-link a:hover, .rayting__card-link a:focus, .rayting__card-link a:active {
  color: var(--text-dark-green);
}
.rayting__card-link a:hover::before, .rayting__card-link a:focus::before, .rayting__card-link a:active::before {
  left: 4px;
}
.rayting__card-link a::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../assets/img/ico/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rayting__pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}

.nav__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 576px) {
  .nav__section {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (min-width: 768px) {
  .nav__section {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
  }
}
.nav__section-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .nav__section-item {
    margin-right: 32px;
  }
}
.nav__section-item-title {
  font-size: 18px;
  font-weight: var(--f-medium);
  color: var(--text-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .nav__section-item-title {
    font-size: 20px;
  }
}
.nav__section-item-arrow {
  display: block;
  width: 32px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-image: url("../assets/img/ico/arrow.svg");
}
.nav__section-item-list {
  display: none;
  position: absolute;
  left: 12px;
  top: calc(100% + 8px);
  background-color: var(--bg-white);
  z-index: 100;
  padding: 20px 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
          box-shadow: 0px 5px 8px 0px rgba(26, 40, 61, 0.15);
  border-top: 2px solid var(--border-green-second);
  min-width: 160px;
}
.nav__section-item-list.active {
  display: block;
  -webkit-animation: 300ms ease forwards navBlocksActive;
          animation: 300ms ease forwards navBlocksActive;
}
.nav__section-item-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.nav__section-item-list ul li {
  width: 100%;
}
.nav__section-item-list ul li a {
  display: block;
  padding: 8px 24px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: var(--f-medium);
  white-space: nowrap;
  cursor: pointer;
}
.nav__section-item-list ul li a:hover {
  background-color: var(--bg-light-green);
}
.nav__section-item.active .nav__section-item-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__section-item.active .nav__section-item-list {
  display: block;
  -webkit-animation: 300ms ease forwards navBlocksActive;
          animation: 300ms ease forwards navBlocksActive;
}
.nav__expand {
  width: 100%;
  font-size: 18px;
  font-weight: var(--f-medium);
}
.nav__expand-section {
  padding: 0px 20px;
  border-bottom: 1px solid var(--border-gray);
}
.nav__expand-section a {
  color: var(--text-color);
  text-decoration: none;
}
.nav__expand-section-title {
  display: block;
  width: 100%;
  padding: 20px 0 24px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}
.nav__expand-section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: var(--green-second) transparent transparent transparent;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
}
.nav__expand-section-empty::after {
  display: none;
}
.nav__expand-section.select .nav__expand-section-block {
  display: block;
}
.nav__expand-section.select .nav__expand-section-title {
  color: var(--green-second);
}
.nav__expand-section.select .nav__expand-section-title::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__expand-section-block {
  display: none;
}
.nav__expand-list {
  padding-bottom: 28px;
}
.nav__expand-list-all {
  margin-top: 12px;
}
.nav__expand-list-all a {
  font-size: 16px;
  color: var(--text-green);
}
.nav__expand-list-title {
  display: block;
  color: var(--gray);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--f-medium);
  margin-bottom: 20px;
}
.nav__expand-list > ul > li > a {
  color: var(--text-color);
  padding: 8px 0;
  display: block;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-width: 2px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: var(--f-medium);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.btn__clear {
  background: none;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.btn__base {
  font-size: 20px;
  white-space: nowrap;
  font-weight: var(--f-medium);
  height: 60px;
  border-radius: 4px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media screen and (min-width: 768px) {
  .btn__base-md {
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .btn__base-md {
    height: 60px;
    font-size: 20px;
  }
}
.btn__green {
  border: 2px solid var(--green);
  background-color: var(--green);
  color: var(--text-white);
}
.btn__green:hover {
  border: 2px solid var(--green-hover);
  background-color: var(--green-hover);
}
.btn__b-darkgreen {
  border: 2px solid var(--green-second);
  color: var(--green-second);
}
.btn__b-darkgreen:hover {
  background-color: var(--green-second);
  color: var(--text-white);
}
.btn__header {
  display: none;
  background-color: var(--green);
  border-color: var(--green);
  border-style: solid;
  height: 40px;
  width: 120px;
  color: var(--text-white);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .btn__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.btn__header::before {
  content: "";
  display: none;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../assets/img/ico/login.svg);
  margin-right: 4px;
}
@media screen and (min-width: 992px) {
  .btn__header::before {
    display: block;
  }
}
.btn__header:hover {
  background-color: var(--green-hover);
  border-color: var(--green-hover);
}
.btn__video {
  display: block;
  border: 2px solid var(--green);
  width: 56px;
  height: 56px;
  background-color: var(--green);
  border-radius: 28px;
  position: absolute;
  z-index: 50;
  bottom: 28px;
  left: 36px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.btn__video-w {
  background-color: rgba(255, 255, 255, 0.6392156863);
  border: 0px solid rgba(255, 255, 255, 0.6392156863);
  position: relative;
  bottom: auto;
  left: auto;
}
.btn__video::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  background-position: center;
  background-repeat: no-repeat;
}
.btn__video-start::after {
  background-image: url("../assets/img/ico/play.png");
  left: calc(50% - 9px);
}
.btn__video-start-w::after {
  background-image: url("../assets/img/ico/playg.png");
  left: calc(50% - 9px);
}
.btn__video:hover {
  border: 3px solid var(--yellow);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination__desk {
  display: none;
}
@media screen and (min-width: 768px) {
  .pagination__desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pagination__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .pagination__mobile {
    display: none;
  }
}
.pagination__num {
  height: 48px;
}
.pagination__num ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--border-gray);
  border-radius: 24px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.pagination__num ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 36px;
  height: 48px;
  font-size: 16px;
  font-weight: var(--f-medium);
  color: var(--text-light);
  cursor: pointer;
}
.pagination__num ul li.active {
  width: 48px;
  border-radius: 24px;
  border: 1px solid var(--green-second);
  background-color: var(--green-second);
  color: var(--text-white);
  cursor: default;
}
.pagination__num ul li:last-child {
  margin-right: 12px;
}
.pagination__total {
  font-size: 16px;
  color: var(--text-light-second);
  text-align: center;
}
.pagination__total span {
  font-weight: var(--f-medium);
  color: var(--text-green);
}
.pagination__slider {
  width: 100%;
  padding-top: 24px;
}
.pagination__slider ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}
.pagination__slider ul li {
  display: block;
  height: 8px;
  width: 20%;
  background-color: var(--border-gray);
  border-radius: 2px;
}
.pagination__slider ul li.active {
  background-color: var(--green);
}

@media screen and (min-width: 768px) {
  .video__block {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .video__block {
    padding: 0;
  }
}
.video__block-line {
  margin: 48px 0 0;
}
.video__block-tags {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 1200px) {
  .video__block-tags {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 992px) {
  .video__block-tags .tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .video__block-tags .tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.video__block-tags .video__list {
  padding: 0 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .video__block-tags .video__list {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
}
.video__list {
  display: grid;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 48px;
  grid-template-columns: 1fr 1fr 1fr;
}
.video__item-prv {
  height: 200px;
  widows: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.video__item-prv_img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
}
.video__item-prv_img img {
  height: auto;
  width: 100%;
}
.video__item-prv_fon {
  height: 100%;
  width: 80px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--bg-dark);
  z-index: 15;
}
.video__item-prv_fon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 80px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 90px 0 0;
  border-color: var(--bg-dark) transparent transparent transparent;
}
.video__item-text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .video__item-text {
    margin-top: 28px;
  }
}
.video__item-text_tags {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--f-normal);
  color: var(--text-light-second);
}
@media screen and (min-width: 768px) {
  .video__item-text_tags {
    font-size: 14px;
  }
}
.video__item-text_tags span {
  margin-right: 8px;
  margin-bottom: 8px;
}
.video__item-text_desc h4 {
  margin: 12px 0;
  font-size: 18px;
  font-weight: var(--f-medium);
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  .video__item-text_desc h4 {
    margin: 16px 0;
  }
}
.video__item-text_desc p {
  font-size: 14px;
  color: var(--text-light-second);
  line-height: 1.6;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px 24px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .tags {
    padding: 0;
  }
}
.tags__block {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tags__block {
    margin-bottom: 40px;
  }
}
.tags__block-title {
  font-size: 14px;
  font-weight: var(--f-bold);
  text-transform: uppercase;
  color: var(--text-light-second);
  margin-bottom: 24px;
}
.tags__block-list {
  width: 100%;
  min-height: 40px;
}
.tags__block-list ul, .tags__block-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .tags__block-list ul, .tags__block-list-wrap {
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tags__block-list ul li, .tags__block-list ul a, .tags__block-list-wrap li, .tags__block-list-wrap a {
  display: block;
  font-size: 16px;
  color: var(--text-light-second);
  padding: 10px 32px;
  margin-right: 16px;
  margin-bottom: 0px;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-white);
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  white-space: nowrap;
}
.tags__block-list ul li.t_item-gray, .tags__block-list ul a.t_item-gray, .tags__block-list-wrap li.t_item-gray, .tags__block-list-wrap a.t_item-gray {
  border: 1px solid var(--border-gray);
}
.tags__block-list ul li:hover, .tags__block-list ul a:hover, .tags__block-list-wrap li:hover, .tags__block-list-wrap a:hover {
  background-color: var(--bg-light-green);
  border: 1px solid var(--text-green);
  color: var(--text-dark-green);
}
@media screen and (min-width: 768px) {
  .tags__block-list ul li, .tags__block-list ul a, .tags__block-list-wrap li, .tags__block-list-wrap a {
    margin-bottom: 16px;
  }
}
.tags__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tags__btn-bottom {
  display: none;
}
@media screen and (min-width: 992px) {
  .tags__btn-bottom {
    display: block;
  }
}
.tags__btn-bottom .btn {
  font-size: 16px;
  border-radius: 10px;
}
.tags__btn-mobile {
  display: block;
  margin: 44px auto 8px;
}
@media screen and (min-width: 992px) {
  .tags__btn-mobile {
    display: none;
  }
}
.tags__btn-mobile .btn {
  font-size: 16px;
  border-radius: 10px;
}

.article__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .article__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .article__nav {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .article__nav {
    padding: 0;
  }
}
.article__pagination {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  display: none;
}
@media screen and (min-width: 768px) {
  .article__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.article__list {
  margin-bottom: 48px;
  padding: 0 20px;
}
@media screen and (min-width: 992px) {
  .article__list {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .article__list {
    padding: 0;
  }
}
.article__list-row {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 44px;
}
@media screen and (min-width: 768px) {
  .article__list-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.article__card {
  position: relative;
  padding-bottom: 24px;
  background: var(--bg-light-green);
  border-radius: 14px;
}
@media screen and (min-width: 768px) {
  .article__card {
    background: none;
  }
}
.article__card-preview {
  position: relative;
  z-index: 15;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article__card-preview img {
  width: 100%;
  height: auto;
}
.article__card-info {
  margin-top: 28px;
  padding: 0 16px 24px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .article__card-info {
    padding: 0;
  }
}
.article__card-info-tags {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--f-normal);
  color: var(--text-light-second);
}
@media screen and (min-width: 768px) {
  .article__card-info-tags {
    font-size: 14px;
  }
}
.article__card-info-tags span {
  margin-right: 8px;
  margin-bottom: 8px;
}
.article__card-info-title h4 {
  margin: 12px 0;
  font-size: 18px;
  font-weight: var(--f-medium);
  color: var(--text-color);
}
.article__card-info-description p {
  font-size: 14px;
  color: var(--text-light-second);
  line-height: 1.6;
}
.article__card::after {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -10px;
  border-radius: 16px;
  background-color: var(--bg-light-green);
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.article__card:hover::after {
  opacity: 1;
}
.article__bottom-mob {
  display: block;
}
@media screen and (min-width: 768px) {
  .article__bottom-mob {
    display: none;
  }
}
.article__bottom-count {
  font-size: 16px;
  color: var(--text-light-second);
  text-align: center;
  margin-bottom: 36px;
}
.article__bottom-count a {
  color: var(--text-green);
}
.article__bottom-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-bottom: 240px;
}
@media screen and (min-width: 768px) {
  .banner {
    display: block;
    padding-bottom: 0;
  }
}
.banner__img {
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0px;
  right: 0px;
  height: 240px;
  background-position: 50% -10%;
}
@media screen and (min-width: 768px) {
  .banner__img {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: auto;
    background-position: -30% 0%;
  }
}
@media screen and (min-width: 992px) {
  .banner__img {
    background-position: 0% 50%;
  }
}
.banner__dark {
  color: var(--text-white);
}
.banner__content {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .banner__content {
    width: 60%;
    padding: 0px 20px 60px;
  }
}
@media screen and (min-width: 992px) {
  .banner__content {
    width: 50%;
    padding: 0px 20px 50px;
  }
}
@media screen and (min-width: 1200px) {
  .banner__content {
    width: 40%;
    padding: 48px 0;
  }
}
.banner__content-title {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .banner__content-title {
    text-align: left;
  }
}
.banner__content-title h4 {
  font-weight: var(--f-medium);
  font-size: 32px;
  line-height: 1.6;
}
.banner__content-text {
  font-size: 16px;
  font-weight: var(--f-normal);
  line-height: 2;
  margin: 8px 0 32px;
}
.banner__content-text p {
  margin-bottom: 8px;
  line-height: 1.8;
}
.banner__content-link {
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .banner__content-link {
    margin: 0;
  }
}
.banner__content-link a {
  position: relative;
  color: var(--yellow);
  font-size: 18px;
  display: inline-block;
  padding-right: 24px;
}
.banner__content-link a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/assets/img/ico/arrow_yellow.svg);
}

.form__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .form__page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .form__page {
    padding: 0;
  }
}
.form__page-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .form__page-content {
    width: 50%;
  }
}
.form__page-content-text {
  max-width: 100%;
  padding-bottom: 180px;
}
@media screen and (min-width: 768px) {
  .form__page-content-text {
    max-width: 320px;
    margin-right: 80px;
    padding-bottom: 0;
  }
}
.form__page-content-text h3 {
  font-size: 44px;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .form__page-content-text h3 {
    margin-bottom: 56px;
  }
}
.form__page-content-text p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
}
.form__page-action {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__page-action {
    width: 50%;
  }
}
.form__page-action form {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .form__page-action form {
    max-width: 416px;
  }
}
.form__page-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__page-success_box {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  font-weight: var(--f-normal);
  width: 80%;
  height: auto;
  padding: 32px;
  color: var(--text-green);
  border: 2px solid var(--yellow);
  border-radius: 8px;
}
.form__field {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
.form__field label {
  display: none;
}
.form__field.error input, .form__field.error textarea {
  border: 2px solid var(--border-error);
}
.form__field.error input:focus, .form__field.error input:active, .form__field.error textarea:focus, .form__field.error textarea:active {
  border: 2px solid var(--border-error);
}
.form__field.error label {
  display: block;
  position: absolute;
  top: -4px;
  left: 20px;
  background-color: var(--bg-white);
  color: var(--border-error);
  padding: 0 4px;
}
.form__field input, .form__field textarea {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--border-gray);
  font-size: 18px;
  font-weight: var(--f-normal);
  font-family: var(--font);
  outline: none;
  background-color: var(--bg-light-gray);
}
.form__field input:focus, .form__field input:active, .form__field textarea:focus, .form__field textarea:active {
  border: 2px solid var(--border-green-second);
}
.form__field input::-webkit-input-placeholder, .form__field textarea::-webkit-input-placeholder {
  color: var(--text-placeholder);
}
.form__field input::-moz-placeholder, .form__field textarea::-moz-placeholder {
  color: var(--text-placeholder);
}
.form__field input:-ms-input-placeholder, .form__field textarea:-ms-input-placeholder {
  color: var(--text-placeholder);
}
.form__field input::-ms-input-placeholder, .form__field textarea::-ms-input-placeholder {
  color: var(--text-placeholder);
}
.form__field input::placeholder, .form__field textarea::placeholder {
  color: var(--text-placeholder);
}
.form__field input {
  height: 56px;
  padding: 0 24px;
}
.form__field textarea {
  padding: 16px 24px;
  height: 180px;
}
.form__field-select {
  width: 100%;
  height: 56px;
  position: relative;
  z-index: 10;
}
.form__field-select.open .option__list {
  display: block;
}
.form__field-select.open .option__selected {
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  border-color: var(--border-green-second);
}
.form__field-select.open .option__selected span {
  margin-top: -2px;
}
.form__field-select.open .option__selected::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.form__field .option__selected {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--border-gray);
  font-size: 18px;
  font-weight: var(--f-normal);
  font-family: var(--font);
  outline: none;
  background-color: var(--bg-light-gray);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 24px;
  color: var(--text-placeholder);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
.form__field .option__selected::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 40px;
  height: 100%;
  right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-image: url(../assets/img/ico/arrow.svg);
}
.form__field .option__selected span.active {
  color: var(--text-color);
}
.form__field .option__list {
  display: none;
  border: 2px solid var(--border-green-second);
  border-radius: 0 0 8px 8px;
  border-top: none;
  padding: 0 0 12px;
  background-color: var(--bg-light-gray);
}
.form__field .option__item {
  padding: 8px 24px;
  font-size: 16px;
  color: var(--text-color);
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.form__field .option__item:hover {
  color: var(--bg-dark-green);
  background-color: var(--bg-white);
}
.form__submit {
  width: 100%;
}
.form__submit .btn {
  width: 100%;
  font-weight: var(--f-medium);
}
.form__modale-success.modale {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__modale-success.modale::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark-mobile);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
}
.form__modale-success_box {
  z-index: 100;
  display: block;
  background-color: var(--bg-white);
  position: relative;
  border-radius: 10px;
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}
.form__modale-success_box span {
  font-size: 24px;
  font-weight: var(--f-bold);
  color: var(--title-color);
  line-height: 1.4;
  text-align: center;
  display: block;
}

.modale {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}
.modale.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: showModal 400ms ease forwards;
          animation: showModal 400ms ease forwards;
  overflow-y: auto;
  background-color: var(--bg-dark-mobile);
}
.modale__win {
  width: 520px;
  padding: 56px 56px;
  background-color: var(--bg-white);
  position: relative;
  z-index: 100;
  border-radius: 10px;
}
.modale__win-title {
  width: 100%;
  margin-bottom: 36px;
}
.modale__win-title h3, .modale__win-title h4 {
  font-size: 36px;
  font-weight: var(--f-bold);
  color: var(--title-color);
  line-height: 1.4;
  text-align: center;
}
.modale__win-subtitle {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}
.modale__win-close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 24px;
  top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.modale__win-close span {
  width: 100%;
  height: 2px;
  background-color: #687998;
  display: block;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modale__win-close span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.modale__win-close:hover span {
  background-color: var(--bg-dark-green);
}
.modale__win-close:hover span::after {
  background-color: var(--bg-dark-green);
}
.modale__city {
  width: 600px;
}
.modale__city-title {
  width: 100%;
  margin-bottom: 36px;
}
.modale__city-title h3, .modale__city-title h4 {
  font-size: 36px;
  font-weight: var(--f-bold);
  color: var(--title-color);
  line-height: 1.4;
  text-align: left;
}
.modale__city-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modale__city-colum {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modale__city-item {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-color);
  cursor: pointer;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}
.modale__city-item span {
  font-weight: var(--f-bold);
}
.modale__city-item:hover {
  color: var(--green-second);
}

.ico__box {
  width: 100%;
  height: 100%;
}
.ico__box-city {
  height: 100%;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/img/ico/city3.svg);
  background-size: cover;
}
.ico__box-phone {
  height: 100%;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/img/ico/phone.svg);
  background-size: cover;
}

/*========== D-SLIDER ========*/
.d-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.d-slider__box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.d-slider__box img {
  width: auto;
  height: 200px;
  max-width: none;
}
@media screen and (min-width: 576px) {
  .d-slider__box img {
    width: 100%;
    height: auto;
  }
}
.d-slider__nav {
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0px;
  background: rgba(23, 35, 54, 0);
  display: block;
  cursor: pointer;
  -webkit-transition: background 300ms ease;
  transition: background 300ms ease;
}
@media screen and (min-width: 576px) {
  .d-slider__nav {
    width: 160px;
  }
}
.d-slider__nav::after {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 78px;
  background-image: url(../assets/img/ico/arrow_slider.png);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;
  top: calc(50% - 40px);
  left: calc(50% - 18px);
}
@media screen and (min-width: 576px) {
  .d-slider__nav::after {
    width: 38px;
    height: 136px;
    top: calc(50% - 68px);
  }
}
.d-slider__nav:hover {
  background: rgba(23, 35, 54, 0.5);
}
.d-slider__nav-l {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.d-slider__nav-r {
  right: 0;
}
.d-slider__nav.slick-disabled {
  display: none !important;
}

/*========== D-GALLERY ========*/
.d-gallery {
  width: 100%;
  margin-bottom: 24px;
}
.d-gallery__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.d-gallery__list-m {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 576px) {
  .d-gallery__list-m {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .d-gallery__list-m {
    grid-template-columns: repeat(4, 1fr);
  }
}
.d-gallery__item {
  max-width: 100%;
  height: 280px;
  background-color: red;
  border-radius: 4px;
  background-color: var(--bg-white);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(26, 39, 50, 0.1);
          box-shadow: 0px 3px 12px 0px rgba(26, 39, 50, 0.1);
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.d-gallery__item:hover {
  -webkit-box-shadow: 0px 3px 12px 0px rgba(26, 39, 70, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(26, 39, 70, 0.16);
}
.d-gallery__item-m {
  height: 280px;
}
.d-gallery__item-block {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: var(--text-color);
}
.d-gallery__item-img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.d-gallery__item-img img {
  height: 100%;
  width: auto;
  max-width: none;
}
.d-gallery__item-img-m {
  height: 200px;
}
.d-gallery__item-title {
  padding: 20px 20px 0;
  font-size: 14px;
}
.d-gallery__item-title-m {
  font-size: 14px;
}

.textblock {
  padding: 40px 20px 120px;
}
.textblock__green {
  background-color: var(--bg-light-green);
}
.textblock__title {
  margin-bottom: 40px;
}
.textblock__title h2, .textblock__title h3 {
  font-size: 36px;
}
.textblock__content {
  font-size: 17px;
  color: var(--text-second-color);
  font-weight: var(--f-light);
  line-height: 1.3;
}
.textblock__content p {
  margin-bottom: 16px;
}
.textblock__content p .green {
  color: var(--green-second);
}
.textblock__content p .italic {
  font-style: italic;
}
.textblock__content p a {
  color: var(--green-second);
  text-decoration: underline;
}
.textblock__content .title__h3 {
  font-size: 24px;
  font-weight: var(--f-normal);
  color: var(--text-dark-green);
  margin-top: 36px;
  margin-bottom: 24px;
}

/*========== MAIN PAGE ========*/
.main__banner {
  height: auto;
  padding: 24px 20px 60px;
}
@media screen and (min-width: 768px) {
  .main__banner {
    height: auto;
    padding: 0px 20px 60px;
  }
}
@media screen and (min-width: 992px) {
  .main__banner {
    height: 600px;
    padding: 0px 20px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .main__banner {
    padding: 0px 0px 60px;
  }
}
.main__banner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .main__banner-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.main__banner-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .main__banner-text {
    width: 60%;
    padding-right: 36px;
  }
}
@media screen and (min-width: 992px) {
  .main__banner-text {
    width: 50%;
    padding-right: 48px;
  }
}
.main__banner-text-block h1 {
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main__banner-text-block h1 {
    font-size: 40px;
    line-height: 56px;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .main__banner-text-block h1 {
    font-size: 48px;
    line-height: 64px;
  }
}
.main__banner-text-p {
  font-size: var(--f-18);
  margin: 32px 0;
  line-height: 28px;
  color: var(--text-second-color);
  text-align: center;
}
@media screen and (min-width: 576px) {
  .main__banner-text-p {
    text-align: left;
  }
}
.main__banner-text-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .main__banner-text-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main__banner-img {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 180px;
}
@media screen and (min-width: 576px) {
  .main__banner-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .main__banner-img {
    width: 40%;
    height: auto;
    overflow: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .main__banner-img {
    width: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .main__banner-img {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.main__banner-img img {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .main__banner-img img {
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .main__banner-img img {
    max-height: 100%;
    width: auto;
  }
}
.main__banner-mobile-btn {
  display: block;
  background-color: var(--bg-white);
  padding-top: 24px;
  margin-top: -8px;
  border-radius: 10px;
}
@media screen and (min-width: 576px) {
  .main__banner-mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main__banner-mobile-btn .btn__base {
    margin: 0 8px;
    padding: 0 48px;
  }
}
@media screen and (min-width: 768px) {
  .main__banner-mobile-btn {
    display: none;
  }
}
.main__services {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .main__services {
    padding: 0;
  }
}
.main__services-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main__services-list {
    width: 360px;
  }
}
@media screen and (min-width: 992px) {
  .main__services-list {
    width: 416px;
  }
}
.main__services-listbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main__services-item {
  margin-bottom: 16px;
  background-color: var(--bg-white);
  border-radius: 4px;
  padding: 24px 16px 0px 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main__services-item:last-child {
  margin-bottom: 0;
}
.main__services-item-prv {
  font-size: 20px;
  font-weight: var(--f-medium);
  line-height: 30px;
  padding-right: 16px;
  padding-bottom: 24px;
  position: relative;
  cursor: pointer;
}
.main__services-item-toggle {
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: var(--green-second) transparent transparent transparent;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.main__services-item-text {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main__services-item-text p {
  display: block;
  padding-bottom: 32px;
}
.main__services-item-text p img {
  display: block;
}
@media screen and (min-width: 576px) {
  .main__services-item-text p img {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .main__services-item-text p img {
    display: none;
  }
}
.main__services-item.active, .main__services-item:hover {
  color: var(--text-white);
  background-color: var(--green-second);
}
.main__services-item.active .main__services-item-toggle, .main__services-item:hover .main__services-item-toggle {
  border-color: var(--bg-white) transparent transparent transparent;
}
.main__services-item.active .main__services-item-toggle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main__services-img {
  width: calc(100% - 360px);
  padding: 0 0px 0 80px;
  height: 100%;
  position: relative;
  display: none;
}
@media screen and (min-width: 768px) {
  .main__services-img {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .main__services-img {
    width: calc(100% - 416px);
  }
}
.main__services-img_box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.main__services-img_box.active {
  -webkit-animation: imgAccActive 400ms ease forwards;
          animation: imgAccActive 400ms ease forwards;
}
.main__services-img_box.not-active {
  -webkit-animation: imgAccNotactive 400ms ease forwards;
          animation: imgAccNotactive 400ms ease forwards;
}

/*========== ARTICLE PAGE ========*/
.article__bgsection {
  position: relative;
  padding-bottom: 0;
}
.article__bgsection::before {
  top: 0;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 600px;
  background-color: var(--bg-light-gray);
}
.article__page {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.article__page-top {
  margin-bottom: 48px;
}
.article__page-breadcrumbs {
  width: 100%;
}
.article__page-breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article__page-breadcrumbs ul li {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-blue-light);
  font-weight: var(--f-normal);
  position: relative;
}
@media screen and (min-width: 768px) {
  .article__page-breadcrumbs ul li {
    font-size: 14px;
  }
}
.article__page-breadcrumbs ul li:not(:last-child) {
  padding-right: 24px;
}
.article__page-breadcrumbs ul li:not(:last-child) a {
  color: var(--text-dark-green);
}
.article__page-breadcrumbs ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  right: 8px;
  top: calc(50% - 2px);
  border-radius: 50%;
  background-color: var(--text-blue-light);
}
.article__page-title {
  margin: 36px 0;
}
.article__page-title h1, .article__page-title h2 {
  font-size: 40px;
  font-weight: var(--f-light);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .article__page-title h1, .article__page-title h2 {
    font-size: 56px;
  }
}
.article__page-tags {
  width: 100%;
}
.article__page-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article__page-tags ul li {
  min-height: 40px;
  padding: 0 8px;
}
.article__page-tags ul li a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: var(--text-dark-green);
  padding: 10px 32px;
  background: none;
  border: 1px solid var(--border-gray);
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  white-space: nowrap;
}
.article__page-tags ul li a:hover {
  border: 1px solid var(--border-green-second);
}
.article__page-body {
  width: 100%;
}
.article__page-picture {
  width: 100%;
}
.article__page-picture img {
  width: 100%;
  height: auto;
}
.article__page-text {
  width: 100%;
  margin: 64px auto 0px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .article__page-text {
    width: 700px;
    padding: 0;
  }
}
.article__page-textblock {
  margin: 72px 0;
  width: 100%;
}
.article__page-textblock .title__h2, .article__page-textblock .title__h1 {
  font-size: 36px;
  font-weight: var(--f-light);
  color: var(--text-second-color);
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .article__page-textblock .title__h2, .article__page-textblock .title__h1 {
    font-size: 40px;
  }
}
.article__page-textblock .title__h3 {
  font-size: 24px;
  font-weight: var(--f-light);
  color: var(--text-dark-green);
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .article__page-textblock .title__h3 {
    font-size: 30px;
  }
}

/*========== VIDEO PAGE ========*/
.video__page {
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .video__page {
    padding: 0;
  }
}
.video__page-tags {
  margin-top: 56px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .video__page-tags {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .video__page-tags {
    padding: 0;
  }
}
.video__page-tags .tags {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .video__page-tags .tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.video__page-tags .tags__block {
  margin-bottom: 24px;
}
.video__page-wrap {
  width: 100%;
  margin-top: 44px;
  background-color: var(--bg-white);
  padding-bottom: 60px;
}
.video__page-wrap .video__item {
  padding-bottom: 72px;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video__page-wrap .video__item-text {
  position: relative;
  z-index: 20;
}
.video__page-wrap .video__item::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  background: none;
  border: 12px solid var(--bg-light-green);
  border-radius: 24px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 10;
}
.video__page-wrap .video__item:hover {
  background-color: var(--bg-light-green);
}
.video__page-wrap .video__item:hover::before {
  opacity: 1;
}
.video__page-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 64px;
  padding: 0 20px;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .video__page-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .video__page-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.video__page-list .video__item:first-child {
  display: block;
}
@media screen and (min-width: 992px) {
  .video__page-list .video__item:first-child {
    display: none;
  }
}
.video__page-list-top {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 64px;
  padding: 0 20px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .video__page-list-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .video__page-list-top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .video__page-list-top {
    padding: 0;
    padding-bottom: 32px;
  }
}
.video__page-list-top .video__item:last-child {
  display: none;
}
@media screen and (min-width: 992px) {
  .video__page-list-top .video__item:last-child {
    display: block;
  }
}
.video__page-list-top .video__item:hover {
  background-color: var(--bg-white);
}
.video__page-list-top .video__item::before {
  border: 16px solid var(--bg-white);
}
.video__page-bottom {
  margin: 48px 0 56px;
}
.video__detail-breadcrumbs {
  margin-bottom: 36px;
}
.video__detail-top-all {
  color: var(--green-second);
  font-weight: var(--f-medium);
  font-size: 18px;
  display: block;
  position: relative;
  padding-left: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video__detail-top-all span {
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video__detail-top-all span svg {
  stroke: var(--green-second);
}
.video__detail-top-all:hover {
  color: var(--green-hover);
}
.video__detail-top-all:hover span {
  left: -4px;
}
.video__detail-top-all:hover span svg polyline, .video__detail-top-all:hover span svg line {
  stroke: var(--green-hover);
}
.video__detail-title h1, .video__detail-title h2 {
  font-size: 48px;
  font-weight: var(--f-bold);
}
.video__detail-body {
  margin: 80px 0;
  width: 100%;
}
.video__detail-body-top {
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .video__detail-body-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.video__detail-body-prv {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .video__detail-body-prv {
    margin-bottom: 0;
    width: 600px;
    height: 340px;
  }
}
@media screen and (min-width: 1200px) {
  .video__detail-body-prv {
    width: 800px;
    height: 450px;
  }
}
.video__detail-body-anons {
  width: 100%;
  border-radius: 10px;
  padding: 24px 18px;
  font-size: 14px;
  color: var(--text-light-second);
  line-height: 1.6;
}
@media screen and (min-width: 992px) {
  .video__detail-body-anons {
    width: calc(100% - 624px);
  }
}
@media screen and (min-width: 1200px) {
  .video__detail-body-anons {
    width: calc(100% - 832px);
    padding: 44px 32px;
  }
}
.video__detail-body-anons span {
  color: var(--green-second);
  display: block;
  font-weight: var(--f-medium);
  margin-bottom: 24px;
}
@media screen and (min-width: 1200px) {
  .video__detail-body-anons span {
    margin-bottom: 32px;
  }
}
.video__detail-body-anons p:not(:last-child) {
  margin-bottom: 18px;
}
@media screen and (min-width: 1200px) {
  .video__detail-body-anons p:not(:last-child) {
    margin-bottom: 32px;
  }
}
.video__detail-body-text {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .video__detail-body-text {
    width: 800px;
  }
}
.video__detail-tab {
  width: 100%;
}
.video__detail-tab-btn {
  margin-bottom: 16px;
}
.video__detail-tab-btn a {
  display: inline-block;
  font-size: 18px;
  font-weight: var(--f-medium);
  cursor: pointer;
  color: var(--text-dark-green);
  position: relative;
  padding-right: 24px;
}
@media screen and (min-width: 992px) {
  .video__detail-tab-btn a {
    font-size: 22px;
  }
}
.video__detail-tab-btn a::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  right: 0px;
  top: calc(50% - 6px);
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../assets/img/ico/arrow.svg);
}
.video__detail-tab-content {
  padding-top: 40px;
}
.video__detail-list {
  width: 100%;
  padding: 0 20px 48px;
}
@media screen and (min-width: 1200px) {
  .video__detail-list {
    padding: 0 0 48px;
  }
}
.video__detail-list-row {
  display: grid;
  row-gap: 48px;
}
@media screen and (min-width: 992px) {
  .video__detail-list-row {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*========== ARTICLE PAGE ========*/
.expert__page-tags {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .expert__page-tags {
    padding-left: 24px;
  }
}
.expert__page-head {
  margin-top: 12px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.expert__page-feedback {
  border: 1px solid var(--border-gray);
  padding: 16px 24px 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-white);
}
@media screen and (min-width: 768px) {
  .expert__page-feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 560px);
    padding: 36px 16px;
    right: 0px;
    left: auto;
    bottom: auto;
    top: 0px;
    position: absolute;
  }
}
@media screen and (min-width: 992px) {
  .expert__page-feedback {
    width: calc(100% - 720px);
    padding: 40px 24px 40px 36px;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .expert__page-feedback {
    width: calc(100% - 880px);
    height: 452px;
  }
}
.expert__page-feedback-block .btn__base {
  display: none;
}
@media screen and (min-width: 768px) {
  .expert__page-feedback-block .btn__base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.expert__page-feedback-block .btn__base:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .expert__page-feedback-block .btn__base:last-child {
    margin-top: 24px;
  }
}
.expert__page-feedback-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .expert__page-feedback-text {
    margin-top: 36px;
    display: block;
  }
  .expert__page-feedback-text p:first-child {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .expert__page-feedback-text p:first-child {
    display: block;
  }
}
.expert__page-feedback-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: var(--f-light);
}
.expert__page-feedback-text p .txt-green {
  color: var(--text-green);
  font-weight: var(--f-normal);
}
.expert__page-feedback-text p span {
  display: block;
}
.expert__page-block {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .expert__page-block {
    width: 560px;
  }
}
@media screen and (min-width: 992px) {
  .expert__page-block {
    width: 720px;
  }
}
@media screen and (min-width: 1200px) {
  .expert__page-block {
    width: 880px;
  }
}
.expert__page-block-prv {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 992px) {
  .expert__page-block-prv {
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .expert__page-block-prv {
    height: 452px;
  }
}
.expert__page-block-prv img {
  width: 100%;
  height: auto;
}
.expert__page-company {
  margin: 36px 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .expert__page-company {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .expert__page-company {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 0 0 24px;
  }
}
.expert__page-company-logo {
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .expert__page-company-logo {
    width: 120px;
    height: 120px;
  }
}
.expert__page-company-logo .ex_company-logo {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-gray);
  overflow: hidden;
}
.expert__page-company-logo .ex_company-logo img {
  width: 100%;
  height: 100%;
}
.expert__page-company-title {
  margin-top: 24px;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .expert__page-company-title {
    padding-left: 32px;
  }
}
@media screen and (min-width: 992px) {
  .expert__page-company-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 120px);
  }
}
.expert__page-company-title h1, .expert__page-company-title h2 {
  font-size: 28px;
  font-weight: var(--f-medium);
  color: var(--text-color);
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .expert__page-company-title h1, .expert__page-company-title h2 {
    font-size: 32px;
    text-align: left;
  }
}
.expert__page-company-title .ex_company-rayting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.expert__page-company-title .ex_company-rayting-rev {
  margin-left: 32px;
  font-size: 16px;
  color: var(--text-light-second);
}
.expert__page-body-tabs {
  width: 100%;
  padding: 0 24px;
}
.expert__page-body-block {
  width: 100%;
  margin: 64px 0 0px;
  padding: 0 24px;
}
.expert__page-body-title {
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  width: 100%;
  border-bottom: 1px solid var(--border-gray);
}
.expert__page-body-title h3, .expert__page-body-title h4 {
  font-size: inherit;
  font-weight: var(--f-medium);
  color: var(--text-dark-green);
}
.expert__page-body-title h4 {
  font-size: 16px;
}
.expert__page-body .ex_projects {
  display: grid;
  grid-column-gap: 28px;
  grid-row-gap: 64px;
}
@media screen and (min-width: 992px) {
  .expert__page-body .ex_projects {
    grid-template-columns: repeat(2, 394px);
  }
}
.expert__page-body .ex_projects__item {
  max-width: 394px;
  height: 400px;
  border-radius: 4px;
  background-color: var(--bg-white);
  -webkit-box-shadow: 0px 3px 8px 0px rgba(26, 40, 61, 0.15);
          box-shadow: 0px 3px 8px 0px rgba(26, 40, 61, 0.15);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  cursor: pointer;
  overflow: hidden;
}
.expert__page-body .ex_projects__item:hover {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(26, 40, 61, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(26, 40, 61, 0.2);
}
.expert__page-body .ex_projects__item_box {
  display: block;
  width: 100%;
  height: 100%;
}
.expert__page-body .ex_projects__item-prv {
  height: 300px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expert__page-body .ex_projects__item-prv img {
  height: 100%;
  width: auto;
  max-width: none;
}
.expert__page-body .ex_projects__item-bottom {
  padding: 24px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.expert__page-body .ex_projects__item-bottom h3 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: var(--f-medium);
  width: calc(100% - 64px);
  line-height: 1.4;
}
.expert__page-body .ex_projects__item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  background-color: var(--bg-light-green);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expert__page-body .ex_projects__item-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent var(--bg-dark-green) transparent;
}
.expert__page-body .ex_contacts__map {
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
}
.expert__page-body .ex_contacts__map-box {
  height: 300px;
  width: 100%;
  background-color: blue;
}
.expert__page-body .ex_contacts__item {
  margin-top: 32px;
}
.expert__page-body .ex_contacts__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .expert__page-body .ex_contacts__item-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.expert__page-body .ex_contacts__item-box {
  max-width: 320px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .expert__page-body .ex_contacts__item-box {
    margin-right: 56px;
  }
}
.expert__page-body .ex_contacts__item-box:last-child {
  margin-right: 0;
}
.expert__page-body .ex_contacts__item-link {
  display: block;
  margin-top: 12px;
}
.expert__page-body .ex_contacts__item-link a {
  color: var(--bg-dark-green);
  text-decoration: underline;
}
.expert__page-body .ex_contacts__item-link a:hover {
  color: var(--text-green);
}
.expert__page-body .ex_contacts__title {
  font-size: 18px;
  font-weight: var(--f-medium);
  color: var(--text-color);
  margin-bottom: 24px;
}
.expert__page-body .ex_contacts__text {
  font-size: 16px;
  font-weight: var(--f-normal);
  color: var(--text-gray);
  line-height: 1.6;
}
.expert__page-body .ex_contacts__phone {
  font-size: 16px;
  font-weight: var(--f-bold);
}
.expert__page-body .ex_contacts__phone a {
  color: var(--text-dark-green);
  text-decoration: underline;
}
.expert__page-body .ex_contacts__ico {
  width: 28px;
  height: 24px;
  margin-right: 20px;
}
.expert__page-body .ex_contacts__ico a {
  width: 100%;
  height: 100%;
  display: block;
}
.expert__page-body .ex_contacts__ico a svg {
  height: 100%;
  width: auto;
}
.expert__page-body .ex_contacts__ico a svg path {
  fill: var(--text-color);
}
.expert__page-body .ex_contacts__ico:hover a svg path {
  fill: var(--bg-dark-green);
}
.expert__project .pr__textblock {
  margin-bottom: 24px;
}
.expert__project-block {
  padding-top: 24px;
  border-top: 1px solid var(--border-gray);
}
.expert__project-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media screen and (min-width: 576px) {
  .expert__project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .expert__project-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.expert__project-item {
  position: relative;
  min-width: 200px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(26, 40, 61, 0.2);
          box-shadow: 0px 3px 8px 0px rgba(26, 40, 61, 0.2);
}
.expert__project-item:hover {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(26, 40, 61, 0.3);
          box-shadow: 0px 8px 16px 0px rgba(26, 40, 61, 0.3);
}
.expert__project-item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expert__project-item-video::before {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: 0.4;
}
.expert__project-item-video:hover::before {
  opacity: 0;
}
.expert__project-slider {
  margin: 24px 0 48px;
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 576px) {
  .expert__project-slider {
    height: 250px;
  }
}
@media screen and (min-width: 768px) {
  .expert__project-slider {
    height: 280px;
  }
}
@media screen and (min-width: 992px) {
  .expert__project-slider {
    height: 374px;
  }
}
@media screen and (min-width: 1200px) {
  .expert__project-slider {
    height: 452px;
  }
}
.expert__project-gallery {
  width: 100%;
  padding: 0 24px;
}
.expert__project-rblock {
  padding: 0 32px;
}
@media screen and (min-width: 768px) {
  .expert__project-rblock {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 560px);
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .expert__project-rblock {
    width: calc(100% - 720px);
  }
}
@media screen and (min-width: 1200px) {
  .expert__project-rblock {
    width: calc(100% - 880px);
  }
}
.expert__project-rblock-btn {
  margin-bottom: 48px;
}
.expert__project-rblock-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .expert__project-rblock-list {
    display: block;
  }
}
.expert__project-rblock-list ul li {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 300;
}
.expert__project-rblock-list ul li a {
  color: var(--text-color);
  border-bottom: 1px solid var(--text-color);
}
.expert__project-rblock-list ul li a:hover {
  color: var(--text-green);
  border-bottom: 1px solid var(--text-green);
}
.expert__project-wrap {
  position: relative;
}

.search__page-nav {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}
.search__page-nav-section {
  height: 48px;
  margin: 0;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search__page-nav-section {
    width: 50%;
    margin: 0 24px 0 0;
  }
}
.search__page-nav-wrap {
  width: 100%;
}
.search__page-list {
  margin-top: 48px;
  padding: 0 20px;
}
.search__page-list-top {
  margin-bottom: 36px;
}
.search__page-list-top p {
  font-size: 16px;
  color: var(--text-light-second);
}
.search__page-list-top p span {
  color: var(--text-green);
  font-weight: var(--f-medium);
}
.search__page-list-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .search__page-list-row {
    width: 880px;
  }
}
.search__page-list .search_card {
  width: 100%;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-gray);
}
.search__page-list .search_card:first-child {
  border-top: 1px solid var(--border-gray);
}
.search__page-list .search_card__title {
  margin-bottom: 28px;
}
.search__page-list .search_card__title a {
  font-size: 20px;
  color: var(--text-green);
  font-weight: var(--f-medium);
  text-decoration: none;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}
.search__page-list .search_card__title a:hover {
  color: var(--text-dark-green);
}
.search__page-list .search_card__content p {
  font-size: 17px;
  color: var(--text-light-second);
  font-weight: var(--f-light);
  line-height: 1.7em;
}
.search__page-list .search_card__content p span {
  font-weight: var(--f-medium);
  color: var(--text-green);
}
.search__page-bottom {
  width: 100%;
  margin: 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
@media screen and (min-width: 992px) {
  .search__page-bottom {
    width: 880px;
  }
}/*# sourceMappingURL=main.css.map */