:root {
  /* Typography */
  --font-pri: "Proxima Nova", sans-serif;
  /* Color Palette */
  --color-pri: #1d90c9;
  --color-sec: #001221;
  --color-third: #3b4044;
  --color-text: #888888;
  --color-text-2: #005491;
  --color-white: #fff;
  --color-black: #000;
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
  --z-i-header: 100;
}

.article-item {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--article-item-gap, 1.6rem);
}
@media screen and (max-width: 576px) {
  .article-item {
    gap: 0.8rem;
  }
}

.article-img {
  display: block;
  aspect-ratio: 28/20;
  max-width: 100%;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .article-img:hover img, .article-img:focus-visible img {
    transform: scale(1.05);
  }
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-content {
  position: relative;
  padding: 0;
}

.article-title {
  width: fit-content;
  font-family: var(--font-pri);
  color: var(--color-sec);
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .article-title {
    font-size: 1.6rem;
  }
}
.article-title {
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .article-title br {
    display: none;
  }
}
.article-title > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: color 0.4s;
}
@media screen and (min-width: 1200px) {
  .article-title > *:hover, .article-title > *:focus-visible {
    color: var(--color-pri);
  }
}

.article-desc {
  color: var(--color-text);
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .article-desc {
    font-size: 1.4rem;
  }
}
.article-desc {
  line-height: 1.5;
  margin-top: 1.6rem;
}

.look-box {
  width: 100%;
  height: 100%;
  background: #f9fafb;
  border-radius: 1.6rem;
  overflow: hidden;
  text-align: center;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2.4rem;
}
.look-box .article-desc {
  margin-top: 0;
}
.look-box .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .look-box .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .look-box .article-title {
    font-size: 1.8rem;
  }
}
.look-box .article-title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-pri);
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  .look-box {
    padding: 2.4rem 1.6rem;
    row-gap: 1.6rem;
  }
}
@media screen and (max-width: 575px) {
  .look-box {
    padding: 1.6rem 0.8rem;
  }
}

