@font-face {
  font-family: "MuseoSansCyrlLight";
  font-weight: 300;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/MuseoSansCyrlLight/MuseoSansCyrlLight.woff") format("woff"), url("../fonts/MuseoSansCyrlLight/MuseoSansCyrlLight.ttf") format("truetype");
}

@font-face {
  font-family: "MuseoSansCyrlRegular";
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/MuseoSansCyrlRegular/MuseoSansCyrlRegular.woff") format("woff"), url("../fonts/MuseoSansCyrlRegular/MuseoSansCyrlRegular.ttf") format("truetype");
}

@font-face {
  font-family: "MuseoSansCyrlMedium";
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/MuseoSansCyrlMedium/MuseoSansCyrlMedium.woff") format("woff"), url("../fonts/MuseoSansCyrlMedium/MuseoSansCyrlMedium.ttf") format("truetype");
}

@font-face {
  font-family: "MuseoSansCyrlBold";
  font-weight: 900;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/MuseoSansCyrlBold/MuseoSansCyrlBold.woff") format("woff"), url("../fonts/MuseoSansCyrlBold/MuseoSansCyrlBold.ttf") format("truetype");
}

.preloader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#105f22), to(#1a8832));
  background: -webkit-linear-gradient(left, #105f22, #1a8832);
  background: linear-gradient(to right, #105f22, #1a8832);
  z-index: 9999;
}

.preloader .pulse {
  position: relative;
}

.preloader .pulse:before, .preloader .pulse:after {
  position: absolute;
  content: '';
  border: 5px solid #fff;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  -webkit-border-radius: 500px;
          border-radius: 500px;
}

.preloader .pulse:before {
  -webkit-animation: pulse-outer 0.8s ease-in infinite;
          animation: pulse-outer 0.8s ease-in infinite;
}

.preloader .pulse:after {
  -webkit-animation: pulse-inner 0.8s linear infinite;
          animation: pulse-inner 0.8s linear infinite;
}

@-webkit-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/*---------- GENERAL ----------*/
html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #23282d;
  background-color: #fff;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, a:hover, a:focus, a:active, input, textarea, select, option {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.title h2 {
  font-family: "MuseoSansCyrlBold", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #23282d;
}

input {
  cursor: text;
}

input[type='submit'], input[type='button'], input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}

input::-webkit-input-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input::-moz-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:-ms-input-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input::placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::-moz-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea {
  cursor: text;
}

textarea::-webkit-input-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea::-moz-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:-ms-input-placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea::placeholder {
  color: #8d8d8d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::-moz-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.input {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
}

.input input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0 45px;
}

.input input::-webkit-input-placeholder {
  color: #8d8d8d;
}

.input input::-moz-placeholder {
  color: #8d8d8d;
}

.input input:-ms-input-placeholder {
  color: #8d8d8d;
}

.input input::placeholder {
  color: #8d8d8d;
}

.input input:focus {
  border: 1px solid #ee2525;
}

.input input:focus::-webkit-input-placeholder {
  color: transparent;
}

.input input:focus::-moz-placeholder {
  color: transparent;
}

.input input:focus:-ms-input-placeholder {
  color: transparent;
}

.input input:focus::placeholder {
  color: transparent;
}

.input input:focus ~ img {
  opacity: 1;
}

.input:nth-child(1) img {
  width: 10px;
}

.input:nth-child(2) img {
  width: 12px;
}

.input:nth-child(3) img {
  width: 13px;
}

.input img {
  position: absolute;
  left: 15px;
  opacity: .5;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select .placeholder {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 42px;
  font-size: 14px;
  font-weight: 300;
  color: #8d8d8d;
  background-color: #fff;
  cursor: pointer;
  padding: 0 19px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.select .placeholder:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 13px;
  width: 13px;
  height: 13px;
  background-image: url("../img/icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  margin: -6.5px 0 0;
  z-index: 10;
}

.select.is-open .placeholder:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select.is-open ul {
  max-height: 300px;
  pointer-events: all;
}

.select ul {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  max-height: 0;
  background-color: #fff;
  list-style: none;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 0;
  margin: 0;
  z-index: 100;
}

.select ul li {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 9px 19px;
}

.select ul li:hover {
  color: #fff;
  background-color: #ee2525;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ssm-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
}

.is-navOpen {
  overflow: hidden;
}

nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 280px;
  background-color: #105f22;
  overflow-y: auto;
  overflow-x: visible;
  -webkit-transform: translate(-280px, 0);
      -ms-transform: translate(-280px, 0);
          transform: translate(-280px, 0);
  z-index: 100;
}

nav .menu {
  position: relative;
}

nav .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav .menu ul li {
  position: relative;
  display: block;
}

nav .menu ul li a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  border-bottom: 1px solid #407f4e;
  padding: 15px 20px;
}

