:root {
  --white: #ffffff;
  --gray_400: #6F6E6E;
  --gray_500: #4A4A4A;
  --black_900: #111111;
  --black_1000: #000000;

  --blue_100: #E4EFF3;
  --blue_300: #89B2BF;
  --blue_400: #86A4AA;
  --blue_600: #0E4954;
  --blue_700: #0A3138;
  --blue_800: #08252B;

  --font-main: Raleway,Arial,sans-serif;
  --font-heading: "Line Seed JP",Raleway,Arial,sans-serif;


  --h1-size: 54px;
  --h2-size: 36px;
  --h3-size: 24px;
  --h4-size: 20px;
  --h5-size: 18px;
  --h6-size: 14px;

  --label-size: 18px;
  --btn-size: 18px;
  --menu-size: 18px;
  --body-size: 16px;
  --bode-small-size: 14px;
  --input-size: 14px;
  --breadcrumbs-size:16px;

  --line-14: 1.4;
  --line-135: 1.35;
  --line-12: 1.2;
  --line-15: 1.15;

  --container-1600: calc(1600px + (120px * 2))
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--gray_500);
  font-family: var(--font-main);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.page__inner{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex: 1;
}
main{
  flex: 1 0 auto;
}
picture, 
picture img {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/woff2/raleway-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/woff2/raleway-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/woff2/raleway-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/woff2/raleway-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/woff2/raleway-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Line Seed JP";
  src: url("../fonts/woff2/subset-lineseedjp-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 100px;
  text-decoration: none !important;
  font-family: inherit;
  background-color: transparent;
  font-size: var(--btn-size);
  line-height: var(--line-135);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, outline 0.2s ease;
}
.btn:disabled{
  cursor: not-allowed;
}
.btn--icon{
  padding: 0 16px;
}
.btn--icon,
.btn--primary{
  color: var(--white);
  background-color: var(--blue_600);
}
.btn--icon:not(:disabled):hover,
.btn--primary:not(:disabled):hover{
  background-color: var(--blue_700);
}
.btn--icon:not(:disabled):focus-visible,
.btn--primary:not(:disabled):focus-visible{
  outline: 3px solid var(--blue_300);
  outline-offset: 0;
}
.btn--icon:not(:disabled):active,
.btn--primary:not(:disabled):active{
  background-color: var(--blue_800);
  color: var(--white);
}
.btn.btn--icon:disabled,
.btn.btn--primary:disabled{
  background-color: var(--gray_400) !important;
  color: var(--white) !important;
}

@property --color-start {
  syntax: '<color>';
  initial-value: #E4EFF3;
  inherits: false;
}

@property --color-end {
  syntax: '<color>';
  initial-value: #E4EFF3;
  inherits: false;
}
.btn--secondary {
  background: radial-gradient( var(--color-start), var(--color-end));
  box-shadow: inset 0 0 0 1px var(--blue_600);
  color: var(--blue_600);
  transition: --color-start 0.2s ease, --color-end 0.2s ease;
}

.btn--secondary:not(:disabled):hover {
  --color-start: #E4EFF3;
  --color-end: #89B2BF;
  box-shadow: inset 0 0 0 1px var(--blue_700);
}

.btn--secondary:not(:disabled):focus-visible{
  box-shadow: inset 0 0 0 1px var(--blue_700);
  outline: 3px solid var(--blue_700);
  color: var(--blue_700);
  outline-offset: 0;
}
.btn--secondary:not(:disabled):active{
  --color-start: #08252B;
  --color-end: #08252B;
  color: var(--white);
}
.btn.btn--secondary:disabled{
  --color-start: #E4EFF3;
  --color-end: #E4EFF3;
  box-shadow: inset 0 0 0 1px var(--gray_400) !important;
  color: var(--gray_500) !important;
}

.scroll-to-top {
  align-self: end;
}

a:not(.btn) {
  transition: color 0.2s ease;
  text-decoration: underline dotted;
}
a:not(.btn):hover {
  color: var(--blue_600);
}
h1,
h2,
.h1,
.h2{
  margin: 0 0 16px;
  color: var(--blue_600);
  line-height: var(--line-12);
  font-weight: 600;
}

h3,
h4,
.h3,
.h4 {
  margin: 0 0 16px;
  color: var(--blue_600);
  line-height: var(--line-14);
  font-weight: 600;
}
h5,
h6,
.h5,
.h6{
  margin: 0 0 8px;
  color: var(--blue_600);
  line-height: var(--line-14);
  font-weight: 600;
}

h1, .h1 {
  font-size: var(--h1-size);
}
h2, .h2 {
  font-size: var(--h2-size);
}
h3, .h3 {
  font-size: var(--h3-size);
}
h4, .h4 {
  font-size: var(--h4-size);
  text-underline-offset: 4px;
}
h5, .h5 {
  font-size: var(--h5-size);
}
h6, .h6 {
  font-size: var(--h6-size);
}

p:not(:last-child), .custom-table:not(:last-child), .quote-card:not(:last-child) {
  margin: 0 0 12px;
}
p:last-child{
  margin-bottom: 0 !important;
}
p:first-child {
    margin-top: 0 !important;
}
p, ul:not(.not-style) li, a, .a-link, th{
  font-size: var(--body-size);
  line-height: var(--line-14);
  font-weight: 400;
}
p > strong,
p > b{
  font-weight: 600;
}

.not-style-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.not-style-2 > * {
  margin: 0 !important;
}

ul:not(.not-style),
ol:not(.not-style) {
  margin: 0;
  padding: 0;
}
ul:not(.not-style):not(:last-child),
ol:not(.not-style):not(:last-child) {
  margin-bottom: 12px;
}
ul.not-style,
ul.not-style li,
ol.not-style,
ol.not-style li{
  list-style: none;
  margin: 0;
  padding: 0;
}

ul:not(.not-style) li,
ol:not(.not-style) li {
  margin-left: 21px;
}
ul:not(.not-style) li:not(:last-child),
ol:not(.not-style) li:not(:last-child) {
  margin-bottom: 8px;
}

ul:not(.not-style) li::marker {
  font-size: 10px;
}
a.not-style{
  text-decoration: none;
  display: block;
  line-height: 0;
}
address.not-style{
  font-style: normal;
}
p small{
  font-size: var(--bode-small-size);
}

.custom-table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 0;
  border-radius: 24px;
  overflow: hidden;
  color: var(--blue_700);
  text-align: center;
  background-color: var(--white);
}

