body {
  font-family: "GothamPro";
  color: #333333;
}

header {
  position: fixed;
  background: #fff;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
}

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

.wrap_content {
  min-height: 100vh;
  height: auto !important;
  height: 100%;
  background: #fff;
}

.wrap_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0 10px;
}

.logo {
  width: 190px;
}

.logo img {
  max-width: 100%;
}

.navigation {
  width: calc(100% - 190px);
}

.navbar_collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.navbar_collapse ul {
  padding-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: calc(100% - 255px);
  font-family: "GothamPro-Bold";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar_collapse ul li a {
  color: #222222;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.navbar_collapse ul li a:before {
  content: "";
  -webkit-transition: .4s;
  transition: .4s;
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #1a5f00;
}

.navbar_collapse ul li a:hover:before {
  width: 100%;
}

.contact_header {
  width: 255px;
  text-align: center;
}

.contact_header .tel {
  font-size: 20px;
  color: #888888;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  -webkit-transition: .4s;
  transition: .4s;
}

.contact_header .tel strong {
  font-family: "GothamPro-Bold";
  color: #333333;
}

.contact_header .tel i {
  color: #1a5f00;
  margin-right: 10px;
}

.contact_header .tel:hover {
  opacity: 0.7;
}

.contact_header_tel i {
  display: inline-block;
  vertical-align: middle;
}

.contact_header_tel img {
  display: inline-block;
  vertical-align: middle;
}

.contact_header_call_free {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
}

.btn_st {
  width: 100%;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  font-family: "GothamPro-Bold";
  background: transparent;
  border: 0;
  overflow: visible;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn_st > span {
  padding: 15px 0;
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(#66e252), to(#1a5f00));
  background-image: linear-gradient(to right, #66e252 0%, #1a5f00 100%);
  border-radius: 25px;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn_st > span span {
  font-family: "GothamPro";
}

.btn_st:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 100%;
  background-color: #1a5f00;
  border-radius: 25px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: -1;
  -webkit-transition: .1s;
  transition: .1s;
}

.btn_st:hover {
  top: 1px;
}

.btn_st:hover span {
  -webkit-box-shadow: 0 15px 25px rgba(0, 158, 227, 0.25);
  box-shadow: 0 15px 25px rgba(0, 158, 227, 0.25);
}

.btn_st:hover:before {
  bottom: -3px;
}

.btn_st:active {
  top: 3px;
}

.btn_st:active:before {
  bottom: -1px;
}

.btn_footer_callback span i,
.btn_footer_callback span img {
  display: inline-block;
  vertical-align: middle;
}

.btn_footer_callback span i {
  margin-right: 8px;
}

.btn_footer_callback_free {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.navbar_toggle {
  display: none;
}

.section1 {
  padding: 75px 0 55px;
}

section {
  position: relative;
}

section.top_before:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  top: -40px;
  z-index: 1;
  background: url("../img/top_before_section.png") no-repeat top center;
}

section.bot_after:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: -40px;
  z-index: 1;
  background: url("../img/bot_after_section.png") no-repeat top center;
}

section.top_before_grey:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  top: -40px;
  z-index: 1;
  background: url("../img/top_before_section_grey.png") no-repeat top center;
}

section.bot_after_grey:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: -40px;
  z-index: 1;
  background: url("../img/bot_after_section_grey.png") no-repeat top center;
}

.wrap_title_section1 {
  border-left: 2px solid #66e252;
  padding-left: 30px;
}

.wrap_title_section1 h1 {
  text-transform: uppercase;
  font-size: 60px;
  color: #1a5f00;
  font-family: "GothamPro-Black";
  padding-bottom: 10px;
  letter-spacing: 6px;
}

.wrap_title_section1 h1 span {
  font-size: 24px;
  color: #531f7a;
  font-family: "GothamPro-Bold";
  display: block;
  letter-spacing: 0;
}

.wrap_title_section1 p {
  overflow: hidden;
  max-width: 905px;
  color: #531f7a;
  font-size: 20px;
}

.wrap_title_section1 p span {
  position: relative;
}

.wrap_title_section1 p span:before {
  content: "";
  position: absolute;
  left: 120%;
  top: 50%;
  background: rgba(0, 0, 0, 0.1);
  height: 1px;
  width: 1000px;
}

.wrap_title_section1 p i {
  margin-right: 19px;
}

.wrap_content_section1 {
  position: relative;
}

.wrap_content_section1 > img {
  position: absolute;
  left: -128px;
  top: 34px;
}

.content_section1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 15px;
}

