body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
}

.typography-heading-22 {
  color: #191c20;
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.typography-title-16 {
  color: #414750;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.typography-body-16 {
  color: #414750;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-wrap: pretty;
}

.typography-body-14 {
  color: #414750;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-wrap: pretty;
}

.globe {
  position: relative;
}

.globe .card {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  left: 0;
  gap: 12px;
  line-height: 140%;
  margin: 0 auto;
  max-width: max(57.5%, 320px);
  padding: 24px;
  position: absolute;
  right: 0;
  top: 52.5%;
}

.globe .card .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.globe .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe .btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.globe .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding: 0;
  transition:
    opacity 0.2s,
    background-color 0.2s;
  opacity: 1;
}

.globe .btn:hover {
  background-color: rgba(149, 56, 115, 0.08);
}

.globe .btn:active {
  background-color: rgba(149, 56, 115, 0.12);
}

@media (max-width: 639px) {
  /* .globe .card {
    bottom: calc(-100% / 6);
  } */

  .typography-heading-22 {
    font-size: 20px;
  }

  .typography-title-16 {
    font-size: 14px;
  }

  .typography-body-16 {
    font-size: 14px;
  }

  .typography-body-14 {
    font-size: 12px;
  }
}

