:root {
  --white-c: #FFF;
  --accent-c: #6B004D;
  --light-pink-c: #FFF1F8;
  --pink-c: #FF6EB8;
  --black-c: #212529;
}

body {
  font-family: 'Calibri', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1;
  color: var(--black-c);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}


* {
  padding: 0;
  margin: 0;
}


html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1 0 auto;
}


h1 {
  font-size: clamp(28px, 3.62vw, 52px);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(24px, 2.68vw, 36px);
}

h4 {
  font-size: clamp(14px, 1.6vw, 22px);
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

span,
b,
i,
strong,
em {
  font-size: inherit;
}

.container {
  width: 90%;
  max-width: 1130px;
  margin: 0 auto;
}

.btn-d {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  color: var(--accent-c);
  border-radius: 20px;
  border: 1px solid var(--accent-c);
  cursor: pointer;
  text-decoration: none;
}

.btn-d.btn-primary,
.btn-d.btn--fill {
  background-color: var(--accent-c);
  color: var(--white-c);
}

.btn-d.btn--white {
  color: var(--white-c);
  border-color: var(--white-c);
}

.btn-d.btn--simple {
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.accent {
  color: var(--accent-c);
}

.open-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.open-chat img {
  width: clamp(30px, 3.2vw, 46px);
}

.open-chat b {
  color: var(--pink-c);
}

.sources {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.4vw, 18px);
  order: 5;
}

.sources ol {
  list-style: inside decimal;
}

/* #region header */
header {
  position: relative;
  padding: clamp(18px, 1.6vw, 28px);
}

header .container {
  max-width: 1330px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 40px);
}

.abbott-logo,
.logo-site,
.header-content>img {
  width: clamp(100px, 10vw, 152px);
}

.logo-site>img {
  width: 100%;
  height: auto;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 40px);
  flex-grow: 1;
}

header nav {
  width: max-content;
}

header nav ul {
  display: flex;
  gap: clamp(18px, 1.6vw, 28px);
}

header nav ul a {
  display: block;
  position: relative;
  color: var(--black-c);
  font-weight: bold;
  overflow: hidden;
}

header nav ul a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--black-c);
  transform: translateX(-110%);
  transition: transform 0.25s ease-in-out;
}

header nav ul a:hover::after {
  transform: translateX(0);
}

header .mobile-menu {
  display: none;
}

header .menu {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-c);
  z-index: 10;
  transform: translateX(-150%);
  transition: all 0.25s ease-in-out;
}

header .menu.open {
  transform: translateX(0);
}

header .menu .container {
  height: 100%;
}

header .menu ul {
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.4vw, 18px);
  justify-content: center;
  align-items: center;
}

header .menu ul li a {
  font-size: 24px;
}

@media screen and (max-width: 768px) {

  header .header-content nav ul,
  header .header-content .abbott-logo {
    display: none;
  }

  header .mobile-menu {
    display: block;
    position: relative;
    width: 10px;
  }

  header .mobile-menu::after {
    width: 100%;
    display: block;
    font-size: 28px;
    transform: scaleX(1.5);
    content: '≣';
    position: relative;
    top: 0;
    right: 0;
  }

  header .mobile-menu.active::after {
    content: 'X';
  }
}

/* #endregion header */

/* #region footer */
footer {
  margin-top: 50px;
  padding: 36px 0;
  background-color: var(--accent-c);
  color: var(--white-c);
  padding-bottom: 5.375rem;
}

footer a {
  font-size: clamp(14px, 1.6vw, 16px);
}

footer a,
footer p,
footer b {
  color: var(--white-c);
}

footer .content {
  display: flex;
  gap: clamp(20px, 14vw, 200px);
}

footer nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

footer ul {
  display: flex;
  flex-direction: column;
}

footer .main-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .main-info img {
  width: 153px;
}

footer .main-info p {
  font-size: clamp(11px, 1.2vw, 14px);
}

footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer nav>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

footer nav>div a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white-c);
  border-radius: 50%;
  width: 52px;
  aspect-ratio: 1/1;
}