.content_section1 ul {
  width: 30%;
  margin: auto 60px;
}

.content_section1 ul li {
  font-size: 18px;
  margin-bottom: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.content_section1 ul li p {
  width: calc(100% - 60px);
}

.content_section1 ul li p strong {
  font-family: "GothamPro-Bold";
}

.wrap_form_content {
  width: 335px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(230, 230, 230, 0.3);
  border-radius: 20px;
  padding: 10px;
  position: relative;
}

.thanks_modal h3 {
  font-size: 18px;
  font-family: "GothamPro-Bold";
}

.thanks_modal .form_content {
  padding: 15px;
  text-align: center;
}

.form_content {
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 80px 30px 30px;
}

.form_content p {
  padding: 10px 0;
  font-size: 14px;
  font-family: "GothamPro-Bold";
  text-align: center;
}

.wrap_title_form {
  width: 255px;
  padding: 0 5px 5px;
  background-color: #1a5f00;
  border-radius: 0px 0px 10px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  top: 2px;
}

.wrap_title_form:before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 8px;
  background: url("../img/bef_left_title_form.png") no-repeat;
}

.wrap_title_form:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0;
  width: 4px;
  height: 8px;
  background: url("../img/after_right_title_form.png") no-repeat;
}

.title_form {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px 0px 10px 10px;
}

.title_form h3 {
  color: #fff;
  font-family: "GothamPro-Bold";
  text-align: center;
  padding: 20px 0 17px;
  font-size: 24px;
}

.svg_ico {
  width: 49px;
  height: 49px;
  position: relative;
}

.svg_ico img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form_group {
  position: relative;
  margin-bottom: 15px;
}

.form_group span {
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: white;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 5px 15px rgba(0, 42, 255, 0.06);
  box-shadow: 0 5px 15px rgba(0, 42, 255, 0.06);
  border-radius: 50%;
  color: #011f56;
  font-size: 18px;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form_group span i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form_group.completed .form_control {
  border: 2px solid #1a5f00;
}

.form_group.completed span {
  background-color: #1a5f00;
  border: 1px solid #e6e6e6;
  color: #fff;
}

.form_group:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #1a5f00;
}

.form_control {
  height: 50px;
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 25px;
  width: 100%;
  text-align: center;
  padding: 0 5px;
  font-family: "GothamPro";
  font-size: 16px;
}

.form_control:focus {
  outline: none;
}

.form_control::-webkit-input-placeholder {
  color: #011f56;
}

.form_control::-moz-placeholder {
  color: #011f56;
}

.form_control:-ms-input-placeholder {
  color: #011f56;
}

.form_control:-moz-placeholder {
  color: #011f56;
}

.form_control.error {
  border-color: red !important;
}

.section2 {
  padding: 77px 0 30px;
}

.title_section {
  color: #531f7a;
  font-size: 40px;
  text-transform: uppercase;
  font-family: "GothamPro-Black";
  text-align: center;
  padding-bottom: 55px;
  position: relative;
}

.title_section--page {
  margin-bottom: 40px;
}

.title_section:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 240px;
  height: 1px;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("../img/before_title.png") no-repeat;
}

.title_section:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 40px;
  background: url("../img/after_title.png") no-repeat;
}

.container {
  position: relative;
}

.container > p {
  font-size: 90px;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "GothamPro-Black";
  color: #fff;
  position: absolute;
  top: 80px;
  text-transform: uppercase;
  width: 100%;
  left: 0;
  right: 0;
}

.wrap_steps {
  padding-top: 50px;
}

.wrap_steps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wrap_steps ul li {
  text-align: center;
  position: relative;
  color: #000000;
  font-size: 20px;
  width: 220px;
  padding-bottom: 20px;
}

