

/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news.detail/news/style.css?17453252103108*/
.share {
    margin: 30px 0;
}

.detail .content {
    margin: 20px 0;
}

.ask_a_question {
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.ask_a_question:hover {
    transform: scale(1.02);
}

.ask_a_question .btn {
    background: #2980b9;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.4);
    transition: background 0.3s, box-shadow 0.3s;
}

.ask_a_question .btn:hover {
    background: #1c5985;
    box-shadow: 0 6px 20px rgba(28, 89, 133, 0.6);
}

.period .label {
    background: #538fb5;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.image {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.5s;
}

.image:hover img {
    transform: scale(1.08);
}

/* Если необходимо позиционировать фото слева или справа, можно использовать утилиты Bootstrap 5.
   Здесь сохранены ваши классы, но можно также применять классы .float-start и .float-end. */
.image-left {
    float: left;
    margin-right: 30px;
}

.image-right {
    float: right;
    margin-left: 30px;
}

.detail.news {
    background-color: rgba(227, 239, 245, 0.69); /* эквивалент e3eff5b0 */
    border: 1px solid #d7dee3;
    padding: 25px;
    border-radius: 15px;
    color: #444;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.detail.news:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.properties {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.property {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.property i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #3498db;
    font-size: 18px;
}

.galery .item {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.galery .item:hover {
    transform: scale(1.05);
}

.galery .item img {
    width: 100%;
    transition: opacity 0.4s;
}

.galery .item:hover img {
    opacity: 0.9;
}

.video .item {
    margin-bottom: 35px;
}

.video_body {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* соотношение сторон 16:9 */
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video_body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799*/
    .wrap_pagination {
        text-align: center;
    }

    .pagination {
        border-radius: 0;
        border-color: #dfe5e9;
        background-color: transparent;
    }

    .pagination .page-item {
        border-radius: 0;
        margin: 0 1px;
    }

    .pagination .page-item .page-link {
        color: #4c7698;
        border-radius: 5 !important;
        padding: 5px 10px;
        transition: background-color 0.3s, color 0.3s;
    }

    .pagination .page-item .page-link:hover {
        background-color: #66bedf;
        color: white;
    }
.pagination .page-item.disabled .page-link {
    color: rgb(46 52 58 / 98%);
}

    .pagination .page-item .page-link:hover .icon {
        color: white;
    }

    .pagination .page-item .page-link .icon {
        color: #acb6bc;
    }
/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog/style.css?17491306792396*/
.catalog__items {
  display: flex;
  flex-wrap: wrap;
}

.catalog__item {
  background: #e6f1f6;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 23%;
  max-width: 23%;
  margin: 1%;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .catalog__item {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 576px) {
  .catalog__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.catalog__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catalog__content {
  padding: 5px;
}

.catalog__image img {
  width: 100%;
  height: auto;
}

.catalog__title {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.catalog__price {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.catalog__price--new {
  color: #28a745;
  font-weight: bold;
}

.catalog__price--old {
  color: #dc3545;
  text-decoration: line-through;
  margin-left: 10px;
}

.catalog__description {
  font-size: 12px;
  line-height: 24px;
  color: #666;
  margin-bottom: 10px;
}

.catalog__button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.catalog__button:hover {
  background-color: #0056b3;
}

/* Основной цвет кнопки */
.btn-outline-custom {
  border: 2px solid #32556e;
  color: #32556e;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Hover: заливаем фоном и меняем цвет текста */
.btn-outline-custom:hover {
  transform: translateY(-1px);
  background-color: #32556e;
  color: #fff;
}

/* Анимация иконки */
.icon-animate {
  transition: transform 0.3s ease;
}
.btn-outline-custom:hover .icon-animate {
  transform: rotate(-15deg) scale(1.1);
}

/* Ripple-эффект */
.back-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 15px;
  height: 15px;
  pointer-events: none;
  transform: scale(0);
  opacity: 1;
  transition: transform 0.6s ease, opacity 1s ease;
}
.back-btn:active .ripple {
  transform: scale(12);
  opacity: 0;
  transition: 0s;
}

/* End */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news.detail/news/style.css?17453252103108 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog/style.css?17491306792396 */
