:root {
  --font-base: "Poppins", sans-serif;
  --hero-gradient: linear-gradient(
    90deg,
    #8bffba 0%,
    #6fdc98 18%,
    #54b979 52%,
    #46a86e 100%
  );
  --color-bg: #f7f7f3;
  --color-surface: rgba(255, 255, 255, 0.94);
  --color-surface-strong: #ffffff;
  --color-text: #2f4f4c;
  --color-text-muted: rgba(47, 79, 76, 0.86);
  --color-text-soft: rgba(47, 79, 76, 0.8);
  --color-border: #dde2dd;
  --color-shadow: rgba(27, 43, 40, 0.14);
  --size-title: 52px;
  --size-section-title: 48px;
  --size-section-copy: 18px;
  --size-card-title: 48px;
  --size-card-copy: 18px;
  --size-card-button: 14px;
  --size-contact-title: 48px;
  --size-contact-copy: 18px;
  --size-contact-tagline: 16px;
  --size-footer-copy: 16px;
  --size-body-lg: 20px;
  --size-body-sm: 16px;
  --size-button: 16px;
  --section-copy-width: 940px;
  --section-gap: 136px;
  --card-copy-width: 820px;
  --card-radius: 32px;
  --container-width: 1440px;
  --radius-pill: 999px;
  --shadow-focus: 0 0 0 4px rgba(139, 255, 186, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
p {
  margin: 0;
}

.container {
  width: min(var(--container-width), calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 200px;
  height: auto;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: var(--size-button);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button-pill strong {
  margin-left: 0.25em;
  font-weight: 700;
}

.button-pill__strong--inline {
  margin-left: 0;
}

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

.button-pill:focus-visible,
.brand:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button-pill--ghost {
  background: var(--color-surface-strong);
  border: none;
  color: var(--color-text);
  box-shadow: 0 10px 26px rgba(27, 43, 40, 0.08);
}

.button-pill--solid {
  border: none;
  background: var(--hero-gradient);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(70, 168, 110, 0.18);
}

.text-gradient {
  background: var(--hero-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title__line--gradient {
  color: #46a86e;
  -webkit-text-fill-color: #46a86e;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: min(100vh, 650px);
  max-height: 650px;
  padding: 156px 0 112px;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-bg);
}

.hero-section__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("IMG/bg-hero-2.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-copy {
  width: min(100%, 860px);
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.hero-title {
  display: grid;
  gap: 4px;
  font-size: var(--size-title);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.hero-title__line {
  display: block;
}

.hero-description {
  max-width: 760px;
  font-size: var(--size-body-lg);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

.hero-secondary {
  max-width: 720px;
  font-size: var(--size-body-sm);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: var(--color-text-soft);
}

.hero-secondary__break {
  display: inline;
}

.hero-divider {
  --hero-divider-width: 234px;
  --hero-divider-height: 110px;
  --hero-divider-offset-y: -46px;
  --hero-divider-circle-top: 28px;
  --hero-divider-circle-size: 58px;
  position: absolute;
  top: var(--hero-divider-offset-y);
  left: 0;
  right: 0;
  height: var(--hero-divider-height);
  display: grid;
  justify-items: center;
  align-items: start;
  z-index: 2;
  pointer-events: none;
}

.hero-divider__shape {
  grid-area: 1 / 1;
  display: block;
  width: var(--hero-divider-width);
  height: 100%;
}

.hero-divider__shape path {
  fill: #ffffff;
}

.hero-divider__circle {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: var(--hero-divider-circle-size);
  height: var(--hero-divider-circle-size);
  margin-top: var(--hero-divider-circle-top);
  border-radius: 50%;
  background: var(--color-surface-strong);
  color: rgba(47, 79, 76, 0.8);
  box-shadow: 0 18px 36px rgba(27, 43, 40, 0.14);
  animation: hero-divider-float 3.6s ease-in-out infinite;
  pointer-events: auto;
}

.hero-divider__arrow {
  width: 24px;
  height: 24px;
  animation: hero-divider-arrow 3.6s ease-in-out infinite;
}

@keyframes hero-divider-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 34px rgba(27, 43, 40, 0.12);
  }

  50% {
    transform: translateY(4px);
    box-shadow: 0 18px 38px rgba(27, 43, 40, 0.16);
  }
}

@keyframes hero-divider-arrow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(2px);
    opacity: 0.84;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-divider__circle,
  .hero-divider__arrow {
    animation: none;
  }
}

.about-section {
  position: relative;
  background: #ffffff;
}

.about-section__inner {
  display: grid;
  gap: var(--section-gap);
  padding-top: 146px;
  padding-bottom: 116px;
}

.about-section__group {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.section-title {
  font-size: var(--size-section-title);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.section-copy {
  width: min(100%, var(--section-copy-width));
  display: grid;
  gap: 14px;
}

.section-copy p {
  font-size: var(--size-section-copy);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.products-section {
  background: #ffffff;
  padding: 0 0 120px;
}

.products-section__inner {
  display: flex;
  justify-content: center;
}

.products-card {
  width: min(100%, 1138px);
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 86px 72px 74px;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #516562 0%, #293b39 100%);
  box-shadow: 0 24px 56px rgba(27, 43, 40, 0.14);
  text-align: center;
}

.products-card__title {
  font-size: var(--size-card-title);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.products-card__copy {
  width: min(100%, var(--card-copy-width));
  display: grid;
  gap: 18px;
}

.products-card__copy p {
  font-size: var(--size-card-copy);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.84);
}

.products-card__copy strong {
  font-weight: 700;
  color: #ffffff;
}

.products-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.button-pill--card-solid,
.button-pill--card-outline {
  min-height: 41px;
  padding: 0 18px;
  font-size: var(--size-card-button);
  font-weight: 600;
}

.button-pill--card-solid {
  border: none;
  background: var(--hero-gradient);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(70, 168, 110, 0.2);
}

.button-pill--card-outline {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.contact2-section {
  background: #ffffff;
  padding: 40px 0 0;
}

.contact2-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1fr);
  align-items: start;
  gap: 72px;
  padding-bottom: 108px;
}

.contact2-copy {
  max-width: 560px;
  padding-top: 54px;
}

.contact2-tagline {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  font-size: var(--size-contact-tagline);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.contact2-title {
  color: var(--color-text);
  font-size: var(--size-contact-title);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact2-description {
  margin-top: 22px;
  font-size: var(--size-contact-copy);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.contact2-description strong {
  font-weight: 700;
}

.contact2-details {
  display: grid;
  gap: 20px;
  margin-top: 58px;
}

.contact2-label {
  color: var(--color-text);
  font-size: var(--size-contact-tagline);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.contact2-detail {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact2-detail__icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hero-gradient);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.contact2-detail__icon--person {
  mask-image: url("IMG/icon5.svg");
  -webkit-mask-image: url("IMG/icon5.svg");
}

.contact2-detail__icon--mail {
  mask-image: none;
  -webkit-mask-image: none;
}

.contact2-detail__icon--mail::before {
  content: "";
  position: absolute;
  inset: 9px;
  background: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M32.0117 27.3691C32.0117 28.4449 31.1422 29.334 30.0469 29.334H12.6348C11.559 29.334 10.6699 28.4645 10.6699 27.3691V17.8154C10.7162 17.8501 10.764 17.8837 10.8125 17.916L19.5576 23.7471C20.0885 24.1009 20.7052 24.2881 21.3408 24.2881C21.9767 24.2881 22.594 24.101 23.125 23.7471L31.8701 17.916C31.9185 17.8838 31.9655 17.85 32.0117 17.8154V27.3691ZM30.0479 13.3496C31.1307 13.3496 32.0116 14.2306 32.0117 15.3135C32.0117 15.9432 31.7 16.5273 31.1768 16.876L22.4307 22.7061C22.0996 22.9267 21.7202 23.0371 21.3408 23.0371C20.9615 23.0371 20.582 22.9267 20.251 22.7061L11.5059 16.876C10.9826 16.5273 10.6699 15.9433 10.6699 15.3145C10.67 14.2306 11.551 13.3497 12.6338 13.3496H30.0479Z' fill='black'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M32.0117 27.3691C32.0117 28.4449 31.1422 29.334 30.0469 29.334H12.6348C11.559 29.334 10.6699 28.4645 10.6699 27.3691V17.8154C10.7162 17.8501 10.764 17.8837 10.8125 17.916L19.5576 23.7471C20.0885 24.1009 20.7052 24.2881 21.3408 24.2881C21.9767 24.2881 22.594 24.101 23.125 23.7471L31.8701 17.916C31.9185 17.8838 31.9655 17.85 32.0117 17.8154V27.3691ZM30.0479 13.3496C31.1307 13.3496 32.0116 14.2306 32.0117 15.3135C32.0117 15.9432 31.7 16.5273 31.1768 16.876L22.4307 22.7061C22.0996 22.9267 21.7202 23.0371 21.3408 23.0371C20.9615 23.0371 20.582 22.9267 20.251 22.7061L11.5059 16.876C10.9826 16.5273 10.6699 15.9433 10.6699 15.3145C10.67 14.2306 11.551 13.3497 12.6338 13.3496H30.0479Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.contact2-detail__content {
  display: grid;
  gap: 4px;
}

.contact2-detail__content strong {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.contact2-detail__content span {
  color: var(--color-text-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact2-card {
  border-radius: 28px;
  background: #293e3c;
  padding: 42px 44px 36px;
}

.contact2-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.contact2-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 16px;
  margin-top: 30px;
}

.contact2-form__field {
  display: flex;
  flex-direction: column;
}

.contact2-form__field--full {
  grid-column: 1 / -1;
}

.contact2-form label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.contact2-form input,
.contact2-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 17px;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact2-form input {
  min-height: 48px;
  padding: 0 16px;
}

.contact2-form textarea {
  min-height: 208px;
  padding: 16px;
  resize: none;
}

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

.contact2-form input:focus-visible,
.contact2-form textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(139, 255, 186, 0.18);
}

.contact2-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.contact2-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--hero-gradient);
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.contact2-form__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(70, 168, 110, 0.2);
  filter: saturate(1.02);
}

.contact2-form__button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.contact2-form__button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
  box-shadow: none;
  filter: none;
}

.form-status {
  grid-column: 1 / -1;
  margin-top: 14px;
  min-height: 1.5em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

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

.form-status.is-success {
  color: #8bffba;
}

.form-status.is-error {
  color: #ffd8d8;
}

.footer2-section {
  background: #293e3c;
}

.footer2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer2-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--size-footer-copy);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.footer2-copy strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.footer2-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.footer2-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 999px;
}

.footer2-logo-link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.footer2-logos__divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
}

.footer2-logo {
  height: 28px;
  width: auto;
}

.footer2-logo--cubexa {
  height: 26px;
}

@media (max-width: 960px) {
  .container {
    width: min(var(--container-width), calc(100% - 40px));
  }

  .site-header {
    padding-top: 24px;
  }

  .hero-section {
    padding-top: 132px;
  }

  .hero-title {
    font-size: 44px;
  }

  .about-section__inner {
    gap: 108px;
    padding-top: 132px;
    padding-bottom: 104px;
  }

  .section-title {
    font-size: 42px;
  }

  .products-section {
    padding-bottom: 104px;
  }

  .products-card {
    padding: 72px 48px 64px;
  }

  .products-card__title {
    font-size: 42px;
  }

  .contact2-grid {
    gap: 56px;
  }
}

@media (max-width: 720px) {
  .hero-section {
    align-items: flex-start;
    padding-top: 168px;
    padding-bottom: 72px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .brand {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-copy {
    gap: 26px;
  }

  .hero-title {
    gap: 8px;
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.65;
    max-width: 28ch;
  }

  .hero-secondary {
    font-size: 15px;
    line-height: 1.72;
    max-width: 32ch;
  }

  .hero-secondary__break {
    display: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
    margin-bottom: 18px;
  }

  .hero-actions .button-pill {
    width: 100%;
  }

  .hero-divider {
    --hero-divider-width: 214px;
    --hero-divider-height: 101px;
    --hero-divider-offset-y: -24px;
    --hero-divider-circle-top: 24px;
  }

  .about-section__inner {
    gap: 88px;
    padding-top: 132px;
    padding-bottom: 88px;
  }

  .about-section__group {
    gap: 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-copy {
    gap: 12px;
  }

  .section-copy p {
    font-size: 16px;
    line-height: 1.6;
  }

  .products-section {
    padding-bottom: 88px;
  }

  .products-card {
    gap: 24px;
    padding: 52px 28px 44px;
    border-radius: 26px;
  }

  .products-card__title {
    font-size: 32px;
  }

  .products-card__copy {
    gap: 16px;
  }

  .products-card__copy p {
    font-size: 16px;
    line-height: 1.6;
  }

  .products-card__actions {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .button-pill--card-solid,
  .button-pill--card-outline {
    width: 100%;
    min-height: 44px;
  }

  .contact2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 84px;
  }

  .contact2-copy {
    max-width: none;
    padding-top: 0;
  }

  .contact2-card {
    padding: 38px 34px 32px;
  }

  .contact2-title {
    font-size: 38px;
  }

  .contact2-form {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .contact2-form textarea {
    min-height: 180px;
  }

  .footer2-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container-width), calc(100% - 24px));
  }

  .brand img {
    width: 176px;
  }

  .site-header {
    gap: 26px;
  }

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

  .header-actions .button-pill {
    width: 100%;
    padding: 0 20px;
  }

  .hero-section {
    padding-top: 186px;
    padding-bottom: 76px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero-actions {
    margin-bottom: 44px;
  }

  .hero-divider {
    --hero-divider-offset-y: 6px;
  }

  .hero-description {
    font-size: 17px;
    max-width: 26ch;
  }

  .hero-secondary {
    max-width: 30ch;
  }

  .about-section__inner {
    gap: 72px;
    padding-top: 126px;
    padding-bottom: 76px;
  }

  .products-section {
    padding-bottom: 72px;
  }

  .products-card {
    padding: 44px 22px 38px;
    border-radius: 24px;
  }

  .contact2-section {
    padding-top: 24px;
  }

  .contact2-grid {
    gap: 32px;
    padding-bottom: 64px;
  }

  .contact2-description {
    margin-top: 18px;
    font-size: 16px;
  }

  .contact2-details {
    margin-top: 44px;
  }

  .contact2-card {
    border-radius: 20px;
    padding: 30px 24px 24px;
  }

  .contact2-card__title {
    font-size: 16px;
  }

  .contact2-form label {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .contact2-form input,
  .contact2-form textarea {
    font-size: 16px;
  }

  .contact2-form input {
    min-height: 46px;
  }

  .contact2-form textarea {
    min-height: 156px;
  }

  .contact2-form__actions {
    justify-content: stretch;
  }

  .contact2-form__button {
    width: 100%;
  }

  .footer2-inner {
    gap: 18px;
  }

  .footer2-copy {
    font-size: 15px;
  }

  .footer2-logos {
    gap: 16px;
  }

  .footer2-logos__divider {
    height: 24px;
  }

  .footer2-logo {
    height: 24px;
  }
}
