:root {
  --bg: #f5f7fa;
  --text: #121d2a;
  --muted: #526779;
  --primary: #1d2d3d;
  --primary-dark: #0f172a;
  --accent: #d92d27;
  --accent-2: #f5c64a;
  --white: #ffffff;
  --line: #dfe7ee;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f7fa 0%, #edf3f7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

#site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(17, 29, 42, 0.96), rgba(18, 58, 82, 0.96));
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  min-width: 110px;
  min-height: 110px;
}

.loader-logo {
  position: relative;
  z-index: 2;
  width: clamp(78px, 18vw, 150px);
  height: clamp(78px, 18vw, 150px);
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.85);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #ffffff;
  border-right-color: rgba(245, 198, 74, 0.9);
  animation: loaderSpin 1.1s linear infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100vw - 1.25rem));
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

body,
html {
  width: 100%;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 32, 58, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
  padding: 0.95rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 800;
  line-height: 1;
  min-width: 0;
}

.brand-mark {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-dark);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
  animation: fadeLogo 3s ease-in-out infinite;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fadeLogo {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

.brand-text {
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  border-radius: 0.7rem;
  padding: 0.45rem 0.6rem;
}

.nav-links a:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
  background: rgba(29, 45, 61, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 20px rgba(17, 32, 58, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0c1d2d);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-dark);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(17, 32, 58, 0.15);
  box-shadow: 0 10px 22px rgba(17, 32, 58, 0.08);
}

.hero {
  background:
    linear-gradient(135deg, rgba(17, 29, 42, 0.92), rgba(28, 44, 61, 0.82)),
    url("https://images.unsplash.com/photo-1559526324-4b87b5e36e44?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: var(--white);
  padding: 6rem 0 4.5rem;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(11, 109, 79, 0.92), rgba(16, 53, 79, 0.9)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: var(--white);
  padding: 5rem 0;
}

.page-hero-inner {
  min-height: 220px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 720px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.alt-section {
  background: linear-gradient(180deg, rgba(11, 109, 79, 0.05), transparent);
}

.info-card,
.prose-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 109, 79, 0.12);
  color: var(--primary);
  margin-bottom: 1rem;
}

.check-list,
.number-list {
  margin: 0;
  padding-left: 1rem;
}

.check-list li,
.number-list li {
  margin-bottom: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}
.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer a:hover {
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: center;
}

.auth-hero {
  padding-bottom: 3rem;
}

.auth-grid {
  align-items: center;
}

