html {
  font-size: 15px;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  background-color: white;
  font-family: "Roboto", sans-serif;
}
html.no-scroll, body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* Vendor */
/* Slider */
.slick-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  position: absolute;
  bottom: 1.4rem;
  z-index: 2;
}
.slick-dots li {
  margin: 0 0.5rem;
}
.slick-dots li.slick-active button {
  background-color: white;
}
.slick-dots button {
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  background: none;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}
.slick-dots button:focus {
  outline: 0;
}

/* Blocks*/
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}

.header {
  padding: 1.2rem 0 0.2rem;
  position: relative;
}
@media (max-width: 790px) {
  .header {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user {
  display: flex;
}

.user__avatar {
  width: 57px;
  height: 57px;
}
.user__avatar img {
  border-radius: 50%;
}

.user__content {
  padding-left: 9px;
}

.user__name {
  margin-bottom: 3px;
  color: #168709;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2rem;
}

.user__prof {
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(22, 135, 9, 0.7);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
}
@media (max-width: 790px) {
  .nav {
    position: absolute;
    height: auto;
    padding: 1rem;
    top: 100%;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: none;
  }
  .nav.show {
    display: flex;
  }
}

.nav__link {
  position: relative;
  font-size: 0.93rem;
  color: #168709;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  margin-left: 2rem;
}
.nav__link:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #168709;
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: 1;
  transition: width 0.2s linear;
}
.nav__link:hover:not(.nav__link_btn) {
  border-color: #168709;
}
.nav__link:hover:not(.nav__link_btn):after {
  display: block;
  width: 100%;
}
.nav__link_btn {
  padding: 0.66rem 2rem;
  border: 2px solid #168709;
  border-radius: 20px;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.nav__link_btn:hover {
  background-color: #168709;
  color: white;
}
@media (max-width: 790px) {
  .nav__link {
    width: 100%;
    margin-left: 0;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 790px) {
  .intro {
    margin-top: 6.67rem;
  }
}

.intro__inner {
  display: flex;
  border-bottom: 1px solid rgba(106, 105, 107, 0.3);
  padding-top: 6.67rem;
  padding-bottom: 8rem;
  position: relative;
  background: url("../images/symbols.png") right bottom no-repeat;
}
@media (max-width: 990px) {
  .intro__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-size: 400px auto;
    background-position: bottom 0 right 30px;
  }
}
@media (max-width: 790px) {
  .intro__inner {
    background-position: bottom 0 right -50px;
  }
}

.intro__content {
  width: 50%;
}
@media (max-width: 790px) {
  .intro__content {
    width: 70%;
  }
}
@media (max-width: 574px) {
  .intro__content {
    width: 100%;
  }
}

.intro__subtitle {
  font-size: 2.13rem;
  color: #168709;
  font-weight: 200;
}
@media (max-width: 990px) {
  .intro__subtitle {
    font-size: 1.6rem;
  }
}

.intro__title {
  font-size: 3rem;
  color: #168709;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 990px) {
  .intro__title {
    font-size: 2.27rem;
  }
}

.intro__prof {
  font-size: 1.2rem;
  color: rgba(22, 135, 9, 0.7);
  font-weight: 300;
  margin-bottom: 25px;
}

.intro__photo {
  position: absolute;
  width: 270px;
  bottom: -1px;
  right: 88px;
  z-index: 1;
}
@media (max-width: 990px) {
  .intro__photo {
    width: 260px;
  }
}
@media (max-width: 790px) {
  .intro__photo {
    right: -7px;
  }
}
@media (max-width: 574px) {
  .intro__photo {
    display: none;
  }
}

.social {
  margin-bottom: 42px;
}

.social__link {
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.2s linear;
}
.social__link:hover {
  transform: translateY(-5px);
}
@media (max-width: 790px) {
  .social__link {
    margin-right: 3px;
  }
}
@media (max-width: 790px) {
  .social__link img {
    width: 37px;
  }
}

.btn {
  display: inline-block;
  vertical-align: top;
  padding: 0.61em 1.06em;
  min-width: 188px;
  border: 1px solid #168709;
  border-radius: 2em;
  background: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1.06rem;
  color: #168709;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, border-color 0.2s linear;
  /* Modif */
}
.btn:hover {
  background-color: #168709;
  color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.24);
  border-color: #168709;
}
.btn + .btn {
  margin-left: 1rem;
}
@media (max-width: 790px) {
  .btn + .btn {
    margin-left: 0.5rem;
  }
}
.btn:focus {
  outline: none;
}
.btn_sm {
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 700;
  border-width: 2px;
  text-transform: uppercase;
}
.btn_thin {
  min-width: 145px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .btn {
    padding: 0.52em 1em;
    min-width: 120px;
    font-size: 1rem;
  }
}
@media (max-width: 790px) {
  .btn {
    padding: 0.52em 0.85em;
    min-width: 100px;
    font-size: 0.85rem;
  }
}

.works {
  margin: 2.8rem 0;
}

.works__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.works__nav_link {
  margin: 0 1.2rem;
  font-size: 12px;
  color: rgba(22, 135, 9, 0.7);
  text-decoration: none;
}
.works__nav_link:hover {
  text-decoration: underline;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem 2.2rem;
}

.portfolio__col {
  flex-basis: 33.33333%;
  padding: 1rem;
}
@media (max-width: 790px) {
  .portfolio__col {
    flex-basis: 50%;
  }
}
@media (max-width: 574px) {
  .portfolio__col {
    flex-basis: 100%;
  }
}

.work {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s linear;
}
.work:hover {
  box-shadow: 0 0 25px rgba(22, 135, 9, 0.25);
}
@media (max-width: 790px) {
  .work {
    max-width: 370px;
  }
}
@media (max-width: 574px) {
  .work {
    margin: 0 auto;
  }
}

.work__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.work__content {
  padding: 1rem 0.8rem;
}

.work__cat {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #168709;
  text-transform: uppercase;
}

.work__title {
  display: flex;
  justify-content: space-between;
  font-size: 1.06rem;
  color: #168709;
  text-transform: uppercase;
  font-weight: 700;
}

.aboutme {
  margin: 8.4rem 0;
}
@media (max-width: 990px) {
  .aboutme {
    margin: 4rem 0;
  }
}

.aboutme__inner {
  display: flex;
  max-width: 1090px;
}

.aboutme__photo,
.aboutme__content {
  width: 50%;
}

.aboutme__content {
  padding-left: 3.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 574px) {
  .aboutme__content {
    width: 100%;
    padding-left: 0;
  }
}

.aboutme__photo {
  position: relative;
}
.aboutme__photo img {
  width: 50.75vw;
  height: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .aboutme__photo img {
    bottom: 0;
  }
}
.aboutme__photo:before {
  content: "";
  width: min(412px, 34.333vw);
  height: min(412px, 34.333vw);
  background-color: #EFEFEF;
  position: absolute;
  left: 1rem;
  top: min(19.8vw, 197px);
  z-index: 1;
}
@media (max-width: 574px) {
  .aboutme__photo {
    display: none;
  }
}

.aboutme__title {
  font-size: 3rem;
  color: #168709;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .aboutme__title {
    font-size: 2.4rem;
  }
}

