:root {
  --blue-950: #061b3d;
  --blue-900: #0a2f66;
  --blue-800: #10488f;
  --blue-700: rgb(23 104 199 / 70%);
  --blue-600: #2487ef;
  --cyan-500: #24c4e8;
  --ink: #12233f;
  --muted: #5f6f86;
  --line: #dce6f2;
  --panel: #ffffff;
  --soft: #f3f8fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 34, 73, .16);
  --radius: 8px;
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: url("../vendor/material-symbols/material-symbols-rounded.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.7;
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.material-symbols-rounded {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1;
  font-style: normal;
  font-feature-settings: "liga";
  direction: ltr;
  text-transform: none;
  white-space: nowrap;
  letter-spacing: 0;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  transform: translateY(0);
  transition: background .24s ease, box-shadow .24s ease, min-height .24s ease, transform .24s ease;

}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 66px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(3, 21, 48, .12);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 45vw);
  padding: 8px 10px;
  /*background: rgba(255, 255, 255, .94);*/
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
}

.site-nav .material-symbols-rounded {
  color: var(--cyan-500);
  font-size: 19px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
}

.nav-toggle .material-symbols-rounded {
  color: var(--blue-900);
  font-size: 28px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "visual content";
  gap: 2rem;
  align-items: center;
  min-height: 92vh;
  padding: 180px clamp(20px, 6vw, 92px) 80px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(269deg, rgb(14 36 71 / 95%), rgb(17 97 198 / 86%) 50%, rgba(92, 139, 150, 0.2)),
    url(../images/hero__bg.jpg) center / cover;
}

.hero__bg {
  position: absolute;
  inset: auto -14vw -20vw auto;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  opacity: .52;
}

.hero__content {
  position: relative;
  grid-area: content;
  max-width: 840px;
}

.hero-carousel {
  touch-action: pan-y;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: slideFade .36s ease both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(14px, 2vw, 15px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-control {
  width: 42px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero-control.is-active {
  width: 68px;
  background: var(--cyan-500);
}

.hero__visual {
  position: relative;
  grid-area: visual;
  min-height: 330px;
}

.hero-image {
  position: absolute;
  inset: 50% 0 auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
  opacity: 0;
  transform: translateY(-44%) scale(.97);
  transition: opacity .36s ease, transform .36s ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hero-arrow {
  position: absolute;
  top: 60%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 27, 61, .5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease;
}

.hero-arrow:hover {
  background: var(--blue-700);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow--prev {
  left: clamp(10px, 2vw, 28px);
}

.hero-arrow--next {
  right: clamp(10px, 2vw, 28px);
}

.hero-arrow .material-symbols-rounded {
  font-size: 30px;
}

.hero-arrow[hidden] {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 14px 34px rgba(36, 135, 239, .32);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--white);
  background: var(--blue-950);
  padding: 0 10%;
}

.trust-strip .trust-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 15px clamp(14px, 2vw, 18px);
  border-right: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.trust-strip .trust-item:last-child {
  border-right: 0;
}

.trust-strip .trust-item:nth-child(3n) {
  border-right: 0;
}

.trust-strip .trust-item:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.trust-strip .trust-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-strip .material-symbols-rounded {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #719bff;
  font-size: 30px;
}

.trust-strip strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  text-align: left;
}

.trust-strip p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(72px, 9vw, 100px) clamp(20px, 6vw, 92px);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.section__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section__media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.section__body h2,
.section__heading h2,
.contact h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section__body p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section--blue {
  background:
    linear-gradient(180deg, rgba(223, 239, 255, 0.6), rgba(255, 255, 255, .3)),
    url("../images/services__bg.png") center / cover;
}

.section__heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__heading p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.vision-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(6, 27, 61, .08);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px 28px;
}

.service-card::before {
  position: absolute;
    top: -20%;
    right: -9%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    content: "";
    /*background: rgb(161 207 255 / 12%);*/
}

/*.service-card::after {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 72px;
  height: 72px;
  content: "";
  transform: rotate(8deg);
}*/

.service-card__icon {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
  color: rgb(166 207 255 / 28%);
  font-size: 70px;
  pointer-events: none;
}

.service-card h3,
.vision-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.35;
}

.service-card h3 {
  padding-right: 92px;
  margin-bottom: 1rem;
}

.service-card p,
.vision-grid p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
}

.vision {
  background:
    linear-gradient(322deg, rgb(255 255 255 / 94%), rgba(255, 255, 255, .78)),
    linear-gradient(46deg, rgb(33 141 255 / 51%), rgb(36 196 232 / 43%));
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vision-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
}

.vision-grid h3 {
  padding-right: 110px;
}

.vision-grid article::before {
  position: absolute;
  top: -23%;
  right: -5%;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  content: "";
  /*background: rgb(161 207 255 / 12%);*/
}

