@font-face {
  font-family: "univers";
  src: url("../fonts/UniversLTStd.woff2") format("woff2"), url("../fonts/UniversLTStd.woff") format("woff"), url("../fonts/UniversLTStd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "univers";
  src: url("../fonts/UniversLTStd-Bold.woff2") format("woff2"), url("../fonts/UniversLTStd-Bold.woff") format("woff"), url("../fonts/UniversLTStd-Bold.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "univers";
  src: url("../fonts/UniversLTStd-Light.woff2") format("woff2"), url("../fonts/UniversLTStd-Light.woff") format("woff"), url("../fonts/UniversLTStd-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/*********
 * Fonts *
 *********/
/********** 
 * Colors *
 **********/
/*********** 
 * Borders *
 ***********/
/************ 
 * Spacings *
 ************/
/**************
 * Grid *
 **************/
/********
 * Misc *
 ********/
/********
 * Dots radiuses *
 ********/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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;
}

input {
  border: 0;
}

input, textarea {
  outline: 0;
}

body {
  color: #444444;
  font-size: 16px;
  font-family: "univers";
  background-color: #FFF;
  padding-top: 74px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 49px;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  body {
    padding-top: 23px;
  }
}

html {
  font-size: 16px;
}

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

a {
  color: #00A748;
  text-decoration: none;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}

.p-0 {
  padding: 0 !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.plr-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.layout-404 {
  padding-bottom: 100px;
}

.animated {
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-300%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
  animation-timing-function: ease-out;
}

@keyframes slideInRight {
  from {
    transform: translate3d(300%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
  animation-timing-function: ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .mobile-only {
    display: inherit;
  }
}

.hide-fix {
  display: none !important;
}

.list-numbered li {
  margin-bottom: 15px;
}
.list-numbered--number {
  background-color: #03AA4B;
  color: white;
  padding: 2px 6px;
  margin-bottom: 15px;
}

.container {
  width: 100%;
  margin: auto;
}
.container--padded {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1px) {
  .container .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 25%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
    min-width: 75%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 15px;
    display: block;
  }
  .container .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .container .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .container .col-sm-offset-3 {
    margin-left: 25%;
  }
  .container .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .container .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .container .col-sm-offset-6 {
    margin-left: 50%;
  }
  .container .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .container .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .container .col-sm-offset-9 {
    margin-left: 75%;
  }
  .container .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .container .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .container .col-sm-offset-12 {
    margin-left: 100%;
  }
  .container .col-sm--no-spaces {
    padding: 0 !important;
  }
  .container .col-sm--hidden {
    display: none;
  }
  .container .col-sm--shown {
    display: block;
  }
  .container .col-sm--flex {
    display: flex;
  }
  .container .col-sm--flex.col-sm--wrap {
    flex-wrap: wrap;
  }
}
.container .col-center {
  margin: auto;
}
.container .col--flex-end {
  align-self: flex-end;
}
.container .col--flex-start {
  align-self: flex-start;
}
@media (min-width: 768px) {
  .container .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 25%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
    min-width: 75%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 15px;
    display: block;
  }
  .container .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .container .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .container .col-md-offset-3 {
    margin-left: 25%;
  }
  .container .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .container .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .container .col-md-offset-6 {
    margin-left: 50%;
  }
  .container .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .container .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .container .col-md-offset-9 {
    margin-left: 75%;
  }
  .container .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .container .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .container .col-md-offset-12 {
    margin-left: 100%;
  }
  .container .col-md--no-spaces {
    padding: 0 !important;
  }
  .container .col-md--hidden {
    display: none;
  }
  .container .col-md--shown {
    display: block;
  }
  .container .col-md--flex {
    display: flex;
  }
  .container .col-md--flex.col-md--wrap {
    flex-wrap: wrap;
  }
}
.container .col-center {
  margin: auto;
}
.container .col--flex-end {
  align-self: flex-end;
}
.container .col--flex-start {
  align-self: flex-start;
}
@media (min-width: 992px) {
  .container .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 25%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
    min-width: 75%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 15px;
    display: block;
  }
  .container .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .container .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .container .col-lg-offset-3 {
    margin-left: 25%;
  }
  .container .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .container .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .container .col-lg-offset-6 {
    margin-left: 50%;
  }
  .container .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .container .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .container .col-lg-offset-9 {
    margin-left: 75%;
  }
  .container .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .container .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .container .col-lg-offset-12 {
    margin-left: 100%;
  }
  .container .col-lg--no-spaces {
    padding: 0 !important;
  }
  .container .col-lg--hidden {
    display: none;
  }
  .container .col-lg--shown {
    display: block;
  }
  .container .col-lg--flex {
    display: flex;
  }
  .container .col-lg--flex.col-lg--wrap {
    flex-wrap: wrap;
  }
}
.container .col-center {
  margin: auto;
}
.container .col--flex-end {
  align-self: flex-end;
}
.container .col--flex-start {
  align-self: flex-start;
}
@media (min-width: 1200px) {
  .container .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 25%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
    min-width: 75%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 15px;
    display: block;
  }
  .container .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .container .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .container .col-xl-offset-3 {
    margin-left: 25%;
  }
  .container .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .container .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .container .col-xl-offset-6 {
    margin-left: 50%;
  }
  .container .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .container .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .container .col-xl-offset-9 {
    margin-left: 75%;
  }
  .container .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .container .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .container .col-xl-offset-12 {
    margin-left: 100%;
  }
  .container .col-xl--no-spaces {
    padding: 0 !important;
  }
  .container .col-xl--hidden {
    display: none;
  }
  .container .col-xl--shown {
    display: block;
  }
  .container .col-xl--flex {
    display: flex;
  }
  .container .col-xl--flex.col-xl--wrap {
    flex-wrap: wrap;
  }
}
.container .col-center {
  margin: auto;
}
.container .col--flex-end {
  align-self: flex-end;
}
.container .col--flex-start {
  align-self: flex-start;
}

@media (max-width: 991px) {
  .col-md-order-back {
    order: -1;
  }
}
.grid-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.grid-row--space-1 {
  justify-content: space-between;
}
.grid-row--justify-start {
  justify-content: flex-start;
}
.grid-row--justify-center {
  justify-content: center;
}
.grid-row--reverse {
  flex-direction: row-reverse;
}
.grid-row--wrap {
  flex-wrap: wrap;
}
.grid-row--start {
  align-items: flex-start;
}
.grid-row--stretch {
  align-items: stretch;
}

.el-relative {
  position: relative;
}
.el--block {
  display: block;
}
.el--min-1 {
  min-height: 390px;
}

@media (min-width: 1px) {
  .el-sm--hidden {
    display: none;
  }

  .el-sm--block {
    display: block;
  }
}
@media (min-width: 768px) {
  .el-md--hidden {
    display: none;
  }

  .el-md--block {
    display: block;
  }
}
@media (min-width: 992px) {
  .el-lg--hidden {
    display: none;
  }

  .el-lg--block {
    display: block;
  }
}
@media (min-width: 1200px) {
  .el-xl--hidden {
    display: none;
  }

  .el-xl--block {
    display: block;
  }
}
.heading--primary {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.0416666667em;
  margin-bottom: 40px;
}
.heading--sub-primary {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.0833333333em;
  margin-bottom: 36px;
}
.heading--secondary {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.0555555556em;
  margin-bottom: 35px;
}
@media (min-width: 991px) {
  .heading--primary {
    font-size: 50px;
    font-size: 3.125rem;
    font-weight: 400;
    line-height: 1.28em;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .heading--primary {
    font-size: 35px;
    font-size: 2.1875rem;
    font-weight: 400;
    line-height: 1.2857142857em;
    margin-bottom: 20px;
  }
  .heading--secondary {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.0714285714em;
    margin-bottom: 25px;
  }
}
.heading__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading__box--start {
  justify-content: flex-start;
}

.text--color-default {
  color: #444444;
}
.text--tiny {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923em;
}
.text--small {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625em;
}
.text--normal {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6666666667em;
}
.text--bigger {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25em;
}
.text--tiny p, .text--small p, .text--normal p, .text--bigger p {
  margin-bottom: 1em;
}
.text--higher {
  line-height: 1.875em;
}
.text--grayscale {
  color: #AFAFAF;
}
.text--grayscale-dark {
  color: #636363;
}
.text--grayscale-2 {
  color: white;
}
.text--colored {
  color: #00A748;
}
.text--colored-p {
  color: #898989;
}
.text--medium {
  font-weight: 400;
}
.text--thick {
  font-weight: 600;
}
.text--margined-xxs {
  margin-bottom: 10px;
}
.text--margined-xs {
  margin-bottom: 18px;
}
.text--margined-s {
  margin-bottom: 30px;
}
.text--margined-m {
  margin-bottom: 40px;
}
.text--margined-l {
  margin-bottom: 50px;
}
.text--margined-xl {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .text--margined-xl {
    margin-bottom: 35px;
  }
}
.text--margined-left {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .text--margined-xs-m {
    margin-bottom: 40px;
  }
}
.text--spaced-m {
  margin-bottom: 100px;
}
.text--spaced-l {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .text--spaced-m {
    margin-bottom: 30px;
  }
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--right-flex {
  justify-content: flex-end;
}
.text--opacity {
  opacity: 0.65;
}
.text--uppercase {
  text-transform: uppercase;
}
.text--heavy {
  font-size: 82px;
  font-size: 5.125rem;
  font-weight: 700;
  line-height: 1.0975609756em;
  margin-bottom: 26px;
}
.text--strong {
  font-weight: 700;
}
.text--light {
  font-weight: 300;
}
@media (max-width: 767px) {
  .text--heavy {
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25em;
  }
}
@media (max-width: 1199px) {
  .text-md--grayscale {
    color: #AFAFAF;
  }
  .text-md--grayscale-dark {
    color: #636363;
  }
  .text-md--grayscale-2 {
    color: white;
  }
}
.text--front-index {
  position: relative;
  z-index: 1;
}

.img--block {
  display: block;
}

.line {
  display: block;
  margin: 0 auto;
  border: none;
}
.line--default {
  border: none;
  opacity: 0.14;
  border-bottom: 1px solid #4652b2;
  margin-top: 35px;
  margin-bottom: 32px;
}
.line--m {
  margin-top: 30px;
  margin-bottom: 23px;
}
.line--gray {
  opacity: 0.21;
  border-color: #717171;
  margin-top: 0;
  margin-bottom: 0;
}

.link--colored {
  color: #00a748;
  transition: all 0.3s ease-in-out;
}
.link--colored:hover {
  color: #444444;
}
.link--hover {
  transition: all 0.3s ease-in-out;
}
.link--hover:hover {
  color: #00A748;
}

.quote {
  display: block;
  margin: 30px 0 30px 15px;
  border-left: 3px solid #03aa4b;
  padding-left: 15px;
  font-weight: 700;
}

.list li {
  display: block;
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
.list li:before {
  content: " ";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #03aa4b;
  left: 0;
  top: 10px;
}

.error-code {
  font-size: 150px;
  line-height: 150px;
  text-align: center;
  padding-top: 50px;
  color: #00A748;
  font-weight: bold;
}
@media (min-width: 768px) {
  .error-code {
    font-size: 400px;
    line-height: 400px;
  }
}

.text-section {
  padding: 0px 15px;
}
@media (min-width: 768px) {
  .text-section {
    padding: 0px;
  }
}
.text-section li {
  display: block;
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
.text-section li:before {
  content: " ";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #03aa4b;
  left: 0;
  top: 10px;
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4, .text-section h5, .text-section h6 {
  font-weight: bold;
  color: #444444;
  margin-bottom: 15px;
}
.text-section h1 {
  font-size: 2em;
  color: #03aa4b;
}
.text-section h2 {
  font-size: 1.7em;
}
.text-section h3 {
  font-size: 1.5em;
}
.text-section h4 {
  font-size: 1.2em;
}
.text-section h5, .text-section h6 {
  font-size: 1em;
}
.text-section__thumb {
  width: 100%;
  height: 215px;
  background-size: cover;
  background-position: center center;
}
.text-section__content {
  padding: 0 34px 140px;
}
.text-section__title {
  margin-bottom: 60px;
}
.text-section__heading {
  margin-top: 48px;
  margin-bottom: 19px;
  line-height: 1.3333333333em;
}

.buttons-flex {
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.buttons-flex__el {
  display: block;
  border: 1px solid #03AA4B;
  width: 255px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1em;
  padding: 22px 5px 18px;
  margin-left: -1px;
  transition: all 0.3s ease-in-out;
}
.buttons-flex__el:first-child {
  border-radius: 10px 0 0 10px;
}
.buttons-flex__el:last-child {
  border-radius: 0 10px 10px 0;
}
.buttons-flex__el:hover, .buttons-flex__el.is-active {
  background-color: #03AA4B;
  color: white;
}
@media (max-width: 767px) {
  .buttons-flex__el {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    width: auto;
  }
}
.buttons-flex__el--secondary {
  display: block;
  border: 1px solid #03AA4B;
  width: 170px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1em;
  padding: 22px 5px 18px;
  border-radius: 6px;
  margin: 0 15px 20px;
  background-color: #03AA4B;
  color: white;
  transition: all 0.3s ease-in-out;
}
.buttons-flex__el--secondary:hover {
  background-color: transparent;
  color: #03AA4B;
}
.buttons-flex--wrap {
  flex-wrap: wrap;
}

.button-mobile {
  display: none;
  background: none;
  border: none;
  outline: 0;
  position: relative;
  z-index: 2001;
}
@media (max-width: 991px) {
  .button-mobile {
    display: block;
  }
}
.button-mobile span {
  width: 45px;
  height: 4px;
  background-color: #00A748;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.button-mobile span:nth-child(2) {
  width: 25px;
  margin-left: 0;
}
.button-mobile.open {
  justify-content: center;
}
.button-mobile.open span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.button-mobile.open span:nth-child(2) {
  opacity: 0;
}
.button-mobile.open span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .button-mobile span {
    height: 3px;
    margin: 3px 0;
    width: 30px;
  }
  .button-mobile.open span:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .button-mobile.open span:nth-child(2) {
    opacity: 0;
  }
  .button-mobile.open span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.button {
  border: none;
}
.button-go-top {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -166px;
  width: 100px;
  height: 100px;
  background-color: #03AA4B;
  box-shadow: 0 40px 60px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-top: 36px;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}
.button-go-top svg {
  display: block;
  margin-bottom: 17px;
  width: 18px;
  margin-right: auto;
  margin-left: auto;
}
.button-go-top span {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: white;
  backface-visibility: hidden;
}
.button-go-top:hover {
  transform: scale(0.95);
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.4);
}
.button--primary {
  display: inline-block;
  padding: 10px 30px;
  background: white;
  color: #0b9a4c;
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.button--primary:hover {
  background: #03aa4b;
  color: white;
}
.button--secondary {
  display: inline-block;
  padding: 18px 30px;
  background: #03aa4b;
  color: white;
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.button--secondary:hover {
  background: white;
  color: #0b9a4c;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
}
.button--angular {
  min-height: 150px;
  background: #00A748;
  color: white;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.button--print {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
}
.button--print span {
  display: block;
  margin-right: 10px;
  margin-left: -20px;
}
.button--print span svg {
  transition: all 0.3s ease-in-out;
  display: block;
  height: 30px;
  fill: #fff;
}
.button--print:hover span svg {
  fill: #0b9a4c;
}
.button--wider {
  padding-left: 45px;
  padding-right: 45px;
}
.button--small {
  padding: 10px 30px;
}
.button--centered {
  display: block;
  width: 200px;
  margin: 0 auto;
  text-align: center;
}
.button--full {
  display: block;
  width: 100%;
  text-align: center;
}

.form-btn,
.form-btn-cancel,
.form-btn-error {
  background: transparent;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 5px 24px;
  margin-top: 2.25rem;
  position: relative;
  z-index: 0;
  transition: transform 0.28s ease;
  will-change: transform;
}

.form-btn::before,
.form-btn::after,
.form-btn-cancel::before,
.form-btn-cancel::after,
.form-btn-error::before,
.form-btn-error::after {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}

.form-btn::before,
.form-btn-cancel::before,
.form-btn-error::before {
  background: white;
  z-index: -2;
}

.form-btn::after,
.form-btn-cancel::after,
.form-btn-error::after {
  background: #000;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.form-btn:focus,
.form-btn-cancel:focus,
.form-btn-error:focus {
  outline: none;
}

.form-btn:focus::after,
.form-btn:hover::after,
.form-btn-cancel:focus::after,
.form-btn-cancel:hover::after,
.form-btn-error:focus::after,
.form-btn-error:hover::after {
  opacity: 0.3;
}

.form-btn:active,
.form-btn-cancel:active,
.form-btn-error:active {
  transform: translateY(1px);
}

.form-btn-error::before {
  background: #d9534f;
}

.form-btn-cancel {
  transition: color 0.28s ease, transform 0.28s ease;
  color: #b52b27;
  border-color: currentColor;
  will-change: color, transform;
}

.form-btn-cancel.-nooutline {
  border-color: transparent;
}

.form-btn-cancel::before {
  background: #b52b27;
  opacity: 0;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.form-btn-cancel::after {
  display: none;
}

.form-btn-cancel:focus,
.form-btn-cancel:hover {
  color: #fff;
}

.form-btn-cancel:focus::before,
.form-btn-cancel:hover::before {
  opacity: 1;
}

.form-btn-block {
  display: block;
  width: 100%;
  padding: 5px;
}

.form-checkbox,
.form-radio {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  text-align: left;
}

.form-checkbox-inline .form-checkbox-label,
.form-radio-inline .form-radio-label {
  display: inline-block;
  margin-right: 1rem;
}

.form-checkbox-legend,
.form-radio-legend {
  margin: 0 0 1rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
}

.form-checkbox-label,
.form-radio-label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  margin-bottom: 1.2rem;
}

.form-checkbox-label:hover i,
.form-radio-label:hover i {
  color: #03aa4b;
}

.form-checkbox-label span,
.form-radio-label span {
  display: block;
  margin-top: 0.4rem;
}

.form-checkbox-label input,
.form-radio-label input {
  width: auto;
  opacity: 0.0001;
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  margin: 0;
  padding: 0;
}

.form-checkbox-button {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  color: white;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: color 0.28s ease;
  will-change: color;
}

.form-checkbox-button::before,
.form-checkbox-button::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #03aa4b;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
  will-change: opacity, height;
}

.form-checkbox-button::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
}

.form-checkbox-button::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}

.form-checkbox-field:checked ~ .form-checkbox-button {
  color: #03aa4b;
}

.form-checkbox-field:checked ~ .form-checkbox-button::after,
.form-checkbox-field:checked ~ .form-checkbox-button::before {
  opacity: 1;
  transition: height 0.28s ease;
}

.form-checkbox-field:checked ~ .form-checkbox-button::after {
  height: 0.5rem;
}

.form-checkbox-field:checked ~ .form-checkbox-button::before {
  height: 1.2rem;
  transition-delay: 0.28s;
}

.form-radio-button {
  position: absolute;
  left: 0;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #cccccc;
}

.form-radio-button::before,
.form-radio-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.28s ease, color 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
  will-change: transform, color;
}

.form-radio-button::after {
  transform: scale(0);
  background-color: #03aa4b;
  border-color: #03aa4b;
}

.form-radio-field:checked ~ .form-radio-button::after {
  transform: scale(0.5);
}

.form-radio-field:checked ~ .form-radio-button::before {
  color: #03aa4b;
}

.form-has-error .form-checkbox-button,
.form-has-error .form-radio-button {
  color: #d9534f;
}

.form-card {
  border-radius: 2px;
  transition: all 0.56s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0;
}

.form-actions {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.25rem;
}

.form-actions .form-btn-cancel {
  -ms-flex-order: -1;
  order: -1;
}

.form-actions::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.3;
}

.form-actions > * {
  -ms-flex: 1;
  flex: 1;
  margin-top: 0;
}

.form-fieldset {
  padding: 0 30px;
  border: 0;
}
.form-fieldset--no-space {
  padding: 0;
}

.form-fieldset + .form-fieldset {
  margin-top: 15px;
}

.form-legend {
  padding: 1em 0 0;
  margin: 0 0 -0.5em;
  font-size: 1.5rem;
  text-align: center;
}

.form-legend + p {
  margin-top: 1rem;
}

.form-element {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}

.form-element-hint {
  font-weight: 400;
  font-size: 0.6875rem;
  color: white;
  display: block;
}

.form-element-bar {
  position: relative;
  height: 1px;
  background: white;
  display: block;
}
.form-element-bar--dark {
  background-color: #cccccc;
}

.form-element-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b6233;
  height: 2px;
  display: block;
  transform: rotateY(90deg);
  transition: transform 0.28s ease;
  will-change: transform;
}

.form-element-bar--dark:after {
  background-color: #00aa4e;
}

.form-element-label {
  position: absolute;
  top: 0.75rem;
  line-height: 1.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  color: white;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: transform 0.28s ease, color 0.28s linear, opacity 0.28s linear;
  will-change: transform, color, opacity;
  padding: 10px 5px;
  top: 26px;
}
.form-element-label--dark {
  color: #636363;
}

.form-element-field {
  outline: none;
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border: 0 solid transparent;
  line-height: 1.5;
  width: 100%;
  color: white;
  box-shadow: none;
  opacity: 0.001;
  transition: opacity 0.28s ease;
  will-change: opacity;
  padding: 10px 5px;
}
.form-element-field--dark {
  color: #252525;
}

.form-element-field:-ms-input-placeholder {
  color: white;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field::placeholder {
  color: white;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field:focus ~ .form-element-bar::after {
  transform: rotateY(0deg);
}

.form-element-field.-hasvalue,
.form-element-field:focus {
  opacity: 1;
}

.form-element-field.-hasvalue ~ .form-element-label,
.form-element-field:focus ~ .form-element-label {
  transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

.form-has-error .form-element-label.form-element-label,
.form-has-error .form-element-hint {
  color: #d9534f;
}

.form-has-error .form-element-bar,
.form-has-error .form-element-bar::after {
  background: #d9534f;
}

.form-is-success .form-element-label.form-element-label,
.form-is-success .form-element-hint {
  color: #259337;
}

.form-is-success .form-element-bar::after {
  background: #259337;
}

input.form-element-field:not(:placeholder-shown),
textarea.form-element-field:not(:placeholder-shown) {
  opacity: 1;
}

input.form-element-field:not(:placeholder-shown) ~ .form-element-label,
textarea.form-element-field:not(:placeholder-shown) ~ .form-element-label {
  transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

textarea.form-element-field {
  height: auto;
  min-height: 3rem;
}

select.form-element-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select-placeholder {
  color: white;
  display: none;
}

.form-select .form-element-bar::before {
  content: "";
  position: absolute;
  height: 0.5em;
  width: 0.5em;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  display: block;
  right: 0.5em;
  bottom: 0;
  transition: transform 0.28s ease;
  transform: translateY(-100%) rotateX(0deg) rotate(45deg);
  will-change: transform;
}

.form-select select:focus ~ .form-element-bar::before {
  transform: translateY(-50%) rotateX(180deg) rotate(45deg);
}

.form-element-field[type=number] {
  -moz-appearance: textfield;
}

.form-element-field[type=number]::-webkit-outer-spin-button,
.form-element-field[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.layout--paddings {
  padding: 55px 0;
}
.layout--paddings-2 {
  padding: 122px 0 180px;
}
.layout--padding-top {
  padding-top: 100px !important;
}
@media (max-width: 767px) {
  .layout--padding-top {
    padding-top: 40px !important;
  }
}
.layout--padding-bottom {
  padding-bottom: 70px !important;
}
@media (min-width: 768px) {
  .layout--lg-no-padding {
    padding: 0 !important;
  }
}
.layout--bg-colored {
  background-color: #03AA4B;
}
.layout--bg-colored2 {
  background-color: #f5f4f9;
}
.layout--bg-grayscale {
  background-color: #F6F9FB;
}
.layout--bg-secondary {
  background-color: #fafafa;
}
.layout--bg-header-image {
  background-position: center;
  background-size: cover;
}
.layout--size-s {
  min-height: 300px;
  padding-top: 80px;
}
.layout--size-m {
  min-height: 400px;
  padding-top: 120px;
}
.layout--size-l {
  min-height: 500px;
  padding-top: 160px;
}
@media (max-width: 767px) {
  .layout--size-l {
    padding-top: 60px;
  }
}
.layout--hidden {
  overflow: hidden;
}
.layout--100vh {
  max-height: 100vh;
}
@media (max-width: 767px) {
  .layout--paddings {
    padding: 35px 0;
  }
  .layout--paddings-2 {
    padding: 50px 0;
  }
  .layout--padding-top {
    padding-top: 30px;
  }
  .layout--padding-bottom {
    padding-bottom: 30px;
  }
  .layout--size-m {
    min-height: 200px;
  }
  .layout--100vh {
    max-height: none;
  }
}
@media (max-width: 992px) {
  .layout--sm-bg-green {
    background-color: #00A748;
    background-image: none !important;
  }
}

.banner--container {
  background-color: white;
  border-radius: 3px;
  display: flex;
  padding: 20px;
}
.banner--container_text {
  padding-left: 25px;
  padding-right: 15px;
}
.banner--container .button {
  margin-top: 20px;
}

.columns-colored {
  display: grid;
  justify-content: space-evenly;
}
.columns-colored-three {
  grid-template-columns: 33.3% 33.3% 33.3%;
}
.columns-colored-two {
  grid-template-columns: 16.6% 33.3% 33.3% 16.6%;
}
@media (max-width: 767px) {
  .columns-colored {
    grid-template-columns: 100%;
  }
}
.columns-colored--column-container {
  padding: 10px;
  height: 100%;
}
.columns-colored--column {
  border-radius: 3px;
  margin-bottom: 10px;
  line-height: 1.5em;
  height: 100%;
  padding: 20px 15px;
}

.footer {
  background-color: #191919;
  padding: 130px 0;
}
.footer img {
  width: 200px;
}
.footer-nav {
  color: #FFFFFF;
}
.footer-nav a {
  color: #FFFFFF;
  opacity: 0.61;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25em;
  transition: all 0.3s ease-in-out;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-column {
  margin-bottom: 30px;
}
.footer__social img {
  width: 21px;
}

.img--absolute {
  position: absolute;
}
.img--50vw {
  max-width: 50vw;
}
.img--80vh {
  max-height: 80vh;
}
.img--bottom-right {
  bottom: 0px;
  right: 0px;
  max-height: 700px;
}
.img--bottom-right-middle {
  bottom: 0px;
  left: 75%;
  max-height: 700px;
  transform: translateX(-50%);
}
.img--bottom-middle {
  bottom: 0px;
  left: 50%;
  max-height: 500px;
}
.img--middle-middle {
  bottom: 50%;
  left: 50%;
  transform: translateY(50%);
  max-height: 500px;
}

.nav {
  display: flex;
  align-items: center;
  height: 100px;
  transition: all 0.3s ease-in-out;
}
.nav-item {
  margin-right: 30px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  transition: all 0.3s ease-in-out;
  color: #333333;
}
@media (min-width: 992px) {
  .nav-item:hover {
    color: #03AA4B;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .nav-item {
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  .nav-item {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.nav-inline-list {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.nav-inline-list__el {
  margin-right: 17px;
  margin-bottom: 17px;
}
.nav-inline-list__el img {
  height: 55px;
}
.nav-inline-list__el-link {
  display: block;
  transition: all 0.3s ease-in-out;
}
.nav-inline-list__el-link:hover {
  opacity: 0.5;
  transform: scale(0.95);
}
.nav-inline-list--hide .nav-inline-list__el-link {
  display: none;
}
.nav-inline-list--hide .nav-inline-list__el-link.is-active {
  display: block;
}
.nav-lang-item {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  background: url("../img/drop.png") no-repeat;
  background-position: right center;
  border-left: 1px solid #333333;
}
.nav-lang-item img {
  display: block;
  width: 19px;
  height: 13px;
}
.nav-lang-item__el {
  display: block;
}
.nav-lang-item:hover .nav-lang-menu {
  opacity: 1;
  visibility: visible;
}
.nav-lang-menu {
  position: absolute;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
}
.nav-lang-menu li {
  cursor: pointer;
}
@media (max-width: 991px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    flex-wrap: wrap;
    background: #00A748;
    padding: 30px 60px;
    height: auto;
    z-index: 2000;
    text-align: center;
    max-height: calc(100vh - 100px);
    overflow: auto;
    transform: translateY(calc(-100% - 100px));
    transition: all 0.3s ease-in-out;
  }
  .nav-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 10px 0;
    color: white;
    margin: 0;
  }
  .nav-item.green-text {
    color: #064421;
  }
  .nav.open {
    transform: translateY(0);
    min-height: calc(100vh - 100px);
  }
  .nav-lang-item {
    display: flex;
    justify-content: center;
    border: none;
    background: none;
  }
  .nav-lang-item__el {
    padding: 10px 0;
  }
  .nav-lang-menu {
    position: relative;
    opacity: 1;
    margin-left: 20px;
    visibility: visible;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .nav.open {
    min-height: calc(100vh - 23px);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 2000;
  transform: translateZ(0);
  transition: all 0.3s ease-in-out;
}
.header__logo {
  flex: 0 0 98px;
  width: 98px;
  height: 40px;
  position: relative;
  z-index: 2001;
}
.header.is-scrolled {
  box-shadow: -8px 11px 20px 0px rgba(0, 0, 0, 0.1);
}
.header.is-scrolled .nav {
  height: 70px;
}
@media (max-width: 991px) {
  .header {
    padding: 25px 15px;
  }
  .header .container:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2001;
  }
}
@media (max-width: 991px) {
  .header {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header .header__logo {
    transition: all 0.3s ease-in-out;
  }
  .header .header__logo img {
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .header.is-scrolled .header__logo {
    flex: 0 0 70px;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .header {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header__logo {
    height: 20px;
    width: auto;
  }
  .header__logo img {
    height: 100%;
  }
}

.dropdown {
  position: relative;
  background: url("../img/drop.png") no-repeat;
  background-position: right center;
  margin-right: 30px;
  padding: 10px 15px 10px 0;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  top: 30px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-right: 0px;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 991px) {
  .dropbtn {
    display: none;
  }

  .dropdown {
    min-width: 100%;
    background: none;
    margin: 0px;
    padding: 0px;
  }

  .dropdown-content {
    display: block;
    position: relative;
    background-color: transparent;
    box-shadow: none;
    top: 0px;
  }
  .dropdown-content a {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px 0;
    color: white;
    text-align: center;
  }
  .dropdown-content a:hover {
    background-color: transparent;
  }
}
.banner-main {
  position: relative;
  z-index: 1;
  height: 700px;
  padding-top: 50px;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .banner-main {
    height: auto;
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .banner-main__content {
    padding-right: 60px !important;
  }
  .banner-main__content--no-padding {
    padding-right: 15px !important;
  }
}
.banner-software {
  position: relative;
  z-index: 1;
  height: 730px;
  padding-top: 50px;
}
.banner-software--phone {
  height: auto;
}
@media (max-width: 991px) {
  .banner-software {
    height: auto;
    padding: 45px 0 40px;
  }
  .banner-software--phone {
    padding-bottom: 0;
  }
  .banner-software .col-sm-12:last-child {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .banner-software {
    padding: 20px 0 80px;
  }
  .banner-software--phone {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .banner-software {
    height: auto;
    padding: 60px 0;
  }
  .banner-software--phone {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .banner-lawyers-padding {
    padding-left: 60px !important;
  }
  .banner-lawyers-padding img {
    max-width: 110%;
  }
  .banner-lawyers-padding--2 img {
    margin-left: -20px;
  }
}

.bg--50vw {
  position: absolute;
  top: 0;
  bottom: 0;
}
.bg--50vw-before:before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.bg--50vw-left-before:before {
  left: -50vw;
  right: 50%;
}
.bg--50vw-right {
  left: 50%;
  right: 0;
  background-position: right center;
}
.bg--50vw-right-before:before {
  right: -50vw;
  left: 50%;
}
.bg--50vw-left {
  left: 0;
  right: 50%;
  background-position: left center;
}
.bg--50vw-bottom {
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .bg--50vw-bottom {
    position: relative;
    min-height: auto !important;
  }
}
.bg--50vw-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg--100vw {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.bg--cover {
  background-size: cover;
}
.bg--absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}
@media (max-width: 767px) {
  .bg--absolute img {
    max-width: 400px;
  }
}
.bg--horizontal-center {
  justify-content: center;
}
.bg--vertical-bottom {
  align-items: flex-end;
}
.bg--photo {
  background-size: cover;
}
.bg--photo-right {
  background-position: right center;
}
@media (max-width: 767px) {
  .bg--photo-contact-sm {
    background-position: right center !important;
  }
}
.bg--colored:before {
  background-color: #00a748cc;
}
.bg--grayscale:before {
  background-color: #f6f9fb;
}
@media (max-width: 991px) {
  .bg--50vw, .bg--100vw {
    position: relative;
    min-height: 320px;
    z-index: 2;
    left: 0 !important;
    right: 0 !important;
  }
  .bg--50vw-before:before, .bg--100vw-before:before {
    left: 0 !important;
    right: 0 !important;
  }
}

.home__devices {
  position: absolute;
  top: 20%;
  width: 40vw;
  right: 5vw;
}

.icon--circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.icon--circle-xs {
  width: 30px !important;
  height: 30px !important;
}
.icon--bg {
  background-color: #00A748;
}
.icon--news {
  width: 134px;
  height: 134px;
  margin-top: -67px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 20px 53px 80px rgba(0, 0, 0, 0.1);
}
.icon--news img {
  width: auto;
  max-width: 67px;
  height: auto;
  max-height: 67px;
}
.icon-desc__desc-p {
  color: #242424;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2em;
  opacity: 0.7;
}
.icon-desc__desc-p--smaller {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4444444444em;
}
.icon-with-desc {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.icon-with-desc__object {
  width: 65px;
  flex: 0 0 65px;
  margin-right: 35px;
  text-align: center;
}
.icon-with-desc__text {
  flex: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
}
.icon-with-desc--no-space {
  margin-bottom: 0;
}
.icon-arrow {
  width: 20px;
  height: 11px;
}
.icon-arrow svg {
  display: block;
  width: 100%;
}
.icon-arrow--direct {
  display: inline-flex;
  margin-right: 9px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0;
}
.icon-arrow--direct-left {
  transform: rotate(-180deg);
  margin-right: 0;
  margin-left: 9px;
  background-position: center 3px;
}
.icon-arrow--direct-green {
  background-color: #00A748;
  background-size: 16px;
  background-position: center;
}
.icon-arrow--direct svg {
  width: 16px;
  height: 13px;
  fill: #fff;
}
.icon--no-space {
  margin-bottom: 0 !important;
}
.icon--1 .cls-1, .icon--1 .cls-2, .icon--1 .cls-3 {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
}
.icon--1 .cls-1 {
  stroke-linecap: round;
}
.icon--1 .cls-1, .icon--1 .cls-2 {
  stroke-miterlimit: 10;
}
.icon--1 .cls-3 {
  stroke-linejoin: round;
}
.icon--1 svg {
  width: 23px;
}
.icon--2 .cls-1, .icon--2 .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
}
.icon--2 .cls-1 {
  stroke-linejoin: round;
}
.icon--2 .cls-2 {
  stroke-miterlimit: 10;
}
.icon--2 svg {
  width: 40px;
}
.icon--3 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.icon--3 svg {
  width: 40px;
}
.icon--4 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.icon--4 svg {
  width: 64px;
}
.icon--5 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.icon--5 svg {
  width: 34px;
}
.icon--6 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.icon--6 svg {
  width: 58px;
}

.ico--min {
  min-height: 70px;
}
@media (max-width: 991px) {
  .ico-icon {
    margin-bottom: 30px !important;
  }
}

.card-icon,
.ico-icon {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-article,
.ico-article {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 20px 53px 80px rgba(0, 0, 0, 0.1);
  padding: 50px 25px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 30px;
}
.card-article:hover,
.ico-article:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-article--100p,
.ico-article--100p {
  height: 100%;
}
.card-article--xs,
.ico-article--xs {
  padding-top: 40px;
  padding-bottom: 40px;
}
.card-article__thumb,
.ico-article__thumb {
  margin-top: -40px;
  margin-right: -25px;
  margin-left: -25px;
  max-width: none;
  margin-bottom: 40px;
}
.card-article__title,
.ico-article__title {
  margin-bottom: 25px;
}
.card-article__title--xs,
.ico-article__title--xs {
  margin-bottom: 10px;
}
.card-article__title--min,
.ico-article__title--min {
  min-height: 60px;
}
.card-article__date,
.ico-article__date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875em;
  color: #242424;
  margin-bottom: 25px;
  opacity: 0.49;
}
.card-article__icon,
.ico-article__icon {
  max-width: 64px;
  max-height: 53px;
}
.card-article__icon svg, .card-article__icon img,
.ico-article__icon svg,
.ico-article__icon img {
  max-width: 100%;
  max-height: 100%;
}
.card--shadow,
.ico--shadow {
  box-shadow: 20px 53px 80px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background-color: #ffffff;
}
.card-contact,
.ico-contact {
  padding: 67px 33px 44px;
  transition: all 0.3s ease-in-out;
}
.card-contact:hover,
.ico-contact:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-text--space-right, .card-text--space-left,
.ico-text--space-right,
.ico-text--space-left {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .card-text,
.ico-text {
    padding: 0 66px;
  }
  .card-text--space-right,
.ico-text--space-right {
    padding-right: 66px;
  }
  .card-text--space-left,
.ico-text--space-left {
    padding-left: 66px;
  }
}
@media (min-width: 768px) {
  .card-text__parent,
.ico-text__parent {
    min-height: 539px;
  }
}
.card-person,
.ico-person {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 5px;
  background-size: cover;
  border-right: no-repeat;
  background-position: center;
}
.card-person__overlay,
.ico-person__overlay {
  padding: 34px 30px 0;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: calc(100% - 90px);
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.card-person__overlay-hidden,
.ico-person__overlay-hidden {
  margin-top: 22px;
  margin-bottom: -100%;
}
.card-person:hover .card-person__overlay,
.ico-person:hover .card-person__overlay {
  top: 0%;
  background: rgba(0, 0, 0, 0.85);
}
@media (max-width: 767px) {
  .card,
.ico {
    margin-bottom: 60px;
  }
  .card-person,
.ico-person {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .ico-icon {
    margin-bottom: 30px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  min-height: 300px;
  z-index: 5;
}
@media (min-width: 768px) {
  .timeline-item:nth-child(even) {
    padding-left: 88px;
  }
  .timeline-item:nth-child(even) .timeline-item__body {
    border-radius: 0 25px 25px 25px;
  }
  .timeline-item:nth-child(even):after {
    content: " ";
    position: absolute;
    left: -8px;
    top: 0;
    height: 16px;
    width: 16px;
    background-color: #00A748;
    border-radius: 50%;
    z-index: 2;
  }
  .timeline-item:nth-child(odd) {
    padding-right: 88px;
  }
  .timeline-item:nth-child(odd) .timeline-item__body {
    border-radius: 25px 0 25px 25px;
  }
  .timeline-item:nth-child(odd):after {
    content: " ";
    position: absolute;
    right: -8px;
    top: 0;
    height: 16px;
    width: 16px;
    background-color: #00A748;
    border-radius: 50%;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .timeline-item {
    padding-left: 50px !important;
  }
  .timeline-item:after {
    content: " ";
    position: absolute;
    left: 16px;
    top: -16px;
    height: 16px;
    width: 16px;
    background-color: #00A748;
    border-radius: 50%;
    z-index: 2;
  }
}
.timeline-item__body {
  background-color: #FFFFFF;
  box-shadow: -8px 21px 80px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  font-size: 18px;
  line-height: 30px;
  color: #242424;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .timeline-item__body {
    border-radius: 0 25px 25px;
  }
}
.timeline-item.is-active .timeline-item__body {
  background: #03AA4B;
  color: white;
}
.timeline-body {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  transition: opacity 0.6s ease-in-out;
}
@media (max-width: 767px) {
  .timeline-body {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.timeline-body.is-active {
  opacity: 1;
}
.timeline-body.is-inactive {
  max-height: 0px;
  overflow: hidden;
  padding: 0;
  opacity: 0;
}
.timeline-body--ide {
  padding: 20px 0 50px;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 767px) {
  .timeline-body--ide {
    padding-top: 0;
  }
  .timeline-body--ide.is-active {
    max-height: 1000px;
  }
  .timeline-body--ide.is-inactive {
    max-height: 80px;
    opacity: 1;
  }
  .timeline-body--ide .buttons-flex__el--secondary {
    margin-right: auto;
    margin-left: auto;
  }
}
.timeline-finish {
  padding-top: 60px;
}
.timeline-axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: url("../img/timeline-ico.png") center top repeat-y;
  background-size: 4px 16px;
}
.timeline-axis:after, .timeline-axis-slider {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -29px;
  width: 58px;
  height: 58px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.timeline-axis-slider {
  top: 0;
  background-image: url("../img/timeline-start.png");
  z-index: 8;
}
.timeline-axis-slider.is-fixed {
  position: fixed;
  top: 100px;
}
.timeline-axis-slider.is-absolute {
  position: absolute;
  opacity: 0;
}
.timeline-axis:before {
  content: " ";
  position: absolute;
  bottom: -58px;
  left: 50%;
  margin-left: -29px;
  width: 58px;
  height: 87px;
  background: #fff;
  z-index: 9;
}
.timeline-axis:after {
  z-index: 9;
  bottom: 0;
  background-image: url("../img/timeline-finish.png");
}
@media (max-width: 767px) {
  .timeline-axis {
    left: 22px;
    margin-left: 0;
  }
  .timeline-axis-slider, .timeline-axis:after {
    display: none;
  }
}

.testimonial {
  box-shadow: -8px 21px 80px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 30px 76px;
  min-height: 450px;
}
@media (max-width: 767px) {
  .testimonial {
    min-height: auto;
  }
}
.testimonial__content {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.9em;
  color: #444444;
  margin-bottom: 52px;
}
.testimonial__signature {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.1111111111em;
  color: #03AA4B;
}
.testimonial__logo-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.testimonial__logo {
  display: block;
  max-height: 70px;
}
@media (max-width: 767px) {
  .testimonial {
    padding: 15px 30px;
  }
}

.swiper-container {
  overflow: visible;
}

.swiper-slide {
  padding: 0 33px;
  opacity: 0.5;
  height: auto !important;
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .swiper-slide {
    padding: 0 15px;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
}

.swiper-pagination {
  position: static;
  margin-top: 30px;
}

.swiper-pagination-bullet-active {
  background: #03AA4B;
}

.dots {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.dot {
  display: block;
  position: absolute;
}
@media (max-width: 991px) {
  .dot {
    display: none;
  }
}
.dot--color-primary {
  background: #00ab50;
}
.dot--color-secondary {
  background: #87e483;
}
.dot--size-xs {
  width: calc(2 * 10px);
  height: calc(2 * 10px);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.dot--size-s {
  width: calc(2 * 20px);
  height: calc(2 * 20px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.dot--size-m {
  width: calc(2 * 35px);
  height: calc(2 * 35px);
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.dot--size-l {
  width: calc(2 * 45px);
  height: calc(2 * 45px);
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}
.dot--size-xl {
  width: calc(2 * 57px);
  height: calc(2 * 57px);
  -webkit-border-radius: 57px;
  -moz-border-radius: 57px;
  border-radius: 57px;
}

#dot1 {
  top: 120px;
  left: 60px;
}

#dot2 {
  bottom: 40%;
  right: 60px;
}

#dot3 {
  bottom: 68%;
  right: 150px;
}

#dot4 {
  bottom: 53%;
  right: 240px;
}

#dot5 {
  bottom: 52%;
  left: 240px;
}

#dot6 {
  bottom: 42%;
  left: 100px;
}

#dot7 {
  bottom: 34%;
  left: 260px;
}

#dot8 {
  bottom: 56%;
  left: 30px;
}

#dot9 {
  bottom: 30%;
  right: 250px;
}

#dot10 {
  bottom: 60%;
  right: 70px;
}

#dot11 {
  bottom: 58%;
  right: 10px;
}

#dot12 {
  bottom: 24%;
  right: 100px;
}

#dot13 {
  bottom: 25%;
  left: 70px;
}

#dot14 {
  bottom: 42%;
  left: 350px;
}

#dot15 {
  bottom: 45%;
  right: 350px;
}

#dot16 {
  bottom: 52%;
  left: 180px;
}

.article.summary {
  height: 430px;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease-in-out;
}
.article.summary:nth-child(odd) {
  background: #f7f7fa;
}
.article.summary:nth-child(even) {
  background: #eff0f3;
}
.article.summary:hover {
  background: #e6e7ea;
}
@media (max-width: 991px) {
  .article.summary {
    height: auto;
  }
}
.article.summary--text .article--description {
  height: 100%;
}
@media (max-width: 991px) {
  .article.summary--text .article--description {
    height: 190px;
  }
}
.article--img {
  flex: 240px 0 0;
  overflow: hidden;
}
.article--img a {
  display: block;
}
.article--img a img {
  width: 100%;
}
.article--img-cover {
  flex: 100% 0 0;
}
.article--description {
  margin: 30px;
  position: relative;
  height: 190px;
}
.article--time {
  color: rgba(36, 36, 36, 0.5);
  font-size: 13px;
}
.article--link-readmore {
  position: absolute;
  left: 0;
  bottom: 0;
}
.article-box {
  box-shadow: 5px 53px 80px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  background-color: #ffffff;
}
.article-box li {
  display: block;
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
.article-box li:before {
  content: " ";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #03aa4b;
  left: 0;
  top: 10px;
}
.article-box h1, .article-box h2, .article-box h3, .article-box h4, .article-box h5, .article-box h6 {
  font-weight: bold;
  color: #444444;
  margin-bottom: 5px;
}
.article-box h1 {
  font-size: 2em;
  color: #03aa4b;
}
.article-box h2 {
  font-size: 1.7em;
}
.article-box h3 {
  font-size: 1.5em;
}
.article-box h4 {
  font-size: 1.2em;
}
.article-box h5, .article-box h6 {
  font-size: 1em;
}
.article-box__thumb {
  width: 100%;
  height: 215px;
  background-size: cover;
  background-position: center center;
}
.article-box__content {
  padding: 0 34px 140px;
}
.article-box__title {
  margin-bottom: 60px;
}
.article-box__heading {
  margin-top: 48px;
  margin-bottom: 19px;
  line-height: 1.3333333333em;
}
.article-box__adds {
  background-position: calc(100% - 41px) bottom;
  padding: 54px 0 0 76px;
  min-height: 169px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.3333333333em;
  color: white;
}
@media (max-width: 767px) {
  .article-box {
    margin-bottom: 50px;
  }
  .article-box__adds {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25em;
    padding: 40px 15px 0;
  }
}

.harmony__el {
  display: block;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 20px;
  margin-top: -1px;
}
.harmony__el-title {
  min-height: 78px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.harmony__el-title .icon-arrow {
  flex: 0 0 20px;
  transform: rotate(-180deg);
  transition: all 0.3s ease-in-out;
}
.harmony__el-title .icon-arrow svg {
  transition: all 0.3s ease-in-out;
}
.harmony__el.is-opened .harmony__el-title, .harmony__el:hover .harmony__el-title {
  color: #00A748;
}
.harmony__el.is-opened .harmony__el-title .icon-arrow, .harmony__el:hover .harmony__el-title .icon-arrow {
  transform: rotate(0);
}
.harmony__el.is-opened .harmony__el-title .icon-arrow svg, .harmony__el:hover .harmony__el-title .icon-arrow svg {
  fill: #00A748;
}
.harmony__el-content {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6666666667em;
  opacity: 0.71;
  color: #242424;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.harmony__el-content-inner {
  padding-top: 18px;
  padding-bottom: 18px;
}
.harmony__el-content-inner ul {
  list-style-type: disc !important;
}
.harmony__el-content-inner ul li {
  margin-left: 30px;
}

.map-contact {
  position: relative;
  display: inline-block;
}
.map-contact__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 6px solid #ffffff;
  background-color: #00aa4e;
  border-radius: 50%;
  margin-top: -5px;
  margin-left: -5px;
}
.map-contact__pin--1 {
  left: 36.1010830325%;
  top: 56.9877883311%;
}
.map-contact__pin--2 {
  left: 42.7196149218%;
  top: 47.4898236092%;
}
.map-contact__pin--3 {
  left: 34.8977135981%;
  top: 50.881953867%;
}
.map-contact__pin--small {
  transform: scale(0.5);
}

.link-later {
  position: relative;
}
.link-later:before, .link-later:after {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.link-later:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.link-later:after {
  content: "Coming soon";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 20px);
  text-align: center;
  background: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  box-shadow: -8px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.link-later:hover {
  transform: none;
  opacity: 1;
}
.link-later:hover:before, .link-later:hover:after {
  opacity: 1;
  visibility: visible;
}

.fade-slider__img {
  width: 100%;
  height: 100%;
}
.fade-slider__img img {
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: 100%;
}
.fade-slider__img-el {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.fade-slider__img-el.is-active {
  opacity: 1;
}

.green-text {
  color: #00A748;
}

.green-link {
  color: #00A748;
  text-decoration: none;
}

.faq-desc {
  margin-bottom: 30px;
}

.faq-category-list {
  padding: 0;
  list-style: none;
}

.text-light {
  font-weight: 300 !important;
}

.faq-category-list > li {
  margin-bottom: 20px;
}

.faq-category, .job {
  margin-left: 50px;
  color: #323532;
}

.faq-category, .faq-question {
  cursor: pointer;
  margin-bottom: 15px;
}

.faq-category, .faq-question, .job {
  display: list-item;
  margin-right: 13px;
  cursor: pointer;
  list-style-image: url(../img/triangle-right.svg);
}

.faq-category--active, .faq-question--active, .job--active {
  list-style-image: url(../img/triangle-down.svg);
}

.faq-question-list {
  padding: 0;
  list-style: none;
}

.faq-question {
  margin-left: 100px;
  color: #016836;
}

.faq-answer {
  margin-left: 100px;
  font-size: 13px;
  font-weight: 200;
  line-height: 23px;
  margin-bottom: 15px;
}
.faq-answer ul {
  padding-left: 20px;
}
.faq-answer a {
  color: #00A748;
  text-decoration: none;
}

.lightgreen-background {
  background-color: #F6FDF6;
  padding: 8px;
  color: #444444;
}

.hide {
  display: none;
}

.faq-list-text {
  padding-left: 0px;
  margin-bottom: 15px;
  line-height: 22px;
  margin-left: 80px;
  margin-top: 25px;
}
.faq-list-text a {
  color: #00A748;
  text-decoration: none;
}

.pagination-container {
  margin-left: 50%;
  transform: translateX(-25%);
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #00A748;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #2a6496;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #00A748;
  border-color: #00A748;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/*# sourceMappingURL=style.css.map */
