:root {
  --font-pri: "Roboto", sans-serif;
  --font-title: "Montserrat", sans-serif;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-18: 1.8rem;
  --pi-20: 2rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-18: 0.8rem;
    --pi-20: 1rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
  }
}
:root {
  --header-height: 12rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --header-height: 8rem;
  }
}
:root {
  --z-i-header: 100;
  --radius-circle: 50%;
  --radius-max: 999rem;
  --radius-xl: 2.4rem;
  --radius-l: 1.6rem;
  --radius: 1.2rem;
  --radius-m: 0.8rem;
  --radius-s: 0.4rem;
  --box-shadow-1: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.1);
  --box-shadow-2: 0.8rem -0.4rem 1.6rem 0 rgba(0, 0, 0, 0.35);
  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) saturate(100%) invert(10%) sepia(7%) saturate(22%) hue-rotate(91deg) brightness(100%) contrast(91%);
  --filter-pri: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(2288%) hue-rotate(197deg) brightness(93%) contrast(109%);
  --filter-sec: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(845%) hue-rotate(346deg) brightness(97%) contrast(107%);
  --container-padding: 1.6rem;
  --container-width: 124.8rem;
  --container-width-2: 163.2rem;
}

.ab-route {
  margin: 16rem 0rem 8rem;
}
@media screen and (max-width: 991px) {
  .ab-route {
    margin: 6rem 0rem;
  }
}
.ab-route {
  background-image: url("../images/about/bg.png");
  background-repeat: no-repeat;
  background-position: bottom 15% right;
  background-size: 50% auto;
}
@media screen and (max-width: 991px) {
  .ab-route {
    background-position: bottom -10% right;
    background-size: 80% auto;
  }
}
.ab-route_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 4rem;
}
.ab-route_heading {
  width: 100%;
  max-width: 49rem;
}
@media screen and (max-width: 991px) {
  .ab-route_heading {
    max-width: 100%;
  }
}
.ab-route_content {
  flex: 1;
  width: 100%;
  max-width: 62.6rem;
  min-width: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 991px) {
  .ab-route_content {
    flex: initial;
    max-width: 100%;
    margin: 0;
    gap: 2.4rem;
  }
}
.ab-route_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 1.2rem;
}
@media screen and (max-width: 991px) {
  .ab-route_list {
    gap: 2.4rem 1.2rem;
  }
}
.ab-route_item {
  width: calc(50% - 0.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .ab-route_item {
    text-align: left;
    gap: 0.8rem;
  }
}
.ab-route_title {
  color: #004594;
  font-weight: 500;
  line-height: 150%;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .ab-route_title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .ab-route_title {
    font-size: 1.7rem;
  }
}
.ab-route_desc {
  color: #000;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .ab-route_desc {
    font-size: 1.4rem;
  }
}
.ab-route_action .btn {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .ab-route_action .btn {
    margin-left: 0;
  }
}
.ab-route_truck {
  display: block;
  position: relative;
  aspect-ratio: 108.8/55;
  width: 100%;
  max-width: 90%;
  margin-top: -12%;
  margin-bottom: 8rem;
}
@media screen and (max-width: 991px) {
  .ab-route_truck {
    margin: 1.2rem 0 0;
  }
}
.ab-route_truck img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
}

