@import url(////fonts.googleapis.com/css?family=open+sans:400,300,400italic,600,700,800&subset=latin,latin-ext);
@import url(////fonts.googleapis.com/css?family=fira+sans:400,300,400italic,500,700&subset=latin,latin-ext);
@import url(////fonts.googleapis.com/css?family=lato:400,300,700,400italic,900&subset=latin,latin-ext);
@import url(////fonts.googleapis.com/css?family=roboto:400,300,400italic,500,700,900&subset=latin,latin-ext);
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body,
input,
textarea,
button,
select {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}

input,
textarea,
button,
select {
  outline: none;
}

body {
  background: #fff;
  color: #001602;
}

a {
  text-decoration: none;
  color: #34870B;
}

button {
  cursor: pointer;
}

.clearfix:after {
  clear: both;
  display: table;
  content: '';
}

.container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-header {
  margin: 45px 0;
}
.page-header h2 {
  font-size: 44px;
  color: #001602;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 620px) {
  .page-header h2 {
    font-size: 32px;
  }
}
.page-header h2 em {
  display: block;
  color: #34870B;
}

.page-content-aside {
  margin-bottom: 80px;
}
.page-content-aside:after {
  clear: both;
  display: table;
  content: '';
}
.page-content-aside .page-content {
  width: calc(100% - 400px);
  float: left;
}
.page-content-aside .page-aside {
  width: 400px;
  padding-left: 50px;
  float: left;
}
@media (max-width: 1020px) {
  .page-content-aside {
    margin-bottom: 40px;
  }

  .page-content-aside .page-content {
    width: 100%;
    float: none;
  }
  .page-content-aside .page-aside {
    display: none;
  }
}

.background-section {
  background: #F6F6F6;
}

.textbox, .select-styled select {
  background-color: #f5f6f5;
  border: 1px solid rgba(0, 22, 2, 0.08);
  border-radius: 8px;
  height: 48px;
  width: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease-in-out;
}
.textbox:focus, .select-styled select:focus {
  border-color: rgba(52, 135, 11, 0.7);
}

textarea.textbox {
  padding: 15px 20px;
  height: 100px;
  resize: none;
}

.checkbox-styled {
  position: relative;
  cursor: pointer;
  width: 100%;
}
.checkbox-styled input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox-styled i {
  border: 2px solid rgba(0, 22, 2, 0.16);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  transition: all .25s ease-in-out;
}
.checkbox-styled i:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: '';
  background: url(../images/check.svg) center no-repeat;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease-in-out;
}
.checkbox-styled input:checked ~ i {
  border-color: #34870B;
}
.checkbox-styled input:checked ~ i:before {
  opacity: 1;
  visibility: visible;
}
.checkbox-styled span {
  vertical-align: middle;
  display: inline-block;
  width: calc(100% - 30px);
  padding: 0 0 0 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #4D5C4E;
}

.select-styled {
  position: relative;
}
.select-styled:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  background: url(../images/select-arrow.svg);
  width: 10px;
  height: 14px;
  margin-top: -7px;
}
.select-styled select {
  -webkit-appearance: none;
  appearance: none;
}

.header-counter {
  margin: 70px 0;
  padding:130px 0;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  position: relative;
}

.header-counter:before,
.header-counter:after {
  position: absolute;
  left:50%;
  margin-left:-1px;
  content:'';
  width:1px;
  height:70px;
  background:#e5e5e5;
}

.header-counter:before {
  top:0;
}

.header-counter:after {
  bottom:0;
}

.header-counter span {
  display: inline-block;
  background: #F6F6F6;
  border-radius: 24px;
  padding: 23px 30px;
  color: #34870B;
  margin-right: 10px;
  font-weight: 700;
}

@media (max-width:700px) {
  .header-counter {
    font-size: 26px;
  }

  .header-counter span {
    display: block;
    width:min-content;
    white-space: nowrap;
    margin:0 auto 20px;
  }
}

.main-header-sizebox {
  height: 145px;
}

.main-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}
.main-header .header-container {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}
.main-header .header-container .container {
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.main-header .header-container h1 {
  background: url(../images/logo.svg) no-repeat center left/contain;
  width: 140px;
  height: 43px;
  font: 0/0 a;
  color: transparent;
}
.main-header .header-container .basic-nav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}
.main-header .header-container .basic-nav li {
  display: inline-block;
  margin-left: 35px;
}
.main-header .header-container .basic-nav a:not(.btn) {
  color: #001602;
  font-weight: 500;
  padding: 10px;
  transition: all .25s ease-in-out;
}
.main-header .header-container .basic-nav a:not(.btn):hover {
  color: #34870B;
}
@media (min-width:901px) {
  .main-header .header-nav-container {
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    background: #fff;
  }

  .main-header .header-nav-container .menu-ul > li {
    display: inline-block;
    margin-right: 15px;
  }

  .main-header .header-nav-container .menu-ul > li:before {
    position: absolute;
    content: '';
    top: -81px;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 22, 2, 0.85);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .25s ease-in-out;
  }

  .main-header .header-nav-container .menu-ul > li.active:before {
    visibility: visible;
    opacity: 1;
  }

  .main-header .header-nav-container .menu-ul > li > h3 {
    font-weight: 600;
    color: #001602;
    padding: 25px 30px 25px 20px;
    position: relative;
    transition: all .25s ease-in-out;
    cursor: pointer;
  }

  .main-header .header-nav-container .menu-ul > li > h3:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    background: url(../images/arrow-down.svg) no-repeat center/contain;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    transition: all .25s ease-in-out;
  }

  .main-header .header-nav-container .menu-ul > li:first-of-type h3 {
    padding-left: 0;
  }

  .main-header .header-nav-container .menu-ul > li:hover > h3, .main-header .header-nav-container .menu-ul > li.active > h3 {
    color: #2a6c09;
  }

  .main-header .header-nav-container .menu-ul > li.active > h3:before {
    background: url(../images/arrow-up.svg) no-repeat center/contain;
  }

  .main-header .header-nav-container .menu-ul li.active .submenu-container {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    height: auto;
  }

  .main-header .header-nav-container .submenu-container {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 1px;
    transition: all .25s ease-in-out;
  }

  .main-header .header-nav-container .submenu-container .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px 10px;
  }

  .main-header .header-nav-container .submenu-container nav {
    width: 33.33%;
  }

  .main-header .header-nav-container .submenu-container h3 {
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
    color: #001602;
  }

  .main-header .header-nav-container .submenu-ul > li {
    margin: 18px 0;
  }

  .main-header .header-nav-container .submenu-ul > li a {
    font-size: 14px;
    color: #323232;
    display: block;
    transition: all .25s ease-in-out;
    line-height: 1.5;
  }

  .main-header .header-nav-container .submenu-ul > li a:hover {
    color: #34870B;
  }
}