.custom-table th,
.custom-table td {
  padding: 16px;
  margin: 0;
}

.custom-table thead th {
  background-color: var(--blue_100);
}

.custom-table th:not(:last-child),
.custom-table td:not(:last-child) {
  border-right: 1px solid var(--blue_100);
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 40px;
  background-color: var(--blue_100);
  margin: 0;
  box-sizing: border-box;
}
.quote-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-icon {
  fill: var(--blue_700);
  flex-shrink: 0;
}
.quote-icon--start {
  align-self: flex-start;
}
.quote-icon--end {
  align-self: flex-end;
  transform: rotate(180deg);
}
.quote-card__content {
  margin: 0;
}
.quote-card__content p {
  margin: 0;
  color: var(--blue_700);
}
.quote-card__author {
  color: var(--gray_500);
}

.embed-responsive {
  position:relative;
  display:block;
  width:100%;
  padding:0;
  overflow:hidden
}
.embed-responsive::before {
  content:'';
  display:block;
  padding-top:56.25%
}
.embed-responsive img,.embed-responsive iframe,.embed-responsive video {
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:100%;
  height:auto;
  border:0
}
.embed-responsive--4-3::before {
  padding-top:75%
}


.page-header__wrapper{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 120px;
  z-index: 10;
  transition: transform 0.3s ease;
}

/* For the script, hiding header */
.page-header__wrapper.is-hidden {
  transform: translateY(-100%);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #89B2BF 100%);
  border-radius: 50px;
  padding: 24px;
  width: 100%;
  margin: 16px auto 0;
  z-index: 10;
  max-width: 1600px;
  position: relative;
}

.logo {
  font-size: 40px;
  font-weight: 400;
  line-height: normal !important;
  font-family: var(--font-heading);
  color: var(--blue_600);
  text-decoration: none;
}

