@charset "UTF-8";
/* Foundation */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #131926;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  line-height: 1.7;
}

.container {
  width: min(100% - 4rem, 1140px);
  margin: auto;
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 1140px);
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.fadein.in {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.65;
}

/* Layout */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
}

header {
  width: 100%;
  color: #fff;
  padding: 16px;
  z-index: 2;
  position: fixed;
  margin-top: 0px;
  margin-bottom: 0px;
  top: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header-inner {
  max-width: 1450px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
header .logo {
  max-width: 160px;
  min-width: 140px;
  width: 20%;
}
header .menu-btn {
  display: none;
  width: 25px;
  height: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}
header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .menu-btn span:nth-child(1) {
  top: 0;
}
header .menu-btn span:nth-child(2) {
  top: 8px;
}
header .menu-btn span:nth-child(3) {
  bottom: 0;
}
header .menu-btn.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
header .menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
header .menu-btn.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
@media (max-width: 768px) {
  header .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 11;
  }
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  header .nav {
    display: none;
  }
}
header .nav.is-open {
  display: block;
  position: fixed;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #4D7399;
  padding: 80px 20px;
  z-index: 10;
}
header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  header .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
  }
}
header .nav ul li a {
  padding: 10px 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header .nav ul li a {
    display: inline-block;
  }
}
header .nav ul li a:hover {
  border-bottom: solid thin #fff;
}
@media (max-width: 768px) {
  header .nav ul li a:hover {
    border-bottom: none;
  }
}
header .nav ul li {
  margin-right: 20px;
}
@media (max-width: 1140px) {
  header .nav ul li {
    margin-right: 9px;
  }
}
@media (max-width: 768px) {
  header .nav ul li {
    display: grid;
    grid-template-columns: 1fr 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  }
}
header .nav ul li:after {
  content: " ";
  background: url(../images/arrow.svg) no-repeat center center;
  display: inline-block;
  width: 5px;
  height: 8px;
}
header .nav .nav-button {
  margin-left: 20px;
  max-width: 174px;
}
@media (max-width: 1140px) {
  header .nav .nav-button {
    display: none;
  }
}
@media (max-width: 768px) {
  header .nav .nav-button {
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
}

.header.is-header-fixed {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: saturate(180%) blur(20px);
}

footer {
  background: #2E3D4C;
  padding: 90px 0 100px 0;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 4rem 0;
  }
}

.footer-inner {
  width: min(100% - 4rem, 1140px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-inline: 2rem;
  }
}