.vision-grid article::after {
  position: absolute;
  top: 9%;
  right: 4%;
  color: rgb(166 207 255 / 28%);
  font-family: "Material Symbols Rounded";
  font-size: 72px;
  line-height: 1;
  font-feature-settings: "liga";
}

.vision-grid article:first-child::after {
  content: "trending_up";
}

.vision-grid article:nth-child(2)::after {
  content: "groups";
}

.certification {
  background: var(--white);
}

.cert-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 58px;
}

.cert-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.cert-carousel__track {
  display: flex;
  transition: transform .28s ease;
}

.cert-carousel__track.is-centered {
  justify-content: center;
}

.cert-item {
  flex: 0 0 33.3333%;
  min-width: 0;
  padding: 0 14px;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.cert-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 10px 20px rgba(6, 27, 61, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cert-item:hover img {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(6, 27, 61, .14);
}

.cert-item span {
  display: block;
  margin-top: 14px;
  color: var(--blue-900);
  font-weight: 800;
  text-align: center;
}

.cert-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.cert-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 16px 32px rgba(6, 27, 61, .2);
  transform: translateY(-50%);
}

.cert-arrow--prev {
  left: 0;
}

.cert-arrow--next {
  right: 0;
}

.cert-arrow .material-symbols-rounded {
  font-size: 30px;
}

.cert-arrow[hidden] {
  display: none;
}

.contact {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 6vw, 92px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 600px);
  gap: clamp(30px, 3vw, 50px);
  align-items: start;
}

.contact h2 {
  color: var(--white);
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
}

.contact .button {
  margin-top: 18px;
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 15px;
  padding: 15px 0;
  color: var(--white);
}

.contact-card p,
.contact-card a {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: start;
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.contact-card .material-symbols-rounded {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  font-size: 19px;
}

.contact-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}

.contact-form label span {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--white);
  font: inherit;
  background: rgba(255, 255, 255, .1);
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form select {
  min-height: 54px;
  padding-right: 46px;
  appearance: none;
  cursor: pointer;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2324c4e8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 20px no-repeat,
    rgba(255, 255, 255, .1);
}

.contact-form select:invalid {
  color: rgba(255, 255, 255, .5);
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-500);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 4px rgba(36, 196, 232, .16);
}

.contact-form select:focus {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2324c4e8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 20px no-repeat,
    rgba(255, 255, 255, .14);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 15px clamp(20px, 4vw, 70px);
  color: rgba(255, 255, 255, .72);
  background: #031126;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 17, 38, .62);
  backdrop-filter: blur(8px);
}

.form-popup[hidden] {
  display: none;
}

.form-popup__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 34px 28px 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
  text-align: center;
  animation: popupIn .2s ease both;
}

.form-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

.form-popup__close:hover {
  color: var(--blue-900);
  background: var(--soft);
}

.form-popup__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: #16a36a;
  font-size: 58px;
}

.form-popup.is-error .form-popup__icon {
  color: #d94848;
}

.form-popup h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.25;
}

.form-popup p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.form-popup .button {
  width: 100%;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-shortcut,
.back-top {
  position: fixed;
  right: 20px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 16px 32px rgba(6, 27, 61, .2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.contact-shortcut {
  bottom: 82px;
  background: var(--cyan-500);
}

.back-top {
  bottom: 20px;
}

.contact-shortcut .material-symbols-rounded,
.back-top .material-symbols-rounded {
  font-size: 24px;
}

.contact-shortcut.is-visible,
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .material-symbols-rounded {
    width: 24px;
    font-size: 22px;
  }

  .hero,
  .section--split,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "visual"
      "content"
      "panel";
    min-height: auto;
    padding-top: 126px;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-image {
    position: static;
    display: none;
    transform: none;
  }

  .hero-image.is-active {
    display: block;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .hero-arrow--prev {
    left: 12px;
  }

  .hero-arrow--next {
    right: 12px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(3n) {
    border-right: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand {
    width: min(190px, 62vw);
  }

  .hero {
    padding-bottom: 36px;
  }

  .hero-controls {
    justify-content: center;
  }

  .service-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-grid article::after {
      right: 8%;
  }

  .cert-carousel {
    padding: 0 15px;
  }

  .cert-item {
    flex-basis: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;

  }
  .trust-strip .trust-item {
    justify-content: flex-start;
  }
  .trust-strip .trust-item,
  .trust-strip .trust-item:nth-child(3n) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    border-right: 0;
  }

  .trust-strip .trust-item:last-child {
    border-bottom: 0;
  }

  .section__media img {
    min-height: 260px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card::before {
    width: 150px;
    height: 150px;
  }

  .service-card::after {
    width: 62px;
    height: 62px;
  }

  .service-card__icon {
    top: 15%;
    right: 6%;
    font-size: 55px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
