.archive__header {
  padding-bottom: 10rem;
  background-image: url("../../image/bg/blog-bg.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.archive__title {
  margin-bottom: 5rem;
}

.archive .sticky-post {
  position: relative;
  padding-bottom: 10rem;
}

.archive .sticky-post:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(97deg, #F8F8F8 52%, rgba(248, 248, 248, 0.96) 62.12%, rgba(248, 248, 248, 0) 82.78%);
}

.archive .sticky-post__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.archive .sticky-post__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.archive .sticky-post__title {
  position: relative;
  z-index: 5;
  margin-bottom: 36px;
  max-width: 836px;
  line-height: 1.1;
  color: #333439;
}

.archive .sticky-post__excerpt {
  margin-bottom: 5.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  color: rgba(0, 0, 0, 0.8);
}

.archive .sticky-post__link {
  z-index: 5;
}

.archive__wrapper {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 8.3rem;
  grid-row-gap: 5.6rem;
  padding-bottom: 5.6rem;
}

.archive .tease {
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 408px;
  min-width: 222px;
  background-color: #F4F6F9;
  border-radius: 6px;
}

.archive .tease__img {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 6px 6px 0 0;
}

.archive .tease__inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 2rem 2.6rem 4rem;
}

.archive .tease h5.tease__title {
  height: 56px;
  margin-bottom: 30px;
  font-family: "Roboto", "sans-serif";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #333439;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.archive .tease__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
  color: rgba(51, 52, 57, 0.8);
}

.archive .tease__link {
  display: block;
  margin-top: auto;
  font-family: "Roboto", "sans-serif";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2EA4E0;
}

.archive .tease__link:hover {
  color: #379563;
}

.archive .tease:hover {
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -webkit-box-shadow: -8px 9px 19px 0px rgba(117, 122, 145, 0.25);
  box-shadow: -8px 9px 19px 0px rgba(117, 122, 145, 0.25);
}

.archive .pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.archive .pagination__prev,
.archive .pagination__next {
  line-height: 0;
}

.archive .pagination__prev a,
.archive .pagination__prev button,
.archive .pagination__next a,
.archive .pagination__next button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
}

.archive .pagination__prev a > i,
.archive .pagination__prev button > i,
.archive .pagination__next a > i,
.archive .pagination__next button > i {
  display: block;
  line-height: 0;
}

.archive .pagination__prev a:hover,
.archive .pagination__next a:hover {
  background-color: #F4F6F9;
}

.archive .pagination__item span,
.archive .pagination__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 43px;
  height: 43px;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
  font-size: 30px;
  line-height: 0;
  color: #333439;
  background-color: transparent;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
}

.archive .pagination__item a:hover {
  color: #333439;
  background-color: #F4F6F9;
  border-color: #AAAAAA;
}

.archive .pagination__item.current span {
  color: #FFF;
  background-color: #2EA4E0;
  border-color: #2EA4E0;
}

.post-type-archive-service .archive__header {
  padding-bottom: 7rem;
  background-color: unset;
}

.post-type-archive-service .archive__title {
  margin-bottom: unset;
  text-align: left;
  color: #333439;
}

.post-type-archive-service .archive__wrapper {
  padding-top: unset;
}

.post-type-archive-service .archive__list {
  grid-row-gap: 4.8rem;
  padding-bottom: unset;
}

.post-type-archive-service .tease-service {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  max-width: 408px;
  min-width: 222px;
  background-color: #FFF;
  -webkit-box-shadow: -8px 9px 19px 0px rgba(117, 122, 145, 0.25);
  box-shadow: -8px 9px 19px 0px rgba(117, 122, 145, 0.25);
  border-radius: 20px;
}

.post-type-archive-service .tease-service__img {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 20px 20px 0 0;
}

.post-type-archive-service .tease-service__title {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 25px 20px;
  font-family: "Roboto", "sans-serif";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #515258;
  background-color: #379563;
}

.post-type-archive-service .tease-service__title > span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.post-type-archive-service .tease-service:hover {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .archive__title {
    text-align: center;
    color: #333439;
  }
}

@media (max-width: 767.98px) {
  .archive__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive .tease h5.tease__title {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .archive__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
/*# sourceMappingURL=maps/archive.css.map */