.ab-rv {
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .ab-rv {
    margin: 6rem 0rem;
  }
}
.ab-rv .container {
  max-width: 163.2rem;
  padding: 0;
}
.ab-rv_list {
  --gap: 2.4rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  height: 80.1rem;
  padding: 0 1.6rem;
  overflow: hidden;
}
.ab-rv_list::before, .ab-rv_list::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 19%;
  pointer-events: none;
}
.ab-rv_list::before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.ab-rv_list::after {
  bottom: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 1200px) {
  .ab-rv_list {
    --gap: 1.6rem;
    height: 64rem;
  }
}
@media screen and (max-width: 576px) {
  .ab-rv_list {
    height: 40rem;
  }
}
.ab-rv_col {
  width: calc(25% - var(--gap) * 3 / 4);
}
@media screen and (max-width: 991px) {
  .ab-rv_col {
    width: calc(50% - var(--gap) / 2);
  }
  .ab-rv_col:nth-child(n+3) {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .ab-rv_col {
    width: 100%;
  }
  .ab-rv_col:nth-child(n+2) {
    display: none;
  }
}
.ab-rv_splide {
  height: 80.1rem;
}
@media screen and (max-width: 1200px) {
  .ab-rv_splide {
    height: 64rem;
  }
}
@media screen and (max-width: 576px) {
  .ab-rv_splide {
    height: 56rem;
  }
}
.ab-rv_splide .splide__track {
  height: 100%;
  overflow: visible;
}
.ab-rv_splide .splide__slide {
  display: flex;
  flex-direction: column;
}

.rv-item {
  padding: 2.4rem;
  background-color: white;
  border-radius: var(--radius-m);
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .rv-item {
    padding: 1.6rem;
  }
}
.rv-item_content {
  color: #242424;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .rv-item_content {
    font-size: 1.4rem;
  }
}
.rv-item_footer {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid rgba(36, 36, 36, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.rv-item_user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: calc(55.9866666667% - 0.6rem);
}
@media screen and (max-width: 1440px) {
  .rv-item_user {
    width: 100%;
  }
}
.rv-item_avatar {
  flex-shrink: 0;
  padding: 0.4rem;
  background-color: white;
  border: 0.1rem solid #ccc;
  border-radius: 50%;
  overflow: hidden;
  width: 4.8rem;
  height: 4.8rem;
  box-shadow: 0 4px 1px 0 rgba(0, 0, 0, 0), 0 3px 1px 0 rgba(0, 0, 0, 0.01), 0 2px 1px 0 rgba(0, 0, 0, 0.05), 0 1px 1px 0 rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-item_avatar img {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}
.rv-item_info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.rv-item_name {
  color: #242424;
  font-weight: 700;
  line-height: 110%;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .rv-item_name {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .rv-item_name {
    font-size: 1.5rem;
  }
}
.rv-item_pos {
  color: #136a5d;
  font-weight: 300;
  line-height: 130%;
  font-size: 1.4rem;
}
.rv-item_rating {
  display: block;
  aspect-ratio: 141/25;
  max-width: 14.1rem;
  position: relative;
  flex-shrink: 0;
  width: calc(44.0133333333% - 0.6rem);
}
@media screen and (max-width: 1440px) {
  .rv-item_rating {
    width: 100%;
  }
}
.rv-item_rating img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
}
.rv-item_media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  min-height: 30rem;
  border-radius: var(--radius-m);
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.12);
}
.rv-item_media.is-medium {
  aspect-ratio: 38.2/37.9;
  padding: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .rv-item_media.is-medium {
    padding: 1.6rem;
  }
}
.rv-item_media.is-large {
  aspect-ratio: 38.2/44.7;
  padding: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .rv-item_media.is-large {
    padding: 1.6rem;
  }
}
.rv-item_media.is-image {
  aspect-ratio: 382/235;
  max-width: 100%;
  min-height: initial;
}
.rv-item_media-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.rv-item_media-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(19, 106, 93, 0.1) 0%, rgba(19, 106, 93, 0.1) 100%);
}
.rv-item_media-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.rv-item_media-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.rv-item_media-number {
  color: #fff;
  font-weight: 900;
  line-height: 90%;
  font-size: 5.6rem;
}
@media only screen and (max-width: 1200px) {
  .rv-item_media-number {
    font-size: 5.1rem;
  }
}
@media only screen and (max-width: 800px) {
  .rv-item_media-number {
    font-size: 4rem;
  }
}
.rv-item_media-number .unit {
  font-size: 65%;
  vertical-align: super;
}
.rv-item_media-label {
  color: #fff;
  font-weight: 500;
  line-height: 150%;
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .rv-item_media-label {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .rv-item_media-label {
    font-size: 1.6rem;
  }
}
.rv-item_media-avatars {
  display: flex;
  align-items: center;
}
.rv-item_media-avatars img {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -1rem;
  border: 0.2rem solid white;
  border-radius: 50%;
}

@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .article:hover .img img, .article:focus-visible .img img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .article {
    gap: 1.6rem;
  }
}
.article-img .img {
  border-radius: 0.8rem;
  padding-top: 74.8717948718%;
}
@media screen and (max-width: 767px) {
  .article-content {
    gap: 1.2rem;
  }
}
.article-content_cate {
  display: flex;
  align-items: center;
}
.article-content_cate > * {
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5);
}
.article-content_cate > *:not(:last-child)::after {
  content: "|";
  margin: 0 0.4rem;
}
.article-content_title .title-24 {
  transition: 0.4s ease-in-out;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .article-content_title .title-24:hover, .article-content_title .title-24:focus-visible {
    color: #FE7A15;
  }
}

