.pageArticles-card {
  display: block;
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.pageArticles-card__image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 9px 9px;
  overflow: hidden;
}
.pageArticles-card__image img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pageArticles-card__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #F0F6F9;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  max-width: 648px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateY(72px);
  transition: 0.3s;
}
.pageArticles-card__tag {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0086c1;
  background: linear-gradient(95.25deg, #0086C1 0%, #00628E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pageArticles-card__tag span {
  display: inline-block;
  vertical-align: top;
  margin: 7px 5px 0 5px;
  width: 6px;
  height: 6px;
  background: #0086c1;
  border-radius: 50%;
}
.pageArticles-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #404557;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.pageArticles-card__link {
  border: 2px solid #0086c1;
  border-radius: 4px;
  padding: 12px 16px;
  background: #0086c1;
  font-size: 16px;
  line-height: 20px;
  color: white;
  margin-top: 24px;
  cursor: pointer;
  opacity: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}
.pageArticles-card__link span {
  opacity: 0.6;
}
.pageArticles-card__link:hover {
  background: transparent;
  color: #0086c1;
}
.pageArticles-card:hover .pageArticles-card__content {
  background: #DFEDF5;
  transform: translateY(0px);
}
.pageArticles-card:hover .pageArticles-card__link {
  opacity: 1;
}
.pageArticles-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.pageArticles-grid__itemBig {
  grid-column: span 2;
  grid-row: span 2;
}
.pageArticles-grid__itemBig .pageArticles-card {
  min-height: 100%;
}
@media (max-width: 991px) {
  .pageArticles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pageArticles-grid__itemBig {
    grid-column: span 2;
    grid-row: span 1;
    height: 400px;
  }
}
@media (max-width: 576px) {
  .pageArticles-card__tag {
    font-size: 12px;
    line-height: 18px;
  }
  .pageArticles-card__title {
    font-size: 14px;
    line-height: 20px;
    min-height: 1px;
  }
  .pageArticles-card__link {
    margin-top: 4px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 12px;
  }
  .pageArticles-card__content {
    transform: translateY(44px);
  }
  .pageArticles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .pageArticles-grid__itemBig {
    grid-column: span 1;
    height: auto;
  }
}
.pageArticles-listSection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.pageArticles-listSection__link {
  display: inline-block;
  vertical-align: top;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .pageArticles-listSection__link {
    font-size: 16px;
    line-height: 25px;
  }
}
.pageArticles-listSection__link {
  font-weight: bold;
  color: #5f6877;
  padding: 10px 20px;
  border-radius: 30px;
  background: #f1f2f4;
}
.pageArticles-listSection__link-count {
  display: inline;
  margin-left: 5px;
  opacity: 0.7;
}
.pageArticles-listSection__link.active {
  background: #e5f3f9;
  color: #0086c1;
}
.pageArticles-listSection__link:hover {
  color: #0fa1ef;
}
@media (max-width: 991px) {
  .pageArticles-listSection {
    gap: 10px 5px;
  }
  .pageArticles-listSection__link {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
    padding: 5px 15px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .pageArticles-listSection__link {
    font-size: 14px;
    line-height: 22px;
  }
}
.pageArticles-detail__wrapper {
  display: flex;
  gap: 100px;
  flex-wrap: nowrap;
}
.pageArticles-detail__content {
  max-width: calc(100% - 500px);
}
.pageArticles-detail__content-time {
  display: flex;
  justify-content: space-between;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 767px) {
  .pageArticles-detail__content-time {
    font-size: 14px;
    line-height: 22px;
  }
}
.pageArticles-detail__content-time {
  font-weight: bold;
}
.pageArticles-detail__content-time-read {
  color: rgb(40, 189.274611399, 255);
}
.pageArticles-detail__column {
  min-width: 400px;
  max-width: 400px;
  background: #f1f2f4;
  border-radius: 16px;
  padding: 20px;
  height: fit-content;
}
.pageArticles-detail__slider {
  position: relative;
}
.pageArticles-detail__slider-preview {
  position: absolute;
  width: 76px;
  height: 100%;
  top: 0;
  left: 0;
}
.pageArticles-detail__slider-preview-wrapper {
  overflow: hidden;
  height: calc(100% - 60px);
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-prev,
.pageArticles-detail__slider-preview-wrapper .swiper-button-next {
  border: 2px solid #f1f2f4;
  background: white;
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-prev:after,
.pageArticles-detail__slider-preview-wrapper .swiper-button-next:after {
  width: 12px;
  height: 8px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.51472 1L5.75736 5.24264L10 1' stroke='%232f3234' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  z-index: 3;
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-prev:hover,
.pageArticles-detail__slider-preview-wrapper .swiper-button-next:hover {
  background: #f1f2f4 !important;
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-prev.swiper-button-disabled,
.pageArticles-detail__slider-preview-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-prev {
  transform: translateY(0%) rotate(180deg);
  top: 18px;
  right: auto;
  left: 18px;
  z-index: 5;
}
.pageArticles-detail__slider-preview-wrapper .swiper-button-next {
  bottom: 0;
  top: auto;
  transform: translateY(0%);
  right: auto;
  left: 18px;
  z-index: 5;
}
.pageArticles-detail__slider-preview-wrapper .swiper-slide.swiper-slide-thumb-active .pageCatalog-productDetail__slider-preview-slide {
  border-color: #DA2C23;
}
.pageArticles-detail__slider-preview-slide {
  border: 2px solid #f1f2f4;
  border-radius: 20px;
  width: 76px;
  height: 76px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}
.pageArticles-detail__slider-preview-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pageArticles-detail__slider-preview-slide:hover {
  border-color: #0086c1;
}
.pageArticles-detail__slider-main {
  position: relative;
  width: 100%;
}
.pageArticles-detail__slider-main-wrapper {
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}
.pageArticles-detail__slider-main-wrapper .swiper-button-prev {
  top: 50%;
  right: auto;
  left: 10px;
  margin-top: -20px;
  z-index: 5;
}
.pageArticles-detail__slider-main-wrapper .swiper-button-next {
  top: 50%;
  transform: translateY(0%);
  right: 10px;
  margin-top: -20px;
  left: auto;
  z-index: 5;
}
.pageArticles-detail__slider-main-slide {
  position: relative;
  padding-top: 70%;
  width: 100%;
  background: white;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
}
.pageArticles-detail__slider-main-slide.video {
  z-index: 4;
}
.pageArticles-detail__slider-main-slide-source img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.pageArticles-detail__slider-main-slide-source-video {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pageArticles-detail__slider-main-slide-source-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.pageArticles-detail__slider-main-slide-content {
  display: inline-block;
  max-width: calc(100% - 170px);
  height: 40px;
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 10;
}
.pageArticles-detail__slider-main-slide-content-wrapper {
  width: 100%;
  background: rgba(47, 50, 52, 0.5);
  color: white;
  padding: 10px 25px 10px 50px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 20px;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pageArticles-detail__slider-main-slide-content-wrapper:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 15px;
  background-image: url("/res/icon/info-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pageArticles-detail__slider-main-slide-zoom {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 2px solid #f1f2f4;
  border-radius: 50%;
  background: white;
  padding: 8px;
  cursor: pointer;
}
.pageArticles-detail__slider-main-slide-zoom svg {
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
  fill: #0086c1;
  transition: 0.3s;
}
.pageArticles-detail__slider-main-slide-zoom:hover svg {
  fill: #0fa1ef;
}
.pageArticles-detail__author {
  display: flex;
  width: 100%;
  align-items: center;
  background: #e5f3f9;
  padding: 10px;
  border-radius: 8px;
  gap: 20px;
  margin-bottom: 10px;
}
.pageArticles-detail__author-img {
  display: block;
  min-width: 70px;
  max-width: 70px;
  width: 70px;
  height: 70px;
  border: 1px solid white;
  background: white;
  border-radius: 50%;
  overflow: hidden;
}
.pageArticles-detail__author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageArticles-detail__author-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #5f6877;
  transition: 0.3s;
}
.pageArticles-detail__author-description {
  font-size: 14px;
  line-height: 15px;
  color: #757b92;
  margin: 5px 0;
  transition: 0.3s;
}
.pageArticles-detail__author-staj {
  font-size: 14px;
  line-height: 15px;
  color: #757b92;
  margin-top: 5px;
  transition: 0.3s;
}
.pageArticles-detail__author:hover {
  background: #0086c1;
}
.pageArticles-detail__author:hover .pageArticles-detail__author-name {
  color: white;
}
.pageArticles-detail__author:hover .pageArticles-detail__author-description, .pageArticles-detail__author:hover .pageArticles-detail__author-staj {
  color: #e5f3f9;
}
.pageArticles-detail__nav-item {
  height: 25px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.pageArticles-detail__nav-item.is-expanded {
  height: auto;
}
.pageArticles-detail__nav-item.is-expanded > .pageArticles-detail__nav-dropdown:before {
  transform: rotate(-135deg);
  margin-top: -2px;
}
.pageArticles-detail__nav-item.is-active > .pageArticles-detail__nav-link {
  color: #0086c1;
}
.pageArticles-detail__nav-item.is-active > .pageArticles-detail__nav-link:hover {
  color: #0fa1ef;
}
.pageArticles-detail__nav-link {
  font-size: 18px;
  line-height: 25px;
  display: block;
  padding-right: 30px;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pageArticles-detail__nav-dropdown {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  right: 0;
  cursor: pointer;
}
.pageArticles-detail__nav-dropdown:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #5f6877;
  border-right: 1px solid #5f6877;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 7px;
  transition: 0.3s;
}
.pageArticles-detail__nav-dropdown:hover:before {
  border-color: #0fa1ef;
}
.pageArticles-detail__nav-section {
  margin-top: 7px;
  padding-left: 20px;
}
@media (max-width: 1200px) {
  .pageArticles-detail__wrapper {
    gap: 50px;
    flex-direction: column;
  }
  .pageArticles-detail__content {
    max-width: 100%;
  }
  .pageArticles-detail__column {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .pageArticles-detail__slider-main-slide-content {
    max-width: calc(100% - 20px);
    bottom: 10px;
    right: 10px;
  }
}

/*# sourceMappingURL=articles.css.map */
