@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
}

input[type=submit],
button {
  cursor: pointer;
}
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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


html {
  background:#E9E8F6;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  line-height: 1.4;
}
@media only screen and (max-width: 1259px) {
  body {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
button {
  font-family: "Nunito", sans-serif;
}

button {
  background: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}
@media only screen and (max-width: 1419px) {
  .container {
    max-width: 1280px;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1259px) {
  .container {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.header {
  position: relative;
  z-index: 50;
  padding: 64px 0 48px;
  background: #E9E8F6;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.header .title {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.header .title h1 {
  margin: 0;
  max-width: 780px;
  font-size: 54px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #FF0101;
  text-transform: uppercase;
}

.header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 360px;
}

.header__logo p {
  margin: 0;
  max-width: 240px;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #222838;
  text-align: right;
  text-transform: uppercase;
}

.header__logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media only screen and (max-width: 1023px) {
  .header {
    padding: 36px 0 20px;
  }

  .header__container {
    gap: 24px;
  }

  .header .title h1 {
    max-width: 560px;
    font-size: 54px;
  }

  .header__logo {
    min-width: 250px;
    gap: 14px;
  }

  .header__logo p {
    max-width: 170px;
    font-size: 24px;
  }

  .header__logo img {
    width: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 28px 0 8px;
  }

  .header__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .header .title {
    width: 100%;
  }

  .header .title h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 0.94;
    letter-spacing: 0.01em;
  }

  .header__logo {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
  }

  .header__logo p {
    max-width: none;
    font-size: 16px;
    line-height: 1;
    text-align: left;
  }

  .header__logo img {
    width: 74px;
  }
}
.main{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;  
  gap: 40px;
}

@media only screen and (max-width: 767px) {
.main {
    display:block;
  }}
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
  background: #E9E8F6;
}

.hero img {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  height: auto;
}

@media only screen and (max-width: 1259px) {
  .hero {
    padding-bottom: 32px;
  }

  .hero img {
    max-width: 540px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .hero {
    padding-bottom: 24px;
  }

  .hero img {
    max-width: 480px;
  }
}

@media only screen and (max-width: 767px) {
  .hero {
    padding-bottom: 16px;
  }

  .hero img {
    width: calc(100% - 40px);
    max-width: none;
    margin: 0 auto;
  }
}

.about__block {
  padding: 24px 0 0;
  background: #E9E8F6;
}

.about {
  padding: 32px 40px;
  border: 1.5px solid #2AC7A0;
  border-radius: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.about__content {
  max-width: none;
}

.about__container.container {
  max-width: 1280px;
}

.headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ico {
  flex: 0 0 auto;
}

.ico img {
  display: block;
  width: 32px;
  height: 32px;
}

.about__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
  color: #232B3D;
  text-transform: uppercase;
}

.about__content p {
  font-size: 18px;
  line-height: 1.35;
  color: #2E3646;
  margin-bottom: 20px;
}



@media (max-width: 1023px) {
  .about__block {
    padding-top: 20px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 28px;
  }

  .about__title {
    max-width: 100%;
    font-size: 30px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__content p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .about__block {
    padding-top: 16px;
  }

  .about {
    gap: 14px;
    padding: 16px 12px 16px 12px;
    border-radius: 24px;
  }

  .headline {
    gap: 10px;
  }

  .ico img {
    width: 28px;
    height: 28px;
  }

  .about__title {
    font-size: 25px;
    line-height: 1;
  }

  .about__content p {
    font-size: 16px;
    line-height: 1.15;
  }
}

@media (max-width: 1023px) {
  .about__block {
    padding-top: 20px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 28px;
  }

  .about__title {
    max-width: 100%;
    font-size: 30px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__content p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .about__block {
    padding-top: 16px;
  }

  .about {
    gap: 14px;
    padding: 16px 12px 16px 12px;
    border-radius: 24px;
  }

  .headline {
    gap: 10px;
  }

  .ico img {
    width: 28px;
    height: 28px;
  }

  .about__title {
    font-size: 25px;
    line-height: 1;
  }

  .about__content p {
    font-size: 16px;
    line-height: 1.15;
  }
}

.yeast {
  padding: 88px 0 20px;
  background: #E9E8F6;
}

.yeast__heading {
  margin: 0 0 48px;
  font-size: 44px;
  line-height: 0.98;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #232B3D;
}

.yeast__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yeast-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 44px;
  padding: 34px 44px;
  background: #FAFAFA;
  border-radius: 40px;
}

.yeast-card--reverse {
  grid-template-columns: 260px minmax(0, 1fr);
}

.yeast-card__content,
.yeast-card__media {
  min-width: 0;
}

.yeast-card__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.yeast-card__brand-logo {
  display: block;
  width: auto;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
}

.yeast-card__title {
  margin: 0;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 800;
  color: #232B3D;
}

.yeast-card__lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.3;
  color: #3A3E47;
}

.yeast-card__text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.3;
  color: #3A3E47;
}

.yeast-card__text p:last-child {
  margin-bottom: 0;
}

.yeast-card__accent {
  font-weight: 800;
  color: #3E9D84 !important;
}

.yeast-card__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.yeast-card__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.3;
  color: #3A3E47;
}

.yeast-card__list li:last-child {
  margin-bottom: 0;
}

.yeast-card__list li::before {
  content: "›";
  position: absolute;
  top: 0;
  left: 0;
  color: #3E9D84;
  font-weight: 700;
}

.yeast-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yeast-card__pack {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.yeast-card__pack--large {
  max-height: 370px;
}

.yeast-card__pack--medium {
  max-height: 280px;
}

.yeast-card__pack--small {
  max-height: 300px;
}

@media (max-width: 1259px) {
  .yeast {
    padding-top: 40px;
  }

  .yeast__heading {
    margin-bottom: 24px;
    font-size: 42px;
  }

  .yeast-card {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    padding: 28px 30px;
    border-radius: 32px;
  }

  .yeast-card--reverse {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .yeast-card__title {
    font-size: 26px;
  }

  .yeast-card__brand-logo {
    height: 30px;
  }

  .yeast-card__pack--large {
    max-height: 320px;
  }

  .yeast-card__pack--medium,
  .yeast-card__pack--small {
    max-height: 240px;
  }
}

@media (max-width: 1023px) {
  .yeast {
    padding: 34px 0 16px;
  }

  .yeast__heading {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .yeast-card,
  .yeast-card--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 24px 26px;
    border-radius: 28px;
  }

  .yeast-card__content {
    order: 1;
  }

  .yeast-card__media {
    order: 2;
  }

  .yeast-card__title {
    font-size: 24px;
  }

  .yeast-card__lead {
    font-size: 16px;
  }

  .yeast-card__text p,
  .yeast-card__list li {
    font-size: 15px;
  }

  .yeast-card__pack--large {
    max-height: 280px;
  }

  .yeast-card__pack--medium,
  .yeast-card__pack--small {
    max-height: 220px;
  }
}

@media (max-width: 767px) {
  .yeast {
    padding: 28px 0 12px;
  }

  .yeast__heading {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1;
    text-align: left;
  }

  .yeast__list-wrap {
    gap: 12px;
  }

  .yeast-card,
  .yeast-card--reverse {
    gap: 16px;
    padding: 18px 14px 18px;
    border-radius: 24px;
  }

  .yeast-card__brand {
    gap: 10px;
    margin-bottom: 14px;
  }

  .yeast-card__brand-logo {
    height: 24px;
  }

  .yeast-card__title {
    font-size: 18px;
    line-height: 1.08;
  }

  .yeast-card__lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.25;
  }

  .yeast-card__text p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.24;
  }

  .yeast-card__list {
    margin-bottom: 14px;
  }

  .yeast-card__list li {
    margin-bottom: 6px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.24;
  }

  .yeast-card__pack--large {
    max-height: 210px;
  }

  .yeast-card__pack--medium,
  .yeast-card__pack--small {
    max-height: 180px;
  }
}

.footer {
  padding: 56px 0;
  background: #dcdbe6;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(220px, 300px) minmax(320px, 420px);
  gap: 60px;
  align-items: start;
}

.footer__title {
  margin: 0 0 42px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #1f1f1f;
}

.footer__title--center {
  text-align: center;
}

.footer__brands {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__logo img {
  display: block;
  max-width: 150px;
  max-height: 100%;
  width: auto;
  height: auto;
}

.footer__social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #2AC7A0;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer__social-link:hover {
  background-color: rgba(42, 199, 160, 0.08);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 26px;
  height: 26px;
}

.footer__social-link svg path,
.footer__social-link svg rect,
.footer__social-link svg circle {
  stroke: #2AC7A0;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__telegram-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__social-link--telegram {
  margin-top: 100px;
}

.footer__phone-col {
  max-width: 390px;
}

.footer__phone {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #ff2b2b;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer__phone:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 15px;
  line-height: 1.55;
  color: #6a6a6a;
}

/* laptop */
@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__telegram-col {
    align-items: flex-start;
    margin: 0 auto;
  }

  .footer__title--center {
    text-align: center;
  }

  .footer__social-link--telegram {
    margin-top: 0;
    margin: 0 auto;
  }

  .footer__phone-col {
    max-width: 100%;
  }
}

/* tablet */
@media (max-width: 768px) {
  .footer {
    padding: 44px 0;
  }

  .footer__title {
    margin-bottom: 28px;
    font-size: 20px;
    margin: 0 auto;
  }

  .footer__brands {
    gap: 36px;
    flex-wrap: wrap;
  }

  .footer__phone {
    font-size: 36px;
  }
}

/* mobile */
@media (max-width: 575px) {
  .footer__inner {
    gap: 36px;
  }

  .footer__title {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .footer__brands {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer__logo {
    height: 84px;
    margin-bottom: 20px;
  }

  .footer__social-link {
    width: 52px;
    height: 52px;
  }

  .footer__social-link svg {
    width: 22px;
    height: 22px;
  }

  .footer__phone {
    font-size: 30px;
    margin: 0 auto;
  }

  .footer__copyright {
    font-size: 14px;
    margin: 0 auto;
  }
}