nav .menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #ee2525;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

nav .menu ul li a:hover {
  background-color: #1a8832;
}

nav .menu ul li a:hover:after {
  opacity: 1;
}

nav .menu ul li a img {
  height: 25px;
  margin: 0 0 10px;
}

nav .menu ul li a span {
  display: block;
  width: 100%;
}

/*---------- END GENERAL ----------*/
/*---------- HEADER ----------*/
header .top {
  border-bottom: 1px solid #f2f2f2;
}

header .top .block {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
}

header .top .block .goverment {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

header .top .block .goverment a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
}

header .top .block .goverment a img {
  margin: 0 10px 0 0;
}

header .top .block .mail, header .top .block .address, header .top .block .mobile {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #363636;
}

header .top .block .mail img {
  width: 14px;
  margin: 0 8px 0 0;
}

header .top .block .address {
  margin: 0 50px;
}

header .top .block .address img {
  width: 16px;
  margin: 0 6px 0 0;
}

header .top .block .mobile {
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
}

header .top .block .mobile img {
  width: 17px;
  margin: 0 5px 0 0;
}

header .middle .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
}

header .middle .block .logo {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

header .middle .block .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .middle .block .nav ul li {
  margin: 0 0 0 20px;
}

header .middle .block .nav ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

header .middle .block .nav ul li a:hover {
  color: #ee2525;
}

header .middle .block .btn {
  width: 282px;
  height: 50px;
  font-weight: 700;
  color: #fff;
  background-color: #ee2525;
  margin: 0 0 0 50px;
}

header .middle .block .btn:hover {
  background-color: #cc1f1f;
}

header .middle .block .btn img {
  width: 21px;
  margin: 0 0 0 15px;
}

header .middle .block .ssm-toggle-nav {
  display: none;
  margin: 0 0 0 50px;
}

header .middle .block .ssm-toggle-nav img {
  width: 35px;
}

header .bottom {
  background-color: #105f22;
}

header .bottom .menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .bottom .menu ul li:first-child a {
  margin: 0 0 0 -28px;
}

header .bottom .menu ul li:last-child a {
  margin: 0 -28px 0 0;
  border-right: none;
}

header .bottom .menu ul li a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  border-right: 1px solid #407f4e;
  padding: 25px 28px 20px;
}

header .bottom .menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #ee2525;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .bottom .menu ul li a:hover {
  background-color: #1a8832;
}

header .bottom .menu ul li a:hover:after {
  opacity: 1;
}

header .bottom .menu ul li a img {
  height: 25px;
  margin: 0 0 10px;
}

header .bottom .menu ul li a span {
  display: block;
  width: 100%;
}

/*---------- END HEADER ----------*/
/*---------- MAIN ----------*/
.main {
  position: relative;
  background-image: url(../img/main_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 45px 0;
}

.main .title {
  color: #fff;
  margin: 10px 0 25px;
}

.main .title h1 {
  font-family: "MuseoSansCyrlBold", sans-serif;
  font-size: 32px;
  line-height: 1.3;
}

.main .title h1 span {
  display: block;
  font-size: 50px;
  text-transform: uppercase;
}

.main .title p {
  font-family: "MuseoSansCyrlRegular", sans-serif;
  font-size: 22px;
}

.main .btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 0;
}

.main .btn-group .btn {
  height: 50px;
  font-weight: 500;
  color: #fff;
}

.main .btn-group .btn:nth-child(1) {
  width: 260px;
  background-color: #ee2525;
  margin: 0 12px 0 0;
}

