html {
  box-sizing: border-box;
}

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

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"),
    url("../fonts/Inter-Medium.woff") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"),
    url("../fonts/Inter-Bold.woff") format("woff");
}


@font-face {
  font-family: 'arial';
  src:
    local('Arial-medium'),
    url("../fonts/ArialM.woff2") format("woff2"),
    url("../fonts/ArialM.woff") format('woff');
  font-weight: 500;
  font-display: swap;
}


:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Arial", sans-serif;
  --textcolor: #000000;
  --altcolor: #ffffff;
  --corpback: #A14550;
  --altback: #4F2D79;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  min-width: 320px;
  color: var(--textcolor);
  line-height: normal;
}

.container {
  max-width: 1920px;
  padding: 0 262px;
  margin: 0 auto;
  width: 100%;
}

.container_alt {
  padding: 0 265px;
}

.list-reset {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.flex {
  display: flex;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  width: fit-content;
}

* {
  transition: all 0.3s ease-in-out;
}

button {
  cursor: pointer;
}
.btn {
  background-color: var(--corpback);
  padding: 37px 78px;
  border-radius: 10px;
  color: var(--altcolor);
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  border: none;
  text-transform: uppercase;
}

.btn:hover {
  outline: 2px solid var(--corpback);
  color: whitesmoke;
  background-color: #913c46;
  box-shadow: 0px 0px 10px 5px #913c46;
}

.btn:active {
  outline: 2px solid var(--corpback);
  color: whitesmoke;
  background-color: #913c46;
  box-shadow: 0px 0px 10px 5px #913c46;
}

/* HEADER */

.header {
  min-height: 1159px;
  background-image: url(../img/img11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.header-lr {
  background-image: url(../img/lr1.jpg);
  background-position: 80% center;
}
.header-kk {
  background-image: url(../img/kk11.jpg);
}
.head {
  padding-top: 30px;
  padding-bottom: 35px;
  background: rgba(5, 5, 5, 0.8);
}

.nav__list {
  gap: 42px;
}

.nav__link:focus-visible {
  border-radius: 4px;
}

.nav__link:hover {
  text-shadow: 0px 0px 20px white;
}

.nav__link:active {
  text-shadow: 0px 0px 20px white;
  color: #D9D9D9;
}


.nav__link {
  color: var(--altcolor);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.hero__content {
  padding-top: 602px;
  padding-bottom: 61px;
}

.header__title {
  margin-bottom: 10px;
  width: fit-content;
  color: var(--altcolor);
  font-size: 60px;
  font-weight: 400;
  line-height: 73px;
}
.header__title-kk {
  font-size: 50px;
  line-height: 60px;
}
.header__author {
  margin-bottom: 33px;
  color: var(--altcolor);
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
}

.header__descr {
  max-width: 840px;
  color: var(--altcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}
.header__descr-kk {
max-width: initial;
}
.header__logo {
  margin-bottom: 0px;
}
/* BURGER  */
.menu {
  position: relative;
  display: none;
  padding: 17px;
  background-color: rgba(5, 5, 5, 0.8);
}
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: var(--altcolor);
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 var(--altcolor);
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
  top: 0;
  left: 0;
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 20px 0;
  margin: 0;
  margin-top: 60px;
  background: rgba(5, 5, 5, 0.80);
  list-style-type: none;
  transform: translateX(-100%);
  transition: .3s;
  width: 100%;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
}
.menu-item:hover {
  color: #000000;
  background: rgba(255, 255, 255, 0.80);
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}
.burger-checkbox:checked ~ .burger {
  left: 90%;
}
/* .header .burger-checkbox:checked .menu {
  background-color: initial;
} */
/* .bc-transparent {
  background-color: transparent;
} */
/* details  */
.details__list {
  justify-content: space-around;
  padding-bottom: 52px;
  overflow-x: hidden;
}

.details__list li {
  display: flex;
  justify-content: center;
}

.details__item {
  width: 100%;
  max-width: 256px;
  padding-top: 283px;
  color: var(--textcolor);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-align: center;
/*  text-transform: uppercase;*/
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.details__item_1 {
  background-position: 50% 40%;
  background-image: url(../img/img3.png);
}

.details__item_2 {
  background-image: url(../img/img4.png);
}

.details__item_3 {
  background-image: url(../img/img5.png);
}

.details__item_4 {
  background-image: url(../img/img6.png);
}

/* doit  */
.do-it {
  padding-top: 52px;
  padding-bottom: 49px;
  background-color: var(--corpback);
}

.do-it__descr {
  color: var(--altcolor);
  font-size: 42px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
}
.do-it__descr-kk,
.do-it__descr-lr {
  text-transform: initial;
}
/* Content  */
.content {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* .content__container {
  padding: 0 180px;
}
.content__left {
  padding-left: 236px;
} */
.content__title {
  margin-bottom: 32px;
  color: var(--textcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.content p {
  text-align: justify;
  color: var(--textcolor);
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

.content p:not(:last-child) {
  margin-bottom: 0px;
}

/* .content__right {
  transform: translate(111px, 59px);
} */
.content__right {
  position: absolute;
  right: 82px;
  top: 141px;
}

.content__img {
  max-width: 100%;
}

/* tryit   */
.try-it {
  padding-top: 55px;
  padding-bottom: 52px;
  background-color: var(--altback);
}

.try-it__title {
  margin-bottom: 47px;
  color: var(--altcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.try-it__img {
  width: 100%;
}

/* СТИЛИ ДЛЯ ЛИСТАЛКИ */
.try-it__reader {
  height: 800px;
  width: 100%;
}
.container__for-reader {
  margin: 0 auto;
max-width: 1050px;
width: 100%;
padding-right: 0;
padding-left: 0;
}

@media (max-width: 1050px) {
  .container__for-reader {
    height: 650px;
    max-width: 800px;
  }
  }
  @media (max-width: 800px) {
    .container__for-reader {
      max-width: 400px;
    }
    }
/* КОНЕЦ СТИЛЕЙ ДЛЯ ЛИСТАЛКИ */

/* buy-it  */
.buy-it {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

/* FORMA BUY_IT */
.buy-it__input {
  padding: 10px;
}


/* listen-it  */
.hide {
  display: none;
}
.listen-it {
  padding-top: 51px;
  padding-bottom: 49px;
  background-color: var(--altback);
  color: var(--altcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.listen-it__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}
.listen-it__audio {
  display: none;
}
.listen-it__btn:hover path {
  fill: var(--corpback);
}
/* .play-hover path{
  fill: var(--corpback);
} */
/* Статус-бар  */
.listen-it__status {
  width: 100%;
  height: 8px;
  margin-bottom: 29px;
  background-color: #D9D9D9;
  border-radius: 4px;
}

.listen-it__fill {
  width: 0;
  height: 8px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  position: relative;
  background-color: var(--corpback);
}

.listen-it__time {
  color: var(--altcolor);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

/* Кнопки  */
.listen-it__controls {
  margin-right: 27px;
  margin-bottom: 24px;
  justify-content: end;
  gap: 45px;
}

.listen-it__btn {
  padding: 0;
  border: none;
}

.listen-it__btn {
  background-color: inherit;
}

/* about-author  */
.about-author {
  padding-top: 49px;
  padding-bottom: 48px;
  background-color: var(--corpback);
}

.about-author__float-img {
  display: none;
}

.about-author__title {
  margin-bottom: 42px;
  color: var(--altcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.about-author p {
  color: var(--altcolor);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.about-author p:not(:last-child) {
  margin-bottom: 0px;
}

.about-author__img {
  transform: translateX(-8px);
}

/* VIDEO */
/* .video__frame {
  width: 100%;
  height: 500px;
} */
.video {
  padding-top: 60px;
}
.container__video {
  width: 86%;
}
.thumb-wrap {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
  text-align: center;
}
.thumb-wrap iframe {
 position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

/* from-author  */
.from-author {
  padding-top: 42px;
  padding-bottom: 77px;
  background-color: var(--altcolor);
}

.from-author__title {
  margin-bottom: 42px;
  color: var(--textcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.from-author__descr {
  margin-bottom: 15px;
  max-width: 750px;
  color: var(--textcolor);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}
.from-author__descr-lr {
  max-width: 900px;
}
.from-author__descr-kk {
  max-width: 900px;
}
.from-author__name {
  color: var(--textcolor);
  font-size: 18px;
  font-weight: 700;
  line-height: 17px;
}
.from-author__img {
  width: 255px;
  height: auto;
  float: right;
  padding-right: 20px;
  padding-left: 20px;
}
.from-author__img-hided {
  width: 206px;
  height: auto;
  display: none;
  margin-bottom: 20px;
}
/* where-buy  */
.where-buy {
  padding-top: 49px;
  padding-bottom: 37px;
  background: rgb(232, 232, 232);
}

.where-buy__title {
  margin-bottom: 42px;
  color: var(--textcolor);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.where-buy__descr {
  color: var(--textcolor);
  font-family: Arial;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
}

.where-buy__descr:not(:last-child) {
  margin-bottom: 15px;
}
/* MAP */

/* BUY IT FLOOR */
.buy-it__floor {
  padding-top: 65px;
  padding-bottom: 65px;
}

/* review */
.review {
  padding: 15px 0;
  color: var(--textcolor);
}

.review__list {
  margin-bottom: 5px;
  /* row-gap: 20px; */
}

.review__title {
  margin-bottom: 37px;
  color: inherit;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}

.review__list-item {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding-bottom: 5px;
}

.review__descr {
  margin-bottom: 34px;
  text-align: justify;
  color: inherit;
  font-size: 20px;
}

.review__person {
  margin-bottom: 13px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
}

.review__date {
  margin-bottom: 14px;
  font-size: 16px;
  color: #949494;
}

.review__btn {
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  background-color: var(--corpback);
  color: var(--altcolor);
  font-weight: 700;
  font-size: 20px;
}

.review__btn:hover {
  background-color: #913c46;
  box-shadow: 0px 0px 10px 5px #913c46;
}

/* FORM  */
.form {
  flex-direction: column;
}

.review__form-container {
  max-width: 826px;
  width: 100%;
  padding: 33px 36px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.form__label {
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 700;
}

.form__input {
  padding: 10px;
  margin-bottom: 23px;
  border: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  background-color: #efefef;
}

.form__label:hover {
  outline: none;
}

.form__label:focus-visible {
  outline: none;
}

.form__input:hover {
  background-color: #D9D9D9;
  /* outline: -webkit-focus-ring-color auto 1px; */
}

.review__input {
  min-height: 45px;
}

.review__text-area {
  min-height: 206px;
  resize: none;
}


.form__btn {
  width: fit-content;
  padding: 15px 52px;
  border-radius: 10px;
  border: none;
  background-color: var(--corpback);
  color: var(--altcolor);
  font-weight: 700;
  font-size: 20px;
}

.form__btn:hover {
  background-color: #913c46;
  box-shadow: 0px 0px 10px 5px #913c46;
}

/* connect-authot */
.connect-author {
  padding-top: 60px;
  padding-bottom: 70px;
  color: var(--textcolor);
  background-color: var(--altcolor);
}

.connect-author__title {
  margin-bottom: 38px;
  color: inherit;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}

.connect-author__btn {
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  background-color: var(--corpback);
  color: var(--altcolor);
  font-weight: 700;
  font-size: 20px;
}

.connect-author__btn:hover {
  background-color: #913c46;
  box-shadow: 0px 0px 10px 5px #913c46;
}

/* footer  */
.footer {
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background-color: var(--altback);
}

.footer__copy-right {
  font-size: 24px;
  color: var(--altcolor);
}
.footer__link {
  box-sizing: border-box;
  padding-left: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(../img/footer-tg.svg);
  font-size: inherit;
}
.footer__link:hover {
color: #efefef;
text-shadow: 0 0 2px #efefef;
}