.nav a:not(.btn),
.nav span {
  text-decoration: none;
  color: var(--blue_600);
  font-weight: 500;
  font-size: var(--menu-size);
  line-height: var(--line-14);
  transition: color 0.2s ease;
  padding: 16px;
}
.nav a:not(.btn):hover {
  color: var(--blue_700);
}
.nav .current-page {
  color: var(--gray_400);
  cursor: auto;
  pointer-events: none;
}
.nav.nav--desktop ul {
  display: flex;
  gap: 16px;
}
.nav.nav--mobile ul {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav ul.not-style li{
  display: flex;
  justify-content: center;
}
.nav.nav--mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  top:0;
  z-index: 9;
  margin: calc(16px + 52px) 40px 0 0;
  background-color: var(--blue_100);
  border-radius: 0 20px 24px 24px;
  width: 288px;
  padding: 16px 16px 24px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.btn.nav--mobile {
  margin-top: 40px;
}
.nav.nav--mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-radius: 0 10px 24px 24px;
  box-shadow: inset 0px 0px 0 2px var(--blue_600);
}
.burger {
  display: none;
}

footer{
  flex-shrink: 0;
}
.page-footer__wrapper{
  padding: 24px 0 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #89B2BF 100%);
}
.footer{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer div:nth-child(2) > p{
  text-align: center;
  color: var(--black_900);
}
.footer__links{
  display: flex;
  justify-content: space-between;
}
.footer__link{
  display: flex;
  gap: 8px;
  padding: 16px 0;
}
.footer__link a {
  text-decoration: none;
}
.footer__social-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links ul{
  display: flex;
  gap: 12px;
}
.social-links__item {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__legal{
  display: flex;
  gap: 16px;
  justify-content: center;
}
.footer__legal a{
  padding: 16px 0;
  color: var(--blue_600);
  text-decoration: none;
}

.page-footer__wrapper a:focus-visible {
  outline: 3px solid var(--blue_600);
  outline-offset: 4px;
  border-radius: 4px;
}

.page-footer__wrapper a:focus:not(:focus-visible) {
  outline: none;
}

.section {
  margin: 120px 0;
}
.section:first-child {
  margin-top: 0;
}
.breadcrumb {
  margin-top: 136px;
}
.breadcrumb ~ section,
.breadcrumb ~ article,
.breadcrumb ~ div {
  margin-top: 16px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--breadcrumbs-size);
  font-weight: 400;
  color: var(--gray_500);
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}

.breadcrumbs__item:last-child {
  font-style: italic;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 13px;
  font-style: normal;
}

.breadcrumbs__link {
  text-decoration: none !important;
}

.breadcrumbs__link:hover {
  text-decoration: underline dotted !important;
}

.container,
.container-2 {
  padding: 0 120px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-1600);
}
.container-3 {
  margin-right: auto;
  margin-left: auto;
  padding: 0 150px;
  max-width: calc(1062px + (150px * 2));
}

.hero {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 168px;
  padding: 40px 96px 0;
  border-radius: 64px;
  /* background-repeat: no-repeat; */
  /* background-position: top; */
  /* background-size: cover; */
  /* background-image: url("../images/hero-2.png"); */
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__ellipse{
  position: absolute;
  top: -932px;
  left: -747px;  
}
.hero::before{
  content: "";
  position: absolute;
  top: -932px;
  left: -747px;  
  width: 1941px;
  height: 1941px;
  z-index: 2;
  background-image: url("../images/ellipse.svg");
}

.hero__header{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 0 auto;
  z-index: 3;
}
.hero__img img{
  width: 100%;
  min-width: 360px;
}
.hero__img {
  z-index: 3;
  display: flex;
  align-items: end;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 400;
  line-height: var(--line-14);
  margin: 0;
}

.hero__content h1 ~ p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 36px;
  line-height: var(--line-14);
  color: var(--blue_600);
  font-weight: 300;
  margin: 0 !important;
}
.hero__content strong {
  font-weight: 400;
}
.hero__content em{
  font-style: italic;
  background-color: var(--white);
  border-radius: 100px;
  display: flex;
  justify-self: start;
  color: var(--blue_800);
  padding: 8px 16px;
  font-weight: 400;
}
.hero__cta .btn{
  flex-shrink: 0;
}
.hero__cta{
  display: flex;
  align-items: start;
  gap: 40px;
}
.hero__cta img{
  max-width: 524px;
  width: 100%;
}

