@charset "UTF-8";
.posters {
  padding: 50px 0;
}

.post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
}

.post:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.post:nth-child(even) .post__content {
  text-align: right;
}

.post__img {
  width: 48%;
}

.post__img img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.post__content {
  width: 48%;
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.post__pretittle {
  font-family: "SegoeUI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #161616;
}

.post__title {
  font-family: "SegoeUI", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #161616;
  line-height: 1.5rem;
  margin-top: 20px;
}

.post__main {
  margin-top: 30px;
}

.post__text {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #333333;
  line-height: 1.5rem;
}

.post__bottom {
  margin-top: 30px;
}

.post__link .icon {
  width: 40px;
  height: 40px;
  fill: #FFDC3A;
}

.post__link:hover .icon {
  fill: #ffd000;
}

.post__background-count {
  display: block;
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  font-size: 450px;
  font-weight: 700;
  font-family: "KyrillaSans", sans-serif;
  color: rgba(22, 22, 22, 0.05);
  line-height: .8em;
  letter-spacing: 30px;
  z-index: -1;
}

@media (max-width: 1124px) {
  .post__content {
    padding: 10px 0px;
  }
  .post__background-count {
    right: -10%;
    font-size: 300px;
  }
}

@media (max-width: 768px) {
  .post,
  .post:nth-child(even) {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post .post__content,
  .post:nth-child(even) .post__content {
    text-align: left;
  }
  .post__content,
  .post__img {
    width: 100%;
  }
  .post__background-count {
    right: 0;
  }
}

@media (max-width: 480px) {
  .post__background-count {
    display: none;
  }
}

.alert-descr {
  padding: 50px 0;
  background-color: #fafafa;
}

.alert-descr__block p {
  font-weight: 300;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.5rem;
  padding: 10px 0;
  color: #161616;
}

.alert {
  margin: 50px 0;
  padding: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FFDC3A;
}

.alert__icon {
  margin-right: 5%;
}

.alert__icon .icon {
  width: 48px;
  height: 48px;
}

.alert__text {
  width: 100%;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.8rem;
  color: #161616;
}

.alert__btn-link {
  padding: 20px 40px;
  background-color: #ffffff;
  color: #161616;
  cursor: pointer;
  margin-left: 5%;
}

.alert__btn-link:hover {
  background-color: #fafafa;
}

@media (max-width: 768px) {
  .alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 25px 0;
    padding: 50px 10px;
    text-align: center;
  }
  .alert__btn-link {
    margin: 30px 0 0 0;
  }
  .alert__icon {
    margin-right: 0;
  }
  .alert__text {
    margin-top: 30px;
    max-width: 600px;
  }
}

.description {
  background-color: #fafafa;
  padding-bottom: 60px;
}
.description h1, .description h2, .description h3,
.description__sub-title, .description__main-title {
  font-weight: 700;
  font-family: "SegoeUI", sans-serif;
  letter-spacing: -1px;
  color: #161616;
  font-size: 35px;
  margin: 0;
}

.description h3,
.description__sub-title {
  font-size: 25px;
}

.description li,
.description p {
  font-weight: 300;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.5rem;
  padding: 10px 0;
  color: #333333;
}

.description ul {
  padding: 15px 0;
}

.description li {
  list-style-type: square;
  margin-left: 20px;
  padding: 2px 0;
}

.description ol li {
     list-style-type: decimal;
}
.description ul li {
  font-weight: 300;
}

.description ul li p {
  padding: 0;
}

.showcase .container {
  max-width: none;
  padding: 0;
}

.showcase__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("../img/showcase/h7-item-showcase-img.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.showcase__block {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 65px 0;
  z-index: -1;
}

.showcase__block--brown {
  background-color: #373737;
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #ffffff;
  padding-right: 10%;
}

.showcase__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 16px;
}

.showcase__content {
  width: 85%;
  max-width: 450px;
  padding: 0 16px;
}

.showcase__title {
  font-size: 23px;
  font-weight: 900;
  font-family: "SegoeUI", sans-serif;
}