.aboutme__bigtitle {
  margin-bottom: 1.4rem;
  position: relative;
  left: -10px;
  font-size: 6.1rem;
  line-height: 1.1;
  color: rgba(22, 135, 9, 0.15);
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .aboutme__bigtitle {
    font-size: 4.3rem;
  }
}

.aboutme__text {
  margin-bottom: 2.8rem;
  font-size: 0.8rem;
  line-height: 2;
  color: #6A696B;
  font-weight: 300;
}
.aboutme__text h3 {
  font-size: 1.2rem;
  font-weight: 300;
}
.aboutme__text h3 strong {
  color: #168709;
  font-weight: 700;
}

.reviews {
  padding: 4.6rem 0;
  position: relative;
  background: #332F30 url("../images/reviews_bg.png") center no-repeat;
}

.reviews__item {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}

.reviews__text {
  font-size: 0.94rem;
  color: white;
  line-height: 2.2;
  text-align: center;
}

.reviews__author {
  width: 100%;
  margin-top: -51px;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}

.reviews__photo {
  display: block;
  margin: 0 auto 0.6rem;
  width: 103px;
  height: 103px;
  border: 4px solid #EFEFEF;
  border-radius: 50%;
}

.reviews__name {
  margin-bottom: 0.3rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: #168709;
}