.menu-toggle {
  display: none;
}

.main-header .header-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index:999;
}

.main-header .mobile-menu {
  display: none;
}

@media (max-width:900px) {
  .main-header .container {
    padding:0 10px;
  }

  .main-header-sizebox {
    height: 80px;
  }

  .main-header .mobile-menu {
    display: block;
    margin:10px 0;
  }

  .main-header .mobile-menu ul li a {
    font-weight: 500;
    display: block;
    color: #001602;
    position: relative;
    padding: 10px 0;
    cursor:pointer;
    line-height: 1.4;
  }

  .main-header .menu-toggle {
    display: inline-block;
    background:url(../images/menu.svg) no-repeat center;
    background-size: 24px auto;
    width:45px;
    height:45px;
    margin-right: 15px;
    cursor:pointer;
  }

  .main-header .menu-close {
    display: none;
    background:url(../images/close-menu.svg) no-repeat center;
    background-size: 30px auto;
    width:45px;
    height:45px;
    cursor:pointer;
  }

  .main-header {
    box-shadow: 0 2px 8px rgba(0, 20, 39, 0.06);
  }

  .main-header .header-container .basic-nav li {
    margin-left:0;
  }

  .main-header .basic-nav ul li:not(:last-of-type) {
    display: none;
  }

  .main-header .header-nav-container {
    left:-100%;
    visibility: hidden;
    opacity:0;
    position:fixed;
    top:0;
    width:calc(100% - 30px);
    bottom:0;
    background:#fff;
    box-shadow:0 0 0 500px rgba(0, 22, 2, 0.85);
    padding-top: 70px;
    transition:all .25s ease-in-out;
    overflow: auto;
  }

  .main-header.expanded .header-nav-container {
    left:0;
    visibility: visible;
    opacity:1;
  }

  .main-header.expanded .header-logo .menu-toggle {
    display: none;
  }

  .main-header.expanded .header-logo .menu-close {
    display: inline-block;
  }

  .main-header.expanded .header-logo {
    justify-content: space-between;
    width:100%;
    padding-right: 30px;
  }

  .main-header.expanded .basic-nav li .btn {
    display: none;
  }

  .main-header .header-nav-container .menu-ul {
    border-top:1px solid #E6E8E6;
    padding-top: 13px;
  }

  .main-header .header-nav-container .menu-ul > li {
    display: block;
  }

  .main-header .header-nav-container .menu-ul > li > h3 {
    font-weight: 500;
    color: #001602;
    padding: 13px 0;
    position: relative;
    transition: all .25s ease-in-out;
    cursor: pointer;
  }

  .main-header .header-nav-container .menu-ul > li > h3:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    background: url(../images/arrow-down.svg) no-repeat center/contain;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    transition: all .25s ease-in-out;
  }

  .main-header .header-nav-container .menu-ul > li:hover > h3,
  .main-header .header-nav-container .menu-ul > li.active > h3 {
    color: #2a6c09;
  }

  .main-header .header-nav-container .menu-ul > li.active > h3:before {
    background: url(../images/arrow-up.svg) no-repeat center/contain;
  }

  .main-header .header-nav-container .menu-ul li.active .submenu-container {
    display: block;
  }

  .main-header .header-nav-container .submenu-container {
    display: none;
  }

  .main-header .header-nav-container .submenu-container .container {
    padding:0 0 0 15px;
  }

  .main-header .header-nav-container .submenu-container nav {
    width:100%;
  }

  .main-header .header-nav-container .submenu-container h3 {
    font-weight: 500;
    display: block;
    color: #001602;
    position: relative;
    padding: 13px 0;
    cursor:pointer;
    line-height: 1.4;
  }

  .main-header .header-nav-container .submenu-container h3:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    background: url(../images/arrow-down.svg) no-repeat center/contain;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    transition: all .25s ease-in-out;
  }

  .main-header .header-nav-container .submenu-ul {
    display: none;
  }

  .main-header .header-nav-container nav.active .submenu-ul {
    display: block;
  }

  .main-header .header-nav-container h3:hover,
  .main-header .header-nav-container nav.active h3 {
    color: #2a6c09;
  }

  .main-header .header-nav-container nav.active h3:before {
    background: url(../images/arrow-up.svg) no-repeat center/contain;
  }

  .main-header .header-nav-container .submenu-ul > li {
    display: block;
  }

  .main-header .header-nav-container .submenu-ul > li a {
    font-size: 14px;
    color: #323232;
    display: block;
    transition: all .25s ease-in-out;
    line-height: 1.4;
    padding:8px 0 8px 15px;
  }

  .main-header .header-nav-container .submenu-ul > li a:hover {
    color: #34870B;
  }
}

@media (max-width:600px) {
  .main-header .header-container .basic-nav a.btn {
    height:38px;
    line-height: 38px;
    background:#34870B;
    font-size: 13px;
    font-weight: 600;
    padding:0 20px;
  }
}

@media (max-width:450px) {
  .main-header .header-container .basic-nav a.btn {
    font-size: 12px;
    padding: 0 15px;
  }

  .main-header .header-container h1 {
    width:130px;
  }
}

.main-footer {
  background: #fff;
}
.main-footer .footer-top {
  padding: 35px 0;
}
.main-footer .footer-top .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.main-footer .footer-top .logo {
  background: url(../images/logo.svg) no-repeat center left/contain;
  width: 140px;
  height: 48px;
  font: 0/0 a;
  color: transparent;
  display: block;
}
.main-footer .footer-top .socialmedia li {
  display: inline-block;
  margin-left: 10px;
}
.main-footer .footer-top .socialmedia a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font: 0/0 a;
  color: transparent;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
  transition: all .25s ease-in-out;
}
.main-footer .footer-top .socialmedia a.fb {
  background-image: url(../images/facebook-icon.svg);
  background-size: 12px auto;
}
.main-footer .footer-top .socialmedia a.ln {
  background-image: url(../images/linkedin-icon.svg);
  background-size: 24px auto;
}
.main-footer .footer-top .socialmedia a:hover {
  background-color: rgba(0, 22, 2, 0.08);
}
@media (max-width: 650px) {
  .main-footer .footer-top .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-footer .footer-top .socialmedia li {
    margin:20px 10px 0 0;
  }
}