.look-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
  --pad: 0.8rem;
  margin: 10rem 0rem 10rem;
}
@media screen and (max-width: 992px) {
  .look-list {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .look-list {
    margin: 4rem 0rem;
  }
}
.look-list {
  margin-right: calc(-1 * var(--pad));
  margin-left: calc(-1 * var(--pad));
  justify-content: center;
}

.look-item {
  width: 33.3333333333%;
  padding: 0 var(--pad);
}
.look-item .look-box {
  row-gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .look-item .look-box {
    padding: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .look-item .look-box {
    padding: 1.6rem;
  }
}
.look-item > img {
  width: 6.4rem;
  height: auto;
}
.look-item .article-title {
  text-decoration: unset;
}
.look-item .article-desc {
  color: #001221;
}
.look-item:nth-of-type(3n + 1) .article-title {
  color: #005491;
}
.look-item:nth-of-type(3n + 2) .article-title {
  color: #1d90c9;
}
.look-item:nth-of-type(3n + 3) .article-title {
  color: #003866;
}
@media screen and (max-width: 768px) {
  .look-item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .look-item {
    width: 100%;
  }
}

.offer {
  overflow: hidden;
}
.offer-list {
  margin-top: 4rem;
  margin-bottom: 0;
}
.offer-list .look-item {
  width: 25%;
}
.offer-list .look-item .article-title {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .offer-list .look-item .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .offer-list .look-item .article-title {
    font-size: 1.6rem;
  }
}
.offer-list .look-item .article-title {
  color: var(--color-sec);
}
.offer-list .look-item .article-desc {
  color: var(--color-text);
}
.offer-list .look-item > img {
  width: 3.2rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .offer-list .look-item {
    width: 50%;
  }
}
.offer-list .look-box {
  text-align: left;
  align-items: start;
  row-gap: 3.2rem;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .offer-list .look-box {
    row-gap: 2.4rem;
  }
}
.offer-txt {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}

.look-wrap {
  overflow: hidden;
  padding-bottom: 0;
}
.look-wrap .look-list {
  margin: 0;
}

.customer {
  position: relative;
}
.customer-heading {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .customer-heading {
    row-gap: 0.8rem;
  }
}
.customer-heading .title-64 {
  line-height: normal;
}
.customer-heading .title-64 span:first-child {
  color: #59a15f;
}
.customer-heading .title-64 span:last-child {
  color: #a9d433;
}
.customer-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 0.1rem solid #d9d9d9;
}
.customer-item {
  width: 20%;
  border-right: 0.1rem solid #d9d9d9;
  border-bottom: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 1200px) {
  .customer-item {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .customer-item {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 576px) {
  .customer-item {
    width: 50%;
  }
}
.customer-img {
  user-select: none;
  position: relative;
  transition: 0.4s ease;
}
@media screen and (min-width: 1201px) {
  .customer-img:hover {
    background-color: white;
    box-shadow: 0 10rem 20rem 0 rgba(52, 64, 84, 0.18);
  }
  .customer-img:hover .img {
    filter: unset;
  }
}
.customer-img .img {
  width: 100%;
  height: 18rem;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1201px) {
  .customer-img .img {
    filter: grayscale(1);
  }
}
@media screen and (max-width: 1200px) {
  .customer-img .img {
    height: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .customer-img .img {
    height: 10rem;
  }
}
.customer-img .img img {
  height: 9rem;
  margin: 0 auto;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .customer-img .img img {
    height: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .customer-img .img img {
    height: 4.2rem;
  }
}
.customer .splide.js-customer1 {
  border-top: 0.1rem solid #d9d9d9;
}
.customer .splide__slide {
  width: 20%;
  border-right: 0.1rem solid #d9d9d9;
  border-bottom: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 1200px) {
  .customer .splide__slide {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .customer .splide__slide {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 576px) {
  .customer .splide__slide {
    width: 50%;
  }
}

.m-post {
  margin: 5rem 0rem 5rem;
}
@media screen and (max-width: 992px) {
  .m-post {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post {
    margin: 4rem 0rem;
  }
}
.m-post_grid {
  --col-gap: 3.2rem;
  --row-gap: 2.4rem;
  display: grid;
  grid-template-columns: 0.7fr 0.5fr;
  gap: var(--row-gap) var(--col-gap);
  margin-top: 4rem;
}
@media screen and (max-width: 992px) {
  .m-post_grid {
    --col-gap: 1.6rem;
    --row-gap: 1.6rem;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .m-post_grid {
    margin-top: 2.4rem;
  }
}
.m-post_grid .m-post_item {
  grid-column: span 1;
  grid-row: span 1;
  width: 100%;
}
.m-post_grid .m-post_item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 4;
}
.m-post_grid .m-post_item:nth-child(1) .article-img {
  aspect-ratio: 69.5/50;
}
.m-post_grid .m-post_item:nth-child(1) .article-desc {
  display: -webkit-box;
}
.m-post_grid .m-post_item:nth-child(1) .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_grid .m-post_item:nth-child(1) .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_grid .m-post_item:nth-child(1) .article-title {
    font-size: 1.8rem;
  }
}
.m-post_grid .m-post_item:nth-child(1) .article-title {
  letter-spacing: -0.048rem;
}
.m-post_grid .m-post_item:not(:first-child) .article-item {
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .m-post_grid .m-post_item:not(:first-child) .article-item {
    gap: 1.2rem;
  }
}
.m-post_grid .m-post_item:not(:first-child) .article-content {
  flex: 1;
}
.m-post_grid .m-post_item:not(:first-child) .article-title > * {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1199.98px) {
  .m-post_grid .m-post_item:not(:first-child) .article-tag {
    margin-bottom: 0.8rem;
  }
}
.m-post_grid .m-post_item:not(:first-child) .article-img {
  flex-shrink: 0;
  aspect-ratio: 23.45/14.45;
  max-width: 23.45rem;
}
@media screen and (max-width: 1199.98px) {
  .m-post_grid .m-post_item:not(:first-child) .article-img {
    max-width: 18rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post_grid .m-post_item:not(:first-child) .article-img {
    max-width: 12rem;
  }
}
.m-post_list {
  margin-top: 5rem;
  --col-gap: 3.2rem;
  --row-gap: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--row-gap) var(--col-gap);
}
@media screen and (max-width: 1199px) {
  .m-post_list {
    --col-gap: 1.6rem;
    --row-gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post_list {
    --col-gap: 1.6rem;
    --row-gap: 1.6rem;
    margin-top: 2.4rem;
  }
}
.m-post_item {
  width: calc(25% - 0.75 * var(--col-gap));
}
@media screen and (max-width: 992px) {
  .m-post_item {
    width: calc(33.3333333333% - 0.6666666667 * var(--col-gap));
  }
}
@media screen and (max-width: 640px) {
  .m-post_item {
    width: calc(50% - var(--col-gap) / 2);
  }
}
.m-post_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .m-post_inner {
    gap: 2.4rem;
  }
}
.m-post_left {
  width: calc(25% - 3.2rem);
  min-width: 26rem;
}
@media screen and (max-width: 768px) {
  .m-post_left {
    width: 100%;
    min-width: unset;
    order: 1;
  }
}
.m-post_right {
  flex: 1;
  max-width: 100%;
}
.m-post_right .js-has_viewmore {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .m-post_right .js-has_viewmore {
    margin-top: 4rem;
  }
}
.m-post_right .js-has_viewmore .mona-content h2,
.m-post_right .js-has_viewmore .mona-content h3,
.m-post_right .js-has_viewmore .mona-content h4,
.m-post_right .js-has_viewmore .mona-content h5,
.m-post_right .js-has_viewmore .mona-content h6 {
  color: var(--color-pri);
}
.m-post_right .js-has_viewmore .mona-content h2 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_right .js-has_viewmore .mona-content h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_right .js-has_viewmore .mona-content h2 {
    font-size: 2.2rem;
  }
}
.m-post_sticky {
  position: sticky;
  top: 10rem;
}
@media screen and (max-width: 768px) {
  .m-post_sticky {
    position: initial;
  }
}
.m-post_sticky .product-filter_title {
  padding-right: 2.4rem;
  position: relative;
  cursor: pointer;
}
.m-post_sticky .product-filter_title::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../../assets/images/common/icon_dropdown_pri.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}
@media screen and (max-width: 576px) {
  .m-post_sticky .product-filter_title::before {
    width: 1.7rem;
    height: 1.7rem;
    top: 0.5rem;
  }
}
.m-post_sticky .product-filter_title.is-active::before {
  transform: rotate(180deg);
}
.m-post_category {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .m-post_category {
    gap: 1.6rem;
  }
}
.m-post_category .cate-tt {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_category .cate-tt {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_category .cate-tt {
    font-size: 1.8rem;
  }
}
.m-post_category .cate-tt {
  font-weight: 600;
  line-height: 133.333%;
}
.m-post_category .menu-list {
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
  align-items: initial;
}
@media screen and (max-width: 768px) {
  .m-post_category .menu-list {
    gap: 1.2rem;
  }
}
.m-post_category .menu-item {
  line-height: 150%;
  font-weight: 400;
  color: #151f12 !important;
  transition: none;
}
.m-post_category .menu-item::before {
  content: none;
}
.m-post_category .menu-item.current-menu-item .menu-link {
  padding-left: 2.4rem;
  color: var(--color-pri);
  font-weight: 600;
}
.m-post_category .menu-item.current-menu-item .menu-link::before {
  opacity: 1;
  visibility: visible;
}
.m-post_category .menu-link {
  width: fit-content;
  display: flex;
  padding: 0;
  position: relative;
  transition: 0.4s;
}
.m-post_category .menu-link::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0rem;
  width: 1.6rem;
  height: 0.2rem;
  background-color: var(--color-pri);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s 0.1s;
}
@media screen and (max-width: 800px) {
  .m-post_category .menu-link::before {
    height: 0.1rem;
    top: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .m-post_category .menu-link:hover, .m-post_category .menu-link:focus-visible {
    color: var(--color-pri);
    padding-left: 2.4rem;
  }
  .m-post_category .menu-link:hover::before, .m-post_category .menu-link:focus-visible::before {
    opacity: 1;
    visibility: visible;
  }
}

.post {
  padding: 4rem 0rem 8rem;
}
@media screen and (max-width: 1200px) {
  .post {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .post {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .post {
    padding: 4rem 0rem;
  }
}
.post .tt-sub {
  text-transform: initial;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 992px) {
  .post-list {
    gap: 1.6rem;
  }
}
.post-list > * {
  width: calc(33.3333333333% - 2.1333333333rem);
}
@media screen and (max-width: 992px) {
  .post-list > * {
    width: calc(50% - 0.8rem);
  }
}
@media screen and (max-width: 576px) {
  .post-list > * {
    width: 100%;
  }
}
@media screen and (min-width: 576.02px) {
  .post-action {
    margin-top: -2.4rem;
  }
}

.postdt {
  padding: 12rem 0rem 5rem;
}
@media screen and (max-width: 1200px) {
  .postdt {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .postdt {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .postdt {
    padding: 4rem 0rem;
  }
}
.postdt-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: space-between;
}
.postdt-left {
  flex: 1;
  max-width: 82.7rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 1350.02px) {
  .postdt-left {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .postdt-left {
    max-width: 100%;
    gap: 2.4rem;
  }
}
.postdt-heading {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  --tt-main-clr: var(--color-text-2);
  --bd-clr: var(--color-text-2);
}
@media screen and (max-width: 768px) {
  .postdt-heading {
    gap: 0.8rem;
  }
}
.postdt-right {
  width: 31rem;
}
@media screen and (max-width: 768px) {
  .postdt-right {
    width: 100%;
  }
}
.postdt-sticky {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .postdt-sticky {
    gap: 4rem;
  }
}
.postdt-subtitle {
  color: var(--color-text-2);
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}
.postdt-related, .postdt-service {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .postdt-related, .postdt-service {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .postdt-related, .postdt-service {
    gap: 1.6rem;
  }
}
.postdt-service_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .postdt-service_list {
    gap: 1.6rem;
  }
}
.postdt-related_list {
  display: flex;
  flex-direction: column;
}
.postdt-related_list > *:not(:first-child) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 576px) {
  .postdt-related_list > *:not(:first-child) {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
}
.postdt-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 3.2rem;
  justify-content: center;
}
.postdt-info_item,
.postdt-info > * {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.4s;
}
.postdt-info_item img,
.postdt-info > * img {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .postdt-info_item img,
  .postdt-info > * img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .postdt-info a:hover, .postdt-info a:focus-visible {
    color: var(--color-pri);
  }
}
.postdt-info_item + .postdt-info_item,
.postdt-info > *:not(:first-child) {
  position: relative;
}
.postdt-info_item + .postdt-info_item::before,
.postdt-info > *:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.6rem;
  background-color: var(--color-text);
}
.postdt-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.postdt-tag > * > * {
  display: block;
  padding: 0.25rem 0.7rem;
  border-radius: 999rem;
  border: 0.5px solid var(--color-text);
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.4s, background-color 0.4s;
}
@media screen and (min-width: 1200px) {
  .postdt-tag > * > *:hover {
    color: #fff;
    background-color: var(--color-text);
  }
}
.postdt-share {
  margin-top: 6.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .postdt-share {
    gap: 0.8rem;
    margin-top: 2.4rem;
  }
}
.postdt-share > span {
  color: #151f12;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .postdt-share > span {
    font-size: 1.4rem;
  }
}
.postdt-share > span {
  font-weight: 600;
  line-height: 125%;
}
.postdt-share_list {
  display: flex;
  gap: 0.8rem;
}
.postdt-share_list > * > * {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.postdt-share_list > * > *:hover {
  transform: translateY(-0.5rem);
}
.postdt-share_list > * > * > * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.postdt-content {
  padding-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .postdt-content {
    padding-bottom: 2.4rem;
  }
}
.postdt-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-image: linear-gradient(to right, rgba(32, 32, 32, 0) 0%, rgb(32, 32, 32) 50%, rgba(32, 32, 32, 0) 100%);
}
.postdt-content_inner {
  max-width: 100.8rem;
  margin: 0 auto;
}
.postdt-btn {
  margin-top: 2.4rem;
  column-gap: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.postdt-btn .link {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .postdt-btn .link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .postdt-btn .link {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .postdt-btn .link {
    font-size: 1.4rem;
  }
}
.postdt-btn .link {
  font-weight: 600;
  line-height: 133%;
  color: var(--color-pri);
  column-gap: 0.8rem;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1201px) {
  .postdt-btn .link:hover {
    color: var(--color-text);
    text-decoration: underline;
  }
}
.postdt-btn .link img {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}

.m-related {
  padding: 4rem 0rem 8rem;
}
@media screen and (max-width: 1200px) {
  .m-related {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .m-related {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .m-related {
    padding: 4rem 0rem;
  }
}
.m-related .tt-main {
  text-align: center;
}
/*# sourceMappingURL=services.css.map */