.reviews__company {
  margin-bottom: 0.4rem;
  font-size: 0.94rem;
  font-weight: 300;
  color: #168709;
  font-style: italic;
}

.reviews__star {
  width: 12px;
  height: 12px;
}

.news {
  margin-top: 14rem;
  margin-bottom: 8rem;
}
@media (max-width: 990px) {
  .news {
    margin-top: 12rem;
    margin-bottom: 5rem;
  }
}

.news__header {
  margin-bottom: 3.6rem;
  text-align: center;
}

.news__title {
  margin-bottom: 0.3rem;
  font-size: 3rem;
  color: #168709;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .news__title {
    font-size: 2rem;
  }
}

.news__text {
  font-size: 1.2rem;
  color: gray;
  font-weight: 300;
}

.news__footer {
  text-align: right;
}

.news__link {
  font-size: 0.94rem;
  color: #6A696B;
}
.news__link:hover {
  text-decoration: none;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.articles__col {
  flex-basis: 33.33333%;
  padding: 0 1rem;
}
@media (max-width: 790px) {
  .articles__col {
    flex-basis: 100%;
  }
}

.articles__item {
  margin-bottom: 2rem;
}
@media (max-width: 790px) {
  .articles__item {
    max-width: 370px;
    margin: 0 auto 2rem;
  }
}

.articles__header {
  position: relative;
  margin-bottom: 1.3rem;
}

.articles__content {
  margin-bottom: 2rem;
}

.articles__date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  background-color: #168709;
  color: white;
  font-size: 1.06rem;
  text-align: center;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.articles__photo {
  display: block;
  max-width: 100%;
  height: auto;
}

.articles__title {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #168709;
  text-transform: uppercase;
}
.articles__title a {
  color: inherit;
  text-decoration: none;
}
.articles__title a:hover {
  text-decoration: underline;
}

.articles__cat {
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: #168709;
  text-transform: uppercase;
}

.articles__text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: #6A696B;
}

.footer {
  padding: 1rem 0;
  background-color: #168709;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .footer__inner {
    justify-content: center;
  }
}

