:root {
  --pink: #e6808a;
  --blue: #00aff0;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  background-color: #1f1f1f;
  flex-flow: column;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  display: flex;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

a {
  color: #fff;
  text-decoration: none;
}

.section {
  color: #ffffffbf;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  display: flex;
}

.button {
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 12px;
  padding: 12px 24px;
}

.badge {
  height: 1.5rem;
}

.popup-desc {
  margin-bottom: 8px;
}

.title-wrapper {
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.propic {
  object-fit: cover;
  background-color: #fff;
  border-radius: 100px;
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px #00000014;
}

.icon {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.icon.nomargin {
  margin-right: 0;
}

.popup-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1;
}

.title {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: .5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.link {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start flex-start;
  place-items: center start;
  padding: .5rem;
  text-decoration: none;
  display: flex;
}

.link.focus {
  background-color: var(--pink);
  color: #fff;
  border-color: #00aff0;
  border-radius: 10px;
  font-weight: 700;
}

.link.square {
  border: 4px solid var(--blue);
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(0deg, #000, #0000 30%);
  border-radius: 10px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.container {
  text-align: center;
  margin-top: -5rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.warning-button {
  background-color: #222;
  border-radius: 8px;
  margin-top: 8px;
  padding: 14px 24px;
}

.warning-button.light {
  background-color: #222c;
}

.paragraph {
  color: #bfbfbf;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: .9rem;
}

.pattern {
  background-color: var(--blue);
  background-image: linear-gradient(#00aff080, #00aff080);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  height: 10rem;
}

.link-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-content: start stretch;
  place-items: start stretch;
}

.wrapper {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.popup-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  padding: 2rem;
  font-weight: 400;
  display: flex;
}

.popup {
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #000;
  background-color: #ffffffb3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.label {
  font-size: 1em;
}

.label.light {
  opacity: .75;
  margin-top: 4px;
  font-size: .9em;
  font-weight: 400;
}

.label.bold {
  font-weight: 700;
}

.square-content {
  margin-top: auto;
  padding: 16px;
  font-size: 1.5rem;
  position: absolute;
  inset: auto 0% 0%;
}

.background-image {
  z-index: -1;
  background-color: var(--blue);
  object-fit: contain;
  object-position: 50% 100%;
  background-image: linear-gradient(#00aff080, #00aff080), url('../images/pattern.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 300px;
  width: 100%;
  height: 100%;
  position: relative;
}

.cards {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  background-color: #333;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem;
  display: flex;
}

@media screen and (max-width: 767px) {
  .pattern {
    border-radius: 0;
  }
}

@media screen and (max-width: 479px) {
  .button-wrapper {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }
}