.main .btn-group .btn:nth-child(1):hover {
  background-color: #cc1f1f;
}

.main .btn-group .btn:nth-child(2) {
  width: 164px;
  background-color: transparent;
  border: 1px solid #fff;
}

.main .btn-group .btn:nth-child(2):hover {
  background-color: #ee2525;
  border: 1px solid #ee2525;
}

.main .navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main .navigation ul li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 25px 0 0;
}

.main .navigation ul li:after {
  content: '/';
  position: absolute;
  font-size: 13px;
  color: #fff;
  right: -15px;
}

.main .navigation ul li:last-child:after {
  display: none;
}

.main .navigation ul li a {
  display: block;
  font-size: 13px;
  color: #fff;
}

.main .navigation h2,.main .navigation h1 {
  font-family: "MuseoSansCyrlBold", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  margin: 5px 0 0;
}

/*---------- END MAIN ----------*/
/*---------- ABOUT ----------*/
.about {
  position: relative;
  padding: 95px 0 80px;
}

.about .img {
  position: absolute;
  top: 0;
  left: 0;
}

.about .block {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about .block .about-text {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  margin: 0 65px 0 0;
}

.about .block .about-text .title {
  margin: 0 0 15px;
}

.about .block .about-text .note {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  padding: 0 0 0 16px;
  margin: 0 0 30px;
}

.about .block .about-text .note:before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 4px;
  background-color: #105f22;
}

.about .block .about-text p {
  margin: 0 0 20px;
}

.about .block .about-text .btn {
  width: 120px;
  height: 37px;
  color: #23282d;
  background-color: transparent;
  border: 1px solid #c7c7c7;
}

.about .block .about-text .btn:hover {
  background-color: #c7c7c7;
}

.about .block .about-img {
  width: 325px;
}

/*---------- END ABOUT ----------*/
/*---------- DIRECTIONS ----------*/
.directions {
  position: relative;
  padding: 0 0 40px;
}

.directions .title {
  text-align: center;
  margin: 0 0 40px;
}

.directions .box-row {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.directions .box-row .box {
  position: relative;
  width: 263px;
  height: 284px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 30px;
}

.directions .box-row .box:nth-child(n+5) {
  width: 359px;
  height: 232px;
}

.directions .box-row .box:hover {
  -webkit-box-shadow: 0 7px 16px rgba(234, 38, 38, 0.45);
          box-shadow: 0 7px 16px rgba(234, 38, 38, 0.45);
}

.directions .box-row .box:hover .light {
  opacity: 0;
}

.directions .box-row .box:hover .light-hover {
  opacity: 1;
}

.directions .box-row .box .box-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.directions .box-row .box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directions .box-row .box .box-info {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 26px 15px;
  z-index: 3;
}

.directions .box-row .box .box-info .box-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 25px;
}