.footer__credits {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .footer__credits {
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 574px) {
  .footer__credits {
    width: 100%;
    flex-direction: column;
  }
}

.footer__copyright {
  padding-right: 0.8rem;
  margin-right: 1rem;
  font-size: 0.94rem;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 574px) {
  .footer__copyright {
    border: none;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.footer__social {
  display: flex;
  align-items: center;
}
.footer__social a {
  margin-right: 1.2rem;
  text-decoration: none;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .footer__nav {
    flex-wrap: wrap;
  }
}

.footer__nav_link {
  margin-left: 1.5rem;
  color: white;
  font-size: 0.94rem;
  text-decoration: none;
  line-height: 1.1;
}
@media (max-width: 990px) {
  .footer__nav_link {
    margin: 0.5rem;
  }
}
.footer__nav_link:hover {
  text-decoration: underline;
}
.footer__nav_link_btn {
  padding: 0.5rem 1.4rem;
  border: 1px solid white;
  border-radius: 20px;
  min-width: 120px;
}
.footer__nav_link_btn:hover {
  text-decoration: none;
  color: #168709;
  background-color: white;
}

.modal {
  display: none;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: rgba(22, 135, 9, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
}
.modal.show {
  display: flex;
}

.modal__dialog {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  background-color: white;
  transform: scale(0);
  transition: transform 0.2s linear;
}
.modal__dialog_sm {
  max-width: 900px;
}

.modal__close {
  width: 34px;
  height: 34px;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 0.2s linear;
}
.modal__close:hover {
  transform: rotate(88deg);
}

.modal-work__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.8rem 1rem;
}

.modal-work__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.94rem;
  font-family: inherit;
  color: #168709;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
@media (max-width: 790px) {
  .modal-work__btn {
    font-size: 0.9rem;
  }
}

.modal__content {
  padding: 5rem 1rem;
}

.modal__title {
  margin-bottom: 3.6rem;
  font-size: 3rem;
  font-weight: 700;
  color: #168709;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 790px) {
  .modal__title {
    font-size: 2rem;
  }
}
@media (max-width: 574px) {
  .modal__title {
    font-size: 1.2rem;
  }
}

.modal__subtitle {
  font-size: 1.06rem;
  font-weight: 400;
  color: #168709;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal__subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 790px) {
  .modal__subtitle {
    font-size: 0.9rem;
  }
}

.modal-work {
  display: flex;
}
@media (max-width: 790px) {
  .modal-work {
    flex-wrap: wrap;
  }
}

.modal-work__preview {
  width: 65%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 990px) {
  .modal-work__preview {
    width: 55%;
  }
}
@media (max-width: 790px) {
  .modal-work__preview {
    width: 790px;
    height: 342px;
  }
}

.modal-work__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 790px) {
  .modal-work__photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 50%;
  }
}

.modal-work__content {
  width: 35%;
  padding: 3.4rem 6.6rem 1rem 1.73rem;
  position: relative;
}
@media (max-width: 990px) {
  .modal-work__content {
    width: 45%;
    padding: 3rem 6rem 1rem 1.73rem;
  }
}
@media (max-width: 790px) {
  .modal-work__content {
    width: 100%;
    padding: 3rem 1.73rem 1rem 1.73rem;
  }
}
.modal-work__content a {
  text-decoration: none;
  color: #168709;
}
.modal-work__content a:hover {
  text-decoration: underline;
}

.modal-work__header {
  margin-bottom: 2.2rem;
}

.modal-work__title {
  margin-bottom: 0.2rem;
  font-size: 2.12rem;
  font-weight: 700;
  color: #168709;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .modal-work__title {
    font-size: 2rem;
  }
}

.modal-work__info_divider {
  margin: 0 1rem;
}

.modal-work__info {
  font-size: 1.2rem;
  color: #6A696B;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .modal-work__info {
    font-size: 1rem;
  }
}

.modal-work__client {
  margin-bottom: 2.2rem;
}

.modal-work__client-title {
  margin-bottom: 0.2rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: #168709;
}
@media (max-width: 790px) {
  .modal-work__client-title {
    font-size: 0.98rem;
  }
}

.modal-work__client-name {
  font-size: 0.94rem;
  font-style: italic;
  color: #6A696B;
  font-weight: 300;
}
@media (max-width: 790px) {
  .modal-work__client-name {
    font-size: 0.9rem;
  }
}

.modal-work__text {
  margin-bottom: 8.66rem;
  font-size: 0.8rem;
  line-height: 2;
  color: #6A696B;
  font-weight: 300;
}
@media (max-width: 790px) {
  .modal-work__text {
    font-size: 0.7rem;
  }
}

.timeline {
  display: flex;
  margin: 4.2rem auto;
  width: 100%;
  max-width: 768px;
  position: relative;
}
.timeline:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #168709;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
}

.timeline__col {
  width: 50%;
}
.timeline__col_left {
  padding-right: 3.2rem;
  text-align: right;
}
@media (max-width: 790px) {
  .timeline__col_left {
    padding-right: 2rem;
  }
}
@media (max-width: 574px) {
  .timeline__col_left {
    padding-right: 1.2rem;
  }
}
.timeline__col_right {
  padding-left: 3.2rem;
}
@media (max-width: 790px) {
  .timeline__col_right {
    padding-left: 2rem;
  }
}
@media (max-width: 574px) {
  .timeline__col_right {
    padding-left: 1.2rem;
  }
}

