/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/* ------------ *Default ------------- */
/* Flex Class */
.fx-column {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;}
.flex-center {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;}
.fx-between {-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
.align-start {-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;}
.align-center {-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.align-end {-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;}
.fx-start {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;}
.fx-center {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx-end {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;}
.fx {display: -webkit-box;display: -ms-flexbox;display: flex;}
.fx-wrap {-ms-flex-wrap: wrap;flex-wrap: wrap;}
/* Flex Class End */

/* Reserved Class */
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.no-scroll {position: fixed;top: 0;left: 0;right: 0;}
.symbol-rub {font-family: -apple-system,system-ui,Arial,Helvetica,sans-serif;}
.text-crop {white-space: nowrap;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;}
/* Reserved Class End*/

/* Style Default*/
a, button, .speed {-webkit-transition: all .2s;-o-transition: all .2s;transition: all .2s;}
button {border: 0;padding: 0;cursor: pointer;background: none;}
* {-webkit-box-sizing: border-box;box-sizing: border-box;}
* {outline: none;}
/* Style Default End */

body {
  color: #470200;
  font-weight: 400;
  background: #fff;
  line-height: 1.187;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  font-family: 'Roboto Condensed', sans-serif;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/* Btn */

.btn {
  z-index: 1;
  height: 50px;
  font-size: 16px;
  padding: 0 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
  border-radius: 5px;
  max-width: 260px;width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
}

.btn:after {
  opacity: 0;
  z-index: -1;
  background: inherit;
  pointer-events: none;
  border-radius: inherit;
  top: 0;left: 0;right: 0;bottom: 0;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.btn:hover:after {
  opacity: 1;
}

.btn--primary {
  color: #000;
  background: -webkit-gradient(linear,left top, left bottom,from(#F39C12) ,to(#E67E22));
  background: -o-linear-gradient(top,#F39C12 ,#E67E22 100%);
  background: linear-gradient(to bottom,#F39C12 ,#E67E22 100%);
}

.btn--second {
  color: #fff;
  font-weight: normal;
  border: 3px solid #fff;
  background: transparent;
}

.btn--second:hover {
  color: #000;
  background: #fff;
}

/* Title */

.title__light {
  font-weight: 300;
}

.title__sub {
  font-size: 24px;
  margin-top: 5px;
  line-height: 1.208;
}

/* List */

.list--big {
  font-size: 40px;
  line-height: 1.2;
}

/* Swiper arrow */

.swiper-button-arrow {
  width: 40px;height: 40px;
}

.swiper-button-arrow:hover {
  opacity: .8;
}

.swiper-button-arrow:after {
  display: none;
}

.swiper-button-next {
  right: 0;
  background: url(../img/icons/sl-next.jpg) center/contain no-repeat;
}

.swiper-button-prev {
  left: 0;
  background: url(../img/icons/sl-prev.jpg) center/contain no-repeat;
}

/* Swiper dots */

.swiper-pagination {
  bottom: 5px !important;
}

.swiper-pagination-bullet {
  background: #fff;
  border-radius: 50%;
  opacity: 1 !important;
  width: 17px;height: 17px;
  border: 1px solid #818181;
}

.swiper-pagination-bullet-active {
  border-color: #fff;
  background: #B31813;
}

/* Form */

.form__field,
.form__field input,
.form__field textarea {
  width: 100%;
  display: block;
}

.form__field {
  margin-bottom: 25px;
}

.form__field input,
.form__field textarea {
  border: 0;
  color: #4F4F4F;
  font-size: 16px;
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
  border-radius: 5px;
  font-weight: normal;
  font-family: 'Roboto Condensed', sans-serif;
}

.form__field input {
  height: 50px;
  line-height: 50px;
}

.form__field textarea {
  resize: none;
  height: 125px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.form__field input:focus::-webkit-input-placeholder, .form__field textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.form__field input:focus::-moz-placeholder, .form__field textarea:focus::-moz-placeholder {
  color: transparent;
}

.form__field input:focus:-ms-input-placeholder, .form__field textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.form__field input:focus::-ms-input-placeholder, .form__field textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.form__field input:focus::placeholder,
.form__field textarea:focus::placeholder {
  color: transparent;
}

.form__field *::-webkit-input-placeholder {color: #C4C4C4;-webkit-transition: all .2s;transition: all .2s;}
.form__field *::-moz-placeholder          {color: #C4C4C4;-moz-transition: all .2s;transition: all .2s;}/* Firefox 19+ */
.form__field *:-moz-placeholder           {color: #C4C4C4;-moz-transition: all .2s;transition: all .2s;}/* Firefox 18- */
.form__field *:-ms-input-placeholder      {color: #C4C4C4;-ms-transition: all .2s;transition: all .2s;}

.form__field *:hover::-webkit-input-placeholder {color: #4F4F4F;}
.form__field *:hover::-moz-placeholder          {color: #4F4F4F;}/* Firefox 19+ */
.form__field *:hover:-moz-placeholder           {color: #4F4F4F;}/* Firefox 18- */
.form__field *:hover:-ms-input-placeholder      {color: #4F4F4F;}

/* ------------ *Header ------------- */

.header {
  z-index: 9;
  padding-top: 42px;
  position: relative;
}

.header:after,
.footer:after {
  top: 0;left: 0;
  width: 100%;height: 2px;
  background: url(../img/other/pattern-lines.jpg) repeat center top;
}

/* Logo */

.logo {
  color: #470200;
}

.logo img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo__text {
  margin-top: 5px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #7A0400;
}

.logo__text span {
  display: block;
}

.logo__text span:first-child {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.181;
}

.logo__text span:last-child {
  font-size: 18px;
  line-height: 1.222;
}

/* Relations */

.relations {
  text-align: right;
  margin-right: 23px;
}

.relations a:hover {
  opacity: .7;
}

.relations__tel {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.192;
}

.relations__tel a {
  color: #B31813;
}

.relations__tel a span {
  color: #009846;
}

.relations__email {
  font-size: 18px;
}

.relations__email a {
  color: #470200;
  text-decoration: underline;
}

.relations__email a:hover {
  text-decoration: none;
}

/* Toggle */

.navbar-toggle {
  margin-left: 25px;
}

.navbar-toggle span {
  display: block;
  position: relative;
  background: #470200;
  width: 22px;height: 2px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 5px;
}

.navbar-toggle.active span:first-child {
  top: 7px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:last-child {
  top: -7px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Nav */

.nav {
  position: absolute;
  background: #009846;
  top: 2px;left: 0;right: 0;
}

.nav__item {
  width: 100%;
}

.nav__link {
  color: #fff;
  height: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__link:after {
  display: none;
  width: 0;height: 0;
  left: 50%;bottom: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav__link:hover {
  opacity: .7;
}

.nav__link--active:after {
  display: block;
}

/* ----------- *Text mob ------------- */

.text-mob {
  font-size: 20px;
  line-height: 1.2;
  padding-top: 15px;
}

/* ------------- *Hero --------------- */

.hero {
  margin-top: 30px;
}

.hero__item {
  color: #fff;
  min-height: 450px;
  border-radius: 10px;
  padding: 63px 128px 63px 52px;
}

.hero__title {
  font-size: 70px;
  line-height: 1.2;
}

.hero__item .list {
  margin-top: 10px;
}

.hero__btns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero__btns .btn:not(:last-child) {
  margin-right: 30px;
}

/* ------------ *Clients ------------- */

.clients {
  padding-top: 21px;
}

.clients__img {
  margin-top: 47px;
  padding-left: 20px;
  padding-right: 104px;
}

.clients__img img,
.clients__item img {
  display: block;
}

.clients__item img {
  width: 100%;
}

.clients__group {
  margin-top: 5px;
}

.clients__group [class*='col-'] {
  margin-top: 25px;
}

/* ------------ *Сompany ------------- */

.company {
  padding-top: 72px;
}

.company__box {
  color: #fff;
  min-height: 440px;
  padding: 43px 13px;
  border-radius: 10px;
  background: url(../img/other/company.jpg) center/cover no-repeat;
}

.company .paragraph {
  font-size: 24px;
  line-height: 1.208;
  text-align: justify;
}

.company .paragraph p {
  margin-top: 27px;
}

.company .paragraph p span {
  margin: 0 5px;
}

/* ----------- *Territory ------------ */

.territory {
  padding-top: 35px;
}

.territory__img {
  margin-top: 52px;
}

/* ----------- *Products ------------- */

.products {
  padding-top: 109px;
}

.products .title {
  margin-bottom: 16px;
}

.products__inner:not(:last-child) {
  margin-bottom: 38px;
}

.products__row [class*='col-'] {
  margin-bottom: 20px;
}

.products__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.products__item {
  display: block;
  color: #470200;
  position: relative;
}

.products__item span {
  font-size: 30px;
  line-height: 1.2;
  position: absolute;
  top: 3px;left: 11px;
}

.products__item img {
  width: 100%;
  display: block;
}

.products__item:hover {
  color: #a8a8a8;
}

/* ----------- *Feedback ------------- */

.feedback {
  padding-top: 37px;
}

.feedback__box {
  color: #fff;
  padding: 26px 10px;
  border-radius: 10px;
  background: url(../img/other/feedback.jpg) center/cover no-repeat;
}

.feedback .title__sub {
  margin-top: 12px;
}

.feedback__form {
  margin-top: 45px;
}

.form__group {
  margin: 0 auto;
  max-width: 550px;width: 100%;
}

.feedback__form .btn {
  margin: 8px auto 0;
}

.form__text {
  font-weight: 300;
  margin-top: 20px;
}

.form__text a {
  color: inherit;
  text-decoration: underline;
}

.form__text a:hover {
  text-decoration: none;
}

/* ------------ *Footer -------------- */

.footer {
  color: #fff;
  margin-top: 50px;
  position: relative;
  background: #7A0400;
  padding: 25px 0 22px;
}

.footer a {
  color: inherit;
}

.footer .container {
  position: relative;
}

.footer__item--info,
.footer__item--policy {
  width: 25%;
}

.footer__item--nav {
  width: 22%;
}

.footer__item--cont {
  width: 47%;
}

.footer__item--info {
  padding-bottom: 45px;
}

.footer__item--info span {
  display: block;
  font-size: 18px;
  line-height: 1.22;
}

.footer__item--info p {
  margin-top: 2px;
}

.footer__item--nav li:not(:last-child) {
  margin-bottom: 5px;
}

.footer__item--nav li a,
.footer__title a {
  text-decoration: underline;
}

.footer__item--nav li a:hover,
.footer__title a:hover {
  text-decoration: none;
}

.footer__title {
  margin-bottom: 5px;
}

.footer__tel {
  font-size: 20px;
  line-height: 1.45;
}

.footer__email {
  font-size: 17px;
  line-height: 1.47;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__contact:last-child .footer__email {
  margin-top: 5px;
}

.footer__item--policy {
  font-size: 14px;
  position: absolute;
  line-height: 1.214;
  top: 70px;left: 10px;
}

.footer__item--policy a {
  text-decoration: underline;
}

.footer__item--policy a:hover {
  text-decoration: none;
}

/* ------------- *Modal -------------- */

.modal {
  z-index: 99;
  display: none;
  overflow: auto;
  position: fixed;
  background: rgba(0,0,0,0.9);
  top: 0;left: 0;right: 0;bottom: 0;
}

.fullScreen {
  padding: 50px 0;
  min-height: 100%;
}

.modal__box {
  color: #fff;
  padding: 20px;
  position: relative;
  border-radius: 5px;
  background: #7A0400;
  max-width: 450px;width: 96%;
}

.modal__close {
  color: #fff;
  line-height: 1;
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  width: 20px;height: 20px;
  top: -20px;right: -20px;
  font-family: 'Roboto Condensed', sans-serif;
}

.modal__close:hover {
  opacity: .6;
}

.modal__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 15px;
}

.modal__form .form__field,
.modal__form .btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;width: 100%;
}

.modal__form .form__field {
  margin-bottom: 20px;
}

/* Seccess */

.form-success {
  display: none;
  padding: 70px 0;
}

.form-success span {
  display: block;
  font-size: 22px;
}

.form-success p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 300;
}

/* ---------- *Breadcrumb ------------ */

.breadcrumb {
  margin: 60px 0 20px;
}

.breadcrumb__item {
  color: #80AF2B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__item:not(:last-child):after {
  content: "/";
  margin: 0 4px;
}

.breadcrumb__item a {
  color: inherit;
  text-decoration: underline;
}

.breadcrumb__item a:hover {
  text-decoration: none;
}

/* =================================== */
/*            Page: Contacts           */
/* =================================== */

.contacts__inner:not(:last-child) {
  margin-bottom: 10px;
}

.contacts__inner span {
  display: block;
  color: #B31813;
  margin-bottom: 4px;
}

.contacts__inner p {
  font-size: 20px;
  line-height: 1.2;
}

.contacts__inner p a {
  color: inherit;
}

.contacts__inner p a:hover {
  text-decoration: underline;
}

.contacts__inner--info {
  margin-top: auto;
}

.contacts__inner--info p {
  font-size: 16px;
}

.contacts__map iframe {
  display: block;
  margin-left: auto;
}

/* =================================== */
/*             Page: Content           */
/* =================================== */

.content .title {
  color: #B31813;
  margin-bottom: 20px;
}

.content .title h1 {
  font-size: 22px;
  line-height: 1.181;
}

.content .title h2 {
  font-size: 20px;
  line-height: 1.2;
}

.content .paragraph p:not(:last-child) {
  margin-bottom: 18px;
}

.content .paragraph a {
  color: inherit;
}

.content .paragraph a:hover {
  text-decoration: underline;
}

.content__head {
  padding-bottom: 40px;
}

.content__body .row {
  padding-bottom: 20px;
}

/* =================================== */
/*             Page: Sitemap           */
/* =================================== */

.setemap {
  padding-bottom: 30px;
}

.setemap__list {
  line-height: 1.626;
}

.setemap__list li ul {
  padding-left: 10px;
}

.setemap__list li a {
  color: #470200;
}

.setemap__list li a:hover {
  text-decoration: underline;
}

/* =================================== */
/*             Page: Policy            */
/* =================================== */

.policy {
  color: #000;
  line-height: 1.375;
}

.policy span {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 22px;
  margin-bottom: 3px;
}

.policy__box {
  margin: 0 auto;
  padding: 20px 0 40px;
  max-width: 980px;width: 100%;
}

/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* --------- *Before::After ---------- */
.btn:after,
.header:after,
.nav__link:after,
.footer:after {
  content: " ";
  position: absolute;
}