html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

span {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

main {
  display: block;
  margin: 0;
}

::placeholder {
  color: inherit;
}

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

button {
  font-family: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 0;
}

a {
  transition: 0.35s;
}

.header {
  background: #202020;
  padding-top: 30px;
}
.header__inner {
  padding: 5px 20px;
  border-top: 1px solid #393939;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__box {
  display: flex;
  color: #fff;
  gap: 10px;
  padding-right: 30px;
}
.header__box:hover {
  color: red;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 15px;
}
.header__nav-link {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 100% */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.header__nav-link:hover {
  color: #E62429;
}

.hero {
  padding-top: 200px;
  position: relative;
  min-height: 675px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 10;
}
.hero__logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 20;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}
.hero__box {
  position: relative;
  z-index: 10;
}
.hero__box-title {
  margin: 16px 0 14px;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px; /* 100% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.hero__box-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px; /* 130% */
  letter-spacing: 0.5px;
  color: #fff;
  max-width: 360px;
}
.hero__box-link {
  margin-top: 33px;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  color: #fff;
  background: #E62429;
  padding: 15px 30px;
  display: block;
  width: fit-content;
}
.hero__box-link:hover {
  opacity: 0.9;
}
.hero__banner {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  min-height: 470px;
}
.hero__social {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
  align-items: center;
  gap: 20px;
}
.footer {
  padding: 80px 0 30px;
  color: #fff;
  background: #151515;
}
.footer .container {
  max-width: 1240px;
  margin: 0 auto;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-link {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 2px;
}
.footer__nav-link:hover {
  color: red;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 114px;
}
.footer__list_item-link {
  font-size: 13px;
  font-style: normal;
  font-weight: 100;
  line-height: 16.9px; /* 130% */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__wrapper_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer__wrapper_item:hover {
  color: red;
}
.footer__wrapper_item svg {
  margin-bottom: -4px;
  width: 20px;
  fill: #fff;
}
.footer__wrapper_item-box-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer__wrapper_item-box-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.5px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__social_nav {
  display: flex;
  gap: 23px 37px;
  flex-wrap: wrap;
  max-width: 200px;
}
.footer__social-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  letter-spacing: 2px;
  /* text-transform: uppercase; */
}
.footer__bottom {
  margin-top: 100px;
}
.footer__bottom_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__bottom_list-item {
  color: #767676;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.4px; /* 120% */
  letter-spacing: 0.5px;
}
.footer__bottom_list-item a:hover {
  color: #E62429;
}

.new {
  padding-top: 14px;
}
.new__inner {
  display: flex;
  justify-content: center;
  gap: 110px;
}
.new .container {
  max-width: 1600px;
  width: 100%;
}
.new__box {
  flex-basis: 50%;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
}
.new__box-img {
  width: 70px;
  height: 95px;
}
.new__box-status {
  margin: 40px 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px; /* 105.556% */
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
}
.new__box-status::before {
  content: url("../img/icons/new-line.png");
  position: absolute;
  bottom: 100%;
  left: 40px;
}
.new__box-status::after {
  content: url("../img/icons/new-line.png");
  position: absolute;
  top: 100%;
  left: 0;
}
.new__box-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px; /* 100% */
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 560px;
  width: 100%;
}
.new__box-text {
  margin: 10px 0 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px; /* 130% */
  letter-spacing: 0.5px;
}
.new__box-link {
  padding: 16px 30px 19px;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px; /* 114.286% */
  text-transform: uppercase;
  border: 1px solid #000;
  width: fit-content;
}
.new__box-link:hover {
  background: #202020;
  color: #fff;
}
.new__banner {
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-width: 50%;
}

.comics {
  /* overflow: hidden; */
  padding-bottom: 40px;
  position: relative;
  background: linear-gradient(180deg, #98CDFF 0%, #F9F4CC 100%);
}
.comics__person {
  position: absolute;
  left: 10%;
  top: 10px;
}
.comics::after {
  /* content: url("../img/figure-2.png");
  position: absolute;
  right: 1%;
  top: 10px; */
}
.comics__inner {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.comics__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
}
.comics__item_img {
  position: relative;
}
.comics__item_img img {
  width: 100%;
  height: 100%;
  max-width: 421px;
  max-height: 533px;
}
.comics__item_img-discount {
  display: flex;
  justify-content: center;
  height: 167px;
  align-items: center;
  position: absolute;
  left: 80%;
  top: -50px;
  padding: 60px 30px;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 16.8px; /* 42% */
  letter-spacing: 0.5px;
  background: url("../img/icons/discount.svg");
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  color: #fff;
  filter: grayscale(1);
}
.comics__item_img-discount span {
  white-space: nowrap;
}
.comics__item-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 28.8px; /* 64.615% */
  letter-spacing: 0.5px;
  color: #202020;
  margin: 19px 0 15px;
}
.comics__item-link {
  display: block;
  padding: 33px 42px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1; /* 43.75% */
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: 30px;
  z-index: 99;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.comics__item-link:hover {
  color: #fff;
  background: red;
}

.page_comics {
  background: url(../img/comics/thumbnail.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
}
.page_comics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.9);
  backdrop-filter: blur(10px); /* Adjust the blur radius as needed */
}
.page_comics .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.page_comics__inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.page_comics__img {
  max-width: 300px;
}
.page_comics__box {
  color: #fff;
}
.page_comics__box-title {
  font: 800 26px/1 "RobotoCondensed", "Trebuchet MS", Helvetica, Arial, sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.page_comics__wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.page_comics__wrapper-title {
  font: 400 20px/1.3 "Roboto Bold", "Trebuchet MS", Helvetica, Arial, sans-serif;
}
.page_comics__wrapper-subtitle {
  font: 400 16px/1 "Roboto Bold", "Trebuchet MS", Helvetica, Arial, sans-serif;
}
.page_comics__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_comics__box-text {
  max-width: 430px;
  font-size: 14px;
  font-family: "Roboto";
}
.page_comics__box-btn {
  margin-top: 30px;
  display: block;
  padding: 13px 40px;
  border-radius: 3px;
  background: rgba(230, 36, 41, 0.8);
  width: fit-content;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
}
.page_comics__box-btn:hover {
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}


.coomics__item-price {
  margin: 5px 0 15px;
  font-size: 28px;
  text-align: center;
  margin: 50px 0;
}

.coomics__item-price span {
  /* color: red; */
  /* font-weight: 800; */
}

.about {
  padding: 50px 0;
}
.container {
  padding: 0 10px;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about__title {
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  font-size: 35px;
  /* text-transform: uppercase; */
  /* border: 3px solid red;
  width: fit-content;
  padding: 18px 15px;
  margin-left: auto;
  margin-right: auto; */
}
.about__subtitle {
  margin-bottom: 0px;
  text-align: center;
  font-size: 20px;
}
.about__text {
  white-space: pre-line;
  text-align: justify;
  font-size: 20px;
  padding-bottom: 30px;
  position: relative;
}
.about__text::after {
  display: block;
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(270deg, #FFF -21.94%, rgba(57, 52, 52, 0.58) 58.24%, rgba(255, 255, 255, 0.00) 122.56%);
}
.footer_wrapper-title {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 2px;
}

.footer__social_nav-link svg {
  height: 30px !important;
}
.footer__social_nav-link:hover{
 opacity: 0.5;
}






.counter__inner {
  display: flex;
  justify-content: center;
  /* flex-direction: column; */
  gap: 30px;
  font-size: 60px;
}
#demo {
  color: red;
}


.about__poster {
  max-width: 350px;
  width: 100%;
  object-fit: contain;
  float: right;
  padding: 10px 0 10px 20px;
}
.counter {
  padding-top: 100px;
  background: #98CDFF;
}

.counter__title {
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  font-size: 30px;
}
.counter__inner {
  align-items: center;
}
.counter__text {
  font-weight: 700;
  text-align: center;
  font-size: 35px;
}
#demo {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .5);
  font-size: 35px;
}
.comics__item-text {
  margin-top: 15px;
  font-weight: 400;
  font-size: 19px;
  text-align: center;
}

.hero {
  position: relative;
  /* min-height: 470px; */
}
.hero__top {
  padding: 15px 25px 50px;
  /* background: #393939; */
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  top: 30%;
  z-index: 10;
}
.hero__top-text {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero__top-text--line {
  height: 1px;
  width: 150px;
  background: darkgrey;
}
.hero__top-text span:last-child {
  /* color: red; */
}


.comics__item_img-discount-content {
  text-align: center;
  height: fit-content;
  margin-top: -28px;
}
.about {
  background: linear-gradient(180deg, #F9F4CC 0%, #FFFBD8 100%);
}
.about__text-img {
  float: left;
}
.about__text {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.message {
  padding: 100px 50px;

}
.about__subtitle {
  font-weight: 400;
  font-size: 25px;
}
.about__text-img {
  display: none;
}
.message__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.message__title {
  font-size: 25px;
  font-weight: 600;
}


.comics__list {
  margin: 50px auto 30px;
  padding: 20px 30px 20px 20px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #B8F4FF;
  border-radius: 25px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .5);
}
.comics__list_item {
  color: black;
  font-size: 20px;
  font-weight: 600;
}

.comics__list_item span:first-child {
  font-weight: 600;
}

.team {
  padding: 0px 0 50px;
  background: #FFFBD8;
  position: relative;
}
.team__person {
  position: absolute;
  bottom: 0;
  right: -140px;
}
.team__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.team__item {}
.team__item-img {
  max-height: 280px;
}
.team__item-name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 20px;
}


.about__figure {
  position: absolute;
  z-index: 10;

}
.about {
  position: relative;
}
.about__figure {
  position: absolute;
}
.about__figure.left {
  top: -100px;
  left: 0;

}
.about__figure.right {
  right: 10px;
  display: none;
  bottom: -100px;
}
.comics__person {
  position: absolute;
  left: 10px;
  top: -210px;
  z-index: 10;
}
.comics__person.right {
  right: -50px;
  left: auto;
  bottom: 100px;
  top: auto;
}



.team__text {
  font-size: 24px;
  text-align: center;
}


@media(max-width:400px) {
  .hero__top {
    top: 15%;
  }
}
@media(max-width:360px) {
  .hero__top-text {
    font-size: 27px;
  }
}


@media(max-width:1460px) {
  .comics__item {
    gap: 60px;
  }
}

@media(max-width:1300px) {
  .comics__person.right {
    bottom: -100px;
    right: -100px;
  }
  .comics__item-text {
    max-width: 500px;
  }
}



@media(max-width:1200px) {
  .comics__item {
    flex-direction: column;
  }
  .comics__person {
    top: 0;
  }
  .comics__person.right {
    top: 300px;
  }
}
@media(max-width:880px) {
  .comics__person.right {
    top: auto;
    bottom: 90px;
  }
}


@media(max-width:720px) {
  #demo {
    font-size: 20px;
  }
  .hero {
    min-height: 486px;
  }
  .comics__person {
    display: none;
  }
}
@media(max-width:500px) {
  .counter__inner {
    flex-direction: column;
  }
  .comics__item_img-discount {
    left: 50%;
  }
  .counter__text {
    font-size: 23px;
  }
  .comics__item-link {
    font-size: 25px;
  }
  .footer__inner {
    gap: 30px;
  }
}


@media(max-width:1440px) {
  .about__figure.left {
    display: none;
  }
}


@media(max-widtH:440px) {
  .comics__item_img img {
    max-height: 100%;
  }
}

@media(max-width:1404px) {
  .team__person {
    right: -200px;
  }
}
@media(max-width:1270px) {
  .team__person {
    right: -250px;
  }
}

@media(max-width:1160px) {
  .team__person {
    display: none !important;
  }
}