@charset "UTF-8";
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf); }

@font-face {
  font-family: RobotoBold;
  src: url(../fonts/Roboto-Bold.ttf); }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font: inherit;
  vertical-align: baseline;
  font-family: "Roboto", sans-serif; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  -webkit-transition: color .3s;
  transition: color .3s; }

/*глобальные настройки*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

a {
  text-decoration: none;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s; }

p:not(:last-child) {
  margin-bottom: 10px; }

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

b, strong, .strong {
  font-family: 'RobotoBold', sans-serif;
  font-weight: bold; }

h1, h2, h3 {
  margin-bottom: 30px;
  font-family: 'RobotoBold', sans-serif; }

h1 {
  font-size: 1.875em; }

h2 {
  font-size: 1.625em; }

h3 {
  font-size: 1.375em; }

ul, ol {
  margin-bottom: 15px;
  padding-left: 30px; }
  ul li, ol li {
    padding: 5px 0;
    line-height: 20px; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

.container {
  width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative; }

.title-section {
  margin-bottom: 50px;
  padding: 10px 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: 2.5em;
  position: relative; }

.title-desc {
  font-size: 1.25em;
  line-height: 30px; }

.mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050; }

html.overflow {
  overflow: hidden; }
  html.overflow .modal {
    overflow-y: auto; }

.hidden {
  display: none; }

.label-checkbox {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  margin-right: 15px;
  font-size: 13px; }
  .label-checkbox::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #b7c3cc; }

input[type=checkbox] {
  width: 1px;
  height: 1px;
  margin: 0; }

input[type=checkbox]:checked + label:before {
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: #333;
  text-align: center;
  line-height: 15px; }

.btn {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer; }

header {
  height: 500px;
  background: url("../images/back.jpg") 50% no-repeat;
  background-size: cover;
  position: relative; }
  header .line {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000; }
    header .line .logo a {
      font-family: 'RobotoBold', sans-serif;
      font-size: 1.5em;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px; }
    header .line .menu ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      padding: 0;
      list-style-type: none; }
      header .line .menu ul li:not(:last-child) {
        margin-right: 35px; }
      header .line .menu ul li a {
        font-family: 'RobotoBold', sans-serif;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px; }
        header .line .menu ul li a:hover {
          text-decoration: underline; }
    header .line .phone a {
      font-family: 'RobotoBold', sans-serif;
      font-size: 1.25em;
      color: #fff; }
      header .line .phone a:hover {
        text-decoration: underline; }
  header .banner-text {
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    font-family: 'RobotoBold', sans-serif;
    font-size: 3.125em;
    letter-spacing: 2px;
    width: 700px;
    text-align: center; }
    header .banner-text p {
      font-family: inherit; }

.section-services {
  padding: 40px 0;
  border-bottom: 2px solid #3d915f;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.5); }
  .section-services .flex-box {
    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; }
    .section-services .flex-box .item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 24%; }
      .section-services .flex-box .item:hover .name {
        background: #2e6d47; }
      .section-services .flex-box .item .img {
        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;
        margin: 0;
        position: relative;
        height: 180px;
        overflow: hidden; }
        .section-services .flex-box .item .img img {
          min-height: 100%;
          max-width: 150%; }
      .section-services .flex-box .item .name {
        padding: 15px;
        background: #3d915f;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        font-size: 0.875em;
        letter-spacing: 1px;
        -webkit-transition: background .3s;
        transition: background .3s;
        line-height: 20px; }

.section-advantages {
  padding: 40px 0; }
  .section-advantages .title-section {
    margin-bottom: 30px;
    text-align: center; }
  .section-advantages .flex-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .section-advantages .flex-box .item {
      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: 48%;
      margin-bottom: 15px; }
      .section-advantages .flex-box .item .img {
        -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
        margin-right: 15px;
        max-width: 100px; }
      .section-advantages .flex-box .item p {
        font-family: 'RobotoBold', sans-serif;
        line-height: 24px; }

.section-partners {
  padding: 40px 0;
  border-top: 2px solid #3d915f;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.5); }
  .section-partners .title-section {
    text-align: center; }
  .section-partners .owl-carousel {
    padding: 0 15px; }
    .section-partners .owl-carousel .owl-stage {
      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; }
    .section-partners .owl-carousel .item {
      text-align: center; }
    .section-partners .owl-carousel img {
      display: inline-block;
      width: auto; }
  .section-partners .owl-dots {
    display: none; }
  .section-partners .owl-nav {
    margin-top: 15px;
    text-align: center; }
    .section-partners .owl-nav button {
      margin: 0 15px;
      background: #494949 !important;
      width: 40px;
      height: 40px;
      border: none;
      cursor: pointer;
      -webkit-transition: background .3s;
      transition: background .3s; }
      .section-partners .owl-nav button:hover {
        background: #3d915f !important; }
      .section-partners .owl-nav button:focus {
        outline: none; }
      .section-partners .owl-nav button span {
        font-size: 2.875em;
        color: #fff;
        line-height: 20px; }

footer {
  padding: 30px 0;
  background: #3d915f; }
  footer .container {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  footer .address p {
    font-size: 0.8125em; }
  footer p {
    color: #fff; }
    footer p a {
      color: inherit; }
      footer p a:hover {
        color: inherit; }

.section-page {
  padding: 40px 0; }
  .section-page .content p {
    font-size: 0.875em;
    line-height: 20px; }

@media only screen and (max-width: 1200px) {
  .container {
    width: 980px; } }

@media only screen and (max-width: 992px) {
  .container {
    width: 750px; }
  .section-services .flex-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .section-services .flex-box .item {
    width: 49%;
    margin-bottom: 15px; }
  .section-services .flex-box .item .img img {
    min-width: 100%; } }

@media only screen and (max-width: 768px) {
  .container {
    width: 100%; }
  .title-section {
    font-size: 1.375em; }
  header {
    height: 300px; }
  header .line {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  header .line .menu {
    margin: 15px 0; }
  header .line .menu ul li a {
    font-size: 0.875em; }
  header .banner-text {
    font-size: 1.5em;
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    bottom: 30px;
    top: auto; }
  .section-advantages .flex-box .item {
    width: 100%; }
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    footer .container .copy {
      margin-bottom: 20px; } }

@media only screen and (max-width: 480px) {
  header .line .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  header .line .menu ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0; }
  .section-services .flex-box .item {
    width: 100%; }
  header .banner-text {
    padding: 20px;
    bottom: 0; } }