footer .open-chat {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) {
  footer .content {
    position: relative;
    flex-direction: column;
    gap: 20px;
  }

  footer nav {
    display: grid;
    grid-template-columns: 3;
  }

  footer nav>ul {
    grid-column: 1/3;
  }

  footer nav>div {
    justify-content: flex-end;
    height: 100%;
    grid-column: 3/4;
  }

  footer nav>div a {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/* #endregion footer */

/* #region banner */
.banner-hero {
  position: relative;
  padding: clamp(48px, 5.6vw, 80px) clamp(16px, 2.2vw, 32px) clamp(28px, 2.6vw, 36px);
  overflow: hidden;
  min-height: clamp(260px, 30vw, 400px);
}

.banner-hero>img {
  position: absolute;
  top: 25%;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-25%);
  max-width: none;
  max-height: none;
}

.banner-hero .info {
  width: clamp(300px, 50%, 600px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
}

.banner-hero h1,
.banner-hero .info p {
  color: var(--white-c);
}

.banner-hero .info p {
  width: 88%;
}

.banner-hero .info>div {
  margin-top: clamp(8px, 1.2vw, 14px);
  display: flex;
  gap: clamp(12px, 1.4vw, 24px);
}

.banner-hero .benefits-cards {
  width: fit-content;
  padding: 16px clamp(16px, 2.2vw, 48px);
  margin-top: clamp(34px, 4.4vw, 64px);
  display: flex;
  gap: clamp(10px, 2vw, 38px);
  background-color: var(--white-c);
  border-radius: 12px;
}

.banner-hero .benefits-cards li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-hero .benefits-cards li div {
  width: clamp(42px, 3.6vw, 52px);
  aspect-ratio: 1/1;
  background-color: var(--light-pink-c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-hero .benefits-cards li div img {
  width: clamp(20px, 2vw, 22px);
}

.banner-hero .benefits-cards li p {
  display: flex;
  flex-direction: column;
}

.banner-hero .benefits-cards li b {
  font-size: clamp(13px, 1.2vw, 14px);
}

.banner-hero .benefits-cards li span {
  font-size: clamp(11px, 1.1vw, 12px);
}

.banner-hero.banner-article .slug {
  width: 90%;
  max-width: 1130px;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-hero.banner-article>picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 25%;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-25%);
  max-width: none;
  max-height: none;
}

.banner-hero.banner-article .slug span,
.banner-hero.banner-article .slug a {
  font-size: clamp(13px, 1.2vw, 14px);
  color: #928E90;
  transition: color 0.25s ease-in-out;
}

.banner-hero.banner-article .slug a:hover {
  color: var(--black-c);
}

.banner-hero.banner-article .slug a.last::after {
  content: "";
}

.banner-hero.banner-article h1 {
  color: var(--accent-c);
}

.banner-hero.banner-quiz {
  background-color: var(--accent-c);
}

.banner-hero.banner-quiz img {
  width: clamp(100px, 14vw, 200px);
  z-index: 1;
  left: auto;
  right: 10%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.banner-hero.banner-quiz .info {
  width: clamp(500px, 49vw, 700px);
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .banner-hero>img {
    height: 100%;
    min-height: 420px;
    left: 15%;
  }

  .banner-hero .info>div {
    flex-direction: column;
    width: max-content;
  }

  .banner-hero .benefits-cards {
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
  }

  .banner-hero .benefits-cards li {
    flex-direction: column;
    flex: 0 0;
    flex-basis: 22%;
    text-align: center;
  }

  .banner-hero.banner-quiz {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .banner-hero.banner-quiz img {
    position: static;
    transform: none;
    min-height: auto;
  }

  .banner-hero.banner-quiz .info {
    width: 100%;
    text-align: center;
  }

  .banner-hero.banner-article {
    aspect-ratio: 600 / 385;
  }

  .banner-hero.banner-article>picture {
    height: auto;
    min-height: auto;
    left: 0;
    top: 0;
    transform: none;
  }

  .banner-hero.banner-article img {
    width: 100%;
    height: auto;
    min-height: auto;
    left: 0;
    top: 0;
    transform: none;
  }
}

/* #endregion banner */

/* #region mainpage */
.quizzes-cards {
  margin-top: 24px;
  background: linear-gradient(to bottom, var(--white-c), var(--light-pink-c));
}

.quizzes-cards .content {
  padding: clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 24px;
  background-color: var(--light-pink-c);
}

.quizzes-cards .titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quizzes-cards .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
}

.quizzes-cards .cards li {
  display: flex;
  flex-direction: column;
  padding: clamp(10px, 1vw, 16px);
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  background-color: var(--white-c);
  border-radius: 24px;
}

.quizzes-cards .cards li div {
  margin: clamp(10px, 1.4vw, 20px) 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.quizzes-cards .cards li img {
  height: clamp(28px, 2.92vw, 42px);
}

.quizzes-cards .cards li p {
  margin-top: 8px;
  margin-bottom: 24px;
}

.quizzes-cards .cards .btn-d {
  margin-top: auto;
  text-align: center;
}

.quizzes-cards .cards li.all {
  background-color: var(--accent-c);
}

.quizzes-cards .cards li.all h4,
.quizzes-cards .cards li.all p,
.quizzes-cards .cards li.all .btn-d {
  color: var(--white-c);
  border-color: var(--white-c);
}

.quizzes-cards .cards li.all .btn-d {
  margin-top: 10px;
  height: stretch;
  display: flex;
  justify-content: center;
  align-items: center;

}

@media screen and (max-width: 768px) {
  .quizzes-cards .titles {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .quizzes-cards .titles .btn-d {
    display: none;
  }

  .quizzes-cards .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .quizzes-cards .cards li {
    gap: 6px;
    text-align: center;
  }

  .quizzes-cards .cards li.all {
    grid-column: 1/4;
  }

  .quizzes-cards .cards li.all>h4 {
    margin: 0 auto;
    text-align: center;
    width: 65%;
  }

  .quizzes-cards .cards li p {
    display: none;
  }

  .quizzes-cards .cards .btn-d {
    padding: 5px;
    border-radius: 12px;
  }
}

/* #endregion mainpage */

/* #region articles */
.articles-block {
  background: linear-gradient(to top, var(--white-c), var(--light-pink-c));
}

.articles-block .content {
  padding-top: 34px;
}

.articles-block h2 {
  color: var(--accent-c);
  text-align: center;
}

.articles {
  margin-top: 16px;
}

.articles .tabs {
  display: flex;
  gap: clamp(14px, 1.6vw, 16px);
}

.articles .tabs div {
  padding: 10px 16px;
  border-radius: 12px;
  background-color: var(--white-c);
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  font-weight: bold;
  cursor: pointer;
}

.articles .tabs div.active {
  background-color: var(--accent-c);
  color: var(--white-c);
}

.articles ul {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.articles ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
}

.articles ul li>img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  height: auto;
}

.articles ul .main-article>img {
  aspect-ratio: 1 / 0.42;
  height: auto;
}

.articles ul .info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.articles ul .info p {
  margin-top: 8px;
}

.articles ul .info>div {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.articles ul .info>div>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.articles ul .info>div>div>div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.articles ul .info>div>div img {
  height: 14px;
}

.articles ul .info>div span {
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1;
  color: #928E90;
}

.articles .theme-label {
  padding: 6px 16px;
  border-radius: 20px;
  background-color: var(--accent-c);
  color: var(--white-c);
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: bold;
  width: max-content;
  position: absolute;
  top: 16px;
  left: 16px;
}

.articles ul .main-article {
  grid-column: 1/4;
  flex-direction: row;
}

.articles ul .main-article>img {
  width: 50%;
}

.articles ul .main-article .theme-label {
  background-color: var(--pink-c);
}

.articles .pagination {
  width: max-content;
  margin: 24px auto;
  display: flex;
  gap: 8px;
}

.articles .pagination>* {
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.articles .pagination .prev,
.articles .pagination .next {
  border-color: #928E90;
}

.articles .pagination .active {
  border-color: var(--accent-c);
  color: var(--accent-c);
  background-color: var(--light-pink-c);
}

@media screen and (max-width: 768px) {
  .articles .tabs {
    flex-wrap: wrap;
  }

  .articles ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .articles ul .main-article {
    grid-column: 1/2;
    flex-direction: column;
  }

  .articles ul .main-article>img {
    width: 100%;
  }
}

/* #region articles */

/* #region policy */
.policy {
  padding: clamp(32px, 8vw, 80px) 0;
  background: linear-gradient(to bottom, var(--light-pink-c) 5%, var(--white-c));
}

.policy h1,
.policy h2 {
  color: var(--accent-c);
}

.policy h2 {
  margin-top: 52px;
}

.policy a {
  color: #B50283;
}

.policy p {
  margin-top: 20px;
  font-size: clamp(15px, 1.48vw, 20px);
}

.policy ul,
.policy ol {
  margin-top: 16px;
  margin-left: 20px;
}

.policy ul {
  list-style: outside none disc;
}

.policy ol {
  list-style-position: outside;
  list-style-type: none;
  counter-reset: counter;
}

.policy ol li::before {
  counter-increment: counter;
  content: counters(counter, ".") ". ";
}

.policy ul li,
.policy ol li {
  margin-top: 8px;
}

.policy .warn {
  color: #FF0000;
}

/* #endregion policy */

/* #region article-page */
.article .container {
  max-width: 1144px;
}

.article .content {
  margin: 36px 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 16px;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article aside {
  width: 30%;
  flex-shrink: 0;
  position: relative;
  height: auto;
}

.article .aside-container {
  position: sticky;
  top: 6px;
}

.article-toc {
  background: var(--light-pink-c);
  padding: 15px;
  border-radius: 8px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-toc p {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: bold;
  color: var(--accent-c);
}

.article-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  /* padding-left: 24px; */
}

.article-toc ul::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  width: calc(clamp(14px, 1.5vw, 18px) / 2);
  height: 100%;
  border-radius: 10px;
  background-color: var(--white-c);
  transform: translateY(-50%);
}

.article-toc li {
  margin-bottom: 10px;
}

.article-toc a {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  text-decoration: none;
  color: var(--black-c);
}

.article-toc a.active {
  color: var(--accent-c);
}

.article-toc a.active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  width: calc(clamp(14px, 1.5vw, 18px) / 2);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--accent-c);
  transform: translateY(-50%);
}

.article .go-to-quiz {
  order: 4;
}

.go-to-quiz .quizzes-cards {
  background: transparent;
}

.go-to-quiz .quizzes-cards .cards {
  grid-template-columns: 1fr;
}

.article .cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.12vw, 30px);
}

.article .cells.collapse-cells {
  gap: 12px;
}

.article .collapse-cells>p {
  grid-column: 1/4;
}

.article .item {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light-pink-c);
  border-radius: 24px;
}

.article .cells.collapse-cells .item {
  padding: 0;
  background-color: transparent;
}

.article .cells .item .img-cell {
  width: 52px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFE0F0;
  border-radius: 50%;
}

.article .cells .item img {
  height: 28px;
  max-width: 34px;
  width: auto;
}

.article .item p {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.article .cells.collapse-cells .item p {
  gap: 8px;
}

.article .cells .item span {
  font-size: 12px;
}

.article .important {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
}

.article .important .image {
  padding: 0 40px;
  transform: translateY(16px);
  width: 34%;
}

.article .important.important--colored {
  background-color: var(--light-pink-c);
}

.article .important h2 {
  color: var(--accent-c);
  margin: 0;
}

.article .important p {
  margin: 0;
}

.article .important .exclamations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.article .important .exclamations img {
  flex-grow: 0;
  flex-shrink: 0;
  width: 16px;
  transform: translateY(-180%);
}

.article .important .exclamations img.big {
  width: 24px;
  rotate: 320deg;
  transform: translateY(-110%) translateX(166%);
}

.article .important.important--colored .exclamations img {
  transform: translateY(-100%) translateX(12px);
}

.article .important.important--colored .exclamations img.big {
  transform: translateY(0) translateX(0);
}

.two-columns-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.two-columns-grid.two-one-grid {
  grid-template-columns: 2fr 1fr;
}

.two-columns-grid>div {
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  margin-bottom: 46px;
  position: relative;
}

.quote div {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  padding: 20px 20px 20px 10px;
  background-color: rgba(255, 241, 248, 0.9);
  border-radius: 24px;
  display: flex;
  gap: 6px;
}

.quote span {
  font-size: 68px;
  line-height: 45%;
  color: var(--pink-c);
}

.quote p {
  font-size: 14px;
  font-weight: bold;
}

.quote img {
  width: 100%;
}

.article .article-content ul,
.article ol {
  margin-left: 20px;
}

.article .article-content ol {
  list-style: decimal;
}

.article .article-content ol li,
.article .article-content ol li a {
  font-size: 14px;
  line-height: 1.1;
}

.article .article-content ol li a {
  text-decoration: underline;
}

.article .article-content ul {
  list-style: disc;
}

.article .article-content ul li::marker {
  color: var(--accent-c);
}

.article em {
  font-size: 14px;
}

.collapse-card {
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  text-align: center;
}

.collapse-card b {
  font-size: clamp(21px, 2.6vw, 28px);
}

.highlight {
  font-weight: bold;
}

.highlight,
.conclusion {
  padding: 16px;
  border-radius: 24px;
  background-color: var(--accent-c);
  color: var(--white-c);
}

.conclusion {
  padding: 30px;
  width: 66%;
  margin: 0 auto;
  display: flex;
  flex-direction: column !important;
  gap: 16px;
}

.conclusion h4,
.conclusion p {
  text-align: center;
  color: var(--white-c);
}

.article-warn {
  color: var(--accent-c);
  text-align: center;
}

.article .tests {
  background: transparent;
}

.article .tests .cards {
  grid-template-columns: auto;
  margin-left: 0;
}

.article .tests .cards li {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .article .content {
    flex-direction: column;
  }

  .article aside {
    width: 100%;
  }

  .article .important .image {
    width: 40%;
    padding: 0 20px;
  }

  .article-content {
    overflow: hidden;
  }

  .article .cells {
    grid-template-columns: repeat(1, 1fr);
  }

  .article .cells.collapse-cells {
    padding: 8px;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
    border: 1px solid rgba(1, 11, 12, 0.3);
  }

  .article .collapse-cells>p {
    grid-column: 1/3;
  }

  .article .cells.collapse-cells .item {
    flex-direction: column;
    align-items: flex-start;
  }

  .article .important {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }

  .article .go-to-quiz .quizzes {
    margin-top: 0;
  }

  .article .go-to-quiz .quizzes ul {
    margin: 0;
  }

  .two-columns-grid {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }

  .two-columns-grid.two-one-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .article .important .image {
    align-self: flex-end;
    transform: translateY(16px);
  }

  .conclusion {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .article .important {
    position: relative;
  }

  .article .important .image {
    padding: 0;
    height: 110%;
    width: auto;
    position: absolute;
    left: 2%;
  }

  .article .important .exclamations {
    position: absolute;
    top: 45%;
    left: 50%;
  }

  .article .important.important--colored .exclamations {
    position: initial;
  }

  .article .important .text {
    text-align: end;
    width: 60%;
    margin-left: auto;
    margin-right: 0;
  }

  .article .important .text p {
    margin-top: 20px;
  }

  .article .important.important--colored .text {
    text-align: start;
    width: auto;
  }
}

/* #endregion article-page */

/* #region quiz */
.quiz {
  margin-top: 32px;
  width: 100%;
  border-radius: 14px;
  padding: clamp(12px, 1.4vw, 24px);
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.2vw, 32px);
}

.quiz .question {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz .question-label {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: bold;
}

.quiz .question>div {
  display: flex;
  gap: 24px;
}

.quiz .question>div input {
  display: none;
}

.quiz .question>div label {
  position: relative;
  display: flex;
  cursor: pointer;
  font-size: clamp(16px, 1.6vw, 22px);
}

.quiz .question>div label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: .225rem;
  margin-right: .5rem;
  background-clip: content-box;
  border: 1px solid var(--accent-c);
  background-color: #fff;
  border-radius: 50%;
}

.quiz .question .form-check-input:checked+label:before {
  background-color: var(--accent-c);
}

.quiz .btn-d {
  width: max-content;
}


.quiz-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-head>* {
  width: 100%;
}

.quiz-symptoms,
.quiz-points {
  display: grid;
  grid-template-columns: 1fr 10fr;
}

.quiz-symptoms--title,
.quiz-points--title {
  font-weight: bold;
}

.quiz-symptoms-items,
.quiz-points-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.quiz-symptoms-item,
.quiz-symptoms--title,
.quiz-points-item,
.quiz-points--title {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: -0.04em;
}

.quiz-points {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-c)
}

@media screen and (max-width: 768px) {
  .quiz-head {
    flex-direction: row;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--accent-c);
  }

  .quiz-symptoms,
  .quiz-points {
    gap: 10px
  }

  .quiz-symptoms,
  .quiz-points,
  .quiz-symptoms-items,
  .quiz-points-items {
    grid-template-columns: 1fr;
  }

  .quiz-symptoms-items,
  .quiz-points-items {
    justify-items: start;
    text-align: start;
  }

  .quiz-points {
    padding: 0;
    border: none;
  }
}

/* #endregion quiz */


/* Post */

.head-content p {
  color: var(--white-c);
}

.site-main.servisy {
  height: 100vh;
}

.site-main.servisy .quizzes-cards {
  background: none;
}

/* Style Swiper */

.swiper {
  margin-top: 24px;
  padding: 22px 0;
}

.swiper-wrapper {
  position: relative;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: clamp(32px, 3vw, 40px);
  height: clamp(32px, 3vw, 40px);
  border: 1px solid #928E90;
  border-radius: 8px;
  transition: background-color 0.25s ease-in-out;
}

.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  background-color: var(--light-pink-c);
}

