@font-face {
  font-family: 'UniversNext Light';
  src: url('./fonts/univers/UniversNext_Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UniversNext Regular';
  src: url('./fonts/univers/UniversNext_Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UniversNext Bold';
  src: url('./fonts/univers/UniversNext_Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.un_light {
  font-family: 'UniversNext Light';
  font-weight: normal;
  font-style: normal;
}

.un_regular {
  font-family: 'UniversNext Regular';
  font-weight: normal;
  font-style: normal;
}

.un_bold {
  font-family: 'UniversNext Bold';
  font-weight: normal;
  font-style: normal;
}

strong,b {
  font-family: 'UniversNext Bold';
  font-weight: normal;
  font-style: normal;
}

:root {
    --lightgrey: rgba(239,239,239,1);
    --white: rgba(255,255,255,1);
    --black: rgba(0,0,0,1);
    --green: rgba(37,211,102,1);
}

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

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.button {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.button--green {
    color: var(--white);
    background-color: var(--green);
}

.button__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.container {
    display: grid;
    align-content: center;
    width: 100vw;
    min-height: 100dvh;
}

.content {
    display: grid;
    grid-template-rows: 16px 1fr auto;
    max-width: calc(100vw - 30px);
    max-height: 100dvh;
    margin: 0 auto;
}

.content__inner {
    grid-row: 2;
    max-width: 586px;
    /* width: 100vw; */
    /* max-height: calc(100dvh - 32px);
    height: 100%; */
    margin: 0 auto;
    padding: 28px 24px 21px 24px;
    overflow-y: auto;
    border-radius: 18px;
    background-color: var(--white);
}

.content__header {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
}

@media screen and (max-width: 586px) {
    .content__header {
        grid-template-columns: 2fr 1fr;
    }
}

.content__footer {
    grid-row: 3;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    padding: 24px;
}

.content__footer a {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.content__title {
    font-size: 24px;
    color: var(--black);
    max-width: 60%;
    margin: 0 0 24px 0;
}

@media screen and (max-width: 586px) {
    .content__title {
        font-size: 18px;
        max-width: 100%;
    }
}

.content__bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px 0;
}

.bullet {
    display: grid;
    grid-template-columns: 30px 1fr;
    /* align-items: flex-start; */
    gap: 12px;
}

.bullet__icon {}

.bullet__content {
    /* padding: 7px 0 0 0; */
}

.bullet__title {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.bullet__text {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
}

.popup {
    position: fixed;
    bottom: 50%;
    right: 50%;
    /* max-width: 484px; */
    max-width: 586px;
    width: 100vw;
    max-height: calc(100dvh - 60px);
    height: auto;
    margin: 30px 0 0 0;
    overflow-y: auto;
    z-index: 2;
    opacity: 0;
    border-radius: 18px;
    padding: 28px 24px 24px 24px;
    background-color: var(--white);
    transform: translate3d(-100vw, 50%, 0);
    transition: margin 350ms ease-in-out, opacity 350ms ease-in-out;
}
.popup.active {
    margin: 0;
    opacity: 1;
    transform: translate3d(50%, 50%, 0);
}

.popup__title {
    font-size: 20px;
}

.popup__text {
    font-size: 16px;
}

.blur {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    z-index: 1;
    backdrop-filter: blur(50px);
    transform: translate3d(-100vw, 0, 0);
    transition: opacity 350ms ease-in-out;
}
.blur.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-color: transparent;
}