.directions .box-row .box .box-info .btn {
  width: 120px;
  height: 40px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.directions .box-row .box .box-info .btn:hover {
  color: #ee2525;
  background-color: #fff;
}

.directions .box-row .box .light {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  left: -100%;
  height: 200%;
  background: -webkit-radial-gradient(center ellipse, #ee2524 0%, rgba(238, 37, 36, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(ellipse at center, #ee2524 0%, rgba(238, 37, 36, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.directions .box-row .box .light-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  left: -100%;
  height: 200%;
  opacity: 0;
  background: -webkit-radial-gradient(center ellipse, #f47070 0%, rgba(244, 112, 112, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(ellipse at center, #f47070 0%, rgba(244, 112, 112, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 2;
}

/*---------- END DIRECTIONS ----------*/
/*---------- ADMISSION ----------*/
.admission {
  position: relative;
  background-image: url(../img/admission/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  padding: 115px 0 95px;
}

.admission .title {
  text-align: center;
  margin: 0 0 20px;
}

.admission .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "MuseoSansCyrlLight", sans-serif;
}

.admission .block h3 {
  font-family: "MuseoSansCyrlMedium", sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.admission .block .one {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  margin: 0 60px 0 0;
}

.admission .block .one h3 {
  margin: 0 0 40px;
}

.admission .block .one .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 35px;
}

.admission .block .one .box .box-icon {
  margin: 0 20px 0 0;
}

.admission .block .one .box .box-icon img {
  width: 45px;
}

.admission .block .one .box .box-info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  line-height: 1.2;
}

.admission .block .one .box .box-info span {
  display: block;
  font-family: "MuseoSansCyrlMedium", sans-serif;
  font-size: 20px;
}

.admission .block .one p {
  display: inline-block;
  line-height: 1.2;
  margin: 10px 0 0;
}

.admission .block .two {
  width: 618px;
  border: 5px solid rgba(228, 36, 36, 0.2);
  padding: 25px 30px 15px;
}

.admission .block .two h3 {
  margin: 0 0 10px;
}

.admission .block .two .box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  padding: 0 0 0 50px;
  margin: 0 0 20px;
}

.admission .block .two .box:nth-child(5) {
  width: 100%;
  margin: 0 0 25px;
}

.admission .block .two .box .box-icon {
  margin: 0 10px 0 0;
}

.admission .block .two .box .box-icon img {
  width: 35px;
}

.admission .block .two .box .box-info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  font-family: "MuseoSansCyrlRegular", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.admission .block .two p {
  margin: 0 0 25px;
}

/*---------- END ADMISSION ----------*/
/*---------- INRODUCE ----------*/
.introduce {
  position: relative;
  padding: 60px 0;
}

.introduce .title {
  margin: 0 0 25px;
}

.introduce .box-row {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #dcdcdc;
}

.introduce .box-row .box-col {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.introduce .box-row .box-col:nth-child(1) {
  width: -webkit-calc((100% / 3) * 2);
  width: calc((100% / 3) * 2);
}

.introduce .box-row .box-col:nth-child(1) .box {
  width: 50%;
  min-height: 140px;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.introduce .box-row .box-col:nth-child(1) .box:nth-child(n+5) {
  border-bottom: none;
}

.introduce .box-row .box-col:nth-child(2) {
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
}

.introduce .box-row .box-col .box {
  font-family: "MuseoSansCyrlLight", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  padding: 15px 0 25px 35px;
}

.introduce .box-row .box-col .box .box-numb {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border: 1px solid #ee2525;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin: 0 0 5px;
}

/*---------- END INRODUCE ----------*/
/*---------- DOCS ----------*/
.docs {
  position: relative;
  background-color: rgba(16, 95, 34, 0.03);
  padding: 25px 90px;
  margin: 0 0 55px;
}

.docs .title {
  margin: 0 0 15px;
}

.docs .title h2 {
  font-size: 26px;
}

.docs .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.docs .box-row .box {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 210px;
  margin: 0 60px 0 0;
}

.docs .box-row .box .box-icon {
  margin: 0 12px 0 0;
}

.docs .box-row .box .box-icon img {
  width: 35px;
}

.docs .box-row .box .box-info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
}

.docs .box-row .box .box-info a {
  display: block;
  line-height: 1.2;
  color: #236fc4;
}

.docs .box-row .box .box-info a:hover {
  color: #ee2525;
}

.docs .box-row .box .box-info a span {
  display: block;
  color: #5a4f4f;
}

.docs .img {
  position: absolute;
  bottom: 20px;
  right: 60px;
}

/*---------- END DOCS ----------*/
/*---------- PAGE ----------*/
.page {
  position: relative;
  padding: 50px 0 60px;
}

.page .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page .block .page-content {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  margin: 0 80px 0 0;
}

.page .block .page-content h3 {
  font-family: "MuseoSansCyrlMedium", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  margin: 45px 0 10px;
}

.page .block .page-content p {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 25px;
}

.page .block .page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}

.page .block .page-content ul li {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 25px;
}

.page .block .page-nav {
  width: 263px;
}

.page .block .page-nav .box {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin: 0 0 5px;
}

.page .block .page-nav .box:hover:before {
  opacity: 1;
}

.page .block .page-nav .box:hover:after {
  background-color: rgba(16, 95, 34, 0.8);
}

.page .block .page-nav .box:hover .light {
  opacity: 0;
}

.page .block .page-nav .box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background-color: #ee2525;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 4;
}

.page .block .page-nav .box:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(16, 95, 34, 0.5);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.page .block .page-nav .box a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  padding: 0 20px;
}

