@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.blog-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.blog-col:hover figure img {
  transform: scale(1.05);
}
.blog-col figure img {
  -o-object-position: top;
     object-position: top;
  transform-origin: top left;
}
.blog-col figcaption {
  padding: 0 1.5rem 2rem;
}
.blog-col figcaption p, .blog-col figcaption h6 {
  color: var(--white);
}
.blog-col figcaption h6 {
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-col figcaption p {
  margin-bottom: 0.8rem;
  font-size: 14px;
}

@media only screen and (max-width: 540px) {
  .blog-listing-secA {
    margin-top: calc(var(--headerfixed) + 50px);
    padding-top: 60px;
  }
}
.blog-listing-secA .content h1 {
  display: inline-block;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}
@media only screen and (max-width: 767px) {
  .blog-listing-secA .content h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-listing-secA .content h1 {
    font-size: 38px;
  }
}
.blog-listing-secA .content p {
  font-size: 18px;
  line-height: 20px;
  color: var(--text);
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .blog-listing-secA .content p {
    font-size: 16px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.blog-listing-secB {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 768px) {
  .blog-listing-secB {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 540px) {
  .blog-listing-secB {
    padding-bottom: 3rem;
  }
}

.banner.blog-detail-banner .bg {
  height: calc(100vh - var(--headerfixed));
}
@media only screen and (max-width: 768px) {
  .banner.blog-detail-banner .bg {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .banner.blog-detail-banner .bg {
    height: 50vh;
  }
}
.banner.blog-detail-banner .content {
  max-width: 640px;
}
@media only screen and (max-width: 991px) {
  .banner.blog-detail-banner .content {
    max-width: 567px;
  }
}
@media only screen and (max-width: 767px) {
  .banner.blog-detail-banner .content {
    max-width: 430px;
  }
}
.banner.blog-detail-banner .content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--white);
}
.banner.blog-detail-banner .content h1 {
  font-size: 40px;
  line-height: 1.1;
  text-transform: initial;
  letter-spacing: 0;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .banner.blog-detail-banner .content h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .banner.blog-detail-banner .content h1 {
    font-size: 24px;
    max-width: 300px;
  }
}
@media only screen and (max-width: 675px) {
  .banner.blog-detail-banner .content h1 {
    font-size: 22px;
  }
}
.banner.blog-detail-banner .share_btn {
  position: absolute;
  bottom: 12%;
  right: 4rem;
  z-index: 1;
}
@media only screen and (max-width: 675px) {
  .banner.blog-detail-banner .share_btn {
    right: 15px;
    bottom: 70%;
  }
}
@media only screen and (max-width: 675px) {
  .banner.blog-detail-banner .share_btn .share-btn-ico img, .banner.blog-detail-banner .share_btn .share-btn-ico svg {
    width: 25px;
  }
}
@media only screen and (max-width: 360px) {
  .banner.blog-detail-banner .share_btn .share-btn-ico img, .banner.blog-detail-banner .share_btn .share-btn-ico svg {
    width: 20px;
  }
}
.banner.blog-detail-banner .share_btn .side_ico-m {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 15px;
  flex-direction: column;
  border-radius: 5px;
  opacity: 0;
  transform: scale(0.75) translateY(21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transform-origin: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 675px) {
  .banner.blog-detail-banner .share_btn .side_ico-m {
    bottom: auto;
    top: 100%;
    transform-origin: top;
  }
}
.banner.blog-detail-banner .share_btn .side_ico-m.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.banner.blog-detail-banner .share_btn .side_ico-m li svg {
  fill: var(--white);
  width: 25px;
}
.banner.blog-detail-banner .share_btn .side_ico-m li svg:hover {
  fill: var(--primary);
}

.blog-detail-secA {
  background: url(../../images/vector/A-vector.svg) no-repeat;
  background-position: bottom right;
}
@media only screen and (max-width: 991px) {
  .blog-detail-secA {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail-secA {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-secA {
    padding: 2rem 0;
  }
}

.blog-detail-secB .heading h3 {
  color: var(--black);
  font-size: 36px;
  font-weight: 500;
}/*# sourceMappingURL=blog.css.map */