.card {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 24px;
  border-radius: 40px;
  background: linear-gradient(180deg, var(--blue_100) 0%,var(--white) 100%);
}
.card__img {
  display: flex;
  justify-content: center;
}
.card__text h4 {
  text-align: center;
}
.card__text p {
  color: var(--gray_400);
}

.container__header {
  text-align: center;
}
.container__header *:last-child{
  margin: 0;
}

.container__content {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.problems__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.medicinal-product {
  display: flex;
  gap: 96px;
  align-items: center;
}
.medicinal-product__img {
  border-radius: 48px;
  flex: 0 0 33.333%;
}
.medicinal-product__texts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: start;
  flex: 1;
}
.medicinal-product__texts h2 {
  margin: 0;
}

.advantage {
  display: flex;
  gap: 16px;
}
.advantage .card{
  flex: 1 0 35%;
}

.advantage__img {
  width: 25%;
  align-self: center;
}
.advantage__img img {
  width: 100%;
}

.how-to-take__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-badge {
  background: linear-gradient(180deg, var(--blue_100) 0%,var(--white) 100%);
  border-radius: 100px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-badge *{
  margin: 0;
}

.how-to-take__texts {
  text-align: center;
}

.where-buy {
  display: flex;
  gap: 96px;
  align-items: end;
}
.where-buy__img {
  width: 37.5%;
}
.where-buy__img img {
  /* width: 100%; */
  max-width: 600px;
}
.where-buy__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.where-buy__links {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.where-buy__links li a {
  width: 100%;
}

.where-buy--post {
  flex-direction: column;
  gap: 24px;
}
.where-buy--post .where-buy__img,
.where-buy--post .where-buy__info {
  width: 100%;
}
.where-buy--mobile {
  display: none;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background-color: var(--blue_100);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-active {
  background-color: var(--white);
  box-shadow: inset 0 0 0 1px var(--blue_600);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--blue_600);
  transition: outline 0.2s ease;
}
.faq-header:focus {
  outline: none;
}

.faq-header:focus-visible {
  outline: 2px solid var(--blue_600);
  outline-offset: -2px;
  border-radius: 24px;
}

.faq-title {
  margin: 0;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon span {
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: var(--blue_600);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.faq-icon span:nth-child(2) {
  transform: rotate(-90deg);
}

.faq-item.is-active .faq-icon span:nth-child(2) {
  transform: rotate(0deg); 
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.faq-item.is-active .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  padding: 0 32px 0;
  min-height: 0;
  overflow: hidden;
}
.faq-item.is-active .faq-content-inner {
  padding: 0 32px 16px 32px;
  margin: 0;
  color: var(--gray_400);
}
.faq-title-wrapper{
  margin: 0;
  padding: 0;
}

.container__header--blog {
  width: 41.67%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0 !important;
}

.articles-grid__item article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.articles-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 48px;
  object-fit: cover;
}

.article-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}
.article-content h3,
.article-content h2 {
  margin: 0;
}

.article-content a {
  text-decoration: none;
  font-size: var(--h5-size);
}
.article-content a:hover {
  text-decoration: underline dotted;
}
.article-content time {
  font-size: 14px;
  color: var(--gray_500);
  margin-top: auto;
}

.article-content p {
  color: var(--gray_400);
}

nav[aria-label="Навігація по сторінкам блогу"] {
  display: flex;
  justify-content: center
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
}

.pagination__link {
  width: 56px;
  line-height: normal;
}

.pagination__link--active {
  background: var(--blue_400) !important;
  pointer-events: none; 
}

.article {
  display: flex;
  gap: 96px;
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 66%
}
.article__content img {
  border-radius: 48px;
}
.article__texts {
  gap: 0 !important;
}
.article__texts p + h2 {
  margin-top: 24px;
}
.article__sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;

  /* For the script, hiding header */
  position: sticky;
  top: 136px;
  align-self: flex-start;
  transition: top 0.3s ease;
}
.article__sidebar.active {
  top: 16px;
}
.article__content-list ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article__content-list a {
  padding: 16px 16px 16px 0;
}
.article__content-list--mobile {
  display: none;
}
.privacy-policy h2 + p {
  margin-top: 24px;
}
.privacy-policy > div{
  max-width: 1061px
}
.privacy-policy p + h2,
.privacy-policy ul + h2,
.privacy-policy ol + h2,
.privacy-policy table + h2 {
  margin-top: 40px;
}

.page-not-found {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin-top: 152px;
  margin-bottom: 30px;
}
.page-not-found__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 3;
  align-items: start;
  justify-content: end;
}
.page-not-found__content * {
  margin: 0 !important;
}
.page-not-found > .hero {
  padding: 0 96px;
  margin: 0;
}
.page-not-found__content h1 {
  line-height: var(--line-12);
  font-weight: 600;
}
.page-not-found-404 {
  font-size: 300px;
  font-weight: 600;
  line-height: 1.2;
  height: 324px;
  color: var(--white);
  margin: 0 !important;
  z-index: 3;
}
.page-not-found__content {
  padding: 40px 0;
}
.page-not-found__content > p {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1439px) {
  :root {
    --container-1600: calc(1600px + (40px * 2))
  }
  .page-header__wrapper,
  .container,
  .container-2 {
    padding: 0 40px;
  }

  .container-3 {
    margin-right: auto;
    margin-left: auto;
    padding: 0 40px;
    max-width: calc(1130px + (40px * 2));
  }

  .hero{
    padding: 40px 40px 0;
  }
  .hero::before{
    left: -1004px;
  }

  .medicinal-product__img {
    flex: 0 0 45%;
  }

  .container__header--blog {
    width: 50%;
  }
  .article {
    gap: 64px;
  }
  .article__content {
    flex: 0 0 55%
  }

  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .articles-grid--post > .articles-grid__item:nth-child(n+4) {
    display: none;
  }

  .privacy-policy > div{
    max-width: 901px
  }
}
@media (max-width: 1200px) {
  .container-2,
  .container-3 {
    padding: 0 92px;
  }
  .container-3 {
    max-width: var(--container-1600);
  }
  .eurolifecare-logo{
    margin-bottom: 16px;
  }
  .nav--desktop {
    display: none;
  }
  .nav.nav--mobile {
    display: flex;
  }

  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: calc(24px + (32px * 2));
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .burger span {
    display: block;
    width: calc(100% - 6px);
    height: 2px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 100px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .footer__links{
    flex-direction: column;
  }
  .hero{
    padding: 40px 40px 0;
  }
  .hero__content h1 ~ p {
    width: 89%;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__content{
    flex: 0 0 100%;
  }
  .hero__cta img{
    margin-bottom: 24px;
    max-width: 59%;
  }
  .hero::before{
    left: -803px;
  }
  .hero__img {
    z-index: 2;
    display: flex;
    align-items: end;
    position: absolute;
    right: -10%;
    bottom: 0px;
  }
  .hero__img img{
    min-width: auto;
    max-width: 370px;
  }

  .problems__list {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .medicinal-product {
    flex-direction: column;
    gap: 24px;
  }
  .medicinal-product__img {
    flex: 0 0 100%;
  }

  .advantage {
    flex-direction: column;
  }
  .advantage .card{
    flex: 1 0 100%;
  }
  .advantage__img {
    width: auto;
  }

  .where-buy {
    flex-direction: column;
    gap: 16px;
  }
  .where-buy__img,
  .where-buy__info {
    width: 100%;
  }

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

  .articles-grid--post > .articles-grid__item:nth-child(n+3) {
    display: none;
  }
  .article {
    gap: 48px;
  }
  .article__sidebar {
    flex: auto;
  }
  .article__content {
    flex: 0 0 65%
  }
  .where-buy--mobile {
    display: flex;
  }
  .article__sidebar > .where-buy {
    display: none;
  }
  .where-buy img {
    width: 100%;
  }
  .page-not-found .hero {
    flex-direction: column;
  }
  .page-not-found__content {
    align-items: center;
    text-align: center;
    padding: 24px 0;
  }
  .page-not-found-404 {
    font-size: 160px;
    height: 169px;
  }
  .page-not-found-404 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  :root {
    --h1-size: 32px;
    --h2-size: 26px;
    --h3-size: 22px;
    --h4-size: 18px;
    --h5-size: 16px;

    --breadcrumbs-size:14px;
  }
  .article__content-list--mobile {
    display: block;
  }
  .article__sidebar {
    display: none;
  }
  .article__content {
    flex: auto;
  }
  .article__content {
    gap: 48px;
  }

  h2,
  .h2 {
    line-height: var(--line-15);
  }
  .section {
    margin: 80px 0;
  }
  .breadcrumb {
    margin-top: 112px;
  }
  .container-2,
  .container-3 {
    padding: 0 64px;
  }

  .header {
    padding: 12px 16px;
    background: radial-gradient(#E4EFF3,#89B2BF);
  }
  .logo {
    font-size: 20px;
  }
  .nav.nav--mobile ul {
    margin-top: 40px;
  }
  .nav.nav--mobile {
    margin: calc(16px + 40px) 40px 0 0;
  }
  .footer__social-links{
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 16px;
  }
  .social-links__item:first-child{
    width: calc(48px - 12px);
    justify-content: start;
  }
  .hero{
    margin-top: 120px;
  }
  .hero__img {
    max-width: 50%;
  }
  .hero__img img{
    max-width: 350px;
  }

  .problems__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .card__text p {
    margin: 0;
  }
  .how-to-take__steps {
    grid-template-columns: 1fr;
  }

  .container__header--blog {
    width: 100%;
  }

  .privacy-policy h2 + p {
    margin-top: 16px;
  }
  .privacy-policy p + h2,
  .privacy-policy ul + h2,
  .privacy-policy ol + h2,
  .privacy-policy table + h2 {
    margin-top: 24px;
  }
  .privacy-policy > div{
    max-width: auto;
  }
  .page-not-found > .hero {
    padding: 0 40px;
  }
}
@media (max-width: 550px) {
  :root {
    --container-1600: calc(1600px + (16px * 2))
  }
  .section {
    margin: 48px 0;
  }
  .page-header__wrapper,
  .container,
  .container-2,
  .container-3 {
    padding: 0 16px;
  }
  .nav.nav--mobile {
    margin: calc(16px + 40px) 16px 0 0;
  }
  .eurolifecare-logo {
    margin-bottom: 24px;
  }
  .btn:not(.burger) {
    padding: 0 16px;
  }
  .hero__img {
    max-width: none;
    width: 100%;
    right: -35%;
  }
  .hero__content h1 {
    font-size: 36px;
  }
  .hero__content h1 ~ p {
    font-size: 24px;
    width: 65%;
  }
  .hero {
    padding: 16px 16px 0;
    border-radius: 32px;
  }
  .hero__cta {
    gap: 24px;
  }
  .hero__cta .btn {
    order: 2;
    margin-bottom: 16px;
  }
  .hero__cta img {
    margin-bottom: 0;
    padding-right: 33px;
    max-width: 100%;
  }

  .faq-header {
    padding: 16px;
  }
  .faq-content-inner p {
    padding: 0 16px 16px;
  }
  .faq-content-inner {
    padding: 0 16px 0;
  }
  .faq-item.is-active .faq-content-inner {
    padding: 0 16px 16px 16px;
  }

  .articles-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 32px !important;
  }

  .articles-grid--post > .articles-grid__item:nth-child(n+2) {
    display: none;
  }
  .article__content {
    gap: 32px;
  }
  .page-not-found-404 {
    font-size: 128px;
    height: 134px;
  }
}
@media (max-width: 550px) and (min-width: 390px) {
  .hero__cta img{
    width: 80%;
  }
  .hero__img {
    right: -45%;;
  }
}
@media (max-width: 390px) {
  .footer__legal{
    flex-direction: column;
    gap: 8px;
  }
}