.main-footer .footer-nav {
  border-top: 1px solid #E6E8E6;
  border-bottom: 1px solid #E6E8E6;
  padding: 45px 0 70px;
}
.main-footer .footer-nav nav {
  padding-right: 100px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 450px) {
    .main-footer .footer-nav nav {
    padding-right: 0;
    width: 100%;
  }
    .main-footer .footer-nav nav:not(:first-of-type) {
    border-top: 1px solid #E6E8E6;
    padding-top: 35px;
  }
}
.main-footer .footer-nav nav h3 {
  font-weight: 600;
  color: #001602;
  font-size: 16px;
  margin-bottom: 15px;
}
.main-footer .footer-nav nav ul li {
  margin: 5px 0;
}
.main-footer .footer-nav nav ul a {
  font-size: 14px;
  color: #001602;
  transition: all .25s ease-in-out;
  display: block;
  padding: 5px 0;
}
.main-footer .footer-nav nav ul a:hover {
  color: #34870B;
}
.main-footer .footer-bottom {
  padding: 20px 0;
}
.main-footer .footer-bottom .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.main-footer .footer-bottom p {
  font-size: 14px;
  color: #4D5C4E;
}
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

@media (max-width: 450px) {
  .owl-stage {
    padding-left: 0px !important;
  }
}
@media (min-width: 450px) {
  .owl-stage {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-grab {
  cursor: move;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-loaded, .owl-carousel.owl-loading {
  display: block;
}

.owl-carousel.owl-hidden, .owl-carousel.owl-loading {
  opacity: 0;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  position: absolute;
  font: 0/0 a;
  color: transparent;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #E6E8E6;
  transition: all .25s ease-in-out;
  top: 50%;
  margin-top: -24px;
}

.owl-carousel .owl-next.disabled,
.owl-carousel .owl-prev.disabled {
  background:transparent;
  border:1px solid #e6e8e6;
}

.owl-carousel .owl-next:before,
.owl-carousel .owl-prev:before {
  position: absolute;
  content: '';
  background: url(../images/carousel-right-arrow.svg) no-repeat center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all .25s ease-in-out;
}

.owl-carousel .owl-next {
  right: -20px;
}

.main-footer .footer-nav .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.owl-carousel .owl-next:hover {
  opacity: 0.8;
}
.owl-carousel .owl-next.disabled:before {
  opacity: 0.3;
}
@media (max-width: 600px) {
  .owl-carousel .owl-next {
    top: auto !important;
    right: auto !important;
    bottom: -40px !important;
    left: 65px !important;
  }
}

.owl-carousel .owl-prev {
  left: -20px;
}
@media (max-width: 600px) {
  .owl-carousel .owl-prev {
    top: auto !important;
    right: auto !important;
    bottom: -40px !important;
    left: 10px !important;
  }
}
.owl-carousel .owl-prev:before {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.owl-carousel .owl-prev:hover {
  opacity: 0.8;
}
.owl-carousel .owl-prev.disabled:before {
  opacity: 0.3;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  font: 0/0 a;
  color: transparent;
  background: #f2f2f2;
  transition: all .25s ease-in-out;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot.active {
  background: #34870B;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.btn {
  font-weight: 600;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  background: #34870B;
  background: linear-gradient(180deg, #459d18 16.15%, #34870b 87.5%);
  border-radius: 12px;
  color: #fff;
  transition: all .25s ease-in-out;
  cursor: pointer;
  border: 0;
  font-size: 16px;
}
.btn.btn-outline {
  border: 2px solid #34870B;
  background: none;
  color: #34870B;
}
.btn.btn-outline-white {
  border: 2px solid #E6E8E6;
  background: none;
  color: #4D5C4E;
}
.btn.btn-big {
  height: 64px;
  line-height: 62px;
}
.btn.btn-min {
  height: 48px;
  line-height: 46px;
}
.btn.btn-secondary {
  color: #001602;
  background: #FFBD00;
}
.btn.btn-white {
  background: #fff;
  color: #001602;
  border: 1px solid rgba(0, 22, 2, 0.08);
}

.btn-arrow:after {
  display: inline-block;
  background:url(../images/btn-arrow-icon.svg) no-repeat center / contain;
  width:8px;
  height:10px;
  content: '';
  margin-left: 10px;
}

.btn-white.btn-arrow:after,
.btn-secondary.btn-arrow:after {
  filter: invert(100%);
}

.btn-outline-white.btn-arrow:after {
  filter: invert(60%);
}

.btn:hover {
  opacity: 0.8;
}

.intro-section {
  position: relative;
  background: #fff;
}
.intro-section .intro-bg {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background: url(../images/intro-img.png) no-repeat center left/cover;
}
.intro-section .intro-bg .intro-img {
  display: none;
}
.intro-section .intro-skew {
  position: absolute;
  top: 0;
  left: -10%;
  right: 42%;
  bottom: 0;
  background: #fff;
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
}
.intro-section .intro-container {
  position: relative;
  z-index: 50;
  height: 655px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.intro-section .intro-container .intro-text {
  width: 50%;
  position: relative;
}
.intro-section .intro-container .intro-text h2 {
  font-size: 55px;
  color: #001602;
  font-weight: 700;
  line-height: 1.25;
}
.intro-section .intro-container .intro-text h2 span {
  color: #34870B;
}
.intro-section .intro-container .intro-text p {
  color: #99A29A;
  font-size: 20px;
  margin: 40px 0 50px;
  line-height: 1.4;
}
.intro-section .intro-container .intro-text .btns .btn {
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .intro-section .intro-container .intro-text h2 {
    font-size: 48px;
  }
  .intro-section .intro-container .intro-text p {
    font-size: 18px;
  }
}
.intro-section .intro-img {
  position: absolute;
  filter: drop-shadow(-8px 24px 34px rgba(0, 0, 0, 0.31));
  bottom: -80px;
  right: -60%;
  overflow: hidden;
  border-radius: 20px;
  transform: perspective(150px) rotateY(10deg);
}
.intro-section .intro-img .img {
  background: url(../images/intro-img2.png) no-repeat center/cover;
  width: 284px;
  height: 204px;
}
@media (max-width: 950px) {
  .intro-section .intro-bg {
    position: relative;
    background: url(../images/intro-img.png) no-repeat center left/cover;
    width: calc(100% - 40px);
    height: 350px;
    left: 0;
    margin: 25px 20px;
    border-radius: 20px;
  }
  .intro-section .intro-bg .intro-img {
    display: block;
    bottom: -5px;
    right: auto;
    left: -5px;
  }
  .intro-section .intro-bg .intro-img .img {
    width: 180px;
    height: 150px;
  }
  .intro-section .intro-skew {
    display: none;
  }
  .intro-section .intro-container {
    height: auto;
  }
  .intro-section .intro-container .intro-text {
    text-align: center;
    width: 100%;
    margin: 10px 0 30px;
  }
  .intro-section .intro-container .intro-text .intro-img {
    display: none;
  }
  .intro-section .intro-container .intro-text h2 {
    font-size: 28px;
  }
  .intro-section .intro-container .intro-text p {
    font-size: 16px;
    margin: 20px 0;
  }
  .intro-section .intro-container .intro-text .btns .btn {
    width: 100%;
    height: 55px;
    line-height: 51px !important;
    margin: 0 0 5px 0;
  }
}

.wrote-aboutus-white .wrote-aboutus {
  background: #fff;
}

.wrote-aboutus {
  background: #F6F6F6;
  padding: 65px 0;
}
.wrote-aboutus h3 {
  font-size: 18px;
  color: #545F54;
  font-weight: 400;
  line-height: 1.4;
}
.wrote-aboutus h3 em {
  display: block;
  color: #34870B;
  font-weight: 600;
}
.wrote-aboutus ul {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrote-aboutus a {
  transition: all .25s ease-in-out;
}
.wrote-aboutus a:hover {
  opacity: 0.8;
}
.wrote-aboutus img {
  max-width: 100%;
}
@media (max-width: 900px) {
  .wrote-aboutus {
    padding: 25px 0;
  }
  .wrote-aboutus h3 em {
    display: inline;
  }
  .wrote-aboutus li {
    width: 50%;
    margin: 15px 0;
    padding:0 10px;
    text-align: center;
  }
  .wrote-aboutus li:nth-of-type(1) {
    width: 100%;
    text-align: left;
  }
}

.whyus-section {
  padding: 75px 0;
}
@media (max-width: 900px) {
  .whyus-section {
    padding: 50px 0 0;
  }
}
.whyus-section h2 {
  position: relative;
  text-align: center;
  padding-top: 100px;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}
.whyus-section h2 span {
  color: #34870B;
}
.whyus-section h2:before {
  position: absolute;
  content: '';
  background: url(../images/whyus-icon.svg) no-repeat center/contain;
  width: 43px;
  height: 54px;
  top: 0;
  left: 50%;
  margin-left: -22px;
}
@media (max-width: 900px) {
  .whyus-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    padding-top: 75px;
  }
  .whyus-section h2:before {
    width: 30px;
    height: 40px;
    margin-left: -15px;
  }
}

.whyus-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .whyus-items {
    display: block;
  }
}
.whyus-items .whyus-item {
  padding: 20px;
  width: calc(33.33% - 17px);
  text-align: center;
  display: block;
  position: relative;
}
.whyus-items .whyus-item .img {
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.whyus-items .whyus-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0;
  line-height: 1.4;
  color: #001602;
}
.whyus-items .whyus-item p {
  margin: 20px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #001602;
}
.whyus-items .whyus-item .btn-more {
  position: absolute;
  display: inline-block;
  bottom:0;
  left:50%;
  transform:translate(-50%, 0);
}
.whyus-items .whyus-item .btn-more:before {
  position: absolute;
  content: '';
  background: url(../images/btn-more-icon.svg) no-repeat center left/contain;
  width: 9px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  right: -20px;
}
@media (max-width: 900px) {
  .whyus-items .whyus-item {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    margin-bottom: 20px;
  }
  .whyus-items .whyus-item h3 {
    margin: 20px 0;
  }
  .whyus-items .whyus-item .btn-more {
    left:0;
    transform:translate(0,0);
  }
}

.find-system-section {
  background: #f6f6f6;
  overflow: hidden;
}
.find-system-section header {
  padding: 100px 0 50px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 720px) {
  .find-system-section {
    background:#fff;
    border-top:1px solid #E6E8E6;
    border-bottom:1px solid #E6E8E6;
  }

  .find-system-section header {
    padding-top: 50px;
  }

  .find-system-section .btn {
    width:100%;
  }
}
.find-system-section header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
}
.find-system-section header h2 span {
  color: #34870B;
}
.find-system-section header p {
  font-size: 20px;
  font-weight: 400;
  color: #001602;
  line-height: 1.4;
  margin: 25px 0 50px;
}
@media (max-width: 720px) {
  .find-system-section header h2 {
    font-size: 28px;
    position: relative;
    padding-top: 75px;
  }
  .find-system-section header h2:before {
    position: absolute;
    content: '';
    background: url(../images/find-system-icon.svg) no-repeat center/contain;
    width: 42px;
    height: 42px;
    top: 0;
    left: 50%;
    margin-left: -21px;
  }
  .find-system-section header p {
    font-size: 16px;
    margin: 20px 0;
  }
}
.find-system-section .img-screen {
  line-height: 0;
  font: 0/0 a;
  color: transparent;
}
.find-system-section .img-screen img {
  width: 100%;
  box-shadow: 0 12px 87px rgba(49, 53, 50, 0.2);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: 12px solid #D0D0D0;
  border-bottom: 0;
}
@media (max-width: 720px) {
  .find-system-section .img-screen {
    display: none;
  }
}
.find-system-section .img-screen-mobile {
  display: none;
  margin-bottom: 40px;
  text-align: center;
  line-height: 0;
  font: 0/0 a;
  color: transparent;
}
.find-system-section .img-screen-mobile img {
  max-width: 100%;
}
@media (max-width: 720px) {
  .find-system-section .img-screen-mobile {
    display: block;
  }
}

.knowledge-section {
  padding: 100px 0;
}
@media (max-width: 620px) {
  .knowledge-section {
    padding: 40px 0 80px;
  }
}
.knowledge-section h2 {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 620px) {
  .knowledge-section h2 {
    font-size: 28px;
  }
}
.knowledge-section .knowledge-carousel {
  margin-top: 30px;
}
.knowledge-section .knowledge-carousel li {
  padding: 20px 10px;
}
.knowledge-section .knowledge-carousel .owl-nav .owl-prev,
.knowledge-section .knowledge-carousel .owl-nav .owl-next {
  top: -45px;
  left: auto;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}
.knowledge-section .knowledge-carousel .owl-nav .owl-next {
  right: 0;
}
.knowledge-section .knowledge-carousel .owl-nav .owl-prev {
  right: 50px;
}
@media (max-width: 400px) {
  /*.knowledge-section .knowledge-carousel .owl-nav .owl-prev,*/
  /*.knowledge-section .knowledge-carousel .owl-nav .owl-next {*/
  /*  top: -45px;*/
  /*  width: 30px;*/
  /*  height: 30px;*/
  /*  margin-top: -15px;*/
  /*}*/
  /*.knowledge-section .knowledge-carousel .owl-nav .owl-prev {*/
  /*  right: 35px;*/
  /*}*/
}

.knowledge-item, .blog-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(49, 53, 50, 0.08);
  overflow: hidden;
  display: block;
  transition: all .25s ease-in-out;
}
.knowledge-item.knowledge-item:hover, .blog-item.knowledge-item:hover {
  box-shadow: 0 4px 15px rgba(49, 53, 50, 0.2);
}
.knowledge-item.blog-item:hover, .blog-item.blog-item:hover {
  box-shadow: 0 4px 35px rgba(49, 53, 50, 0.3);
}
.knowledge-item .img, .blog-item .img {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.knowledge-item .img .category, .blog-item .img .category {
  background: url(../images/knowledge-category-icon.svg) no-repeat 10px 50% #34870B;
  background-size: 12px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  top: 25px;
  left: 0;
  padding: 7px 13px 7px 30px;
}
.knowledge-item .item-details, .blog-item .item-details {
  padding: 20px;
}
.knowledge-item .item-details time, .blog-item .item-details time {
  font-size: 12px;
  color: #34870B;
  font-weight: 500;
}
.knowledge-item .item-details h3, .blog-item .item-details h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0;
  color: #02020B;
  height:45px;
  overflow: hidden;
}
.knowledge-item .item-details p, .blog-item .item-details p {
  font-size: 14px;
  color: #99A29A;
  line-height: 1.5;
  margin: 12px 0;
  height:46px;
  overflow: hidden;
}
.knowledge-item .item-details .readtime, .blog-item .item-details .readtime {
  font-size: 12px;
  font-weight: 500;
  color: #515151;
  background: url(../images/readtime-icon.svg) no-repeat center left/contain;
  padding: 3px 0 3px 25px;
}

.map-white-section .map-section {
  background: #fff;
}

.map-section {
  background: #F6F6F6;
  padding: 100px 0;
}
@media (max-width: 620px) {
  .map-section {
    padding: 40px 0;
  }
}
.map-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 75px;
  position: relative;
}
.map-section h2 span {
  color: #34870B;
  display: block;
}
.map-section h2:before {
  position: absolute;
  content: '';
  background: url(../images/map-section-ico.svg) no-repeat center/contain;
  width: 42px;
  height: 42px;
  top: 0;
  left: 50%;
  margin-left: -21px;
}
@media (max-width: 720px) {
  .map-section h2 {
    font-size: 30px;
  }
  .map-section h2:before {
    background: url(../images/check.svg) no-repeat center/contain;
  }
}
.map-section .map-placeholder {
  width: 100%;
  height:600px;
  background: #ccc;
  margin-top: 50px;
  border-radius: 12px;
  position: relative;
}

.map-section .map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:50px auto 0;
  max-width:500px;
}

.map-section .map-footer-1 {
  background:url(../images/map-footer-1.png) no-repeat center / contain;
  width:198px;
  height: 80px;
}

.map-section .map-footer-2 {
  background:url(../images/map-footer-2.png) no-repeat center / contain;
  width:230px;
  height:87px;
}

.opinions-section {
  padding: 100px 0;
}
@media (max-width: 620px) {
  .opinions-section {
    padding: 40px 0 100px;
  }
}
.opinions-section h3 {
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 36px;
}
.opinions-section .container {
  max-width: 900px;
}
.opinions-section .opinion-item {
  background: #fff;
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 25px 20px;
  margin: 50px;
}

@media (max-width: 600px) {
  .opinions-section .opinion-item {
    margin: 50px 0;
  }
}

.opinions-section .opinion-item p {
  line-height: 1.6;
}
.opinions-section .opinion-item footer {
  border-top: 1px solid #F2F2F2;
  padding-top: 15px;
  margin-top: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 650px) {
  .opinions-section .opinion-item footer {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .opinions-section .opinion-item footer .user {
    margin-bottom: 15px;
  }
}
.opinions-section .opinion-item footer .user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 13px;
}
.opinions-section .opinion-item footer .user strong {
  font-size: 18px;
  font-weight: 700;
  color: #34870B;
  vertical-align: middle;
}
@media (max-width: 530px) {
  .opinions-section .opinion-item footer .user img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .opinions-section .opinion-item footer .user strong {
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 24px - 10px);
    display: inline-block;
  }
}
@media (max-width: 530px) {
  .opinions-section .opinion-item .google-stars {
    text-align: center;
  }
}
.opinions-section .opinion-item .stars {
  background: url(../images/opinion-star-off.svg) repeat-x center left;
  height: 20px;
  width: 115px;
  position: relative;
  float: left;
}
@media (max-width: 530px) {
  .opinions-section .opinion-item .stars {
    display: block;
    float: none;
  }
}
.opinions-section .opinion-item .stars .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: url(../images/opinion-star.svg) repeat-x center left;
}
.opinions-section .opinion-item .google-logo {
  background: url(../images/google.svg) no-repeat center;
  width: 77px;
  height: 25px;
  float: left;
  margin-left: 20px;
}
@media (max-width: 530px) {
  .opinions-section .opinion-item .google-logo {
    display: block;
    margin-top: 10px;
    float: none;
  }
}