.swiper .swiper-button-next svg,
.swiper .swiper-button-prev svg {
  width: 8px;
  max-height: 100%;
}

.swiper .swiper-pagination {
  bottom: 0;
}

.swiper .swiper-pagination-bullet {
  opacity: 1;
  background: #F5F5F5;
}

.swiper .swiper-pagination-bullet-active {
  background: #FFE0F0;
}

.swiper .swiper-slide .container {
  margin: 0;
}

.swiper .slide-content {
  padding: 16px 26px;
  border-radius: 24px;
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  display: grid;
  gap: 12px;
}

.swiper .slide-content>div {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  background-color: var(--light-pink-c);
}

.swiper .slide-content>div p {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 0.8;
  font-weight: bold;
  color: var(--accent-c);
}

.swiper .slide-content .title {
  background-color: transparent;
}

.swiper .slide-content .title h2 {
  font-weight: 400;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .swiper {
    padding-top: 0;
  }

  .swiper .slide-content {
    padding: 0;
    box-shadow: none;
    grid-template-columns: 1fr 1fr;
  }

  .swiper .slide-content>.title {
    grid-column: 1/3 !important;
  }

  .swiper .slide-content>.title h2 {
    font-weight: bold;
  }

  .swiper .slide-content>.title span {
    width: 50%
  }

  .swiper .swiper-button-prev {
    display: none;
  }

  .swiper .swiper-button-next {
    top: 30px;
  }
}

