.l-nav {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #2E3436;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  font-family: "PT Sans", sans-serif;
  font-size: 17px;
}
.l-nav__body {
  height: 100%;
  width: 96%;
  margin: 0 auto;
}
.l-nav__brand {
  float: left;
  height: inherit;
}
.l-nav__brand-img {
  height: 50%;
  max-height: 100%;
}
.l-nav__burger {
  float: right;
  height: inherit;
  line-height: inherit;
}
.l-nav__burger a {
  padding: 0 20px;
  color: #C4CBCC;
}
.l-nav__burger a:hover {
  color: #FDB13F;
  text-decoration: none;
}
.l-nav__navigation {
  float: right;
  height: inherit;
  text-align: right;
}

.l-header {
  position: relative;
  z-index: 2;
  height: 600px;
  height: 100vh;
  font-family: "Roboto Slab", sans-serif;
  font-size: 17px;
  background-attachment: fixed;
  background-color: #2E3436;
  background-image: url("/assets/images/cover/rz_cover_4.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0px 0px 157px 70px rgba(0, 0, 0, 0.25);
}
.l-header__body {
  height: 100%;
  padding-top: 70px;
}
.l-header__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header__item {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -200px;
}
.l-header__form {
  width: 45%;
  min-width: 300px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

.h-form {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}
.h-form__h {
  color: #2E3436;
  line-height: 40px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.h-form__form {
  max-width: 450px;
  margin: 0 auto;
}
.h-form__btn {
  height: 32px;
  padding: 0 22px;
  font-family: "PT Sans", sans-serif;
  line-height: 32px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background-color: #aaa;
}
.h-form__btn:hover, .h-form__btn:focus, .h-form__btn:active {
  color: #fff;
  background-color: #777;
}
.h-form form input {
  padding: 8px 0;
  border: 1px solid #999;
  color: #2E3436;
  font-family: "PT Sans", sans-serif;
  text-indent: 2%;
  border: 1px solid #999;
  font-size: 16px;
  height: 42px !important;
  border-radius: 5px;
  background-color: #e3e4e8;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
}
.h-form form input:active, .h-form form input:focus {
  border-color: #999;
  box-shadow: 0 0 0 2px #a0a7a8;
}
.h-form form input.h-form__input:active, .h-form form input.h-form__input:focus {
  border-color: #999;
  box-shadow: 0 0 0 2px #6EBB25;
}

.l-about-card {
  max-width: 350px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
}
.l-about-card__icon {
  position: relative;
  margin: 0 auto;
  height: 90px;
  width: 90px;
  color: #fff;
  line-height: 90px;
  font-size: 40px;
  background-color: #FDB13F;
  border-radius: 100%;
  transition: background-color 0.3s ease;
}
.l-about-card__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 106px;
  display: block;
  margin-top: -53px;
  margin-left: -53px;
  content: "";
  border: 3px solid #FDB13F;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.l-about-card__h {
  padding: 15px 0 10px;
  margin: 0;
  text-transform: uppercase;
  font-size: 30px;
  transition: color 0.3s ease;
}
.l-about-card__description {
  margin: 0;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
}
.l-about-card:hover .l-about-card__icon {
  background-color: #6EBB25;
}
.l-about-card:hover .l-about-card__icon::after {
  border-color: #6EBB25;
  opacity: 1;
  transform: scale(1);
}
.l-about-card:hover .l-about-card__h {
  color: #6EBB25;
}

.l-features-card {
  position: relative;
  margin-top: 30px;
}
.l-features-card__icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.l-features-card__icon {
  position: relative;
  height: 70px;
  width: 70px;
  color: #fff;
  text-align: center;
  line-height: 70px;
  font-size: 28px;
  background-color: #FDB13F;
  border-radius: 100%;
  transition: background-color 0.3s ease;
}
.l-features-card__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  display: block;
  margin-top: -43px;
  margin-left: -43px;
  content: "";
  border: 3px solid #FDB13F;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.l-features-card__content {
  padding-left: 95px;
}
.l-features-card__h {
  padding-bottom: 12px;
  margin: 0;
  text-transform: uppercase;
  font-size: 30px;
  transition: color 0.3s ease;
}
.l-features-card__description {
  margin: 0;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
}
.l-features-card:hover .l-features-card__icon {
  background-color: #6EBB25;
}
.l-features-card:hover .l-features-card__icon::after {
  border-color: #6EBB25;
  opacity: 1;
  transform: scale(1);
}
.l-features-card:hover .l-features-card__h {
  color: #6EBB25;
}

.l-features-details-card {
  max-width: 350px;
  margin: 0 auto;
  padding: 35px 0;
  text-align: center;
}
.l-features-details-card__icon {
  font-size: 80px;
  color: #6EBB25;
  transition: color 0.3s ease;
}
.l-features-details-card__h {
  margin: 0;
  padding: 15px 0 10px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}
.l-features-details-card:hover .l-features-details-card__icon {
  color: #FDB13F;
}

.l-contacts {
  padding-bottom: 15px;
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}
.l-contacts__icon {
  display: inline-block;
  height: 50px;
  width: 50px;
  vertical-align: middle;
  margin: 8px;
  background-color: #E3E4E8;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #2E3436;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.l-contacts__address {
  text-align: center;
  margin-bottom: 15px;
}
.l-contacts__phone {
  text-align: right;
}
.l-contacts__info {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  line-height: 34px;
  padding-left: 8px;
}

.l-hr {
  clear: both;
  margin: 3% 0;
  width: 100%;
}
.l-hr__body {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #CDD0D1;
}
.l-hr__icon {
  position: absolute;
  top: 0;
  left: 50%;
  height: 16px;
  width: 50px;
  margin-top: -8px;
  margin-left: -25px;
  font-size: 16px;
  text-align: center;
  color: #CDD0D1;
  background-color: #fff;
}
.l-hr--short .l-hr__body {
  width: 30%;
}
.l-hr--grey .l-hr__icon {
  background-color: #E3E4E8;
}

.l-people {
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-people__item {
  margin: 0 auto;
  padding: 2px;
}
.l-people__content {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.l-people__content:hover .l-people__info {
  top: 0;
}
.l-people__info {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  transition: top 0.3s ease;
}
.l-people__image {
  max-width: 100%;
  height: auto;
}
.l-people__h {
  margin: 15% 0 0;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #6EBB25;
}
.l-people__description {
  font-size: 17px;
  line-height: 25px;
  margin: 5px 0 0;
  color: #C4CBCC;
  font-family: "PT Sans", sans-serif;
}

.l-form {
  max-width: 450px;
  margin: 0 auto;
  font-family: "PT Sans", sans-serif;
  font-size: 17px;
  color: #2E3436;
}
.l-form label {
  font-size: 16px;
  font-weight: 100;
}
.l-form .form-control:focus {
  border: 0;
  box-shadow: 0 0 0 2px #a0a7a8;
}
.l-form__input-group {
  position: relative;
}
.l-form__input-group input {
  padding-left: 50px;
  font-size: 16px;
  height: 42px !important;
  border-radius: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
  border: 0;
  background-color: #E3E4E8;
  outline: none;
  transition: box-shadow 0.3s ease;
}
.l-form__input-group textarea {
  resize: none;
  padding-left: 50px;
  font-size: 16px;
  border-radius: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
  border: 0;
  background-color: #f2f2f2;
  outline: none;
  transition: box-shadow 0.3s ease;
}
.l-form__input-group i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 42px;
  text-align: center;
  font-size: 20px;
  line-height: 42px;
  z-index: 1;
  opacity: 0.33;
}
.l-form__errors {
  font-size: 16px;
}
.l-form--no-icon input {
  padding-left: 0;
}

.l-section {
  position: relative;
  z-index: 2;
  font-family: "Roboto Slab", sans-serif;
  font-size: 17px;
  color: #2E3436;
  background-color: #fff;
}
.l-section__h {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 44px;
  text-align: center;
  line-height: 54px;
  text-transform: uppercase;
}
.l-section__h--sm {
  font-size: 30px;
  line-height: 40px;
}
.l-section__second-h {
  margin-bottom: 22px;
  font-size: 24px;
  text-align: center;
  line-height: 34px;
  text-transform: uppercase;
}
.l-section__content {
  font-size: 20px;
  line-height: 30px;
  font-family: "PT Sans", sans-serif;
  text-align: center;
}
.l-section__content--margin {
  margin-bottom: 30px;
}
.l-section--background {
  background-color: #E3E4E8;
}
.l-section--before-footer {
  margin-bottom: 172px;
}
.l-section--first {
  margin-top: 70px;
}

.l-container {
  padding: 35px 0;
}
.l-container--bottom-lg {
  padding-bottom: 70px;
}

.l-paralax {
  background-attachment: fixed;
  background-color: #2E3436;
  background-image: url("/assets/images/cover/rz_cover_dark.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 970px) {
  .l-nav {
    height: 50px;
    line-height: 50px;
  }
  .l-nav__navigation {
    position: fixed;
    top: 50px;
    left: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    background-color: #2E3436;
    transition: height 0.5s ease;
  }
  .l-nav__navigation--mobile-open {
    height: 300px;
    overflow-y: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .l-header__body {
    padding-top: 50px;
  }
  .l-section--first {
    margin-top: 50px;
  }
}
@media (min-width: 970px) and (max-width: 1170px) {
  .l-nav {
    height: 60px;
    line-height: 60px;
  }
  .l-header__body {
    padding-top: 60px;
  }
  .l-section--first {
    margin-top: 60px;
  }
}
/*# sourceMappingURL=landing.css.map */
