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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  background-color: #f3f3f6;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

ul > li {
  cursor: pointer;
}

textarea {
  font-family: inherit;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  color: #1d2125;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav__list--second {
  gap: 2.4rem;
  margin-right: 1.2rem;
}
.nav__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav__img {
  width: 12.4rem;
  margin-right: 2.4rem;
}
.nav__profile {
  border-radius: 50%;
}
.nav__icon {
  color: gray;
}

.sex {
  position: sticky;
  top: 6.8rem;
  background-color: #0151aa;
  color: #fff;
}
.sex__list {
  display: flex;
  gap: 2.4rem;
  padding: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 9.6rem;
}
.sex__item {
  position: relative;
}
.sex__item--active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
  width: 200%;
  height: 0.2rem;
  background-color: #fff;
  border: 1px solid #1d2125;
}

.main {
  width: 1250px;
  margin: 0 auto;
}
.main__header {
  margin-top: 3.6rem;
  font-size: 2.8rem;
  font-weight: 700;
}

.section {
  margin-bottom: 1.2rem;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 0.8rem;
}
.section:last-child {
  margin-bottom: 4.4rem;
}

.article {
  padding: 1.2rem;
  border: 1px solid rgba(29, 33, 37, 0.2);
  border-radius: 0.8rem;
}
.article__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.article__btn {
  margin-right: 1.2rem;
  padding: 0.8rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #e7eff7;
  border: none;
  border-radius: 0.4rem;
}
.article__title {
  font-size: 2rem;
  font-weight: 500;
}
.article__help {
  font-size: 1.4rem;
  color: #0053b9;
}
.article__list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(29, 33, 37, 0.2);
}
.article__img {
  width: 3.2rem;
}
.article__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0051aa;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.4rem;
  color: #fff;
  background-color: #0151aa;
  font-size: 1.4rem;
}

.chat-field {
  position: fixed;
  left: 50%;
  bottom: 2.4rem;
  z-index: 2000;
  display: none;
  transform: translateX(-50%);
  padding: 1.2rem;
  width: 40%;
  height: 6.4rem;
  color: rgba(255, 255, 255, 0.2);
  background-color: transparent;
  border: 1px solid rgba(34, 40, 50, 0.6);
  outline: none;
  resize: none;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat-field::-webkit-scrollbar {
  display: none;
}
.chat-field--visible {
  display: block;
}/*# sourceMappingURL=style.css.map */