.footer-menu .footer-logo {
  max-width: 144px;
}
@media (max-width: 768px) {
  .footer-menu .footer-logo {
    margin: 0 auto;
  }
}
.footer-menu .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .footer-menu .footer-nav {
    display: none;
  }
}
.footer-menu .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu .footer-nav ul li a {
  color: #fff;
  font-size: clamp(1rem, 0.92rem + 0.34vw, 1.1875rem);
  font-weight: 600;
  padding: 0 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-menu .footer-nav ul li:after {
  content: "│";
  color: #fff;
}
.footer-menu .copyright {
  color: #839AB0;
  font-size: clamp(0.625rem, 0.57rem + 0.23vw, 0.75rem);
  margin: 0.5rem 0 0 0.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer-menu .copyright {
    margin-left: 0;
  }
}

.footer-info {
  max-width: 260px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-info {
    max-width: 100%;
    margin: 2rem auto 0 auto;
  }
}
.footer-info .clovertech-logo {
  line-height: 0;
  max-width: 150px;
  margin: 0rem auto 1.6rem auto;
  display: block;
}
@media (max-width: 768px) {
  .footer-info .clovertech-logo {
    margin-bottom: 1rem;
  }
}
.footer-info .clovertech-meta {
  font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-info .clovertech-text {
  font-size: clamp(0.625rem, 0.57rem + 0.23vw, 0.75rem);
  font-weight: 500;
  display: inline-block;
}

#video-background {
  width: 100%;
  height: 100svh;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

#video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  width: 178vh;
  height: 56vw;
  min-height: 100%;
  min-width: 100%;
  z-index: -2;
}

#video-background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 70, 150, 0.8)), to(#131926));
  background-image: linear-gradient(180deg, rgba(32, 70, 150, 0.8) 0%, #131926 100%);
  opacity: 0.85;
  -webkit-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.mv {
  padding: 90px 0 70px 0;
}

.mv-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media (max-width: 1140px) {
  .mv-inner {
    padding-inline: 3rem;
  }
}
@media (max-width: 768px) {
  .mv-inner {
    padding-inline: 1rem;
  }
}

.mv-titleblock {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .mv-titleblock {
    padding-top: 20px;
  }
}
.mv-titleblock .mv-title {
  font-size: clamp(2rem, 1.17rem + 3.54vw, 4rem);
}
.mv-titleblock .mv-text {
  font-size: clamp(1.125rem, 0.97rem + 0.67vw, 1.5rem);
  font-weight: 600;
  margin-top: 16px;
}

.mv-featureblock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .mv-featureblock {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.mv-featureblock .mv-feature {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  text-align: center;
  padding: 44px 2rem;
}
@media (max-width: 768px) {
  .mv-featureblock .mv-feature {
    padding: 1.5rem 2rem;
  }
}
.mv-featureblock .mv-feature-icon {
  max-width: 72px;
  margin: 0 auto 1rem auto;
}
.mv-featureblock .mv-feature-title {
  font-size: clamp(1.125rem, 0.97rem + 0.67vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mv-featureblock .mv-feature-text {
  font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
  line-height: 1.6em;
}

@media (max-width: 768px) {
  #video-background {
    display: none;
  }
  .mv {
    background: url("../images/fallback.jpg") no-repeat 50% 50%/cover;
    position: relative;
    padding-top: 0;
  }
  .mv:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 70, 150, 0.8)), to(#131926));
    background-image: linear-gradient(180deg, rgba(32, 70, 150, 0.8) 0%, #131926 100%);
    opacity: 0.85;
    -webkit-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  }
  .mv-titleblock {
    padding-top: 90px;
  }
}
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

/* -- About Section -- */
.about-section {
  background: #fff;
}

.about-section .about-section-title {
  font-size: clamp(1.25rem, 0.68rem + 2.44vw, 2.625rem);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .about-section .about-section-title {
    text-align: center;
  }
}
.about-section .about-section-text + .about-section-text {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .about-section .about-image {
    width: 80%;
    margin: 0 auto;
  }
}

/* -- Features Section -- */
.features-section {
  background-color: #EEF4FB;
}

@media (max-width: 768px) {
  .feature-list.grid {
    gap: 1rem;
  }
}

.feature-item {
  background: #fff;
  border-radius: 20px;
  padding: 25px 50px;
}
@media (max-width: 768px) {
  .feature-item {
    padding: 25px 1.5rem;
  }
}

.feature-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .feature-item {
    gap: 1rem;
    grid-template-columns: 60px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.feature-item-title {
  font-size: clamp(1.125rem, 0.97rem + 0.67vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-item-text {
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}

/* -- Step Section -- */
.step-section {
  background: #fff;
}

.step-item:first-child {
  border-top: solid 1px #D9D9D9;
}

.step-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #D9D9D9;
  padding: 32px 0;
  min-height: 360px;
}
@media (max-width: 768px) {
  .step-item {
    padding-inline: 1rem;
  }
}

.step-item-title {
  font-size: clamp(1.125rem, 0.86rem + 1.11vw, 1.75rem);
  font-weight: 700;
  color: #4D7399;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .step-item-title {
    display: inline;
  }
}
.step-item-title .step-number {
  font-size: clamp(1.75rem, 0.97rem + 3.32vw, 3.625rem);
  font-weight: 700;
  color: #4D7399;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .step-item-title .step-number {
    margin-right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .step-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* -- FAQ Section -- */
.faq-section {
  background-color: #EEF4FB;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
}
.faq-item.is-open {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-item.is-open {
    padding-bottom: 20px;
  }
}
.faq-item.is-open .faq-question {
  border-bottom: solid #D9D9D9 1px;
}
.faq-item.is-open .faq-question:after {
  content: "－";
}
.faq-item.is-open .faq-answer {
  height: auto;
  padding: 0px 3rem 0px 3rem;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .faq-item.is-open .faq-answer {
    padding: 0px 1.5rem 0px 1.5rem;
  }
}

.faq-item + .faq-item {
  margin-top: 1.5rem;
}

.faq-question {
  padding: 22px 3rem 20px 3rem;
  font-weight: 500;
  font-size: clamp(1rem, 0.95rem + 0.23vw, 1.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 20px 3.5rem 20px 1.5rem;
  }
}
.faq-question:before {
  content: "Q.";
  font-size: clamp(1.25rem, 0.94rem + 1.33vw, 2rem);
  font-weight: 700;
  margin-right: 1rem;
  color: #4D7399;
}
@media (max-width: 768px) {
  .faq-question:before {
    margin-right: 0.5rem;
  }
}
.faq-question:after {
  content: "＋";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(1.25rem, 0.73rem + 2.21vw, 2.5rem);
  font-weight: 200;
}
@media (max-width: 768px) {
  .faq-question:after {
    right: 1.5rem;
  }
}

.faq-answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}
.faq-answer:before {
  content: "A.";
  font-size: clamp(1.25rem, 0.94rem + 1.33vw, 2rem);
  font-weight: 700;
  margin-right: 1rem;
  color: #4D7399;
}
@media (max-width: 768px) {
  .faq-answer:before {
    margin-right: 0.5rem;
  }
}

.faq-answer-text {
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .faq-answer-text {
    padding-top: 0.5rem;
  }
}

/* -- Price Section -- */
.price-section {
  background: #fff;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr 77px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .price-list {
    grid-template-columns: 1fr;
  }
}

.price-item {
  background: #E2EBF2;
  border-radius: 20px;
  padding: 6rem 2.5rem 3rem 2.5rem;
  text-align: center;
  position: relative;
  min-height: 500px;
}
@media (max-width: 768px) {
  .price-item {
    padding: 6rem 1.5rem 3rem 1.5rem;
    min-height: auto;
    margin-top: 3rem;
  }
}
.price-item .price-item-img {
  position: absolute;
  margin: 0 auto;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.price-item .price-item-img--large {
  max-width: 373px;
  width: 100%;
  top: -70px;
}
@media (max-width: 768px) {
  .price-item .price-item-img--large {
    width: 86%;
    top: -50px;
  }
}
.price-item .item-purchase {
  background: #fff;
  padding: 0rem 1rem;
  font-size: clamp(1.125rem, 1.07rem + 0.23vw, 1.25rem);
  font-weight: 700;
  display: inline-block;
}
.price-item .item-name {
  font-size: clamp(1.25rem, 1.04rem + 0.88vw, 1.75rem);
  font-weight: 700;
  margin: 0.5rem 0;
}
.price-item .item-price {
  color: #4D7399;
  font-size: clamp(2.375rem, 2.09rem + 1.22vw, 3.0625rem);
  font-weight: 800;
  line-height: 1em;
}
.price-item .price-number {
  font-size: clamp(4.375rem, 3.21rem + 4.97vw, 7.1875rem);
  font-weight: 700;
  line-height: 1em;
}
.price-item .item-price-note {
  font-size: clamp(1.25rem, 1.04rem + 0.88vw, 1.75rem);
  font-weight: 700;
  color: #4D7399;
  text-align: right;
  padding: 0 2rem;
}
.price-item .item-price-caution {
  text-align: left;
  margin-left: 21px;
}
.price-item .item-price-caution li:before {
  content: "※";
  margin-right: 0.25rem;
  margin-left: -19px;
}
.price-item .item-price-caution li {
  font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
}

@media (max-width: 768px) {
  .price-item-union .price-item-img {
    margin: 0 auto 1rem auto;
    max-width: 60px;
  }
}

/* -- Contact Section -- */
.contact-section {
  background: #6C89A6;
}

.contact-section-title {
  color: #fff;
}
.contact-section-title .section-title-text {
  color: #fff;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
  margin-top: 1rem;
}

.contact-form {
  background: #fff;
  padding: 3rem 2rem;
  max-width: 740px;
  margin: 0 auto;
}

/* Components */
.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
    display: block;
  }
}

.button-dl {
  background: #3D85CC;
  color: #fff;
  padding: 9px 23px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.section-title-block {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #6C89A6;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: clamp(1.25rem, 0.68rem + 2.44vw, 2.625rem);
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */