
body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(20, 20, 20);
}

.profile-container {
  flex: 1 1 0%;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  height: 100%;
  background-color: rgb(20, 20, 20);
  padding: 64px 20px 32px;
}

.profile-container .wrapper-profile {
  margin: 0px auto;
  height: 100%;
  width: 100%;
  max-width: 580px;
}

.profile-container .wrapper-profile .top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-container .wrapper-profile .profile-picture {
  margin-bottom: 16px;
}

.profile-container .wrapper-profile .profile-picture img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 9999px;
}

.profile-container .wrapper-profile .profile-title {
  display: flex;
  margin-left: 12px;
  margin-right: 12px;
  align-items: center;
}

.profile-container .wrapper-profile .profile-title h1 {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  letter-spacing: -.4px;
  margin: 0;
}

.profile-container .wrapper-profile .profile-description {
  margin-top: 4px;
  margin-left: 24px;
  margin-right: 24px;
}

.profile-container .wrapper-profile .profile-description h2 {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
  margin: 0;
}

.links-container {
  margin-top: 32px;
}

.links-container .link {
  border: 2px solid rgb(34, 34, 34);
  background-color: rgb(34, 34, 34);
  color: rgb(255, 255, 255);
  box-shadow: rgba(33, 33, 33, 0.24) 0px 2px 8px 0px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
  border-radius: 8px;
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.links-container .link:hover {
  box-shadow: rgba(33, 33, 33, 0.24) 0px 4px 12px 0px;
  transform: scale(1.01);
}

.links-container .link {
  margin-bottom: 16px;
}

.links-container .link:last-of-type {
  margin-bottom: 0;
}

.links-container .link .group {
  display: flex;
  align-items: center;
  border: 2px solid rgb(34, 34, 34);
  background-color: rgb(34, 34, 34);
  color: rgb(255, 255, 255);
  box-shadow: rgba(33, 33, 33, 0.24) 0px 2px 8px 0px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
  border-radius: 8px;
  hyphens: auto;
  white-space: normal;
  background: none;
  color: inherit;
  transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 16px 66px;
  text-decoration: none;
}

.links-container .link .group .link-icon {
  display: flex;
  width: 46px;
  height: 46px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  pointer-events: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 4px;
}

.links-container .link .group .link-icon img {
  border-radius: 4px;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.links-container .link .group .arrow {
  width: 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 0;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  position: absolute;
  opacity: .5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.links-container .link .group .arrow:hover {
  opacity: 1;
  background-color: hsla(0, 0%, 100%, .1);
}

.links-container .link .group p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.links-container .link.address {
  padding: 16px 16px;
}

.links-container .link.address .address-image-wrapper img {
  min-height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}

.links-container .link.address .address-info .info-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
}

.links-container .link.address .address-info .info-wrapper p {
  font-size: 14px;
  line-height: 22px;
  color: rgb(153 153 153);
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.links-container .link.address .address-info .button-wrapper {
  width: 100%;
}

.primary-btn {
  font-size: 16px;
  line-height: 24px;
  color: rgb(34, 34, 34);
  font-weight: 600;
  background-color: #fff;
  border-radius: 48px;
  padding: 10px 16px;
  text-decoration: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: solid 2px transparent;
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.primary-btn:hover {
  border-color: rgb(202 252 80 / 1);
}

.bottom-section {
  margin-top: 32px;
}

.bottom-section .footer-label {
  font-size: 14px;
  line-height: 22px;
  color: rgb(153 153 153);
  font-weight: 400;
  text-align: center;
}