* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1296px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid red; */
}

section {
  margin-bottom: 344px;
}

section:last-of-type {
  margin-bottom: 0px;
}

body {
  font-family: "Noto Sans", sans-serif;
}

/* section 1 */

.services_title {
  font-weight: 700;
  font-size: 24px;
  color: #868585;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.services_content {
  display: flex;
  gap: 96px;
}

.services_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service {
  display: flex;
  flex-direction: column;
  max-width: 550px;
}

.service_title {
  font-weight: 700;
  font-size: clamp(12px, 5vw, 18px);
  color: #303030;
  margin-bottom: 15px;
}

.service_desc {
  font-weight: 400;
  font-size: 14px;
  color: #303030;
}

.services_image {
  max-width: 648px;
  width: 100%;
}

/* section 2 */

.coaches_title_and_btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}

.coaches_title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 140%;
  color: #333;
}

.coaches__nav {
  display: flex;
  gap: 22px;
  max-width: 105px;
}

.coaches_nav_btn {
  max-width: 45px;
  max-height: 45px;
  background-color: #8d86c9;
  border: none;
}

.coaches_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-template-rows: auto auto;
  gap: 24px;
}

.coach {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 196px;
}

.coach_image_wrap {
  border: 1px solid #f7ece1;
  padding: 0 10px;
  max-height: 241px;
}

.coach_image {
  max-width: 166px;
}

.coach_name {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 140%;
  text-align: center;
  color: #333;
  margin: 25px 0 15px 0;
}

.coach_desc {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #333;
  max-width: 196px;
}

/* section 3 */

.news_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto auto;
  gap: 24px;
}

.news_card {
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  border: 1px solid #f7ece1;
  max-width: 416px;
  max-height: 512px;
}

.new_card_img {
  max-width: 336px;
  max-height: 240px;
}

.new_card_date {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333;
  opacity: 0.5;
  margin-top: 25px;
  margin-bottom: 15px;
}

.new_card_text {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 5vw, 21px);
  line-height: 140%;
  color: #333;
}

.new_card_link {
  padding: 10px 20px;
  max-width: 137px;
  max-height: 45px;
  background-color: #8d86c9;
  margin-top: auto;

  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: clamp(8px, 5vw, 18px);
  line-height: 140%;
  color: #fff;
}

/* адаптив section 1 */

@media screen and (max-width: 1440px) {
  .services_content {
    flex-direction: column;
  }
}

/* адаптив section 2 */
@media screen and (max-width: 576px) {
  .coaches_title_and_btn {
    flex-direction: column;
    gap: 10px;
  }

  .coaches_list {
    flex-direction: column;
    align-items: center;
  }
}

/* адаптив section 3 */

@media screen and (max-width: 576px) {
  .news_grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news_card {
    padding: 10px 15px;
  }

  .new_card_link{
    margin-top: 12px;
  }
}
