

/* Start:/bitrix/templates/digital-doc/include/doc/doc.css?17478313471454*/
.doc {
  display: grid;
  padding: 20px 0;
  background-color: white;
  margin: 0 0 30px;
  border-radius: 8px;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.doc__header {
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.doc__article {
  display: flex;
  flex-direction: column;
}
.doc__article * {
  color: black;
}
.doc__article img {
  max-width: 100%;
}
.doc__article h2 {
  margin-bottom: 24px;
}
.doc__article p {
  margin-bottom: 12px;
}
.doc__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.more {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more .btn {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border-radius: 8px;
}
.more .btn__img {
  width: 50px;
  min-width: 50px;
}
.more .btn__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more .btn__desc h3 {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.more .btn__desc span {
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  .more .btn {
    padding: 12px 8px;
    gap: 12px;
  }
  .more .btn__img {
    width: 40px;
  }
  .more .btn__desc {
    gap: 6px;
  }
  .more .btn__desc h3 {
    font-size: 16px;
  }
  .more .btn__desc span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
  .more {
    padding: 0 12px;
  }
  .doc {
    grid-template-columns: 1fr;
  }
}

/* End */


/* Start:/bitrix/templates/digital-doc/include/section/section.css?17470409526737*/
.krhead {
  padding: 40px 10px;
  position: relative;
  width: 100px;
  min-width: 100px;
}
.krhead p {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-weight: 600;
  font-size: 48px;
  margin: 0;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  white-space: nowrap;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
}
.krhead p span {
  font-size: 32px;
}

.product-item {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}
.product-item__content {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.product-item__date {
  height: 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.product-item__date span {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
.product-item__block {
  display: grid;
  grid-template-columns: 1.51fr 0.5fr 0.75fr;
  grid-template-areas: "description expert rest";
  gap: 20px;
  background: white;
  width: 100%;
  border-radius: 0 16px 0 0;
}
.product-item__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px 0;
}
.product-section .product-item {
  margin: 0;
}
.product-section .product-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  background-color: white;
}
.product-section .krhead p {
  font-size: 32px;
}
.product-section .description__hero {
  padding-bottom: 500px;
}
.product-section__name {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-size: 32px;
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
}

.more {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more .btn {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border-radius: 8px;
}
.more .btn__img {
  width: 50px;
  min-width: 50px;
}
.more .btn__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more .btn__desc h3 {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.more .btn__desc span {
  font-weight: 500;
  font-size: 14px;
}

.description {
  margin-top: -80px;
  width: 100%;
  grid-area: description;
}
.description__hero {
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}
.description__hero:hover .description__img {
  filter: grayscale(0);
}
.description__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease;
  filter: grayscale(1);
}
.description__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.description__header * {
  font-family: "FavoritCondC", "DIN Pro", sans-serif;
}
.description__content {
  padding: 16px;
  font-weight: 400;
  width: 100%;
}
.description__content * {
  color: black;
}
.description__content img {
  max-width: 100%;
}
.description__name {
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.description a:hover {
  color: #eeeeee;
}
.description__news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.description__news {
  height: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.description__news a{
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
  display: inline-block;
  text-overflow: ellipsis;
}
.description__buttons {
  display: flex;
  gap: 12px;
}
.description__buttons-bottom {
  padding: 20px;
}

.news-tags a {
  font-weight: 400;
  font-size: 14px;
  color: #005fb0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.news-tags a:hover {
  color: #00284a;
}

.expert {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: expert;
  padding: 20px 0;
}
.expert__wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.expert__img {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 40%;
  z-index: 1;
}
.expert__bg {
  position: relative;
  width: 100%;
  z-index: 0;
}
.expert__bottom {
  bottom: 7%;
  right: 7%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 86%;
}
.expert__bottom p {
  font-size: 12px;
  color: white;
}
.expert__button {
  width: 40px;
  bottom: 7%;
  right: 7%;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
.expert__button img {
  width: 100%;
}
.expert__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: all 0.5s ease;
}
.expert__text.active {
  opacity: 1;
}
.expert__text h4 {
  font-size: 20px;
  color: black;
}
.expert__text p {
  color: black;
}

.product-item__rest {
  grid-area: rest;
}

@media (max-width: 1200px) {
  .krhead {
    width: 48px;
    min-width: 48px;
  }
  .krhead p {
    font-size: 32px;
    right: 6px;
  }
  .krhead p span {
    font-size: 16px;
  }
  .product-item__block {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "description rest" "description expert";
  }
  .product-item__date {
    height: 80px;
  }
  .more .btn {
    padding: 12px 8px;
    gap: 12px;
  }
  .more .btn__img {
    width: 40px;
  }
  .more .btn__desc {
    gap: 6px;
  }
  .more .btn__desc h3 {
    font-size: 16px;
  }
  .more .btn__desc span {
    font-size: 14px;
  }
  .description {
    margin-top: -80px;
  }
  .description__name {
    font-size: 24px;
  }
  .expert {
    padding: 0 20px 20px 0;
  }
  .expert__bottom p {
    font-size: 16px;
  }
  .expert__button img {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .krhead, .product-section .krhead {
    padding: 20px 6px;
    width: 40px;
    min-width: 40px;
  }
  .krhead p, .product-section .krhead p {
    font-size: 20px;
  }
  .krhead p span, .product-section .krhead p span {
    font-size: 14px;
  }
  .product-item__block {
    grid-template-columns: 1fr;
    grid-template-areas: "description" "rest" "expert";
    margin-top: 0;
  }
  .product-item__date {
    height: 40px;
  }
  .product-item__date span {
    font-size: 20px;
  }
  .description {
    margin-top: 0;
    max-width: unset;
  }
  .description__name {
    font-size: 24px;
  }
  .more {
    padding: 0 12px;
  }
  .expert {
    padding: 0 20px 20px;
    max-width: 400px;
  }
  .expert__bottom p {
    font-size: 18px;
  }
  .expert__button img {
    width: 40px;
  }
  .product-section {
    grid-template-columns: 1fr;
  }
  .product-section .description__hero {
    padding-bottom: 50%;
  }
}

/* End */


/* Start:/bitrix/components/bitrix/breadcrumb/templates/.default/style.css?1739189102585*/
.bx-breadcrumb {
	margin: 10px 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */


/* Start:/bitrix/templates/digital-doc/include/authOnlyMaterial/authOnlyMaterial.css?1745237999741*/
.ao {
  background: white;
  box-shadow: 0px -40px 30px 0px rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  position: relative;
  z-index: 10;
  border: 1px solid black;
}
.ao p {
  color: black;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
.ao__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.ao__buttons {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px 20px;
}
.ao__agitation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: relative;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 586px) {
  .ao__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* End */
/* /bitrix/templates/digital-doc/include/doc/doc.css?17478313471454 */
/* /bitrix/templates/digital-doc/include/section/section.css?17470409526737 */
/* /bitrix/components/bitrix/breadcrumb/templates/.default/style.css?1739189102585 */
/* /bitrix/templates/digital-doc/include/authOnlyMaterial/authOnlyMaterial.css?1745237999741 */
