

/* Start:/bitrix/templates/geroi19/components/bitrix/news/news/bitrix/news.detail/.default/style.css?17570694581202*/
.detail-news-name {
	font-size: 48px;
	font-weight: var(--font-regular);
	color: var(--font-blackgrey);	
}
.detail-news-img {
	height: 657px;
    width: 100%;
    object-fit: contain;
	margin: 25px 0;
}
.detail-news-text {
	font-size: var(--font-middle);
	font-weight: var(--font-regular);
	line-height: 40px;
	margin: 25px 0 35px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.detail-news-img {
		height: 525px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.detail-news-img {
		height: 455px;
	}
	.detail-news-name {
		font-size: 42px;
	}
	.detail-news-text {
		font-size: var(--font-small);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.detail-news-img {
		height: 455px;
	}
	.detail-news-name {
		font-size: 42px;
	}
	.detail-news-text {
		font-size: var(--font-small);
	}
}

@media (min-width: 577px) and (max-width: 767px) {
	.detail-news-img {
		height: 295px;
	}
	.detail-news-name {
		font-size: 32px;
	}
	.detail-news-text {
		font-size: var(--font-small);
	}
}

@media (max-width: 576px) {
	.detail-news-img {
		height: 245px;
	}
	.detail-news-name {
		font-size: 32px;
	}
	.detail-news-text {
		font-size: var(--font-small);
		line-height: 35px;
	}	
}

/* End */


/* Start:/bitrix/templates/geroi19/components/bitrix/breadcrumb/news-bread1/style.css?17563578991006*/
.bx-breadcrumb {
	margin: 10px 0 25px;
}
.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;
	text-decoration: none;
	font-size: 16px;
	font-weight: var(--font-regular);
	color: var(--font-blackgrey);
	position: relative;
}
.bx-breadcrumb .bx-breadcrumb-item a::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -5px;
    display: flex
;
    width: 0;
    height: 1px;
    background: var(--font-grey);
    transition: 0.3s;
    transform: translateX(-50%);
}
.bx-breadcrumb .bx-breadcrumb-item a:hover::after {
	width: 100%;
}

/* End */


/* Start:/bitrix/templates/geroi19/components/bitrix/news.list/news-list-on-main/style.css?17563498903598*/
/* Новости на главной */
.news-list-block {
    margin: 25px 0 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.news-list-item {
    border-radius: 23px;
    background-color: var(--white);
    margin: 20px 15px;
    padding: 0 0 35px 0;
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.1s ease;
    opacity: 0;
    transform: translate(0,0);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
.news-list-item:hover {
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
}
.news-list-img {
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    height: 321px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.news-list-name {
    font-size: var(--font-small);
    font-weight: var(--font-bold);
    color: var(--blue);
    padding: 25px 21px 0;
}
.news-list-preview {
    font-size: var(--font-smallest);
    font-weight: var(--font-regular);
    color: var(--font-blackgrey);
    padding: 25px 21px 0;
}
/* появление слева */
.news-list-item.from-left {
  transform: translateX(-100px);
}
.news-list-item.from-left.show {
  opacity: 1;
  transform: translateX(0);
}
/* появление справа */
.news-list-item.from-right {
  transform: translateX(100px);
}
.news-list-item.from-right.show {
  opacity: 1;
  transform: translateX(0);
}
/* если просто без направления */
.news-list-item:not([class*="from-"]) {
  opacity: 0;
  transform: translateY(0);
}
.news-list-item:not([class*="from-"]).show {
  opacity: 1;
}
.news-list-but-block {
    display: flex;
    justify-content: center;
}
.news-list-button {
    text-decoration: none;
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 70px;
    border-radius: 23px;
    border: 1px solid var(--blue);
    transition: all 0.1s ease;
}
.news-list-button:hover {
    background-color: var(--white);
    color: var(--blue);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list-img {
      height: 210px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .news-list-block {
      flex-wrap: wrap;
  }
  .news-list-item {
      width: 45%;
  }
  .news-list-img {
      height: 210px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .news-list-block {
      flex-wrap: wrap;
  }
  .news-list-item {
      width: 45%;
  }
  .news-list-img {
      height: 210px;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .news-list-block {
      flex-wrap: wrap;
  }
  .news-list-item {
      width: 45%;
  }
  .news-list-img {
      height: 210px;
  }
  .news-list-preview {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .news-list-block {
      flex-wrap: wrap;
  }
  .news-list-item {
      width: 100%;
      margin: 20px 0;
  }
  .news-list-img {
      height: 210px;
  }
  .news-list-preview {
      font-size: 18px;
  }
  .news-list-button {
      padding: 10px 30px;
      font-size: 28px;
  }
  /* появление слева */
  .news-list-item.from-left {
    transform: translateX(0);
  }
  .news-list-item.from-left.show {
    opacity: 1;
    transform: translateX(0);
  }
  /* появление справа */
  .news-list-item.from-right {
    transform: translateX(0);
  }
  .news-list-item.from-right.show {
    opacity: 1;
    transform: translateX(0);
  }
  /* если просто без направления */
  .news-list-item:not([class*="from-"]) {
    opacity: 0;
    transform: translateY(0);
  }
  .news-list-item:not([class*="from-"]).show {
    opacity: 1;
  }
}
/* End */
/* /bitrix/templates/geroi19/components/bitrix/news/news/bitrix/news.detail/.default/style.css?17570694581202 */
/* /bitrix/templates/geroi19/components/bitrix/breadcrumb/news-bread1/style.css?17563578991006 */
/* /bitrix/templates/geroi19/components/bitrix/news.list/news-list-on-main/style.css?17563498903598 */
