/* reset */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
p,
a,
img,
b,
ul,
li,
header {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
header {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

html,
body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #fff;
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}

b {
  font-weight: 700;
}

/* header */
.header__container {
  max-width: 1320px;
  margin: 0 auto;
}

.header__logo {
  background: linear-gradient(90deg, #225dac 0.98%, #03193d 99.79%);
  padding: 20px 70px;
}

.header__menu {
  background: #efefef;
  padding: 20px 70px;
}

.header__container.menu {
  display: flex;
  align-items: center;
  gap: 100px;
}

.header__menu--mobile {
  display: none;
}

.header__menu-item {
  font-family: sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header__menu-item a {
  color: #716e6e;
  text-decoration: none;
}

.header__hero {
  background: url("hero-bg.jpg") no-repeat right / cover;
  color: #fff;
  font-family: sans-serif;
  padding: 100px 70px;
}

.header__text {
  max-width: 570px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-wrap: balance;
}

.header__descript {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__main-title {
  font-family: sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.header__date {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .header__logo {
    padding: 20px;
  }

  .header__menu {
    display: none;
  }

  .header__menu--mobile {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    background: #efefef;
  }

  .burger {
    display: block;
    width: 25px;
    height: 2px;
    background: #716e6e;
    position: relative;
  }

  .burger::before,
  .burger::after {
    content: '';
    width: 25px;
    height: 2px;
    background: #716e6e;
    position: absolute;
    left: 0;
  }

  .burger::before {
    top: -8px;
  }

  .burger::after {
    top: 8px;
  }

  .header__hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("hero-bg.jpg") no-repeat right / cover;
    padding: 40px 20px;
  }

  .header__text {
    max-width: 100%;
  }

  .header__descript,
  .header__date {
    font-size: 12px;
    font-weight: 500;
  }

  .header__main-title {
    font-size: 20px;
    line-height: 135%;
  }
}

/* content */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px 15px 0;
}

.article__title {
  color: #005ba6;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin: 30px auto;
}

.article__subtitle {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.article__subtitle.centered {
  text-align: center;
  margin-bottom: 80px;
}

.article__list {
  list-style: disc;
  margin: 30px 0 30px 20px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article__text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 30px auto;
}

.article__list-title {
  font-weight: 700;
  margin-bottom: 30px;
  margin-left: -20px;
}

.article__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

.article__image-description {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.article__quote {
  color: #005ba6;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  padding: 10px 15px;
  border-left: 1px solid #005ba6;
  margin: 30px auto;
}

.block__title {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 40px;
}

.symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.article__card {
  flex: 0 0 45%;
}

.article__card:first-child {
  flex: 0 0 100%;
}

.article__card-image {
  text-align: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.article__card-image img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 100%;
}

.article__card-title {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}

.article__card-text {
  color: #000;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

.ingridients {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.article__important-text {
  padding: 30px;
  border: 1px solid #c6e7c6;
}

.article__important-text .article__text:first-child,
.article__important-text .article__text:last-child {
  margin: 0;
}

@media (max-width: 768px) {
  .article__title {
    font-size: 18px;
  }

  .article__text,
  .article__subtitle,
  .article__quote,
  .article__list-item,
  .article__card-title,
  .article__card-text {
    font-size: 16px;
  }

  .article__subtitle.centered {
    margin-bottom: 10px;
  }

  .article__card-image {
    margin-bottom: 10px;
  }

  .symptoms {
    gap: 20px;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

/* order */

:focus {
  outline: none;
}

.bottom__button {
  display: block;
  margin: 0 auto 40px;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
  border-radius: 5px;
  background-color: #0299ff;
  transition: all 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: clamp(16px, 4vw, 20px);
  max-width: 250px;
  width: 100%;
  text-align: center;
}

.ac_footer {
  margin-top: 20px;
  text-align: center;
}

.footer-privacy a {
  color: #000;
}

.article p {
  font-size: 23px;
}

[scroll='goScrollToForm'] {
  cursor: pointer;
}

.photo3-4 {
  aspect-ratio: 3/4;
  object-fit: cover;
}