.service-box {
  position: relative;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .service-box:hover .service-img::before, .service-box:focus-visible .service-img::before {
    opacity: 1;
  }
  .service-box:hover .service-img .img img, .service-box:focus-visible .service-img .img img {
    transform: scale(1.05);
  }
  .service-box:hover .service-content > .btn, .service-box:focus-visible .service-content > .btn {
    opacity: 1;
  }
  .service-box:hover .service-content_link, .service-box:focus-visible .service-content_link {
    color: white;
  }
}

.service-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-m);
}
.service-img::before {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 1;
  transition: 0.4s ease-in-out;
  background: linear-gradient(0deg, rgba(36, 36, 36, 0.6) 0%, rgba(36, 36, 36, 0.6) 100%);
}
.service-img .img {
  padding-top: 110.7692307692%;
}

.service-content {
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  padding: 4rem 2.4rem;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .service-content {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  .service-content {
    padding: 1.6rem;
  }
}
@media screen and (min-width: 1201px) {
  .service-content > .btn {
    opacity: 0;
  }
}
.service-content_link {
  gap: 1.2rem;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .service-content_link {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .service-content_link {
    font-size: 1.7rem;
  }
}
.service-content_link {
  font-weight: 600;
  color: #FE7A15;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
}

.service {
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .service {
    margin: 6rem 0rem;
  }
}
.service-heading {
  text-align: center;
}
.service-heading .text-16 {
  margin: 0 auto;
  line-height: 150%;
  max-width: 65.6rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(2 * var(--pi-12));
  margin: 0 calc(-1 * var(--pi-12));
}
.service-item {
  width: 33.3333333333%;
  padding: 0 var(--pi-12);
}
@media screen and (max-width: 767px) {
  .service-item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .service-item {
    width: 100%;
  }
}

.ab-info {
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .ab-info {
    margin: 6rem 0rem;
  }
}
.ab-info_list {
  gap: 4.8rem;
}
.ab-info_item {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 4rem;
}
.ab-info_item:nth-child(even) {
  flex-direction: row-reverse;
}
.ab-info_gal {
  width: calc(54.935% - 2rem);
}
@media screen and (max-width: 991px) {
  .ab-info_gal {
    width: 100%;
    order: 1;
  }
}
.ab-info_img {
  position: relative;
  aspect-ratio: 648/486;
  max-width: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.ab-info_img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.ab-info_content {
  flex: 1;
  max-width: 100%;
  min-width: 0;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .ab-info_content {
    gap: 1.6rem;
  }
}
.ab-info_content > .text-16 {
  line-height: 150%;
}
.ab-info_number {
  flex-wrap: wrap;
  gap: 4rem 4.8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ab-info_number {
    gap: 2.4rem 4.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .ab-info_number .count {
    gap: 1.2rem;
  }
}
.ab-info_number .count-number {
  font-size: 8rem;
  font-weight: 600;
  color: #FE7A15;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .ab-info_number .count-number {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .ab-info_number .count-number {
    font-size: 4.8rem;
  }
}
.ab-info_number .count-number::after {
  content: "+";
  top: -1rem;
  font-size: 4.8rem;
  color: #0F00B8;
  position: absolute;
  left: calc(100% - 0.4rem);
}
@media screen and (max-width: 1200px) {
  .ab-info_number .count-number::after {
    left: 100%;
    font-size: 4rem;
  }
}
.ab-info_number .count-text {
  font-weight: 500;
  font-size: 3.1rem;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .ab-info_number .count-text {
    font-size: 2.4rem;
  }
}
.ab-info_check {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: #242424;
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .ab-info_check {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .ab-info_check {
    font-size: 1.6rem;
  }
}
.ab-info_check {
  font-weight: 400;
  line-height: 150%;
}
.ab-info_check strong {
  font-weight: 500;
}
.ab-info_check > * {
  padding-left: 3.2rem;
  position: relative;
}
.ab-info_check > *::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../images/about/ic_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.js-info-gal {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.js-info-gal .swiper-action {
  --pos: 4rem;
  position: absolute;
  bottom: var(--pos);
  right: var(--pos);
  left: var(--pos);
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .js-info-gal .swiper-action {
    --pos: 1.6rem;
  }
}

.process {
  position: relative;
  isolation: isolate;
  background-color: rgba(246, 246, 246, 0.8);
}
.process-bg {
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
}
.process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-pos {
  z-index: 5;
  position: relative;
  padding: 10rem 0rem 10rem;
}
@media screen and (max-width: 991px) {
  .process-pos {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .process-pos {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 400px) {
  .process-heading .title-32 {
    margin: 0 auto;
    max-width: 25rem;
  }
}
.process-tab .swiper {
  margin: 0 calc(-1 * var(--pi-20));
}
.process-tab .swiper-slide {
  width: fit-content;
  padding: 0 var(--pi-20);
}
.process-tab .swiper-slide.is-active .process-tab_content {
  background-color: #004594;
}
.process-tab .swiper-slide.is-active .process-tab_content > .text-16 {
  color: white;
}
.process-tab .swiper-slide.is-active .process-tab_content .number {
  background-color: #FE7A15;
}
.process-tab_content {
  gap: 0.8rem;
  border-radius: 4rem;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0.6rem 2.4rem 0.6rem 0.6rem;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .process-tab_content:hover, .process-tab_content:focus-visible {
    background-color: #004594;
  }
  .process-tab_content:hover > .text-16, .process-tab_content:focus-visible > .text-16 {
    color: white;
  }
  .process-tab_content:hover .number, .process-tab_content:focus-visible .number {
    background-color: #FE7A15;
  }
}
@media screen and (max-width: 576px) {
  .process-tab_content {
    padding: 0.6rem 1.6rem 0.6rem 0.6rem;
  }
}
.process-tab_content > .text-16 {
  transition: 0.4s ease-in-out;
  white-space: nowrap;
  color: rgba(51, 51, 51, 0.25);
}
.process-tab_content .number {
  width: 4rem;
  height: 4rem;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background-color: rgba(51, 51, 51, 0.25);
}
@media screen and (max-width: 576px) {
  .process-tab_content .number {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.process-tab_content .number .title-24 {
  color: white;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 576px) {
  .process-tab_content .number .title-24 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .process-box {
    display: flex;
    flex-direction: column-reverse;
  }
}
.process-img {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-m);
}
.process-img::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 1;
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.process-img .img {
  padding-top: 50.4807692308%;
}
.process-swiper {
  position: relative;
}
.process-swiper .swiper-navigation {
  z-index: 5;
  user-select: none;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: calc(100% - 8rem);
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .process-swiper .swiper-navigation {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 767px) {
  .process-swiper .swiper-navigation {
    display: none;
  }
}
.process-swiper .swiper-navigation > * {
  pointer-events: auto;
}
.process-swiper .swiper-pagination {
  position: static;
}
@media screen and (min-width: 768px) {
  .process-swiper .swiper-pagination {
    display: none;
  }
}
.process-swiper .swiper-pagination-bullet {
  background-color: #004594;
}
.process-content {
  z-index: 5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .process-content {
    left: 0;
    bottom: 0;
    padding: 4rem;
    position: absolute;
    color: white;
  }
}
@media screen and (max-width: 1200px) {
  .process-content {
    gap: 2.4rem;
    padding: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .process-content {
    gap: 1.6rem;
    padding: 1.6rem;
  }
}
.process-content > * {
  line-height: 150%;
}
@media screen and (min-width: 1201px) {
  .process-content > * {
    max-width: 78rem;
  }
}

.hab {
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .hab {
    margin: 6rem 0rem;
  }
}
.hab-row {
  align-items: center;
}
@media screen and (max-width: 991px) {
  .hab-col {
    width: 100%;
  }
}
.hab-img .img {
  border-radius: var(--radius-m);
  padding-top: 124.7863247863%;
}
.hab-content > .text-16 {
  line-height: 150%;
}
.hab-content .view-link {
  gap: 0.8rem;
  line-height: 140%;
  color: #FE7A15;
  position: relative;
  width: fit-content;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .hab-content .view-link:hover:after, .hab-content .view-link:focus-visible:after {
    left: 0;
    width: 100%;
  }
}
.hab-content .view-link:after {
  right: 0;
  width: 0;
  height: 0.1rem;
  bottom: -0.2rem;
  position: absolute;
  content: "";
  z-index: 1;
  transition: 0.4s ease-in-out;
  background-color: #FE7A15;
}
.hab-content .view-link img {
  object-fit: contain;
  width: 1.8rem;
  height: 1.8rem;
  filter: var(--filter-sec);
  transform: rotate(180deg);
}
.hab-content_inner {
  position: relative;
}
@media screen and (min-width: 992px) {
  .hab-content_inner {
    margin-left: -8rem;
  }
}
.hab-content_list {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(2 * var(--pi-12));
  margin: 0 calc(-1 * var(--pi-12));
}
.hab-content_item {
  width: 50%;
  padding: 0 var(--pi-12);
}
.hab-content_box {
  gap: 1.6rem;
  height: 100%;
  transition: 0.4s ease-in-out;
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  border-radius: var(--radius-m);
  background-color: white;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .hab-content_box {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .hab-content_box {
    padding: 1.2rem;
    flex-direction: column;
    align-items: initial;
    gap: 1.2rem;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .hab-content_box:hover, .hab-content_box:focus-visible {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
.hab-content_img {
  width: 5.5rem;
  flex-shrink: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  aspect-ratio: 55/83;
  background-color: #004594;
}
@media screen and (max-width: 576px) {
  .hab-content_img {
    width: 3.6rem;
  }
}
.hab-content_img img {
  object-fit: contain;
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 576px) {
  .hab-content_img img {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.hab-content_content .title-32 {
  color: #004594;
}

.hser {
  position: relative;
  padding: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .hser {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .hser {
    padding: 4rem 0rem;
  }
}
.hser::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 68.017%;
  position: absolute;
  content: "";
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../../assets/images/home/hser-img1.png");
}
.hser-heading {
  color: white;
}
@media screen and (max-width: 1200px) {
  .hser-heading {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .hser-heading {
    gap: 2.4rem;
  }
}
.hser-heading .text-16 {
  margin: 0 auto;
  line-height: 150%;
  max-width: 65.6rem;
  text-align: center;
}
.hser-heading .text-20 {
  color: white;
}
.hser-heading .text-20::before {
  background-color: white;
}
.hser-heading .title-32 {
  color: white;
}
@media screen and (max-width: 400px) {
  .hser-heading .title-32 {
    margin: 0 auto;
    max-width: 26rem;
  }
}
.hser-swiper {
  position: relative;
}
.hser-swiper .swiper {
  margin: 0 calc(-1 * var(--pi-16));
}
@media screen and (min-width: 1201px) {
  .hser-swiper .swiper {
    overflow: visible;
  }
}
.hser-swiper .swiper-slide {
  width: 33.3333333333%;
  padding: 0 var(--pi-16);
}
@media screen and (max-width: 767px) {
  .hser-swiper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .hser-swiper .swiper-slide {
    width: 83.3333333333%;
  }
}
.hser-swiper .swiper-pagination {
  position: static;
  margin-top: 4rem;
}
.hser-swiper .swiper-pagination-progressbar-fill {
  background-color: #FE7A15;
}

.why {
  position: relative;
  isolation: isolate;
  background-image: url("../images/home/bg.png");
  background-repeat: no-repeat;
  background-size: 65% auto;
  background-position: bottom 100% right;
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .why {
    margin: 6rem 0rem;
  }
}
.why {
  margin-bottom: 0;
  padding: 20rem 0rem 20rem;
}
@media screen and (max-width: 991px) {
  .why {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .why {
    padding: 4rem 0rem;
  }
}
.why {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .why {
    background-position: bottom -10% right;
    background-size: 80% auto;
  }
}
@media screen and (max-width: 991px) {
  .why-col {
    width: 100%;
  }
}
.why-heading {
  gap: 2.4rem;
  display: flex;
}
@media screen and (min-width: 768px) {
  .why-heading {
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .why-heading {
    text-align: center;
    flex-direction: column;
  }
  .why-heading .text-20 {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .why-heading .title-w-desc {
    max-width: 50rem;
  }
}
@media screen and (min-width: 768px) {
  .why-heading .text-16 {
    max-width: 51rem;
  }
}
.why-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  row-gap: calc(2 * var(--pi-20));
  margin: 0 calc(-1 * var(--pi-20));
}
.why-list::before, .why-list::after {
  position: absolute;
  content: "";
  z-index: -1;
  pointer-events: none;
  background-color: rgba(36, 36, 36, 0.2);
}
.why-list::before {
  top: 50%;
  left: 50%;
  height: 100%;
  width: 0.1rem;
  transform: translate(-50%, -50%);
}
.why-list:after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.1rem;
  transform: translateY(-50%);
}
.why-item {
  width: 50%;
  padding: 0 var(--pi-20);
}
@media screen and (max-width: 576px) {
  .why-box {
    gap: 1.2rem;
  }
}
.why-img {
  margin: 0 auto;
  user-select: none;
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 1200px) {
  .why-img {
    width: 6.4rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 576px) {
  .why-img {
    width: 4rem;
    height: 4rem;
  }
}
.why-content {
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .why-content .text-20 {
    font-size: 1.4rem;
  }
}
.why-bg {
  width: 100%;
  max-width: 96.8rem;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .why-bg {
    top: 25%;
    right: 0;
    position: absolute;
  }
}
@media screen and (max-width: 1580px) {
  .why-bg {
    max-width: 78.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .why-bg {
    margin: 0 auto;
    max-width: 60.8rem;
  }
}
.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home .ab-info {
  margin-top: 0;
}
.p-home .hero-content {
  padding: 4rem;
  max-width: 70rem;
  border-radius: 0.4rem;
  background-color: rgba(36, 36, 36, 0.2);
}
@media screen and (max-width: 576px) {
  .p-home .hero-content {
    padding: 2.4rem;
  }
}

.ab-rv {
  margin: 8rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .ab-rv {
    margin: 6rem 0rem;
  }
}

.blog {
  margin: 16rem 0rem 16rem;
}
@media screen and (max-width: 991px) {
  .blog {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 991px) {
  .blog-heading, .blog-wrap {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .blog-heading, .blog-wrap {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 420px) {
  .blog-heading .title-32 {
    margin: 0 auto;
    max-width: 28rem;
  }
}
.blog-tab {
  margin: 0 auto;
  max-width: 100%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
}
.blog-tab_item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.blog-tab_item .text-20 {
  line-height: 150%;
  transition: 0.4s ease-in-out;
  color: rgba(36, 36, 36, 0.5);
}
@media screen and (max-width: 576px) {
  .blog-tab_item .text-20 {
    font-size: 1.4rem;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .blog-tab_item:hover .text-20, .blog-tab_item:focus-visible .text-20 {
    color: #FE7A15;
  }
}
.blog-tab_item.is-active {
  pointer-events: none;
}
.blog-tab_item.is-active .text-20 {
  font-weight: 500;
  color: #FE7A15;
}
.blog-tab_item:not(:last-child):after {
  content: "|";
  margin: 0 1.6rem;
  display: inline-block;
  color: rgba(36, 36, 36, 0.5);
}
@media screen and (max-width: 576px) {
  .blog-tab_item:not(:last-child):after {
    margin: 0 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  .blog-inner {
    padding-top: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .blog-inner {
    padding-top: 2.4rem;
  }
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4rem;
  margin: 0 calc(-1 * var(--pi-12));
}
@media screen and (max-width: 1200px) {
  .blog-list {
    row-gap: 2.4rem;
  }
}
.blog-item {
  width: 33.3333333333%;
  padding: 0 var(--pi-12);
}
@media screen and (max-width: 767px) {
  .blog-item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .blog-item {
    width: 100%;
  }
}

body:not(.p-pricing) .blog-inner {
  padding-top: 4rem;
  border-top: 0.1rem solid rgba(36, 36, 36, 0.2);
}

.p-blog .hero-content {
  gap: 1.2rem;
}
.p-blog .hero-content_time {
  display: none;
}
/*# sourceMappingURL=page-home.css.map */