.disclaimer {
  width: 100%;
  min-height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #6B004D;
  /* background: -webkit-gradient(linear,left top,right top,from(#5f4ea0),to(#d787b5));
    background: -webkit-linear-gradient(left,#5f4ea0,#d787b5);
    background: -o-linear-gradient(left,#5f4ea0 0,#d787b5 100%);
    background: linear-gradient(90deg,#5f4ea0,#d787b5); */
  padding: 0 0.625rem;
  position: fixed;
  bottom: 0;
  z-index: 999;
  box-shadow: 0 0 10px #4f0239;
  color: white;
  text-align: center;
}

.validation.d-none {
  display: none;
}

.validation {
  margin-top: 32px;
  width: 100%;
  border-radius: 14px;
  padding: clamp(12px, 1.4vw, 24px);
  box-shadow: 0 0 4px rgba(1, 11, 12, 0.3);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.validation>div {
  margin: 15px;
  font-weight: bold;
}

.validation>div.d-none {
  display: none;
}


/* Cards */

@media screen and (max-width: 768px) {
  .swiper-wrapper.container {
    width: 90%;
  }

  .cards li h4 {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
  }
}

.article .important.important--colored .e-con-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .article .important.important--colored .e-con-inner {
    display: grid;
    grid-template-columns: 5fr 1fr;
  }
}