.banner-support {
  background: url(../images/banner-bg.png) no-repeat center/cover;
  width: 100%;
  padding: 100px 0;
}
.banner-support .text {
  width: 80%;
}
.banner-support h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}
.banner-support p {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  margin: 25px 0 40px;
}
@media (max-width: 700px) {
  .banner-support {
    padding: 40px 0;
  }
  .banner-support .text {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .banner-support .btn {
    width: 100%;
    text-align: center;
  }
}

.panel-banner {
  background: url(../images/panel-offers-bg.png) no-repeat center/cover;
  width: 100%;
  border-radius: 8px;
  padding: 30px 35px;
  color: #fff;
}
.panel-banner h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}
.panel-banner p {
  margin: 20px 0;
  line-height: 1.4;
}
.panel-banner .btn {
  width: 100%;
  text-align: center;
}
.panel-banner ul {
  margin: 20px 0 0 0;
}
.panel-banner ul li {
  font-size: 15px;
  position: relative;
  padding: 5px 0 5px 35px;
  margin: 8px 0;
}
.panel-banner ul li:before {
  position: absolute;
  content: '';
  background: url(../images/check-icon.svg) no-repeat center/contain;
  width: 20px;
  height: 21px;
  top: 50%;
  left: 0;
  margin-top: -10px;
}

