#experts {
  padding: 120px 120px 0;
  background-color: #fff;
}
#experts .container {
  width: min(1200px, 100%);
}
#experts h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 48px;
}
#experts .experts_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background-color: #fff;
  height: 358px;
}
#experts .video_wrapper {
  width: 550px;
  height: 310px;
}
#experts .video_iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
#experts .expert_info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#experts .expert_quote {
  margin: 0;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -4.5%;
  vertical-align: middle;
}
#experts .expert_details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#experts .expert_name {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  letter-spacing: -4.5%;
}
#experts .expert_name,
#experts .expert_title {
  font-family: Inter;
  leading-trim: NONE;
  line-height: 140%;
  vertical-align: middle;
}
#experts .expert_title {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  letter-spacing: -3.5%;
  color: #4d544f;
}
#experts .navigation {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
#experts .nav_button {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 0 solid #e8e8e8;
  background-color: #fff;
  color: #2c2e2d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#experts .nav_button:hover:not(:disabled) {
  background-color: #49ff86;
  border-color: #49ff86;
  color: #fff;
}
#experts .nav_button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#experts .nav_button.next {
  color: #fff;
}
#experts .nav_button.next,
#experts .nav_button.next:hover:not(:disabled) {
  background-color: #49ff86;
  border-color: #49ff86;
}
@media screen and (max-width: 1100px) {
  #experts {
    padding: 160px 80px;
  }
}
@media screen and (max-width: 860px) {
  #experts {
    padding: 64px 16px;
  }
  #experts .container {
    padding: unset;
  }
  #experts h2 {
    margin-bottom: 32px;
  }
  #experts .experts_content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding: 16px;
    height: auto;
  }
  #experts .video_wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  #experts .video_iframe {
    width: 100%;
    height: 100%;
  }
  #experts .expert_info {
    gap: 16px;
  }
  #experts .expert_quote {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -4.5%;
    vertical-align: middle;
  }
  #experts .expert_name {
    font-size: 16px;
  }
  #experts .expert_title {
    font-size: 12px;
  }
  #experts .navigation {
    margin-top: 32px;
  }
  #experts .nav_button {
    width: 48px;
    height: 48px;
  }
  #experts .nav_button svg {
    width: 20px;
    height: 20px;
  }
}