.auth-shell {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: min(560px, 100%);
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.auth-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.auth-form {
  margin-bottom: 1rem;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-links a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .footer-grid,
  .branches-grid,
  .card-grid,
  .three-up {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
  }

  .strip-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .about-grid,
  .footer-grid,
  .card-grid,
  .two-col,
  .three-up,
  .branches-grid,
  .auth-shell,
  .page-hero-inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .about-grid > *,
  .footer-grid > *,
  .card-grid > *,
  .two-col > *,
  .three-up > *,
  .branches-grid > *,
  .auth-card,
  .page-hero-inner > * {
    width: min(100%, 420px);
    text-align: center;
  }

  .auth-card {
    margin: 0 auto;
    padding: 1.5rem 1rem;
  }

  .nav-wrap {
    gap: 0.75rem;
  }

  .hero-copy,
  .hero-panel,
  .section-copy,
  .about-card,
  .footer-grid > * {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 auto;
  }

  .hero-text,
  .section-title,
  .section-copy,
  .footer-grid p,
  .footer-grid li,
  .strip-grid article,
  .service-card,
  .branches-grid > div {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .strip-grid article,
  .service-card,
  .branches-grid > div {
    width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: none;
  }

  .service-card {
    padding: 1.2rem 1rem;
  }

  .branches-grid > div {
    padding: 1.1rem 1rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-title {
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: center;
    align-items: center;
  }

  .strip-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
  }

  .about-grid,
  .footer-grid,
  .card-grid,
  .two-col,
  .three-up,
  .branches-grid,
  .auth-shell,
  .page-hero-inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
  }

  .about-grid > *,
  .footer-grid > *,
  .card-grid > *,
  .two-col > *,
  .three-up > *,
  .branches-grid > *,
  .auth-card,
  .page-hero-inner > * {
    width: min(100%, 420px);
    text-align: center;
  }

  .auth-card {
    margin: 0 auto;
    padding: 1.4rem 0.9rem;
  }

  .site-header {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  }

  .strip-grid {
    padding: 1.25rem 0;
  }

  .strip-grid article {
    width: min(100%, 420px);
    padding: 0.9rem 1rem;
    border-right: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .service-card,
  .branches-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .brand {
    min-width: 0;
  }

  .logo {
    width: 74px !important;
    height: 74px !important;
    margin-right: 0.5rem;
  }

  .nav-wrap {
    padding-left: 40px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 76px;
  }

  .brand,
  .menu-toggle {
    margin: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: auto;
    min-width: min(260px, calc(100vw - 2rem));
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    flex-direction: column;
    align-items: stretch;
    display: flex;
    border: 1px solid rgba(17, 32, 58, 0.06);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) translateX(12px);
    transition: opacity 0.28s ease, transform 0.28s ease, padding 0.28s ease;
    backdrop-filter: blur(8px);
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) translateX(0);
    max-height: 500px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.7rem 0.85rem;
    text-align: center;
    border-radius: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
  }

  .nav-links a:hover {
    background: rgba(29, 45, 61, 0.04);
  }

  .nav-links .btn-outline {
    margin-top: 0.25rem;
    width: auto;
    align-self: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 0.8rem;
    background: rgba(29, 45, 61, 0.04);
    border: 1px solid rgba(17, 32, 58, 0.06);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .menu-toggle span {
    background: #000000;
  }

  .menu-toggle:hover {
    background: rgba(29, 45, 61, 0.08);
    transform: translateY(-1px);
  }

  .hero,
  .page-hero {
    padding-top: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-wrap,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .strip-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .strip-grid article:last-child {
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100vw - 1rem, 1120px);
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    margin-bottom: 1.4rem;
  }

  .brand-mark {
    font-size: 0.8rem;
  }

  .brand {
    max-width: calc(100% - 52px);
  }

  .brand-text {
    font-size: 0.84rem;
  }

  .nav-wrap {
    gap: 0.5rem;
    padding-left: 40px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .page-hero h1,
  .hero-copy h1,
  .section-title h2,
  .section-copy h2,
  .cta-wrap h2 {
    line-height: 1.2;
  }

  .hero {
    padding: 3.75rem 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-card {
    padding: 1rem;
  }

  .stat-grid {
    gap: 0.7rem;
  }

  .stat-grid strong {
    font-size: 1.6rem;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 380px) {
  .nav-wrap {
    min-height: 72px;
    padding: 0.75rem 0;
  }

  .brand {
    gap: 0.5rem;
  }

  .logo {
    width: 54px;
    height: 54px;
  }

  .brand-text {
    font-size: 0.76rem;
  }

  .nav-links {
    min-width: min(220px, calc(100vw - 1.5rem));
  }

  .btn {
    padding: 0.8rem 1rem;
  }

  .cta-wrap {
    padding: 1.4rem 1rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.1;
}

.hero-text {
  margin: 1rem 0 1.7rem;
  font-size: 1.05rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.25rem;
  padding: 1.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.hero-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-pill {
  background: rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.mini-pill.alt {
  background: rgba(248, 180, 27, 0.16);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
}

.stat-grid span img {
  color: rgba(255, 255, 255, 0.86);
}
.hero-quote {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 600;
}

.highlight-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 250, 0.9));
  box-shadow: inset 0 1px 0 rgba(17, 32, 58, 0.04);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  align-items: stretch;
}

.strip-grid article {
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-radius: 0.9rem;
}

.strip-grid article:last-child {
  border-right: none;
}

.strip-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.strip-grid p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-title h2,
.section-copy h2,
.cta-wrap h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-title p:last-child,
.section-copy p,
.about-list span,
.service-card p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.about-logo {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: transparent;
  border-radius: 0;
}

.about-logo .logo {
  width: 52px;
  height: 52px;
  margin: 0;
  border-width: 1px;
  box-shadow: none;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.about-list div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(29, 45, 61, 0.02);
}

.about-list strong {
  display: block;
  color: var(--primary-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.branches-grid > div {
  background: var(--white);
  border: 1px solid rgba(11, 109, 79, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 0;
}

.service-card a {
  color: var(--primary);
  font-weight: 800;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team {
  background: linear-gradient(180deg, rgba(11, 109, 79, 0.06), transparent);
}

.cta-band {
  padding-top: 0;
}

.cta-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  background: linear-gradient(180deg, #0d2032 0%, #0a1724 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  color: #f5f7fa;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent-2);
}

.site-footer h3 {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.7rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.2rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 40px !important;
    height: 40px !important;
    background: rgba(29, 45, 61, 0.04);
    border: 1px solid rgba(17, 32, 58, 0.06);
    border-radius: 0.8rem;
    padding: 0.2rem;
    box-sizing: border-box;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2.5px;
    background: #000000;
    margin: 2px 0;
    border-radius: 999px;
    transform-origin: center;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