.page .block .page-nav .box .box-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.page .block .page-nav .box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page .block .page-nav .box .box-info {
  position: relative;
  z-index: 5;
}

.page .block .page-nav .box .light {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  left: -100%;
  height: 200%;
  background: -webkit-radial-gradient(center ellipse, #ee2524 0%, rgba(238, 37, 36, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(ellipse at center, #ee2524 0%, rgba(238, 37, 36, 0.99) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  opacity: .5;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 3;
}

/*---------- END PAGE ----------*/
/*---------- CALL-BACK ----------*/
.call-back {
  position: relative;
  background-image: url(../img/call_back_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 146px 0 105px;
}

.call-back .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.call-back .block .info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 40%;
}

.call-back .block .info .title h2 {
  color: #fff;
}

.call-back .block .form {
  width: 46%;
}

.call-back .block .form form {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.call-back .block .form form .input {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
  margin: 0 0 13px;
}

.call-back .block .form form .select {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
  margin: 0 0 13px;
}

.call-back .block .form form .btn {
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #ee2525;
  border: none;
  margin: 4px 0 0;
}

.call-back .block .form form .btn:hover {
  background-color: #cc1f1f;
}

/*---------- END CALL-BACK ----------*/
/*---------- FOOTER ----------*/
footer .top {
  border-bottom: 1px solid #f2f2f2;
}

footer .top .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

footer .top .block .logo {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

footer .top .block .logo  a{
  color: #1a8832;
}

footer .top .block .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .top .block .nav ul li {
  margin: 0 0 0 20px;
}

footer .top .block .nav ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

footer .top .block .nav ul li a:hover {
  color: #ee2525;
}

footer .top .block .btn {
  width: 282px;
  height: 50px;
  font-weight: 700;
  color: #fff;
  background-color: #ee2525;
  margin: 0 0 0 50px;
}

footer .top .block .btn:hover {
  background-color: #cc1f1f;
}

footer .top .block .btn img {
  width: 21px;
  margin: 0 0 0 15px;
}

footer .bottom .block {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 69px;
}

footer .bottom .block .goverment a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
}

footer .bottom .block .goverment a img {
  margin: 0 10px 0 0;
}

footer .bottom .block .mail, footer .bottom .block .address, footer .bottom .block .mobile {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #363636;
}

footer .bottom .block .contacts {
  margin: 0 40px;
}

footer .bottom .block .contacts .mail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 5px;
}

footer .bottom .block .contacts .mail img {
  width: 14px;
  margin: 0 8px 0 0;
}

footer .bottom .block .contacts .address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

footer .bottom .block .contacts .address img {
  width: 16px;
  margin: 0 6px 0 0;
}

footer .bottom .block .mobile {
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}

footer .bottom .block .mobile img {
  width: 17px;
  margin: 0 5px 0 0;
}

footer .bottom .block .copyright {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  color: #7e7e7e;
}

/*---------- END FOOTER ----------*/
/*---------- RESPONSIVE ----------*/
@media only screen and (max-width: 1200px) {
  header .top {
    display: none;
  }
  header .middle .block {
    padding: 20px 0;
  }
  header .middle .block .btn {
    display: none;
  }
  header .middle .block .ssm-toggle-nav {
    display: inline-block;
  }
  header .bottom {
    display: none;
  }
  .directions {
    padding: 0;
  }
  .directions .box-row .box {
    width: -webkit-calc((100% / 3) - 25px);
    width: calc((100% / 3) - 25px);
    height: 250px;
  }
  .directions .box-row .box:nth-child(n+5) {
    width: -webkit-calc((100% / 3) - 25px);
    width: calc((100% / 3) - 25px);
    height: 250px;
  }
  .admission {
    background-size: cover;
    padding: 100px 0 70px;
  }
  .admission .block {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .admission .block h3 br {
    display: none;
  }
  .admission .block .one {
    width: 100%;
    margin: 0 0 30px;
  }
  .admission .block .one h3 {
    margin: 0 0 25px;
  }
  .admission .block .one p {
    margin: 0;
  }
  .admission .block .two {
    width: 100%;
  }
  .introduce .box-row .box-col:nth-child(1) {
    width: 100%;
  }
  .introduce .box-row .box-col:nth-child(1) .box {
    min-height: initial;
  }
  .introduce .box-row .box-col:nth-child(1) .box:nth-child(n+5) {
    border-bottom: 1px solid #dcdcdc;
  }
  .introduce .box-row .box-col:nth-child(2) {
    width: 100%;
  }
  .introduce .box-row .box-col .box {
    padding: 15px 35px 25px;
  }
  .introduce .box-row .box-col .box .box-info br {
    display: none;
  }
  .docs {
    padding: 25px 40px;
  }
  .docs .title {
    margin: 0 0 30px;
  }
  .docs .box-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    width: 80%;
  }
  .docs .box-row .box {
    margin: 0 60px 30px 0;
  }
  .docs .img {
    bottom: 40px;
  }
  .page .block .page-content {
    width: 100%;
    margin: 0;
  }
  .page .block .page-nav {
    display: none;
  }
  .call-back {
    background: none;
    background-color: #105f22;
    padding: 50px 0 70px;
  }
  .call-back .block {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .call-back .block .info {
    width: 100%;
    margin: 0 0 50px;
  }
  .call-back .block .info .title h2 br {
    display: none;
  }
  .call-back .block .form {
    width: 100%;
  }
  footer .top .block {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  footer .top .block .logo {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
    color: #105f22;
  }
  footer .top .block .nav {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  footer .bottom .block {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: initial;
    padding: 20px 0;
  }
  footer .bottom .block .goverment {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
  footer .bottom .block .contacts {
    margin: 0;
  }
  footer .bottom .block .contacts .mail, footer .bottom .block .contacts .address {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  footer .bottom .block .contacts .address {
    margin: 0 50px;
  }
  footer .bottom .block .copyright {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  footer .bottom .block .copyright br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .title h2 {
    font-size: 30px;
  }
  header .middle .block {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  header .middle .block .logo {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
  header .middle .block .nav {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  header .middle .block .nav ul li {
    margin: 0 20px 0 0;
  }
  .main .title h1 {
    font-size: 30px;
  }
  .main .title h1 span {
    font-size: 45px;
  }
  .main .title p {
    font-size: 20px;
  }
  .about {
    padding: 50px 0 70px;
  }
  .about .block .about-text {
    width: 100%;
    margin: 0 0 30px;
  }
  .about .block .about-img {
    margin: 0 auto;
  }
  .directions .box-row .box {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .directions .box-row .box:nth-child(n+5) {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .admission {
    background: none;
    background-color: rgba(16, 95, 34, 0.03);
    padding: 50px 0;
    margin: 30px 0 0;
  }
  .admission .block h3 {
    font-size: 22px;
  }
  .admission .block .one .box .box-info span {
    font-size: 18px;
  }
  .admission .block .two {
    border: none;
    padding: 0;
  }
  .admission .block .two .box {
    padding: 0;
  }
  .admission .block .two .box .box-info {
    font-size: 18px;
  }
  .docs {
    padding: 25px 40px 0;
  }
  .docs .title {
    position: relative;
    z-index: 2;
  }
  .docs .box-row {
    position: relative;
    width: 100%;
    z-index: 2;
  }
  .docs .box-row .box {
    width: 100%;
    margin: 0 0 30px;
  }
  .docs .img {
    right: 20px;
    bottom: 20px;
    opacity: .5;
    z-index: 1;
  }
  footer .top .block {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .top .block .logo {
    margin: 0 0 30px;
  }
  footer .top .block .nav {
    margin: 0 0 30px;
  }
  footer .top .block .nav ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .top .block .btn {
    margin: 0;
  }
  footer .bottom .block .contacts .address {
    margin: 0 0 0 50px;
  }
  footer .bottom .block .mobile {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 768px) {
  .title h2 {
    font-size: 25px;
  }
  header .middle .block {
    padding: 20px 0 5px;
  }
  header .middle .block .logo {
    text-align: left;
  }
  header .middle .block .nav {
    width: 100%;
  }
  header .middle .block .nav ul {
    display: block;
    text-align: center;
  }
  header .middle .block .nav ul li {
    margin: 0 0 15px;
  }
  header .middle .block .ssm-toggle-nav {
    position: absolute;
    top: 40px;
    right: 15px;
    margin: 0;
  }
  .main {
    padding: 30px 0;
  }
  .main .title h1 {
    font-size: 25px;
  }
  .main .title h1 span {
    font-size: 32px;
  }
  .main .title p {
    font-size: 18px;
  }
  .main .navigation h2,.main .navigation h1 {
    font-size: 30px;
  }
  .about .block .about-text .note {
    font-size: 18px;
  }
  .directions .box-row .box {
    width: 70%;
    margin: 0 auto 30px;
  }
  .directions .box-row .box:nth-child(n+5) {
    width: 70%;
    margin: 0 auto 30px;
  }
  .admission .block h3 {
    font-size: 18px;
  }
  .admission .block .one .box .box-icon {
    margin: 0 15px 0 0;
  }
  .admission .block .one .box .box-info span {
    font-size: 16px;
  }
  .admission .block .two .box {
    width: 100%;
  }
  .admission .block .two .box .box-info {
    font-size: 16px;
  }
  .introduce .box-row .box-col:nth-child(1) .box {
    width: 100%;
    border-right: none;
  }
  .introduce .box-row .box-col .box {
    font-size: 18px;
    padding: 20px 25px;
  }
  .docs {
    padding: 25px 20px 0;
  }
  .docs .title h2 {
    font-size: 25px;
  }
  .page {
    padding: 30px 0;
  }
  .page .block .page-content h3 {
    font-size: 18px;
    margin: 30px 0 10px;
  }
  .page .block .page-content p {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .page .block .page-content ul {
    margin: 0 0 30px;
  }
  .page .block .page-content ul li {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .call-back {
    padding: 40px 0 50px;
  }
  .call-back .block .info {
    margin: 0 0 30px;
  }
  .call-back .block .form form .input {
    width: 100%;
  }
  .call-back .block .form form .select {
    width: 100%;
  }
  .call-back .block .form form .btn {
    font-size: 18px;
    height: 50px;
  }
  footer .top .block .nav {
    margin: 0 0 15px;
  }
  footer .top .block .nav ul {
    display: block;
    text-align: center;
  }
  footer .top .block .nav ul li {
    margin: 0 0 15px;
  }
  footer .bottom .block .contacts .mail, footer .bottom .block .contacts .address {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .bottom .block .contacts .mail {
    margin: 0 0 20px;
  }
  footer .bottom .block .contacts .address {
    margin: 0;
  }
}

@media only screen and (max-width: 480px) {
  nav {
    width: 240px;
    -webkit-transform: translate(-240px, 0);
        -ms-transform: translate(-240px, 0);
            transform: translate(-240px, 0);
  }
  nav .menu ul li a {
    font-size: 16px;
  }
  header .middle .block {
    padding: 20px 0 10px;
  }
  header .middle .block .logo img {
    width: 200px;
  }
  header .middle .block .nav ul li {
    margin: 0 0 10px;
  }
  header .middle .block .nav ul li a {
    font-size: 16px;
  }
  header .middle .block .ssm-toggle-nav {
    top: 35px;
  }
  header .middle .block .ssm-toggle-nav img {
    width: 30px;
  }
  .main .title h1 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .main .title h1 span {
    font-size: 20px;
  }
  .main .title p {
    font-size: 16px;
  }
  .main .btn-group {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main .btn-group .btn:nth-child(1) {
    width: 100%;
    margin: 0 0 15px;
  }
  .main .btn-group .btn:nth-child(2) {
    width: 100%;
  }
  .about .block .about-text .note {
    font-size: 16px;
  }
  .about .block .about-img {
    width: 100%;
  }
  .directions .box-row .box {
    width: 100%;
  }
  .directions .box-row .box:nth-child(n+5) {
    width: 100%;
  }
  footer .top .block .nav ul li {
    margin: 0 0 10px;
  }
  footer .top .block .nav ul li a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 359px) {
  /**/
}

/*---------- END RESPONSIVE ----------*/


.table{
  border: 1px solid #105f22;
}

.table tr td{
  padding: 5px 10px;
}

.table tr:nth-child(even) td{
  background: #eeeeee;
}