html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

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

.header {
  background-color: #4694dc;
  min-height: 500px;
  padding-top: 82px;
  padding-bottom: 82px;
  color: #fff;
}

.header_title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 38px;
}

.header_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 45px;
  max-width: 437px;
}

.header_button {
  width: 194px;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border: none;
}
/* Block */

.sevices .block {
  text-align: center;
  margin-bottom: 118px;
}
.block-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3.3px;
  margin-bottom: 25px;
}
.block-text {
  font-size: 16px;
  letter-spacing: 0.7px;
  line-height: 24px;
  font-weight: 400;
  color: #9ca3af;
  max-width: 465px;
  margin: 0 auto;
}

/* Services*/
.sevices {
  padding: 88px 0 166px;
}
.services-items {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: 880px;
  margin: 0 auto;
}
.item {
  max-width: 280px;
  width: 100%;
  height: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-items_img {
  align-self: center;
}
.services-items_title {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}

/* Team */
.team .block {
  text-align: center;
  margin-bottom: 82px;
}
.team {

}
.team_items {
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    margin: 0 auto;
    gap: 50px;

}
.team_item {
    display: flex;
    padding: 20px;
    background-color: #fff;
    width: 260px;
    height: 76px;
    border-radius: 11px;
    align-items: center;
    box-shadow: 0px 4px 70px 0px rgba(91,93,99,0.06);
}
.team_img {
    align-self: center;
    margin-right: 8px;
}
.team_title {
    font-size: 12px;
    margin-bottom: 3px;
    margin-top: 5px;

}
.team_text {
    margin-top: 0;
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
}



/*Media*/
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .services-items {
    flex-direction: column;
    align-items: center;
  }
  .services-items_title {
    font-size: 14px;
  }
  .header_button {
    width: 160px;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .header_title {
    font-size: 36px;
  }
}