.image-content-section {
  overflow: hidden;
  margin: 50px 0;
}
.image-content-section .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 50px 20px;
}
.image-content-section .image {
  width: 40%;
  position: relative;
}
.image-content-section .image:before {
  position: absolute;
  content: '';
  top: -45px;
  right: 50%;
  bottom: -45px;
  width: 50vw;
  background: rgba(52, 135, 11, 0.15);
  border-radius: 12px;
}
.image-content-section .image .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 4;
}
.image-content-section .content {
  width: 50%;
  line-height: 1.4;
}
.image-content-section .content header i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-block;
  background-color: #F2F5EF;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
}
.image-content-section .content header h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}
.image-content-section .content p {
  margin: 20px 0;
}
.image-content-section .content ul li {
  font-weight: 500;
  margin: 10px 0;
  position: relative;
  padding-left: 24px;
}
.image-content-section .content ul li:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #34870B;
  border-radius: 50%;
  top: 6px;
  left: 0;
}
.image-content-section .content strong {
  font-weight: 600;
}
.image-content-section.reverse .image {
  -ms-flex-order: 2;
  order: 2;
}
.image-content-section.reverse .image:before {
  left: 50%;
  right: auto;
}

@media (max-width:830px) {
  .image-content-section .container {
    flex-direction: column;
  }

  .image-content-section .image,
  .image-content-section .content {
    width:100%;
  }

  .image-content-section .image {
    height: 350px;
    order:2;
    margin-top: 25px;
  }

  .image-content-section .image:before {
    display: none;
  }
}