.wrap_steps ul li span {
  width: 40px;
  height: 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#7e569c), to(#531f7a));
  background-image: linear-gradient(to right, #7e569c 0%, #531f7a 100%);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 80px;
  right: -60px;
}

.wrap_steps ul li span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0.7;
}

.wrap_steps ul li:last-child span {
  display: none;
}

.wrap_step_img {
  width: 200px;
  height: 200px;
  background-color: #ccc;
  border: 8px solid white;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.step_img {
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.step_img img {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(83, 31, 122, 0.4);
  z-index: 1;
}

.section3 {
  padding: 117px 0 80px;
}

.wrap_list_clients {
  background: #fff;
  margin-top: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wrap_list_clients ul {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.wrap_list_clients ul li {
  padding: 37px 0px 0;
  width: 16.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrap_list_clients ul li img {
  max-width: 100%;
}

.section4 {
  padding: 70px 0 80px;
}

.wrap_list_use {
  padding-top: 95px;
  position: relative;
}

.wrap_list_use > img {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.list_use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.list_use ul {
  width: 32%;
}

.list_use ul li {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.list_use ul li p {
  width: calc(100% - 75px);
  line-height: 1.2;
}

.list_use ul:first-child li {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}

.list_use .svg_ico {
  width: 65px;
  height: 65px;
}

.section5 {
  padding-top: 115px;
}

.section5 .container {
  position: relative;
  padding-bottom: 85px;
}

.section5 .container > img {
  position: absolute;
  bottom: 0;
  left: -140px;
}

.wrap_content_section5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.wrap_content_section5 .img-responsive {
  margin: 0 auto;
}

.right_content_section5 {
  width: 66%;
}

.title_section_second h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #1a5f00;
  font-family: "GothamPro-Black";
}

.title_section_second h2 span {
  display: block;
  font-size: 24px;
  color: #531f7a;
  font-family: "GothamPro-Bold";
  padding-bottom: 10px;
}

.bot_content_section5 {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  color: #555555;
  padding: 25px;
  margin-top: 30px;
  line-height: 1.2;
}

.bot_content_section5 h2 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}

.bot_content_section5 h2:first-of-type {
  margin-top: 8px;
}

.bot_content_section5 p {
  margin-bottom: 14px;
}

.text_group ul,
.bot_content_section5 ul {
  padding-left: 30px;
  margin-bottom: 24px;
  list-style-type: disc;
}

.text_group ul li,
.bot_content_section5 ul li {
  margin-bottom: 2px;
}

.text_group {
  padding-top: 10px;
  color: #222222;
}

.text_group h2 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}

.text_group p {
  padding-top: 20px;
  line-height: 1.2;
}

.text_group h2 ~ p {
  padding-top: 0;
}

.section6 {
  padding: 74px 0 80px;
}

.text_group_nospace {
  padding-top: 0;
}

.wrap_table_price {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(230, 230, 230, 0.5);
  border-radius: 20px;
  margin-top: 30px;
  padding: 14px;
}

.table_price {
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}

table {
  width: 100%;
  border-radius: 10px;
}

table thead {
  font-size: 14px;
  color: #888888;
}

table thead tr {
  background: #fff;
  border-top: 0;
}

table tr {
  width: 30%;
  border-top: 1px solid #e6e6e6;
  background: #e9ffe9;
}

table tr:nth-child(2n) {
  background: #fff;
}

table tr td {
  vertical-align: middle;
  height: 70px;
  text-align: right;
  color: #1a5f00;
  font-size: 18px;
}

table tr td:first-child {
  padding-left: 50px;
  text-align: left;
  width: 40%;
  font-size: 20px;
  color: #1a5f00;
  font-family: "GothamPro-Medium";
}

table tr td:last-child {
  padding-right: 50px;
  text-align: right;
  font-family: "GothamPro-Medium";
  color: #531f7a;
}

table tr th {
  height: 50px;
  width: 30%;
  text-align: right;
  vertical-align: middle;
}

table tr th:first-child {
  padding-left: 50px;
  text-align: left;
  width: 40%;
}

table tr th:last-child {
  padding-right: 50px;
  text-align: right;
}

.section7 {
  padding: 117px 0 0;
}

.section7 .container {
  padding-bottom: 90px;
  position: relative;
}

.section7 .container > img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.title_section_second > p {
  padding: 30px 0 20px;
  font-size: 18px;
  line-height: 1.2;
}

.title_section_second > p strong {
  font-family: "GothamPro-Bold";
}

.section8 {
  padding: 80px 0 75px;
}

.wrap_contact_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.map_content {
  border: 8px solid white;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 69%;
}

.map_contacts_call_free {
  display: block;
}

.contact_list {
  width: 29%;
  padding-top: 22px;
}

.contact_list h2 {
  text-transform: uppercase;
  font-size: 30px;
  color: #531f7a;
  font-family: "GothamPro-Black";
  padding-bottom: 40px;
}

.contact_list ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 1.2;
}

.contact_list ul li:last-child {
  margin-bottom: 0;
}

.contact_list ul li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #1a5f00;
}

.contact_list ul li strong {
  font-size: 18px;
  font-family: "GothamPro-Bold";
  display: block;
  padding-bottom: 5px;
}

.contact_list ul li a {
  color: #222222;
  text-decoration: none;
}

.contact_list ul li a span {
  font-family: "GothamPro-Bold";
}

.contact_list ul li a:hover {
  opacity: 0.7;
}

#map {
  height: 365px;
}

footer {
  background: #fff;
  padding: 20px 0;
  color: #222222;
}

.f_content {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f_content .btn_st {
  font-size: 20px;
  width: 255px;
}

.f_content p {
  font-size: 14px;
}

.f_content p a {
  color: #888888;
  text-decoration: none;
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: .4s;
  transition: .4s;
}

.f_content p a:hover {
  opacity: 0.7;
}

.f_content:first-child {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f_content:first-child p {
  padding-left: 10px;
  font-size: 16px;
}

.wrap_footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal_f {
  display: none;
  width: 335px;
}

.fancybox-skin {
  padding: 0 !important;
  background: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.fancybox-desktop {
  overflow: visible !important;
}

.fancybox-close {
  right: 0px;
  top: -20px;
  width: 13px;
  height: 13px;
  background: url("../img/close.png") no-repeat;
}

.fancybox-inner {
  overflow: visible !important;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  width: 47px;
  height: 47px;
  background: #2194ef;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  text-indent: -99999px;
  z-index: 1;
}

.slick-arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 24px;
  background: url(../img/before_btn.png) no-repeat;
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow.slick-next:before {
  background: url(../img/before_btn.png) no-repeat -13px 0;
}

.section_in {
  padding: 70px 0 80px;
}

.wrap_btn {
  padding-top: 30px;
  text-align: center;
}

.wrap_btn .btn_st {
  width: 350px;
}

.grid {
  list-style: none;
  margin-left: -40px;
}

.gc {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-right: -.25em;
  min-height: 1px;
  padding-left: 40px;
  vertical-align: top;
}

.gc--1-of-3 {
  width: 33.33333%;
}

.gc--2-of-3 {
  width: 66.66666%;
}

.naccs {
  position: relative;
  max-width: 900px;
  margin: 100px auto 0;
}

.naccs .menu div {
  padding: 15px 20px 15px 40px;
  margin-bottom: 10px;
  color: #3ad100;
  background: #278d00;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  font-weight: 700;
  -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.naccs .menu div span.light {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 18px;
  left: 15px;
  background-color: #3ad100;
  border-radius: 100%;
  -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div.active span.light {
  background-color: #Fff;
  left: 0;
  height: 100%;
  width: 3px;
  top: 0;
  border-radius: 0;
}

.naccs .menu div.active {
  color: #Fff;
  padding: 15px 20px 15px 20px;
}

ul.nacc {
  position: relative;
  height: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  position: absolute;
  list-style: none;
  -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li.active {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

ul.nacc li p {
  margin: 0;
  color: #fff;
  padding-right: 20px;
}

.section-new {
  background-color: #1a5f00;
  height: 350px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tabs {
  width: 80%;
  margin-top: 44px;
}

.tabs-2 {
  margin-top: 24px;
  width: 80%;
}
/*# sourceMappingURL=main.css.map */