/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
/** keyframe */
.home-slider {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 64rem) {
  .home-slider {
    padding-bottom: 6rem;
  }
}
.home-slider .wrapper .cell.cell-img {
  flex: 0 0 42%;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .wrapper .cell.cell-img {
    flex: 0 0 100%;
    width: 100%;
  }
}
.home-slider .wrapper .cell.cell-content {
  flex: 0 0 58%;
  padding-right: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .wrapper .cell.cell-content {
    flex: 0 0 100%;
    width: 100%;
  }
}
.home-slider .wrapper .cell.cell-content .title {
  margin-bottom: 30px;
  line-height: 1.1;
}
.home-slider .wrapper .cell.cell-content .title {
  font-size: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content .title {
    font-size: 3.5rem;
  }
}
.home-slider .wrapper .cell.cell-content .title span {
  display: block;
}

.home-content {
  padding-bottom: 0;
}
.home-content .wrapper {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 47.99875rem) {
  .home-content .wrapper {
    flex-direction: column;
  }
}
.home-content .wrapper .cell {
  flex: 0 0 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .home-content .wrapper .cell {
    flex: 0 0 100%;
  }
}
.home-content .wrapper .cell.cell-img {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.home-content .wrapper .cell.cell-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.home-content .wrapper .cell.cell-img img.active {
  opacity: 1;
  position: relative;
}
.home-content .wrapper .cell.cell-content .scroll-area .content-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
.home-content .wrapper .cell.cell-content .scroll-area .content-block:last-child {
  margin-bottom: 0;
}
.home-content .wrapper .cell.cell-content .scroll-area .content-block .mobile-only {
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  .home-content .wrapper .cell.cell-content .scroll-area .content-block .mobile-only {
    display: block;
    margin-bottom: 20px;
  }
  .home-content .wrapper .cell.cell-content .scroll-area .content-block .mobile-only img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.home-content .wrapper .cell.cell-content .content {
  font-family: "Telegraf Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
}
.home-content .wrapper .cell.cell-content .content {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  .home-content .wrapper .cell.cell-content .content {
    font-size: 1.5rem;
  }
}
.home-content .wrapper .cell.cell-content .content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.home-content .wrapper .cell.cell-content .content ul li {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  line-height: 1.5;
  margin-bottom: 15px !important;
  font-weight: 400 !important;
}
.home-content .wrapper .cell.cell-content .content ul li {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .home-content .wrapper .cell.cell-content .content ul li {
    font-size: 1.25rem;
  }
}
.home-content .wrapper .cell.cell-content .content ul li:last-child {
  margin-bottom: 0;
}
.home-content .wrapper .cell.cell-content .content ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 700;
  display: inline-block;
  padding-right: 20px;
  color: #00A843;
  animation: pointRight 1s infinite ease-in-out;
}
@keyframes pointRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .home-content .desktop-only {
    display: none;
  }
}
.home-content .mobile-only {
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  .home-content .mobile-only {
    display: block;
  }
}

.home-posts {
  background-color: #F9F9F9;
}
.home-posts .wrapper {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  .home-posts .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .home-posts .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-posts .wrapper .item {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-posts .wrapper .item:hover .cover .scale::before {
  opacity: 1;
  visibility: visible;
}
.home-posts .wrapper .item .cover {
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.home-posts .wrapper .item .cover .scale::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.home-posts .wrapper .item .cover .link-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.home-posts .wrapper .item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.home-posts .wrapper .item .content {
  padding: 24px;
}
@media only screen and (max-width: 39.99875rem) {
  .home-posts .wrapper .item .content {
    padding: 16px;
  }
}
.home-posts .wrapper .item .content .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.home-posts .wrapper .item .content .tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: #00A843;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 39.99875rem) {
  .home-posts .wrapper .item .content .tag {
    gap: 10px;
  }
}
.home-posts .wrapper .item .content .title {
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.home-posts .wrapper .item .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .home-posts .wrapper .item .content .title {
    font-size: 1.125rem;
  }
}
.home-posts .wrapper .item .content .title a {
  line-height: 1.4;
}
.home-posts .wrapper .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .home-posts .wrapper .item .content .title a {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.home-posts .wrapper .item .content .title a:hover {
  color: #08292F;
}
.home-posts .wrapper .item .content .author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-posts .wrapper .item .content .author-info .avatar img {
  border-radius: 50%;
}
.home-posts .wrapper .item .content .author-info .name {
  font-weight: 700;
}
.home-posts .wrapper .item .content .author-info .name {
  font-size: 14px;
}
.home-posts .wrapper .item .content .excerpt {
  margin-top: 12px;
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}
.home-posts .wrapper .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .home-posts .wrapper .item .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}