:root {

  --link-color: #007A7C; /* Цвет ссылок */
  --link-hover-color: #35B6B2; /* Цвет ссылок при наведении */
  --link-active-color: #2D9C9B; /* Цвет ссылок при нажатии */
  --elevation-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  --primary-color: #35B6B2; 
  --hover-primary-color: #2D9C9B;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #495057;
  font-size: 16px;
  line-height: 160%;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #212529;
  line-height: 120%;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #212529;
  font-size: 32px;
  line-height: 110%;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #212529;
  font-size: 24px;
  line-height: 125%;
  font-weight: 700;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #212529;
  font-size: 18px;
  line-height: 140%;
  font-weight: 700;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

a {
  -webkit-transition: all 500ms cubic-bezier(.19, 1, .22, 1);
  transition: all 500ms cubic-bezier(.19, 1, .22, 1);
  color: #364fc7;
  font-weight: 600;
  text-decoration: none;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.row.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.row.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.column.align-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.column.align-right {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.column.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #212529;
}

.emoji {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #dbe4ff;
  font-size: 14px;
}

.emoji.lg {
  width: 64px;
  height: 64px;
  padding-top: 11px;
  font-size: 36px;
}

.mr-sm {
  margin-right: 4px;
}

.mb-sm {
  margin-bottom: 4px;
}

.mt-sm {
  margin-top: 4px;
}

.ml-sm {
  margin-left: 4px;
}

.mr-md {
  margin-right: 8px;
}

.ml-md {
  margin-left: 8px;
}

.mt-md {
  margin-top: 8px;
}

.mb-md {
  margin-bottom: 8px;
}

.mr-lg {
  margin-right: 16px;
}

.mb-lg {
  margin-bottom: 16px;
}

.mt-lg {
  margin-top: 16px;
}

.ml-lg {
  margin-left: 16px;
}

.mr-xl {
  margin-right: 32px;
}

.mb-xl {
  margin-bottom: 32px;
}

.mt-xl {
  margin-top: 32px;
}

.ml-xl {
  margin-left: 32px;
}

.ml-2xl {
  margin-left: 64px;
}

.mb-2xl {
  margin-bottom: 64px;
}

.mr-2xl {
  margin-right: 64px;
}

.mt-2xl {
  margin-top: 64px;
}

.ml-3xl {
  margin-left: 128px;
}

.mb-3xl {
  margin-bottom: 128px;
}

.mr-3xl {
  margin-right: 128px;
}

.mt-3xl {
  margin-top: 128px;
}

.p-sm {
  padding: 4px;
}

.p-md {
  padding: 8px;
}

.p-lg {
  padding: 16px;
}

.p-xl {
  padding: 32px;
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #edf2ff;
  color: #064363;
  font-weight: 600;
}

.button:hover {
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
}

.button.main {
  background-color: #33b8b2; /* #17a3e5;*/
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.1), 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
}

.button.lg {
  padding: 16px 32px;
}

.button.sm {
  padding: 4px 8px;
}

.button.xl {
  padding: 32px 64px;
  border-radius: 16px;
  font-size: 20px;
}

.button.xl.main.white {
  background-color: #fff;
  color: #064363;
}

.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.6;
}

.icon.sm {
  width: 16px;
  height: 16px;
}

.ml-md-n {
  margin-left: -8px;
}

.ml-sm-n {
  margin-left: -4px;
}

.ml-lg-n {
  margin-left: -16px;
}

.mr-sm-n {
  margin-right: -4px;
}

.mr-md-n {
  margin-right: -8px;
}

.mr-lg-n {
  margin-right: -16px;
}

.mt-sm-n {
  margin-top: 4px;
}

.mt-md-n {
  margin-top: -8px;
}

.mt-lg-n {
  margin-top: -16px;
}

.mb-sm-n {
  margin-bottom: 4px;
}

.mb-md-n {
  margin-bottom: -8px;
}

.mb-lg-n {
  margin-bottom: 16px;
}

.u {
  border-bottom: 2px solid #32b9b2;
  line-height: 100%;
}

.u:hover {
  border-bottom-color: #32b9b2;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.overflow-hidden {
  overflow: hidden;
}

.section.main {
  background-color: #027a95; /* #0b76a1;*/
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #fff), to(hsla(0, 0%, 100%, 0)));
  background-image: linear-gradient(180deg, #fff 25%, hsla(0, 0%, 100%, 0));
}

.text-giga {
  font-size: 64px;
}

.max-w-md {
  max-width: 620px;
}

.text-center {
  text-align: center;
}

.max-w-lg {
  max-width: 740px;
}

.text-lg {
  font-size: 24px;
  line-height: 140%;
}

a {
  color: var(--link-color); /* Используем переменную для цвета текста ссылки */
  text-decoration: none; /* Убираем подчёркивание у ссылок */
  transition: color 0.2s; /* Плавный переход цвета при изменении состояния */
}

a:hover {
  color: var(--link-hover-color); /* Цвет при наведении мыши */
}

a:active {
  color: var(--link-active-color); /* Цвет при нажатии */
}


.links {
  position: fixed;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
}

.links.right {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.text-sm {
  font-size: 14px;
}

.muted {
  color: #868e96;
}

.nav {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 8px 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(hsla(0, 0%, 100%, 0)));
  background-image: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0));
}

