@charset "UTF-8";
@font-face {
  font-family: TTNorms;
  font-display: swap;
  src: url("../fonts/TTNorms-Bold.woff2") format("woff2"), url("../fonts/TTNorms-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: TTNorms;
  font-display: swap;
  src: url("../fonts/TTNorms-ExtraLight.woff2") format("woff2"), url("../fonts/TTNorms-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: TTNorms;
  font-display: swap;
  src: url("../fonts/TTNorms-Medium.woff2") format("woff2"), url("../fonts/TTNorms-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: TTNorms;
  font-display: swap;
  src: url("../fonts/TTNorms-Regular.woff2") format("woff2"), url("../fonts/TTNorms-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: TTNorms;
  font-display: swap;
  src: url("../fonts/TTNorms-Light.woff2") format("woff2"), url("../fonts/TTNorms-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
/*	-------------------------------------------------
	Базовые стили сайта | Base site styles
    ------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
	-webkit-tap-highlight-color: transparent;
  }

body {
  font: normal normal 16px/1.4 TTNorms, sans-serif;
  background: #FFF;
  color: #333333
}
button,
input,
textarea,
label,
select {
  font: 300 normal 16px/24px TTNorms, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

.no-scroll {
  width: 100%;
  position: fixed;
  overflow: hidden;
  overflow-y: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

html.no-scroll {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/*	-------------------------------------------------
    Стили блоков, содержимого страниц | Other styles
    ------------------------------------------------- */

body.fixed-header .block-main {
	padding-top: 85px;
}
.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

.wrapper-full {
  max-width: 1500px;
  margin: 0 auto;
}

.header {
  padding: 20px 80px;
  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;
  position: relative;
  z-index: 20;
  transition: .3s;
}
.header .logo img {
  width: 60px;
  height: 65px;
}
.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo .text {
  margin-left: 20px;
}
.header .logo b {
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.header .logo span {
  font-weight: 400;
  font-size: 16px;
}
.header .nav {
  margin-right: 46px;
}
.header .nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .nav > ul li.menu-item-has-children {
  position: relative;
}
.header .nav > ul li.menu-item-has-children:after {
  content: "";
  position: absolute;
  display: none;
  width: 100%;
  height: 20px;
  top: 100%;
  left: 0;
}
.header .nav > ul li.menu-item-has-children:hover:after {
  display: block;
}
.header .nav > ul > li + li {
  margin-left: 40px;
}
.header .nav > ul > li > a {
  font-weight: 300;
  font-size: 16px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.header .nav .submenu li.current-menu-item a,
.header .nav > ul li.current-menu-item a,
.header .nav > ul > li > a:hover {
  color: #BD1E25 !important;
}
.header .nav > ul > li > a:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: -47px;
  height: 3px;
  background: #BD1E25;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header .nav > ul > li > a:hover:before {
  opacity: 1;
}
.header .nav > ul li {
  position: relative;
}
.header .nav > ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 15px;
}
.header .nav > ul li.menu-item-has-children > a:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../images/ico-drop-menu.svg) 50% no-repeat;
  top: 5px;
  right: 0;
  transition: .2s;
}
.header .nav > ul li.menu-item-has-children > a:hover:after {
  background: url(../images/ico-drop-menu-h.svg) 50% no-repeat;
}
.header .nav > ul li.menu-item-has-children a svg {
  position: absolute;
  top: 6px;
  right: 0;
  width: 10px;
  height: 10px;
  fill: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header .nav > ul li.menu-item-has-children a:hover svg {
  fill: #BD1E25;
}
.header .nav > ul li .sub-menu {
  min-width: 230px;
  position: absolute;
  z-index: 20;
  background:  rgba(0,0,0, 0.7);
  border-radius: 5px;
  padding: 20px;
  top: calc(100% + 20px);
  left: -9999px;
  opacity: 0;
  -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
  box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.header .nav > ul li .sub-menu li + li {
  margin-top: 10px;
}
.header .nav > ul li .sub-menu a {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}
.header .nav > ul li .sub-menu a:hover {
  color: #BD1E25;
}
.header .nav > ul li:hover .sub-menu {
  left: 0;
  opacity: 1;
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .social a {
  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;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header .social a svg {
  fill: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header .social a .icon-fb {
  width: 8px;
  height: 20px;
}
.header .social a .icon-inst {
  width: 18px;
  height: 18px;
}
.header .social a + a {
  margin-left: 15px;
}
.header .social a:hover {
  border-color: #BD1E25;
}
.header .social a:hover svg {
  fill: #BD1E25;
}
.fixed-header .header {
  position: fixed;
  left: 0;
  top: -85px;
  transform: translateY(85px);
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
  z-index: 100;
}
.header.slide-up {
	transform: translateY(-85px);
}
.fixed-header .header .logo .text {
  color: #333;
}
.fixed-header .header .toggle-menu span:before,
.fixed-header .header .toggle-menu span:after,
.fixed-header .header .toggle-menu span {
  background: #333;
}
.fixed-header .toggle-menu.open span {
  background: transparent;
}

.block-main {
  min-height: 700px;
  height: 100vh;
  color: #fff;
  position: relative;
}
.wrap-slider {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 60px;
	z-index: 10;
}
.block-main .content {
  height: calc(100vh - 105px);
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.block-main h1 {
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 20px;
}
.block-main .button {
  margin-bottom: 165px;
  margin-bottom: 100px;
}

.btn {
  display: inline-block;
  cursor: pointer;
  padding: 25px 75px 25px 40px;
  background: #BD1E25;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn .btn-arrow {
  width: 24px;
  height: 14px;
  position: absolute;
  right: 35px;
  top: 28px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  fill: #fff;
}
.btn:hover {
  background: #d7383e;
}
.btn:hover .btn-arrow {
  right: 25px;
}
.btn-border {
  background: rgba(189, 30, 37, 0.1);
  border: 1px solid #BD1E25;
  border-radius: 100px;
  color: #BD1E25;
  padding: 25px 40px;
}
.btn-border:hover {
  background: rgba(189, 30, 37, 0.3);
}

.main-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-slider .item {
	/* padding-top: 105px; */
  min-height: 700px;
  height: 100vh;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-slider .item .wrapper {
	position: relative;
	z-index: 20;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main-slider .item h2 {
	font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 20px;
}
.main-slider-preview {
	position: relative;
	z-index: 10;
}
.main-slider-preview .item {
	width: 95px;
	height: 95px;
  margin-right: 25px;
  position: relative;
  line-height: 0;
}
.main-slider-preview .item img {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: 95px;
  height: 95px;
  object-fit: cover;
}
.main-slider-preview .item span {
  display: block;
  position: absolute;
  height: 3px;
  width: 0;
  background: #BD1E25;
  bottom: 0;
  left: 0;
}
.main-slider-preview .slick-current img {
  opacity: 1;
}
.main-slider-preview .slick-current span {
  -webkit-animation: progress 4500ms linear forwards;
          animation: progress 4500ms linear forwards;
}

@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
h2.title {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
}
h2.title.left {
  text-align: left;
}

h3.title {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

.subtitle {
  font-weight: 300;
  font-size: 21px;
  text-align: center;
}

.block-schedule {
  padding: 80px 0;
}
.block-schedule .subtitle {
  margin-bottom: 50px;
}
.block-schedule .triggers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 73px;
}
.block-schedule .triggers .item .name {
  font-size: 18px;
}
.block-schedule .triggers .item .text {
  font-weight: 700;
  font-size: 21px;
}
.block-schedule .triggers .item-1 {
  padding-left: 70px;
  background: url(../images/ico-schedule-1.svg) 0 0/50px auto no-repeat;
}
.block-schedule .triggers .item-2 {
  padding-left: 76px;
  background: url(../images/ico-schedule-2.svg) 0 0 no-repeat;
  margin-left: 88px;
}
.block-schedule .schedule .schedule-line {
  background: #F4F4F4;
  border-radius: 100px;
  height: 4px;
}
.block-schedule .schedule .schedule-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block-schedule .schedule .schedule-date .item {
  margin-top: -8px;
}
.block-schedule .schedule .schedule-date .item .point {
  background: #BD1E25;
  border-radius: 100px;
  width: 12px;
  height: 12px;
  margin-bottom: 15px;
}
.block-schedule .schedule .schedule-date .item .name {
  font-size: 16px;
  color: #A2A2A2;
  margin-bottom: 7px;
}
.block-schedule .schedule .schedule-date .item .date {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.block-schedule .schedule .schedule-date .item.prev .point {
  background: #F4F4F4;
}
.block-schedule .schedule .schedule-date .item.prev .date {
  color: #A1A1A1;
}
.block-schedule .schedule .schedule-date .item.current .point {
  -webkit-box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
          box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.block-schedule .schedule .schedule-date .item.current .name {
  color: #333;
}
.block-schedule .schedule .schedule-date .item.current .date {
  color: #BD1E25;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
            box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(189, 30, 37, 0);
            box-shadow: 0 0 0 10px rgba(189, 30, 37, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(189, 30, 37, 0);
            box-shadow: 0 0 0 0 rgba(189, 30, 37, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
            box-shadow: 0 0 0 rgba(189, 30, 37, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(189, 30, 37, 0);
            box-shadow: 0 0 0 10px rgba(189, 30, 37, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(189, 30, 37, 0);
            box-shadow: 0 0 0 0 rgba(189, 30, 37, 0);
  }
}
.block-programm {
  padding: 80px 0;
  background: #FBFBFB;
}
.block-programm .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-programm .left {
  max-width: 765px;
}
.block-programm .right {
  max-width: 375px;
}
.block-programm .title, .block-programm .subtitle {
  text-align: left;
}
.block-programm .title {
  margin-bottom: 10px;
}
.block-programm .subtitle {
  margin-bottom: 38px;
}
.block-programm .programm-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-programm .programm-list .item {
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2D3A37;
  font-weight: 300;
  font-size: 16px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.block-programm .programm-list .item .icon {
	width: 50px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.block-programm .programm-list .item .icon img {
	max-height: 100%;
}
.block-programm .programm-list .item span {
  display: inline-block;
  margin-left: 5px;
}
.block-programm .events {
  background: rgba(17, 130, 42, 0.05);
  border: 1px solid #11822A;
  border-radius: 5px;
  padding: 25px 30px;
  margin-top: 3px;
}
.block-programm .events .name {
  font-weight: 500;
  font-size: 18px;
  color: #2D3A37;
  padding: 27px 0 27px 74px;
  background: url(../images/programm-events.svg) 0 0 no-repeat;
  margin-bottom: 12px;
}
.block-programm .events ul li {
  font-weight: 300;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
.block-programm .events ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 12px;
  background: url(../images/ico-check.svg) 0 0 no-repeat;
  left: 0;
  top: 4px;
}
.block-programm .events ul li + li {
  margin-top: 20px;
}

.block-statistics {
  padding: 80px 0;
}
.block-statistics .title {
  margin-bottom: 20px;
}
.block-statistics .subtitle {
  margin-bottom: 35px;
}
.block-statistics .list-statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-statistics .list-statistics .item {
  width: 20%;
  height: 300px;
  border: 1px solid #F4F4F4;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-statistics .list-statistics .item .num {
  width: 100%;
  font-weight: 200;
  font-size: 72px;
  color: #11822A;
  text-align: center;
}
.block-statistics .list-statistics .item .text {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
}

.block-reviews {
  background: #FBFBFB;
  padding: 80px 0;
}
.block-reviews .subtitle {
  text-align: left;
  margin-bottom: 40px;
}
.block-reviews .slider-reviews .photo + .photo {
  margin-top: 30px;
}
.block-reviews .slider-reviews .photo a {
  line-height: 0;
  position: relative;
  display: inline-block;
}
.block-reviews .slider-reviews .photo a img {
	max-width: 100%;
	height: auto;
}
.block-reviews .slider-reviews .photo a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.5) url(../images/ico-plus.svg) 50% no-repeat;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.block-reviews .slider-reviews .photo a:hover:before {
  opacity: 1;
}

.slick-dots {
  text-align: center;
  margin-top: 55px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: rgba(189, 30, 37, 0.1);
  border: 1px solid #BD1E25;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: #BD1E25;
}

.block-benefits {
  padding: 45px 0 80px 0;
}
.block-benefits .title {
  margin-bottom: 25px;
}
.block-benefits .subtitle {
  margin-bottom: 30px;
}
.block-benefits .list-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-benefits .list-benefits .item {
  width: 20%;
  height: 300px;
  border: 1px solid #F4F4F4;
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  padding: 0 10px;
}
.block-benefits .list-benefits .item .icon {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}
.block-benefits .list-benefits .item .icon img {
	max-width: 90px;
}

.block-contacts .map {
  line-height: 0;
}
.block-contacts .wrapper {
  position: relative;
  z-index: 10;
}
.block-contacts .title {
  margin-bottom: 75px;
}
.block-contacts .contacts {
  width: 415px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
}
.block-contacts .contacts li {
  font-weight: 300;
  font-size: 18px;
  padding-left: 40px;
}
.block-contacts .contacts li + li {
  margin-top: 20px;
}
.block-contacts .contacts li span {
  font-weight: 300;
  font-size: 14px;
  color: #8E8E8E;
}
.block-contacts .contacts li.phone {
  background: url(../images/contacts-1.svg) 0 0 no-repeat;
}
.block-contacts .contacts li.mail {
  background: url(../images/contacts-2.svg) 0 3px/25px auto no-repeat;
}
.block-contacts .contacts li.address {
  background: url(../images/contacts-3.svg) 3px 0/19px auto no-repeat;
}

.footer {
	border-top: 1px solid #F4F4F4;
}
.footer .footer-top {
  padding: 50px 0;
}
.footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .logo img {
  width: 60px;
  height: 65px;
}
.footer .logo .text {
  margin-left: 20px;
}
.footer .logo b {
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.footer .logo span {
  font-weight: 400;
  font-size: 16px;
}
.footer .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 400px;
}
.footer .nav ul li {
  font-weight: 300;
  font-size: 14px;
}
.footer .nav ul li.current-menu-item a {
	text-decoration: underline;
}
.footer .nav ul li + li {
  margin-top: 20px;
}
.footer .nav ul li a {
  position: relative;
}
.footer .nav ul li a:before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: #11822A;
  border-radius: 50%;
  left: -13px;
  top: 4px;
}
.footer .nav ul li a:hover {
  text-decoration: underline;
}
.footer .contacts ul {
  margin-bottom: 20px;
}
.footer .contacts ul li {
  font-weight: 300;
  font-size: 14px;
}
.footer .contacts ul li + li {
  margin-top: 20px;
}
.footer .contacts ul li span {
  color: #8E8E8E;
}
.footer .contacts ul li.mail {
  color: #BD1E25;
  font-weight: 400;
}
.footer .footer-bottom {
  background: #FBFBFB;
  border-top: 1px solid #F4F4F4;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 0;
}
.footer .footer-bottom .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer-bottom a {
  font-weight: 400;
  color: #BD1E25;
}

.social-red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-red a {
  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;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(189, 30, 37, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.social-red a svg {
  fill: #BD1E25;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.social-red a .icon-fb {
  width: 8px;
  height: 20px;
}
.social-red a .icon-inst {
  width: 18px;
  height: 18px;
}
.social-red a + a {
  margin-left: 15px;
}
.social-red a:hover {
  border-color: #BD1E25;
}
.social-red a:hover svg {
  fill: #BD1E25;
}

.main-top {
  color: #fff;
  position: relative;
  height: 520px;
  background-position: 50% 50%;
  background-size: cover;
}
.main-top:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.main-top .wrapper {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 110px);
}
.main-top h1 {
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 10px;
}

.breadcrumbs {
	font-size: 14px;
	color: #ededed;
}
.breadcrumbs i {
  display: inline-block;
  margin: 0 10px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.block-inside {
  padding: 70px 0 120px 0;
}
.block-inside h2.title {
  margin-bottom: 40px;
}

.block-gallery .list-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.block-gallery .list-gallery .item {
	width: 100%;
  max-width: 370px;
  margin: 0 15px;
  position: relative;
  margin-bottom: 30px;
}
.block-gallery .list-gallery .item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.8;
  border-radius: 0 0 5px 5px;
  z-index: 10;
}
.block-gallery .list-gallery .item .photo {
  line-height: 0;
  border-radius: 5px;
  overflow: hidden;
  z-index: 5;
  height: 100%;
}
.block-gallery .list-gallery .item .photo img {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-gallery .list-gallery .item:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.block-gallery .list-gallery .item .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  color: #fff;
  font-weight: 500;
  z-index: 10;
}

.list-gallery-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-gallery-photos .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-gallery-photos .item + .item {
  margin-top: 20px;
}
.list-gallery-photos .item .item-photo {
  line-height: 0;
}
.list-gallery-photos .item .photos-wrap {
  margin-left: 20px;
}
.list-gallery-photos .item .photos-wrap .item-photo + .item-photo {
  margin-top: 20px;
}
.list-gallery-photos .item:nth-child(even) .photos-wrap {
  margin-right: 20px;
  margin-left: 0;
}

.block-vacancy .text-1 {
  font-weight: 300;
  margin-bottom: 35px;
}
.block-vacancy .list-questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
.block-vacancy .list-questions .item {
  width: 33.3%;
  border: 1px solid #F4F4F4;
  padding: 20px 30px 20px 55px;
  font-weight: 300;
  font-size: 18px;
  background: url(../images/ico-check.svg) 24px 25px/16px 12px no-repeat;
}
.block-vacancy .list-vacancy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.block-vacancy .list-vacancy .item {
  width: 33%;
  max-width: 370px;
  border: 1px solid #F4F4F4;
  border-radius: 5px;
  text-align: center;
  padding: 0 20px 27px 20px;
  font-weight: 300;
  font-size: 18px;
}
.block-vacancy .list-vacancy .item span {
  color: #8E8E8E;
}
.block-vacancy .list-vacancy .item .icon {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 22px;
}

.form-anketa {
  background: rgba(189, 30, 37, 0.1);
  border: 1px dashed #BD1E25;
  border-radius: 5px;
  padding: 50px;
  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;
}
.form-anketa .text {
  max-width: 760px;
}

.text-area {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.text-area h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
.text-area h4 {
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 20px;
}
.text-area span {
  font-weight: 400;
}

.block-cooperation .text-1 a {
  color: #BD1E25;
  font-weight: 400;
  text-decoration: underline;
}
.block-cooperation .text-1 a:hover {
  text-decoration: none;
}
.block-cooperation .text-2 ul {
  margin-left: 25px;
}
.block-cooperation .text-2 ul li + li {
  margin-top: 20px;
}
.block-cooperation .text-2 ul li b {
  text-align: right;
  font-weight: 500;
  font-size: 21px;
  color: #11822A;
  display: inline-block;
  margin-right: 10px;
}
.block-cooperation .trigger-ua {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-cooperation .trigger-ua .item {
  width: 33.33%;
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  padding: 40px 20px 40px 90px;
  font-weight: 300;
  font-size: 18px;
  background: url(../images/flag-ua.svg) 25px 50% no-repeat;
}

.block-price .list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.block-price .list-price .item {
  width: 40%;
  padding: 27px 20px 27px 112px;
  background: rgba(244, 244, 244, 0.3) url(../images/ico-wallet.svg) 28px 50% no-repeat;
  border: 1px solid #F4F4F4;
  border-radius: 5px;
}
.block-price .list-price .item + .item {
  width: calc(60% - 30px);
  margin-left: 30px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.block-price .list-price .item span {
  font-weight: 300;
  font-size: 18px;
}
.block-price .list-price .item .cost {
  font-weight: 500;
  font-size: 32px;
  margin-top: 5px;
}
.block-price .list-include {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -7px 55px -7px;
}
.block-price .list-include .item {
  padding: 17px 30px 17px 55px;
  background: #FFFFFF url(../images/ico-check.svg) 25px 50% no-repeat;
  border: 1px solid #F4F4F4;
  font-weight: 300;
  font-size: 18px;
  margin: 0 7px 15px 7px;
}
.block-price .note {
	margin-top: -20px;
}
.block-price .list-discounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.block-price .list-discounts .item {
  border: 1px solid #11822A;
  border-radius: 5px;
  height: 90px;
  padding: 10px 30px 10px 105px;
  font-size: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #11822A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: rgba(32, 161, 121, 0.1);
  background-repeat: no-repeat;
  background-position: 37px 50%;
  max-width: 600px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.block-price .list-discounts .item-1 {
  width: 51%;
  margin-right: 20px;
  background: rgba(32, 161, 121, 0.1) url(../images/ico-discount-1.svg) 37px 50% no-repeat;
}
.block-price .list-discounts .item-2 {
  background: rgba(32, 161, 121, 0.1) url(../images/ico-discount-2.svg) 37px 50% no-repeat;
}

.note {
  font-weight: 300;
  font-size: 18px;
  color: #8E8E8E;
}

.list-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.list-shop .item {
  max-width: 370px;
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  margin: 0 15px 30px 15px;
}
.list-shop .item .photo {
  line-height: 0;
  height: 350px;
}
.list-shop .item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-shop .item .name {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 24px 10px;
}

.block-team .content {
  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;
}
.block-team .left {
  width: 51%;
  line-height: 1.4;
}
.block-team .right {
  width: 40%;
}
.block-team .right .photo {
  line-height: 0;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.block-team .right .photo img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.list-programm .item {
  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;
}
.list-programm .item + .item {
  margin-top: 100px;
}
.list-programm .item:nth-child(even) .photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.list-programm .item:nth-child(even) .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.list-programm .item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-programm .item .photo {
	width: 49%;
}
.list-programm .item .photo img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}
.list-programm .item .text {
  max-width: 447px;
  font-size: 18px;
  font-weight: 300;
}

.list-conditions {
  margin-bottom: 60px;
}
.list-conditions .item {
  padding-left: 77px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 50px auto;
}
.list-conditions .item .name {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 15px;
}
.list-conditions .item + .item {
  margin-top: 60px;
}
.list-conditions .item .list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-conditions .item .list-wrap .col {
  width: 48%;
}
.list-conditions .item .list-wrap .col .name {
  font-weight: 500;
  font-size: 18px;
}
.list-conditions .item .list-wrap .col li {
  position: relative;
  padding-left: 27px;
}
.list-conditions .item .list-wrap .col li:before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: #11822A;
  border-radius: 50%;
  top: 7px;
  left: 7px;
}
.list-conditions .item .list-wrap .col li + li {
  margin-top: 20px;
}
.list-conditions .item-1 {
  background: url(../images/ico-conditions-1.svg) 0 0 no-repeat;
}
.list-conditions .item-2 {
  background: url(../images/ico-conditions-2.svg) 0 0 no-repeat;
}
.list-conditions .item-3 {
  background: url(../images/ico-conditions-3.svg) 0 0 no-repeat;
}
.list-conditions .item-4 {
  background: url(../images/ico-conditions-4.svg) 0 0 no-repeat;
}
.list-conditions .item-5 {
  background: url(../images/ico-conditions-5.svg) 0 0 no-repeat;
}

.block-conditions .termometr {
  background: rgba(17, 130, 42, 0.05) url(../images/ico-conditions-6.svg) 43px 35px/34px auto no-repeat;
  border: 1px solid #11822A;
  border-radius: 5px;
  padding: 30px 45px 30px 105px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #11822A;
}
.block-conditions .termometr span {
  font-weight: 500;
}

.block-contacts .content {
  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;
}
.block-contacts .right {
  width: 66%;
}

.form {
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  border-radius: 10px;
  padding: 50px;
}
.form .form-head {
  font-size: 32px;
  margin-bottom: 60px;
}

.form .input-line {
  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;
  margin-bottom: 15px;
}
.form .input-line .input {
  width: 48%;
}
.input input[type=text],
.input input[type=email],
.input input[type=tel] {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  border-radius: 100px;
  height: 60px;
  padding-left: 20px;
}
.input input.error {
  border-color: #f00;
}
.input textarea {
  width: 100%;
  height: 120px;
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  border-radius: 20px;
  resize: none;
  padding: 20px 20px 0 20px;
}
.input .option + .option {
  margin-top: 10px;
}
.input .option input {
  display: none;
}
.input .option label {
  position: relative;
  padding-left: 40px;
  line-height: 30px;
  cursor: pointer;
}
.input .option label:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #11822A;
  top: 0;
  left: 0;
}
.input .option input:checked + label:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  background: #11822A;
}
.form .button {
  margin-top: 15px;
  text-align: right;
}

.list-contacts .item {
  font-weight: 300;
  font-size: 18px;
}
.list-contacts .item + .item {
  margin-top: 30px;
}
.list-contacts .item .name {
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 10px;
}
.list-contacts .item span {
  font-weight: 300;
  font-size: 14px;
  color: #8E8E8E;
}

#map {
  line-height: 0;
  height: 600px;
  position: relative;
  z-index: 5;
}

.toggle-menu {
  display: none;
  width: 50px;
  height: 48px;
  cursor: pointer;
  position: relative;
  float: right;
  z-index: 990;
}

.toggle-menu span {
  position: absolute;
  height: 2px;
  background: #fff;
  top: 50%;
  margin-top: -1px;
  left: 10px;
  right: 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.toggle-menu span:before,
.toggle-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  -webkit-transition-duration: 0.2s, 0.2s;
  -o-transition-duration: 0.2s, 0.2s;
  transition-duration: 0.2s, 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  -o-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.toggle-menu span:before {
  top: -8px;
  -webkit-transition-property: top, transform;
  -o-transition-property: top, transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

.toggle-menu span:after {
  bottom: -8px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
  -webkit-transition-property: bottom, transform;
  -o-transition-property: bottom, transform;
  transition-property: bottom, transform;
}

.toggle-menu.open span {
  background: transparent;
}

.toggle-menu.open span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  -o-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.toggle-menu.open span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  -o-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  background: #fff;
  width: calc(100% - 100px);
  /* width: 100%; */
  height: 100%;
  overflow: auto;
  top: 0;
  left: 0;
  font-size: 18px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 30px;
}

.mobile-menu.open {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.mobile-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 800;
  display: none;
}

.mobile-menu {
  font-size: 18px;
}
.mobile-menu .mob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mob-menu-close {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/ico-close.svg) 50% no-repeat;
}
.mobile-menu .mob-nav {
  margin-bottom: 40px;
}
.mobile-menu .mob-nav li + li {
  margin-top: 10px;
}
.mobile-menu .mob-nav li.menu-item-has-children .sub-menu li.current-menu-item a,
.mobile-menu .mob-nav li.current-menu-item a {
	color:#BD1E25;
}
.mobile-menu .mob-nav li.menu-item-has-children > a {
  position: relative;
  padding-right: 18px;
}
.mobile-menu .mob-nav li.menu-item-has-children > a:after {
	content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../images/ico-arrow-down.svg) 50% no-repeat;
    top: 5px;
    right: 0;
    transition: .2s;
}
.mobile-menu .mob-nav li.menu-item-has-children svg {
  position: absolute;
  top: 6px;
  right: 0;
  width: 10px;
  height: 10px;
  fill: #333;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.mobile-menu .mob-nav li.menu-item-has-children .sub-menu {
  font-size: 16px;
  margin-left: 20px;
  margin-top: 10px;
}
.mobile-menu .mob-nav li.menu-item-has-children .sub-menu a {
  color: #9b9b9b;
}
.mobile-menu .mob-nav li.menu-item-has-children .sub-menu a:before {
  content: "- ";
  margin-right: 10px;
}
.mobile-menu .mob-contacts {
  margin-bottom: 40px;
}
.mobile-menu .mob-contacts li + li {
  margin-top: 10px;
}
.mobile-menu .mob-contacts a {
  display: inline-block;
  padding-left: 35px;
  background: url(../images/contacts-1.svg) 0 0 no-repeat;
}
.mobile-menu .mob-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-menu .mob-logo img {
  width: 60px;
  height: 65px;
}
.mobile-menu .mob-logo .text {
  margin-left: 20px;
}
.mobile-menu .mob-logo .text b {
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.mobile-menu .mob-logo .text span {
  font-weight: 400;
  font-size: 16px;
}
.modal-registration {
  max-width: 510px;
  border-radius: 10px;
  padding: 40px 50px 40px 50px;
  text-align: left;
}
.remodal-close {
  left: auto;
  right: 0;
}
.modal-registration .modal-head .title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}
.modal-registration .progress-line {
  height: 10px;
  background: rgba(17, 130, 42, 0.1);
  border: 1px solid rgba(17, 130, 42, 0.3);
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}
.modal-registration .progress-line .fill-line {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  background: #11822A;
  border-radius: 10px;
  transition: .3s;
  max-width: calc(100% - 2px);
}
.modal-registration .modal-body .step-title {
  font-size: 20px;
  color: #8E8E8E;
  margin-bottom: 50px;
}
.modal-registration .modal-body .input + .input {
  margin-top: 20px;
}
.modal-registration .modal-body .step-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.modal-registration .modal-body .step-1 .step-buttons {
  justify-content: flex-end;
}
.modal-registration .modal-body .step-buttons .btn {
  padding: 20px 60px 20px 30px;
  background: #11822A;
}
.modal-registration .modal-body .step-buttons .btn-register-prev {
  padding: 20px  30px 20px 60px;
  background: rgba(17, 130, 42, 0.1);
  border-color: #11822A;
  color: #11822A;
}
.modal-registration .modal-body .step-buttons .btn .btn-arrow {
  top: 24px;
  right: 22px;
}
.modal-registration .modal-body .step-buttons .btn-register-prev .btn-arrow {
  left: 22px;
  right: auto;
  fill: #11822A;
  transform: rotate(180deg);
}
.modal-registration .modal-body .step-buttons .btn-register-prev:hover .btn-arrow {
  left: 15px;
}
.modal-registration .modal-body .step-buttons .btn:hover .btn-arrow {
  right: 15px;
}
.modal-registration .step {
  display: none;
}
.modal-registration .step-1 {
  display: block;
}
.modal-registration .input-name {
  font-weight: 500;
  margin-bottom: 10px;
}
.modal-registration .text-thank {
  text-align: center;
}
.modal-registration .modal-thank {
	display: none;
	color: #fff;
	font-size: 24px;
	height: 100%;
	height: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}
.modal-registration.form-send {
	background: #11822A;
	height: 400px;
}
.block-thank {
  padding: 50px 0;
  height: calc(100vh - 453px);
  min-height: 350px;
  display: flex;
  align-items: center;
}
.block-thank .wrapper {
  width: 100%;
}
.block-thank h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
.block-thank .text {
  margin-bottom: 40px;
}

#gallery-grid .item {
	width: 32%;
	line-height: 0;
	margin-bottom: 20px;
}
#gallery-grid .item img {
	max-width: 100%;
	height: auto;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	border-width: 2px;
	border-color: #BD1E25;
}


@media (max-width: 1600px) {
  .wrapper-full {
    max-width: 1170px;
  }

  .block-statistics .list-statistics .item .num {
    font-size: 60px;
  }

  .block-statistics .list-statistics .item {
    height: 234px;
  }

  .block-benefits .list-benefits .item,
.block-statistics .list-statistics .item .text {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .header {
    padding: 20px;
  }
}
@media (max-width: 1230px) {
  .wrapper,
.wrapper-full {
    max-width: 1000px;
  }

  .block-programm .right,
.block-programm .left {
    width: 100%;
    max-width: 100%;
  }

  .block-programm .right {
    margin-top: 40px;
  }

  .block-statistics .list-statistics .item .num {
    font-size: 48px;
  }

  .block-statistics .list-statistics .item {
    height: 200px;
  }

  .block-benefits .list-benefits .item .icon img {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }

  .block-benefits .list-benefits .item .icon {
    height: 100px;
  }

  .block-benefits .list-benefits .item {
    height: 270px;
  }

  .list-gallery-photos .item img {
    max-width: 100%;
    height: auto;
  }

  .list-gallery-photos .item .item-size-1 {
    width: 75%;
  }

  .block-gallery .list-gallery .item {
    width: calc(33.33% - 30px);
  }

  .block-vacancy .list-vacancy .item {
    width: 32%;
  }

  .form-anketa .text {
    max-width: 600px;
  }

  .list-shop .item {
    width: calc(33.33% - 30px);
  }

  .block-team .right .photo img {
    max-width: 100%;
    height: auto;
  }

  .list-programm .item .photo {
    width: 50%;
  }
  .list-programm .item .photo img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 1100px) {
  .header .right {
    display: none;
  }

  .toggle-menu {
    display: block;
  }

  .main-slider .item h2,
  .block-main h1 {
    font-size: 58px;
  }

  .list-gallery-photos .item .item-size-1 {
    width: 84%;
    width: 75%;
  }
}
@media (max-width: 1024px) {
  .wrapper,
.wrapper-full {
    max-width: 900px;
  }

  .block-benefits .list-benefits .item,
.block-statistics .list-statistics .item {
    width: 50%;
  }

  .block-benefits .list-benefits .item {
    height: 200px;
  }

  .block-contacts .contacts {
    position: relative;
    height: auto;
    width: 100%;
    padding: 0 0 80px 0;
  }

  #map,
.block-contacts .map {
    height: 400px;
  }

  .footer .nav {
    width: 300px;
  }

  .block-contacts .contacts li {
    line-height: 26px;
  }

  .list-gallery-photos .item .item-size-1 {
    width: 95%;
    width: 84%;
  }

  .main-top {
    height: 550px;
  }

  .form-anketa .text {
    max-width: 510px;
  }

  .block-vacancy .list-vacancy .item span br {
    display: none;
  }

  .block-cooperation .trigger-ua .item {
    padding: 40px 10px 40px 70px;
    background-position: 13px 50%;
  }

  .list-programm .item .text {
    max-width: 100%;
    width: 52%;
    font-size: 18px;
  }

  .list-programm .item .photo {
    width: 45%;
  }
  #gallery-grid .item {
	width: 48%;
  }
}
@media (max-width: 960px) {
  .wrapper,
.wrapper-full {
    max-width: 800px;
  }

  h2.title {
    font-size: 42px;
  }

  .subtitle {
    font-size: 18px;
  }

  .block-schedule .schedule .schedule-date {
    display: block;
  }

  .block-schedule .schedule .schedule-date .item {
    margin: 0;
    padding-left: 20px;
    position: relative;
  }
  .block-schedule .schedule .schedule-date .item + .item {
    margin-top: 30px;
  }

  .block-schedule .schedule {
    position: relative;
  }

  .block-schedule .schedule .schedule-date .item .point {
    position: absolute;
    top: 3px;
    left: 0;
  }

  .block-schedule .schedule .schedule-line {
    width: 4px;
    height: auto;
    position: absolute;
    top: 3px;
    bottom: -40px;
    left: 4px;
  }

  .block-schedule {
    padding-bottom: 35px;
  }

  .footer .nav {
    width: 250px;
  }

  .list-gallery-photos .item .item-size-1 {
    width: 95%;
  }

  .block-vacancy .list-questions .item {
    width: 50%;
  }

  .form-anketa .text {
    max-width: 410px;
    font-size: 18px;
  }

  .block-cooperation .trigger-ua {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 370px;
    margin: 0 auto;
  }

  .block-cooperation .trigger-ua .item {
    width: 100%;
  }

  .block-price .list-discounts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .block-price .list-discounts .item {
    width: 100%;
  }

  .block-price .list-discounts .item-1 {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .block-contacts .left {
    width: 34%;
  }

  .block-team .right,
.block-team .left {
    width: 100%;
  }

  .block-team .right {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .wrapper,
.wrapper-full {
    max-width: 700px;
  }

  .footer-top .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer .logo,
.footer .nav {
    margin-bottom: 40px;
  }

  .footer .nav ul li a {
    padding-left: 13px;
  }

  .footer .nav ul li a:before {
    left: 0;
  }

  /* .social-red {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  } */

  .list-gallery-photos .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .list-gallery-photos .item .item-size-1 {
    width: 100%;
  }

  .list-gallery-photos .item .photos-wrap {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
  }

  .list-gallery-photos .item:nth-child(even) .photos-wrap {
    margin: 0 -10px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .list-gallery-photos .item .photos-wrap .item-photo + .item-photo {
    margin-top: 0;
  }

  .list-gallery-photos .item .item-size-2 {
    margin: 0 10px;
  }

  .block-gallery .list-gallery .item {
    width: calc(50% - 30px);
  }

  .block-vacancy .list-vacancy {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .block-vacancy .list-vacancy .item {
    width: 100%;
  }
  .block-vacancy .list-vacancy .item + .item {
    margin-top: 20px;
  }

  .form-anketa {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .form-anketa .text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .form-anketa .button {
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }

  .block-price .list-price {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .block-price .list-price .item + .item,
.block-price .list-price .item {
    width: 100%;
  }

  .block-price .list-price .item + .item {
    margin-left: 0;
    margin-top: 20px;
  }

  .block-contacts .right,
.block-contacts .left {
    width: 100%;
  }

  .block-contacts .right {
    margin-top: 40px;
  }

  .block-contacts .social-red {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .list-programm .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .list-programm .item .photo {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .list-programm .item .text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .list-programm .item:nth-child(even) .photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .list-programm .item:nth-child(even) .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .list-conditions .item .list-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .list-conditions .item .list-wrap .col {
    width: 100%;
  }
  .list-conditions .item .list-wrap .col + .col {
    margin-top: 40px;
  }
  .main-slider-preview {
	display: none;
  }
  .main-slider .item {
	min-height: 600px;
  }
  .block-main .button {
	margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  .wrapper,
.wrapper-full {
    max-width: 600px;
  }

  .main-slider-preview .item img,
  .main-slider-preview .item {
	width: 75px;
    height: 75px;
  }
  .main-slider-preview .item img {
    
  }

  .block-main .button {
    /* margin-bottom: 80px; */
  }

  .main-slider .item h2,
  .block-main h1 {
    font-size: 50px;
  }

  h2.title {
    font-size: 38px;
  }

  .slider-reviews .item {
    text-align: center;
  }

  .list-shop .item {
    width: calc(50% - 30px);
  }

  .header {
	padding: 10px 20px;
  }
}
@media (max-width: 650px) {
  .wrapper,
.wrapper-full {
    max-width: 500px;
  }

  .main-slider .item .wrapper,
  .main-slider .item,
  .block-main {
	height: 60vh;
	min-height: auto;
  }

  .block-schedule .triggers .item-2 {
    margin-left: 25px;
  }

  .block-benefits .list-benefits .item {
    height: auto;
    padding-bottom: 20px;
  }

  .main-slider .item h2,
  .block-main h1 {
    font-size: 38px;
line-height: 1.2;
  }

  .block-gallery .list-gallery .item {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .block-gallery .list-gallery {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
  .block-gallery .list-gallery img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }

  .block-vacancy .list-questions .item {
    width: 100%;
  }

  .block-vacancy .text-1 {
    font-size: 18px;
  }

  h3.title {
    font-size: 26px;
  }

  .block-price .list-discounts .item {
    height: auto;
	min-height: 90px;
	width: 100%;
	margin-right: 0;
  }
  #gallery-grid .item {
	width: 100%;
  }
  .block-schedule {
	padding-top: 40px;
  }
}
@media (max-width: 550px) {
  .wrapper,
.wrapper-full {
    max-width: 400px;
  }

  h2.title {
    font-size: 30px;
  }

  .block-schedule .triggers {
    display: block;
  }

  .block-schedule .triggers .item-2 {
    margin-left: 0;
    margin-top: 30px;
  }

  .block-reviews .slider-reviews .item {
    padding: 0 5px;
  }

  .block-reviews .slider-reviews .photo img {
    max-width: 100%;
    height: auto;
  }

  .list-gallery-photos .item .photos-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .list-gallery-photos .item .photos-wrap .item-photo + .item-photo {
    margin-top: 20px;
  }

  .list-gallery-photos .item .item-size-2 {
    width: 100%;
  }

  .main-top {
    height: 400px;
  }

  .main-top h1 {
    font-size: 32px;
  }

  .block-gallery .list-gallery .item img {
    max-width: 100%;
  }

  .block-vacancy .list-vacancy .item {
    max-width: 100%;
  }

  .form .input-line .input {
    width: 100%;
  }
  .form .input-line .input + .input {
    margin-top: 15px;
  }

  .form .button {
    text-align: center;
  }

  #map,
.block-contacts .map {
    height: 400px;
  }
  .modal-registration {
    padding: 20px;
  }

  	.btn {
		font-size: 14px;
	}
	.modal-registration .modal-head .title {
		font-size: 30px;
	}
	.modal-registration .modal-body .step-title {
		font-size: 16px;
	}

}
@media (max-width: 450px) {
  .wrapper,
.wrapper-full {
    max-width: 100%;
    padding: 0 20px;
  }

  .main-slider .item h2,
  .block-main h1 {
    font-size: 38px;
  }

  .btn {
    padding: 20px 60px 20px 30px;
  }

  .btn .btn-arrow {
    right: 20px;
    top: 23px;
  }

  .list-shop .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .list-shop {
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 400px) {
	.main-slider .item h2,
  .block-main h1 {
    font-size: 32px;
  }
}