:root {
      --primary-color: #3498db;
      --secondary-color: #ffffff;
      --base-color: #000;
      
      --scaler-x: 1;
      --scaler-y: 1;

      --font-size-base: 16px;
    }

body {
      font-family: "TikTok Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100;

    box-sizing: content-box;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.mobile.container {
    display: flex;
    flex-direction: column;

    height: 100vh;
    min-height: 100vh;

    width: min(100vw, 768px);
    min-width: min(100vw, 768px);

    overflow: scroll;
}

.container.row {
    display: flex;
    flex-direction: row;
}

.container.column {
    display: flex;
    flex-direction: column;
}

.mobile .text.small, .mobile .text.sm, .mobile .button .text {
    font-size: 13px;
    letter-spacing: -0.3px;
    font-weight: 350;
}

.mobile .text.xs {
    font-size: 11px;
    letter-spacing: -0.25px;
    font-weight: 400;
}

.mobile .title {
    font-size: 38px;
    letter-spacing: -0.15px;
    font-weight: 300;
    line-height: 46px;
}

.mobile .subtitle {
    font-size: 24px;
    letter-spacing: -0.11px;
    font-weight: 350;
    line-height: 31px;
}

.mobile .text.content, .mobile .text.base {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 300;
    line-height: 23px;
}

.mobile .footnote {
    font-size: 10px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.mobile .cover {
    background-image: url(/css/media/doctor-levshina-photo.jpg);
    width: min(100vw, 768px);
    height: 100vh;
    background-position-x: center;
    background-position-y: -80px;
    background-size: max(min(100vw, 768px), 880px);
    position: fixed;
    z-index: 24;

}

.mobile .main {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 32;
    width: min(100vw, 768px);
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
}

.mobile .main .content {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);

    padding: calc(var(--font-size-base) * 1.5) calc(var(--font-size-base) * 2);
    box-shadow: 0 0 48px 64px rgba(255, 255, 255, 0.98);
}

.mobile .bubble {
    width: 100vw;
    height: calc(520px * var(--scaler-y));
    min-height: calc(520px * var(--scaler-y));
    /* background-color: rgba(255, 255, 255, 1);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 290px, rgba(255, 255, 255, 0.98) 520px); */
}


.mobile .fader {
    width: 100%;
    height: calc(148px * var(--scaler-y));
}

.mobile .logo {
    width: 24px;
    height: 24px;

    mask-size: 24px 24px;

}

.spacer {
    display: block;
    width: 100%;
    height: var(--font-size-base);
    min-height: var(--font-size-base);
}

.spacer.xl {
    display: block;
    width: 100%;
    height: calc(var(--font-size-base) * 2);
    min-height: calc(var(--font-size-base) * 2);
}

.spacer.xs {
    display: block;
    width: 100%;
    height: calc(var(--font-size-base) * 0.3);
    min-height: calc(var(--font-size-base) * 0.3);
}

.divider {
    display: block;
    width: 50%;
    height: 1px;
    background-color: #EBEBEB;

    margin-top: 4px;
    margin-bottom: 4px;

    min-height: 1px;
}


.mobile .button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 32px;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    width: fit-content;
}


.mobile .button .text{
    font-size: 15px;
    letter-spacing: -0.3px;
    font-weight: 500;
}

.mobile .block .subtitle {
    margin-bottom: 24px;
}

.mobile .block .item {
    margin-bottom: 32px;
}

.mobile .block .item .text {
    margin-bottom: 16px;
}

.mobile .block .item:last-of-type {
    margin-bottom: 0;
}

.text.bold {
    font-weight: 500 !important;
}


.remark {
    font-size: 12px;
    opacity: 0.6;
    line-height: 18px;
}

.mobile li {
    margin-bottom: 8px;
}

.text b, b {
    font-weight: 500;
}

h2 {
    font-weight: 300;
    line-height: 140%;
}

.text a {
    text-decoration: none;
    color: var(--primary-color);
}

.group.row {
    display: flex;
    flex-direction: row;
}

.button {
    cursor: pointer;
}

.social.button {
    display: flex;

    --button-size: 48px;

    background-color: rgba(208, 208, 208, 0.2);
    width: var(--button-size);
    height: var(--button-size);

    max-width: var(--button-size);

    border-radius: 50%;

    margin: 0;
    padding: 0;

    align-items: center;
    justify-content: center;

    margin-right: 12px;
}

.icon {
    --icon-size: 28px;

    mask-image: url(/css/media/icn-2leafs.svg);
    background-color: var(--base-color);

    mask-position: center center;

    width: var(--icon-size);
    height: var(--icon-size);

    mask-size: var(--icon-size) var(--icon-size);

}

.icon.social-x {
    mask-image: url(/css/media/icn-social-x.svg);
}

.icon.social-instagram {
    mask-image: url(/css/media/icn-social-instagram.svg);
}

.icon.social-whatsapp {
    mask-image: url(/css/media/icn-social-whatsapp.svg);
}

.icon.social-telegram {
    mask-image: url(/css/media/icn-social-telegram.svg);
}

.icon.social-youtube {
    mask-image: url(/css/media/icn-social-youtube.svg);
}

.icon.mail {
    mask-image: url(/css/media/icn-mail.svg);
}

.icon.phone {
    mask-image: url(/css/media/icn-phone.svg);
}

.banner {
    width: 100%;
    height: 20%;
    min-height: max(140px, 20vh);

    border-radius: 12px;
    background-size: cover;

}

.banner.one {
    background-image: url(/css/media/2149365771.jpg);
}

.banner.two {
    background-image: url(/css/media/2148537355.jpg);
}


.footer {
    margin-top: 24px;
    /* background-color: rgba(0, 0, 0, 0.2); */

    padding-top: 12px;
    padding-bottom: 24px;

}