.showcase__text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-top: 10px;
}

.showcase__icon {
  height: 70px;
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 100%;
}

.showcase__icon span {
  color: #161616;
  font-size: 30px;
}

.showcase__block--yellow {
  background-color: #FFDC3A;
  text-align: left;
  padding-left: 10%;
}

.showcase__block--yellow .showcase__text {
  color: #161616;
}

@media (max-width: 1140px) {
  .showcase__inner {
    background-image: none;
  }
  .showcase__block--yellow {
    padding-left: 2%;
    z-index: 1;
  }
  .showcase__block--brown {
    padding-right: 2%;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .showcase__inner {
    display: block;
  }
  .showcase__block {
    width: 100%;
  }
  .showcase__content {
    max-width: 100%;
  }
}

@media (max-width: 450px) {
  .showcase__block {
    padding: 20px 10px 20px 10px;
  }
  .showcase__item {
    padding: 20px 0;
  }
}

/*--------------- cost-of-work ---------------*/
.cost-of-work {
  background-image: url("../img/paralax/process-parallax-1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0 100px 0;
}

.cost-of-work__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.cost-of-work__title {
  font-size: 40px;
  color: #161616;
  font-family: "SegoeUI", sans-serif;
  font-weight: 700;
}

.cost-of-work__subtitle {
  display: block;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #161616;
  margin-top: 35px;
}

.cost-of-work__item {
  width: 40%;
}

.cost-of-work__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  width: 100%;
}

.cost-of-work__form input {
  display: block;
  min-width: 100%;
  padding: 15px 17px;
  outline-color: #FFDC3A;
  border: 1px solid rgba(22, 22, 22, 0.1);
}

.cost-of-work__form button {
  padding: 15px 40px;
  border: none;
  background-color: #FFDC3A;
  cursor: pointer;
  text-transform: uppercase;
  color: #161616;
  font-family: "SegoeUI", sans-serif;
  font-weight: 600;
}

.cost-of-work__form button:hover {
  background-color: #ffd000;
}

/*--------------- alert ---------------*/
.alert__btn-link {
  text-align: center;
  margin-left: 2%;
  padding: 20px 20px;
  min-width: 217px;
}

.alert {
  margin: 0;
}

/*--------------- table ---------------*/
.table {
  background-color: #fafafa;
  padding: 50px 0;
}

.table__tittle {
  font-size: 25px;
  color: #161616;
  font-family: "SegoeUI", sans-serif;
  font-weight: 700;
}

.table__subtitle {
  display: block;
  font-size: 17px;
  font-weight: 300;
  color: #161616;
  margin-top: 15px;
}

.table__body {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  grid-auto-rows: auto;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
          box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.table__body .table__part {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
}

.table__item {
  height: 100px;
  padding: 0 10%;
  font-size: 15px;
  color: #161616;
  font-family: "SegoeUI", sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
  border-left: 1px solid rgba(22, 22, 22, 0.1);
  border-right: 1px solid rgba(22, 22, 22, 0.1);
}

.table__item:nth-child(even) {
  background-color: #ffffff;
}

.table__item.column-title {
  font-size: 25px;
  color: #161616;
  font-weight: 700;
  letter-spacing: -1px;
}

.table__item.table__item--top p {
  position: relative;
}

.table__item.table__item--top p::after {
  content: '★';
  display: block;
  font-size: 14px;
  color: #FFDC3A;
  position: absolute;
  top: -10px;
  right: -17px;
}

/*--------------- description ---------------*/
.description {
  padding: 50px 0;
}

.description__sub-title {
  margin: 5px 0 8px 0;
}

.description__main-title {
  margin-bottom: 15px;
}

.description p {
  padding: 3px 0;
}

/*--------------- media ---------------*/
@media (max-width: 1140px) {
  .cost-of-work__item {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .cost-of-work {
    padding: 50px 0;
  }
  .cost-of-work__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .cost-of-work__form button {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
  }
  .table__body {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .table__item {
    font-size: 12px;
  }
}
/*# sourceMappingURL=uslugi.css.map */