.buffer {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.slack {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.product-hunt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.airbnb {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.circle {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  width: 300%;
  height: 300%;
  margin-left: -100%;
  border-radius: 100%;
  background-color: #edeeef; /* #17a3e636;*/
}

.mt-2xl-n {
  margin-top: -64px;
}

.product-shot {
  width: 100%;
  max-width: 720px;
  margin-top: -64px;
  border-radius: 8px;
  box-shadow: 
    0px 1px 2px rgba(0, 0, 0, 0.24),
    0px 2px 6px rgba(0, 0, 0, 0.12),
    0px 10px 20px rgba(0, 0, 0, 0.08);
}


.p-2xl {
  padding: 64px;
}

.feature-card {
  width: 320px;
}

.text-white {
  color: #fff;
}

.faded {
  opacity: 0.5;
}

.border-t {
  border-top: 1px solid #e9ecef;
}

.dropdown-toggle {
  padding: 0px;
}

.dropdown-list {
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.dropdown-list.w--open {
  bottom: 40px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.dropdown-link {
  color: #364fc7;
}

.dropdown-link:hover {
  background-color: #edf2ff;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 100px;
}

.profile-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 8px 4px 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 19px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  color: #495057;
  font-size: 12px;
  font-weight: 400;
}

.profile-link:hover {
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
}

._w-full {
  width: 100%;
}

._w-25 {
  width: 25%;
}

._w-20 {
  width: 20%;
}

._w-33 {
  width: 33.333333333333336%;
}

._w-50 {
  width: 50%;
}

.logo-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.logo-container.ph {
  padding-right: 20px;
  padding-left: 20px;
}

.test-giga {
  font-size: 64px;
}

@media screen and (max-width: 991px) {
  .row.v-t {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column.align-left.p-2xl {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .column.align-center.p-2xl {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .row.mt-xl.v-l {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .row.v-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column.align-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .max-w-lg.mb-xl.footer-header {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .intercom.ml-lg.mr-lg {
    max-height: 23px;
  }
  .buffer.ml-lg.mr-lg {
    max-height: 15px;
  }
  .slack.ml-lg.mr-lg {
    max-height: 15px;
  }
  .product-hunt.ml-lg.mr-lg {
    max-height: 19px;
  }
  .airbnb.ml-lg.mr-lg {
    max-height: 21px;
    margin-right: 8px;
    margin-left: 8px;
  }
  .logo-container {
    width: 33.3336%;
    padding-right: 29px;
    padding-left: 29px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 479px) {
  .container.mt-3xl.mb-3xl {
    margin-top: 64px;
  }
  .row.v-m {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column.align-left.p-2xl {
    padding: 0px;
  }
  .button.xl.main.mt-lg {
    padding: 16px 32px;
    text-align: center;
  }
  .section.pb-2xl-m {
    padding-bottom: 64px;
  }
  .max-w-lg.text-giga.text-center {
    font-size: 38px;
  }
  .text-lg {
    font-size: 20px;
  }
  .text-lg.text-center.max-w-lg {
    font-size: 20px;
  }
  .text-lg.text-center.max-w-md {
    font-size: 20px;
  }
  .product-shot {
    margin-top: -120px;
  }
  .logo-container {
    padding-right: 13px;
    padding-left: 13px;
  }
  .logo-container.ph {
    padding-right: 10px;
    padding-left: 10px;
  }
  .test-giga.text-center {
    font-size: 38px;
  }
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 300px;
  margin: 10px;
  padding: 20px;
  /*background: #f0f0f0;*/
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--hover-primary-color);
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */
  0 4px 4px rgba(0, 0, 0, 0.06); /* Мягкое размытие для дополнительной глубины */

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

  position: relative; /* Делаем .step родительским контейнером для абсолютного позиционирования */
  padding-left: 100px; /* Добавляем отступ слева, чтобы текст не налегал на цифру */

}


.step.animate {
  opacity: 1;
  transform: translateY(0px);
}

.step-number {
  font-size: 80px; /* Устанавливаем очень большой размер шрифта */
  font-weight: bold; /* Делаем шрифт жирным */
  color: rgba(0, 0, 0, 0.41); /* Задаем цвет, соответствующий рекомендациям Material Design 3 */
  position: absolute; /* Позиционируем цифру абсолютно внутри шага */
  top: 40px; /* Смещаем цифру немного вверх относительно родительского блока */
  left: 20px; /* Отступ слева для выравнивания */
}

.payment-plan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: calc(25% - 20px);
  min-height: 320px;
  min-width: 250px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */
0 4px 4px rgba(0, 0, 0, 0.06); /* Мягкое размытие для дополнительной глубины */



}

.plan h3, .plan p {
  margin: 5px 0;
}


@media (max-width: 900px) {
.payment-plan {
    flex-direction: column;
    align-items: center;
}
}


.abutton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  font-weight: 600;

  background-color: #33b8b2; /* #17a3e5;*/
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.1), 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
}

.abutton:hover {
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}



.myslider-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #edeeef;

  
  display: flex;
  flex-direction: column; /* Элементы располагаются вертикально */
  justify-content: center; /* Центрирование содержимого по горизонтали */
  text-align: center;
}

.myslider {
  
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  /*position: relative;*/
  min-height: 180px;
 
}

.myslider-dots {
 
  text-align: center;
  padding: 15px 0;
  bottom: 0; /* Расположение внизу контейнера */
  left: 0;
  width: 100%; /* Ширина на всю ширину контейнера */
  margin-top: 5px;

  padding-left: 57px;
}


.slide {
  width: 100%; /* Слайды занимают всю ширину контейнера */

  display: flex; /* Использование flexbox для выравнивания содержимого */
  flex-direction: column; /* Расположение дочерних элементов вертикально */
  opacity: 0; /* Сделать слайды полностью прозрачными по умолчанию */
  transition: opacity 1s ease-in-out; /* Плавный переход прозрачности */
  z-index: 1; /* Начальный z-index для всех слайдов */

  /*position: absolute;
  top: 15px;
  left: 0;*/
  display: none;
  text-align: left;
  
  
}


.active {
  opacity: 1; /* Активный слайд полностью непрозрачен */
  z-index: 2; /* Повышаем z-index для активного слайда */
  display: inherit;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 7px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-dot {
  background-color: #717171;
}

.peactalk-container {
  display: flex;
  flex-direction:column;
  
}
.peacetalk-in {
  margin-top: 7px;
  padding-left: 70px;
  padding-right: 15px;
  width: 100%;
}

.peacetalk-in-row {
  display: flex;
  flex-direction: row;
  margin-top: -6px;

 
}

.peacetalk-in-issue {
  margin-top: 7px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */ 0 4px 4px rgba(0, 0, 0, 0.06);
}

.peacetalk-in-mess {
  margin-top: 7px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  background-color: #F0DDDD;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */ 0 4px 4px rgba(0, 0, 0, 0.06);
}

.peacetalk-answer-mess {
  margin-top: 7px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  background-color: #D2EAE6;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */ 0 4px 4px rgba(0, 0, 0, 0.06);
}

.peacetalk-in-img {
  padding: 8px;
  width: 57px;
}

.peacetalk-answer {
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--hover-primary-color);
  padding: 15px;
  margin-top: 10px;
}

.peacetalk-button {
  display: flex;
  justify-content: center; /* Центрирование содержимого по горизонтали */
  text-align: center;
  padding-left: 57px;
}


.video-container {
   width: calc(100% - 30px); /* Уменьшаем ширину на 30px для учета отступов */
  padding: 0 15px;
  
  margin-bottom: 40px;

  display: flex;
  flex-direction: column; /* Элементы располагаются вертикально */
  justify-content: center; /* Центрирование содержимого по горизонтали */
  text-align: center;

  display: block; /* Чтобы видео не имело внешних отступов */

  margin-left: auto; /* Для центрирования контейнера */
  margin-right: auto; /* Для центрирования контейнера */
}

video {
  width: 100%; /* Устанавливаем ширину видео на 100% контейнера */
  height: auto;
  max-width: 804px;
  max-height: 540px;
  margin: 0 auto;
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */
  0 4px 4px rgba(0, 0, 0, 0.06); /* Мягкое размытие для дополнительной глубины */
}

@media (max-width: 767px) {
  /* Скрываем видео на экранах шириной 768px и меньше */
  .video-container2 {
      display: none;
  }
}

.book-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}
.book-image {
  margin-top: 25px;
  width: 120px;
  height: auto;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), /* Основная тень */
  0 4px 4px rgba(0, 0, 0, 0.06); /* Мягкое размытие для дополнительной глубины */
}
.book-content {
  flex-grow: 1;
}
.book-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}
.book-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 640px) {

  .book-section {
    display: flex;
    
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;

    flex-direction: column;

    justify-content: center;
    align-items: center;
  }

}