@charset "utf-8";

.inner_container {
  max-width: 100%;
}

.service_page {
  color: #111;
}

.service_hero {
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 110px 40px 0;
  text-align: center;
  box-sizing: border-box;
}

.service_eyebrow {
  margin: 0 0 18px;
  color: #a98c48;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service_hero h1 {
  margin: 0;
  color: #111;
  font-size: 82px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.service_hero p:not(.service_eyebrow) {
  max-width: 860px;
  margin: 32px auto 0;
  color: #555;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.78;
  word-break: keep-all;
}

.service_layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 96px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 48px 160px;
  box-sizing: border-box;
}

.service_side {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 42px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

.service_side strong {
  display: none;
}

.service_side_nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service_side_nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 64px 0 20px;
  border-radius: 10px;
  color: #111;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.service_side_nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: right .2s ease, opacity .2s ease;
}

.service_side_nav a:hover,
.service_side_nav a.is-active {
  background: #a98c48;
  color: #fff;
}

.service_side_nav a:hover {
  transform: translateX(4px);
}

.service_side_nav a:hover::after,
.service_side_nav a.is-active::after {
  right: 24px;
  opacity: 1;
}

.service_content {
  min-width: 0;
}

.service_section {
  scroll-margin-top: 130px;
  padding: 0 0 96px;
  margin: 0 0 98px;
  border-bottom: 1px solid #e8ecea;
}

.service_section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.service_section_head {
  margin: 0 0 38px;
}

.service_section_head span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(169, 140, 72, .1);
  color: #a98c48;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}

.service_section_head h2 {
  margin: 22px 0 16px;
  color: #111;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.055em;
}

.service_section_head p {
  max-width: 980px;
  margin: 0;
  color: #555;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.78;
  word-break: keep-all;
}

.service_card_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service_card {
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  min-height: 340px;
  padding: 36px;
  border: 1px solid #edf0ee;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(17, 17, 17, .06);
  box-sizing: border-box;
}

.service_card_img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f8f6f1 0%, #f0ece2 100%);
}

.service_card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.service_card:hover .service_card_img img {
  transform: scale(1.04);
}

.service_card_text h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: -.045em;
  word-break: keep-all;
}

.service_card_text p {
  margin: 0;
  color: #606060;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.82;
  word-break: keep-all;
}

#header {
  transition: transform .35s ease;
}

#header.is-hide {
  transform: translateY(-100%);
}

#header.is-show {
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .service_layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 72px;
    max-width: 1480px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .service_card {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 44px;
  }

  .service_card_text h3 {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {
  .service_hero {
    max-width: 960px;
    margin-bottom: 68px;
    padding-top: 78px;
  }

  .service_hero h1 {
    font-size: 62px;
  }

  .service_hero p:not(.service_eyebrow) {
    font-size: 18px;
  }

  .service_layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 42px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .service_side {
    padding: 30px 0;
  }

  .service_side_nav {
    gap: 18px;
  }

  .service_side_nav a {
    min-height: 54px;
    padding: 0 48px 0 16px;
    font-size: 16px;
  }

  .service_side_nav a::after {
    right: 20px;
    width: 9px;
    height: 9px;
  }

  .service_side_nav a:hover::after,
  .service_side_nav a.is-active::after {
    right: 18px;
  }

  .service_section_head h2 {
    font-size: 38px;
  }

  .service_section_head p {
    font-size: 17px;
  }

  .service_card {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    min-height: 280px;
    padding: 26px;
  }

  .service_card_img {
    min-height: 400px;
  }

  .service_card_text h3 {
    font-size: 25px;
  }

  .service_card_text p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .service_hero {
    margin-bottom: 44px;
    padding: 56px 18px 0;
    text-align: left;
  }

  .service_eyebrow {
    font-size: 13px;
  }

  .service_hero h1 {
    font-size: 48px;
  }

  .service_hero p:not(.service_eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .service_layout {
    display: block;
    padding: 0 18px 142px;
  }

  .service_side {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid #ece7da;
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 30px rgba(17, 17, 17, .08);
    overflow-x: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .service_side::-webkit-scrollbar {
    display: none;
  }

  .service_side strong {
    display: none;
  }

  .service_side_nav {
    flex-direction: row;
    gap: 8px;
    width: max-content;
    min-width: 100%;
  }

  .service_side_nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 32px 0 14px;
    border-radius: 999px;
    background: #f7f4ec;
    color: #665b43;
    font-size: 14px;
    white-space: nowrap;
  }

  .service_side_nav a::after {
    right: 14px;
    width: 6px;
    height: 6px;
  }

  .service_side_nav a:hover,
  .service_side_nav a.is-active {
    background: #a98c48;
    color: #fff;
  }

  .service_side_nav a:hover {
    transform: none;
  }

  .service_side_nav a:hover::after,
  .service_side_nav a.is-active::after {
    right: 12px;
  }

  .service_section {
    scroll-margin-top: 82px;
    padding-bottom: 58px;
    margin-bottom: 60px;
  }

  .service_section_head {
    margin-bottom: 26px;
  }

  .service_section_head span {
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
  }

  .service_section_head h2 {
    margin-top: 16px;
    font-size: 32px;
  }

  .service_section_head p {
    font-size: 16px;
  }

  .service_card_list {
    gap: 18px;
  }

  .service_card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 20px;
    border-radius: 26px;
  }

  .service_card_img {
    min-height: 220px;
    border-radius: 20px;
  }

  .service_card_text h3 {
    font-size: 23px;
  }

  .service_card_text p {
    font-size: 15px;
  }
}