.timeline__title {
  margin-bottom: 2.6rem;
  font-size: 1.2rem;
  color: #168709;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 790px) {
  .timeline__title {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 574px) {
  .timeline__title {
    margin-bottom: 1.6rem;
    font-size: 1rem;
  }
}

.timeline__item {
  margin-bottom: 2.6rem;
}
@media (max-width: 790px) {
  .timeline__item {
    margin-bottom: 2.2rem;
  }
}
@media (max-width: 574px) {
  .timeline__item {
    margin-bottom: 2rem;
  }
}
.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__date {
  display: block;
  margin-bottom: 0.8rem;
  text-decoration: underline;
  font-size: 0.94rem;
  color: #168709;
}
@media (max-width: 790px) {
  .timeline__date {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 574px) {
  .timeline__date {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
  }
}

.timeline__subtitle {
  margin-bottom: 0.2rem;
  font-size: 1.06rem;
  color: #168709;
  font-weight: 700;
}
@media (max-width: 790px) {
  .timeline__subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 574px) {
  .timeline__subtitle {
    font-size: 0.94rem;
  }
}

.timeline__position {
  font-size: 0.94rem;
  color: #168709;
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 790px) {
  .timeline__position {
    font-size: 0.9rem;
  }
}
@media (max-width: 574px) {
  .timeline__position {
    font-size: 0.85rem;
  }
}

.timeline__text {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6A696B;
  font-weight: 300;
}
@media (max-width: 790px) {
  .timeline__text {
    font-size: 0.76rem;
  }
}
@media (max-width: 574px) {
  .timeline__text {
    font-size: 0.72rem;
  }
}

.progress-bar {
  margin-bottom: 2.6rem;
}

.progress-bar__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
@media (max-width: 790px) {
  .progress-bar__item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.4rem;
  }
}

.progress-bar__title {
  font-size: 0.94rem;
  font-weight: 300;
}
@media (max-width: 790px) {
  .progress-bar__title {
    font-size: 0.9rem;
  }
}
@media (max-width: 574px) {
  .progress-bar__title {
    font-size: 0.8rem;
  }
}

.progress-bar__left {
  flex-basis: 35%;
}
@media (max-width: 790px) {
  .progress-bar__left {
    flex-basis: 100%;
    margin-bottom: 0.2rem;
  }
}

.progress-bar__right {
  padding-left: 1.2rem;
}
@media (max-width: 790px) {
  .progress-bar__right {
    padding-left: 0;
  }
}

.progress-bar__bar {
  width: 139px;
  height: 6px;
  background-color: #EFEFEF;
}
@media (max-width: 574px) {
  .progress-bar__bar {
    width: 115px;
  }
}

.progress-bar__progress {
  height: 100%;
  background-color: #6A696B;
}

.contact {
  display: flex;
}

.contact__left {
  flex-basis: 47%;
  padding: 2rem;
}
@media (max-width: 790px) {
  .contact__left {
    flex-basis: 100%;
  }
}

.contact__right {
  flex-basis: 53%;
  background: white url("https://hochu.ua/images/Depositphotos_5927419_9999999999m.jpg") center no-repeat;
  background-size: contain;
}
@media (max-width: 790px) {
  .contact__right {
    display: none;
  }
}

.contact__info {
  margin: 2rem 0 3rem;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  color: #168709;
  font-weight: 300;
}

.contact__info_item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.contact__info_item:last-child {
  margin-bottom: 0;
}

.contact__info_icon {
  margin-right: 0.75rem;
}

.form__group {
  margin-bottom: 1.8rem;
}

.form__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: #168709;
  font-weight: 700;
}

.form__input,
.form__textarea {
  display: block;
  width: 90%;
  padding: 1.3rem 1.8rem;
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 1.8rem;
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 400;
  transition: border-color 0.2s linear;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #68C35F;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #168709;
  font-weight: 300;
}
.form__textarea {
  height: 14rem;
  resize: none;
}
.burger {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: none;
  display: none;
}
@media (max-width: 790px) {
  .burger {
    display: block;
  }
}

.burger_icon {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Helpers*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

.mb-0 {
  margin-bottom: 0;
}

.hide {
  display: none;
}

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