/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- fade background ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
.index-widget-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  /* index widget header has line before */
  /* index widget header title */
  /* index widget header button wrapper */
  /* index widget header main btn */
}
.index-widget-header.has-line:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  border: 1px solid #f2f2f2;
}
.index-widget-header.has-line .index-widget-header__title {
  padding: 0 30px 0 15px;
  background: #fdfdfd;
}
.index-widget-header__title {
  position: relative;
  padding-right: 30px;
  font-size: 20px;
  font-weight: 800;
  color: #333;
  /* title before */
}
.index-widget-header__title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00278f;
}
.index-widget-header__button-wrapper {
  position: relative;
  padding-right: 15px;
  background: #fdfdfd;
}
.index-widget-header .main-btn {
  font-size: 15px;
}

/* index widget header */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  /* product card hover */
  /* product card img */
  /* product card title */
}
.product-card:hover {
  /* hover product card title */
}
.product-card:hover .product-card__title {
  color: #00278f;
}
.product-card:hover .product-card__img:before {
  opacity: 0.28;
}
.product-card__img {
  border-radius: 10px;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
}
.product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 26px;
  transition: all 300ms linear;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* product card */
.blog-card {
  /* blog card img wrapper */
  /* blog card img */
  /* blog card time */
  /* blog card title */
}
.blog-card__img-wrapper {
  position: relative;
  margin-bottom: 15px;
  /* img wrapper main btn */
}
.blog-card__img-wrapper .main-btn {
  position: absolute !important;
  bottom: -18px;
  left: 15px;
  border: none;
  box-shadow: 0 4px 9px -2px rgba(18, 18, 18, 0.2);
  background-color: #fdfdfd;
  /* main btn hover */
}
.blog-card__img-wrapper .main-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.blog-card__img {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  /* img hover */
}
.blog-card__img:hover:before {
  opacity: 0.28;
}
.blog-card__img img {
  width: 100%;
}
.blog-card__time {
  font-size: 13px;
  font-weight: 400;
  color: #f7b801;
  margin-bottom: 8px;
}
.blog-card__title {
  margin: 0;
  line-height: 22px;
}
.blog-card__title a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: all 300ms linear;
  width: 100%;
  height: 45px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* a tag hover */
}
.blog-card__title a:hover {
  color: #00278f;
}

/* blog card */

/*# sourceMappingURL=archives.css.map */
