.wrapper {
  min-height: 100%;
  overflow: hidden;
}

._container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
}

.title__h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}

.header {
  background: url("../img/a-street-with-a-sign.jpg") center/cover no-repeat;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  background: linear-gradient(0turn, rgba(50, 50, 50, 0.79) 0%, rgba(50, 50, 50, 0) 100%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.header_container {
  position: relative;
  z-index: 2;
}

.header__body {
  height: 100%;
  padding-top: 25%;
  position: relative;
  height: 700px;
}
.header__body::after {
  content: "";
  position: absolute;
  background: url("../img/portrait-of-a-smilin.png") center no-repeat;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
}
.header__body .header__title-line {
  z-index: 3;
  position: relative;
}
.header__body .header__title-line .header__subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}

.header__man {
  position: absolute;
  right: 0;
  top: 14px;
}

/*=========================================*/
.about {
  padding: 60px 0;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about__content .about__title {
  color: #323232;
  margin-bottom: 30px;
}
.about__content .about__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.about__image img {
  border-radius: 18px;
}

.about__advan {
  margin-top: 60px;
}
.about__advan .stats-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about__advan .number__wrapp {
  display: flex;
  align-items: center;
}
.about__advan .number__wrapp .number {
  font-family: "Oswald";
  font-size: 60px;
  font-weight: 800px;
}
.about__advan .number__wrapp span {
  font-size: 60px;
}
.about__advan .label {
  font-size: 18px;
  font-weight: 500;
}

/*==================================*/
.servise {
  padding: 60px 0;
  background: #323232;
}

.servise__title {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.servise__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.servise__item {
  display: flex;
  align-items: center;
  background: #e3e3e3;
  border-radius: 12px;
  padding: 28px;
}
.servise__item .servise__text {
  font-size: 16px;
}
.servise__item img {
  width: 70px;
  margin-right: 15px;
}

/*=====================================*/
.review {
  padding: 60px 0;
}

.review__title {
  color: #323232;
  margin-bottom: 30px;
}

.review__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review__item {
  padding: 32px 24px;
  background: #323232;
  border-radius: 12px;
}
.review__item img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.review__item .review__text {
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
}

/*==========================*/
.footer {
  padding: 60px 0;
  background: #000;
  color: #fff;
}

.footer__title {
  margin-bottom: 30px;
}

.footer__text {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.footer__list li {
  margin-bottom: 12px;
  font-size: 18px;
}
.footer__list li span {
  font-weight: 700;
}
.footer__list li a {
  color: #b7b7b7;
}

.footer__copyright {
  margin-top: 40px;
}

@media (max-width: 959.98px) {
  .servise__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .review__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .about__body {
    grid-template-columns: 1fr;
  }
  .about__advan .stats-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .review__body {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 639.98px) {
  .servise__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (max-width: 479.98px) {
  .header__body {
    padding-top: 85%;
  }
  .header__body::after {
    display: none;
  }
  .about__advan .stats-block {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=style.css.map */