.blog-items-grid {
  padding: 30px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-items-grid li {
  width: calc(33.33% - 20px);
  margin: 20px 0;
}
@media (max-width: 850px) {
  .blog-items-grid li {
    width: calc(50% - 15px);
  }
}
@media (max-width: 500px) {
  .blog-items-grid li {
    width: 100%;
    margin: 10px 0;
  }
}

.blog-tags-nav {
  overflow: auto;
  padding: 10px 0;
}
.blog-tags-nav ul {
  white-space: nowrap;
}
.blog-tags-nav li {
  display: inline-block;
  margin-right: 15px;
}
.blog-tags-nav a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  color: #334535;
  border: 1px solid #99A29A;
  border-radius: 8px;
  padding: 0 20px;
}
.blog-tags-nav a.active {
  color: #34870B;
  border-color: #34870B;
}

.faq-items {
  margin-bottom: 100px;
}

.faq-item {
  background: rgba(0, 22, 2, 0.05);
  border-radius: 16px;
  margin: 0 0 20px 0;
  padding: 5px 30px;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .faq-item {
    padding: 5px 15px;
  }
}
.faq-item header h3, .faq-item header h4 {
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.faq-item header h3:after, .faq-item header h4:after {
  position: absolute;
  content: '';
  background: url(../images/faq-arrow.svg) no-repeat center/contain;
  width: 20px;
  height: 12px;
  top: 50%;
  right: 0;
  margin-top: -6px;
  transition: all .4s ease-in-out;
}
.faq-item header.faq-main-header h3 {
  font-size: 20px;
  padding: 25px 40px 25px 0;
}
@media (max-width: 720px) {
  .faq-item header.faq-main-header h3 {
    font-size: 18px;
  }
}
.faq-item header.faq-sub-header h4 {
  font-size: 18px;
  padding: 15px 40px 15px 0;
}
@media (max-width: 720px) {
  .faq-item header.faq-sub-header h4 {
    font-size: 16px;
  }
}
.faq-item header.faq-sub-header h4:before {
  content: '\02022';
  margin-right: 8px;
}
@media (max-width: 720px) {
  .faq-item p {
    font-size: 14px;
  }
}
.faq-item.faq-main-accordion .faq-main-content {
  border-top: 1px solid transparent;
  overflow: auto;
  padding: 0;
  max-height: 0;
  transition: all .6s ease-in-out;
}
.faq-item.faq-main-accordion.visible .faq-main-header h3:after {
  transform: rotateX(180deg);
}
.faq-item.faq-main-accordion.visible .faq-main-content {
  border-top: 1px solid #E6E8E6;
  padding: 10px 0;
  max-height: 1000px;
  opacity: 1;
}
.faq-item .faq-sub-accordion {
  margin: 5px 0;
}
.faq-item .faq-sub-accordion .faq-sub-content {
  overflow: hidden;
  padding: 0;
  max-height: 0;
  opacity: 0;
  transition: all .6s ease-in-out;
}
.faq-item .faq-sub-accordion.visible .faq-sub-header h4:after {
  transform: rotateX(180deg);
}
.faq-item .faq-sub-accordion.visible .faq-sub-content {
  padding: 10px 0;
  max-height: 1000px;
  opacity: 1;
}

.contact-form-section {
  margin-top: 70px;
}
.contact-form-section .contact-form-container {
  height: 350px;
}
.contact-form-section .contact-form-container:after {
  clear: both;
  display: table;
  content: '';
}
.contact-form-section .contact-form-container .contact-form-header {
  float: left;
  width: calc(100% - 550px);
  padding-right: 100px;
}
.contact-form-section .contact-form-container .contact-form-header .page-header {
  margin-top: 0;
}
.contact-form-section .contact-form-container .contact-form-header p {
  color: #4D5C4E;
  font-size: 18px;
  margin: 20px 0;
  line-height: 1.4;
}
.contact-form-section .contact-form-container .contact-form-panel {
  float: left;
  width: 550px;
}
.contact-form-section .contact-bg {
  background: url(../images/contact-bg.png) no-repeat center/cover;
  width: 100%;
  height: 500px;
}
@media (max-width: 1090px) {
  .contact-form-section .contact-form-container {
    height: auto;
  }
  .contact-form-section .contact-form-container .contact-form-header {
    float: none;
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  .contact-form-section .contact-form-container .contact-form-panel {
    float: none;
    width: 100%;
  }
  .contact-form-section .contact-bg {
    display: none;
  }
}

@media (min-width: 1091px) {
  .contact-form {
    background: #fff;
    box-shadow: 0 12px 88px rgba(49, 53, 50, 0.4);
    border-radius: 24px;
    width: 100%;
    padding: 45px 40px 25px;
  }
}
@media (max-width: 1090px) {
  .contact-form {
    margin-top: 30px;
    border-top: 1px solid #E6E8E6;
    border-bottom: 1px solid #E6E8E6;
    padding: 35px 0;
  }
}
.contact-form.hide {
  display: none;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-top: 55px;
}
.contact-form h3:before {
  position: absolute;
  content: '';
  background: url(../images/mail.svg) no-repeat center/contain;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}
.contact-form h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 35px;
}
.contact-form .form-row {
  margin: 20px 0;
}
.contact-form .select-styled select {
  background-color: rgb(245,246,245) !important;
}
.contact-form .textbox {
  background-color: rgba(0, 22, 2, 0.04) !important;
  padding-left: 50px;
  background-repeat: no-repeat;
  background-position: 20px center;
}
.contact-form .textbox[name="name"] {
  background-image: url(../images/icon-name.svg);
}
.contact-form .textbox[name="email"] {
  background-image: url(../images/icon-email.svg);
}
.contact-form .textbox[name="phone"] {
  background-image: url(../images/icon-phone.svg);
}
.contact-form .textbox[name="message"] {
  background-image: url(../images/icon-message.svg);
  background-position: 20px 15px;
}
.contact-form .btn {
  width: 100%;
  margin-top: 25px;
}

.contact-form-success {
  display: none;
}
.contact-form-success.visible {
  display: block;
}
@media (min-width: 1091px) {
  .contact-form-success {
    background: #fff;
    box-shadow: 0 12px 88px rgba(49, 53, 50, 0.4);
    border-radius: 24px;
    width: 100%;
    padding: 45px 40px 25px;
  }
}
@media (max-width: 1090px) {
  .contact-form-success {
    margin-top: 30px;
    border-top: 1px solid #E6E8E6;
    border-bottom: 1px solid #E6E8E6;
    padding: 35px 0;
  }
}
.contact-form-success header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.contact-form-success header h3 {
  font-size: 24px;
  font-weight: 700;
}
.contact-form-success header h3.success {
  position: relative;
  padding-top: 55px;
}
.contact-form-success header h3.success:before {
  position: absolute;
  content: '';
  background: url(../images/check.svg) no-repeat center/contain;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}
.contact-form-success .alert {
  background: #E6F1FD;
  border-radius: 8px;
  padding: 16px 16px 16px 50px;
  margin: 25px 0;
  color: #003874;
  line-height: 1.3;
  font-size: 15px;
  position: relative;
}
.contact-form-success .alert:before {
  position: absolute;
  content: '';
  background: url(../images/icon-info.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  top: 16px;
  left: 16px;
}
.contact-form-success .form-success-btns {
  background: #fff;
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 5px 16px;
  margin: 30px 0;
}
.contact-form-success .form-success-btns strong {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 20px 0;
  display: block;
}
.contact-form-success .form-success-btns .btn {
  width: 100%;
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  margin: 10px 0;
  text-align: center;
}

.contact-details-section {
  display: -ms-flexbox;
  display: flex;
  padding: 100px 10px !important;
}
.contact-details-section .contact-detail-item {
  line-height: 1.4;
  width: 33.33%;
  margin-right: 50px;
}
.contact-details-section .contact-detail-item h3 {
  font-weight: 700;
  font-size: 32px;
}
.contact-details-section .contact-detail-item p {
  margin: 20px 0;
}
.contact-details-section .contact-detail-item p strong, .contact-details-section .contact-detail-item p a, .contact-details-section .contact-detail-item p span {
  font-weight: 700;
  color: #4D5C4E;
}
.contact-details-section .contact-detail-item p span {
  color: #34870B;
}
@media (max-width: 750px) {
  .contact-details-section {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 10px;
  }
  .contact-details-section .contact-detail-item {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 30px;
  }
}

.article-img-cover {
  width: 100%;
  height: 0;
  padding-bottom: 42%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 50px;
}

.mobile-article-share {
  display: none;
}

.mobile-article-share h4 {
  font-weight: bold;
  font-size: 26px;
  line-height: 150%;
  color: #001602;


}

@media (max-width:700px) {
  .article-author .article-share {
    display: none;
  }

  .mobile-article-share {
    display: block;
  }
}

.article-content {
  line-height: 1.5;
}
.article-content p {
  margin: 30px 0;
}
.article-content ul {
  margin: 30px 0;
  list-style: disc;
  list-style-position: inside;
}
.article-content ol {
  margin: 30px 0;
  list-style: decimal;
  list-style-position: inside;
}
.article-content li {
  margin: 5px 0;
}
.article-content strong {
  font-weight: 600;
}
.article-content em, .article-content i {
  font-style: italic;
}
.article-content img {
  max-width: 100%;
}
.article-content h3 {
  font-size: 36px;
  font-weight: 700;
}

.article-table-of-contents {
  background: #F6F6F6;
  border: 1px solid #E6E8E6;
  border-radius: 6px;
  padding: 30px;
  margin: 0 0 30px 0;
}
.article-table-of-contents strong {
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}
.article-table-of-contents ul li {
  list-style: disc;
  list-style-position: inside;
  margin: 15px 0;
  line-height: 1.4;
}
.article-table-of-contents ul a {
  font-weight: 500;
  font-size: 18px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #323232;
}
.article-table-of-contents ul a:hover {
  color: #34870B;
}

.article-author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.article-author .author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.article-author .author .avatar {
  border-radius: 50%;
  width: 58px;
  height: 58px;
  float: left;
}
.article-author .author .author-info {
  float: left;
  margin-left: 20px;
  color:#99A29A;
}
.article-author .author .author-info strong {
  display: block;
  color: #001602;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.article-author .author .author-info time, .article-author .author .author-info span {
  color: #99A29A;
  font-size: 16px;
}
.article-share a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font: 0/0 a;
  color: transparent;
  position: relative;
  margin-left: 10px;
  background-color: transparent;
  border:1px solid #E6E8E6;
}
.article-share a:hover {
  background-color: #34870B;
}
.article-share a:hover:before {
  filter: brightness(0%) invert(100%);
}
.article-share a:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.article-share a.fb:before {
  background-image: url(../images/share-fb.svg);
  background-size: 13px 20px;
}
.article-share a.tw:before {
  background-image: url(../images/share-tw.svg);
  background-size: 22px 19px;
}
.article-share a.ln:before {
  background-image: url(../images/share-ln.svg);
  background-size: 18px 18px;
}

.cookies-alert {
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background: #FFFFFF;
    box-shadow: 0 12px 88px rgba(49, 53, 50, 0.4);
    z-index:999;
    padding:30px 0;
}

.cookies-alert .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookies-alert p {
    width: calc(100% - 230px);
    color: #334535;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width:600px) {
    .cookies-alert .container {
        flex-direction: column;
    }

    .cookies-alert p {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}

.aboutus-intro {
    background:url(../images/aboutus-intro-bg.png) no-repeat top right;
    background-color: #fff;
    padding:80px 0 80px;
}

.aboutus-intro .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutus-intro .aboutus-intro-text {
    width:calc(100% - 450px);
    padding-right: 50px;
}

.aboutus-intro .aboutus-intro-text h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.aboutus-intro .aboutus-intro-text h2 em {
    color:#34870B;
    display: block;
}

.aboutus-intro .aboutus-intro-text p {
    font-size: 20px;
    color:rgb(70,80,70);
    line-height: 1.4;
    margin:35px 0;
}

.aboutus-intro .aboutus-intro-text p strong {
    font-weight: 700;
  color:#001602;
}

.aboutus-intro .aboutus-intro-img {

}

.aboutus-intro .aboutus-intro-img img {
    max-width:100%;
}

@media (max-width:500px) {
  .aboutus-intro .aboutus-intro-img {
    overflow: hidden;
  }

  .aboutus-intro .aboutus-intro-img img {
    max-width:115%;
    margin-left:-10%;
  }

}


.aboutus-intro .points {
}

.aboutus-intro .points li {
    position: relative;
    margin: 15px 0;
    font-size: 18px;
    color: #001602;
    padding-left: 35px;
  line-height: 1.4;
}

.aboutus-intro .points li:before {
    position: absolute;
    content: '';
    background: url(../images/check.svg) no-repeat center/contain;
    width: 18px;
    height: 18px;
    left: 0;
    top: 50%;
    margin-top: -10px;
}


@media (max-width:900px) {
    .aboutus-intro .aboutus-intro-text h2 {
        font-size: 30px;
    }

    .aboutus-intro .aboutus-intro-text h2 em {
        display: inline-block;
    }

    .aboutus-intro .aboutus-intro-text p {
        font-size: 16px;
        margin:35px 0;
    }

    .aboutus-intro .points li {
        font-size: 16px;
      line-height: 1.4;
    }
}


@media (max-width:750px) {
    .aboutus-intro {
        padding:20px 0 0 0;
        background: #fff;
    }

    .aboutus-intro .aboutus-intro-text {
        width:100%;
        margin-bottom: 30px;
        padding-right: 0;
        order:2;
    }

    .aboutus-intro .container {
        flex-direction: column;
    }
}

.savings-panel {
    border: 1px solid #E6E8E6;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 20px 0;
}

.savings-panel .savings-panel-img {
    text-align: center;
}

.savings-panel .savings-panel-img img {
    max-width: 100%;
}

.savings-panel h3 {
  font-weight: bold;
  font-size: 24px;
  line-height:1.3;
  color: #001602;
  margin:20px 0 15px;
}

.savings-panel p {
  color: #4D5C4E;
  line-height: 1.4;
  margin:15px 0 20px;
}

.savings-panel .btn {
  border-width:1px;
  font-weight: 600;
  font-size: 14px;
  width:100%;
  text-align: center;
}

.consultation-panel {
  border: 1px solid #E6E8E6;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 20px 0;
}

.consultation-panel h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
}

.consultation-panel h3 span {
  color:#34870B;
}

.consultation-panel ul {
  margin:30px 0;
  color: #4D5C4E;
  line-height: 1.4;
}

.consultation-panel strong {
  font-weight: 600;
  color:#333;
}

.consultation-panel .btn {
  border-width:1px;
  font-weight: 600;
  font-size: 14px;
  width:100%;
  text-align: center;
}

.consultation-panel .consultant-user {
  margin:30px 0;
}

.consultation-panel .consultant-user img {
  float:left;
  width:52px;
  height:52px;
  border-radius: 50%;
}

.consultation-panel .consultant-user .consultant-info {
  float:left;
  padding:6px 0 0 20px;
}

.consultation-panel .consultant-user .consultant-info h4 {
  font-weight: 600;
  font-size: 16px;
  color: #001602;
  margin-bottom: 8px;
}

.consultation-panel .consultant-user .consultant-info span {
  font-weight: 500;
  font-size: 16px;
  color: #99A29A;
}