.intro__content {
    height: calc(var(--app) - 103px);
    /*overflow-y: auto;*/
}
.zoomed-in .intro__content {
    height: var(--app);
}
.intro__content-row {
    height: 100%;
    align-items: center;
    justify-content: center;
}
.intro__title-holder {
    align-self: flex-start;
    margin-bottom: 3.2rem;
}

.intro__title {
    font-family: 'GT Ultra Lloyds', sans-serif;
    font-size: 5.4rem;
    font-style: normal;
    font-weight: 900;
    line-height: 95%; /* 51.3px */
    letter-spacing: -1.89px;
    padding: 0 50px;
}

.intro__body {
    margin-bottom: 5rem;
}
.intro__body-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease;
    padding: 0 30px;
    max-width: 430px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.intro__img-holder {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.intro__img > svg {
    display: block;
    width: 101px;
    height: 100px;
}
.intro__btn-holder {
    margin-bottom: 3rem;
}
.intro__btn {
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 400;
    font-style: normal;
    padding: 12px 32px;
    background-color: var(--white);
    border: none;
    border-radius: 15px;
    color: #0B3239;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 2rem;
}
.intro__btn:hover, .intro__btn:focus {
    color: #0B3239;
}
.intro__btn-text {
    font-size: 1.6rem;
    display: block;
}
.intro__terms {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 1.2rem;
    text-decoration: none;
}

a.intro__terms {
    text-decoration: underline;
    color: var(--dark-text);
}

.intro__alt {
    display: none;
}

.zoomed-in .intro__alt {
    display: flex;
    justify-content: center;
}
.zoomed-in .intro__alt-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

/*Animations*/
.intro__img > svg,
.intro__title,
.intro__body-text,
.intro__btn,
.intro__terms {
    opacity: 0;
}

.intro__content {
    animation: overflow 0.1s ease-out 5.5s forwards;
    overflow-y: hidden;
}

@keyframes overflow {
    0%, 99% {
        overflow-y: hidden;
    }

    100% {
        overflow-y: auto;
    }
}

/* Logo */
.intro .header__logo-img {
    position: relative;
    top: calc(50vh - 96px);
    width: 192px;
    height: auto;
    animation: animLogo 1s ease-out 1s forwards;
}
.zoomed-in .header__logo-img {
    max-width: 36px;
    object-fit: contain;
}

@keyframes animLogo {
    to {
        top: 0;
        width: 76px;
    }
}

/* Telescope */
.intro__img > svg {
    position: relative;
    top: calc(50vh - 250px);
    width: 310px;
    height: 310px;
    transform: scaleX(-1);
    animation: animImg 2s ease-out 1.5s forwards;
}

@keyframes animImg {
    /*start*/
    0% {
        opacity: 0;
        top: calc(50vh - 250px);
    }

    /* fade in */
    40%,60% {
        opacity: 1;
        top: calc(50vh - 250px);
        width: 310px;
        height: 310px;
        transform: scaleX(-1);
    }

    /* flip round and move up */
    100% {
        opacity: 1;
        top: 0;
        width: 101px;
        height: 100px;
        transform: scaleX(1);
    }
}

/* Title */
.intro__title {
    animation: animTitle 1s ease-out 3s forwards;
    transform: scale(0.5);
}

@keyframes animTitle {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Body text */
.intro__body-text {
    animation: animBodyText 0.4s ease-out 4.5s forwards;
}

@keyframes animBodyText {
    to {
        opacity: 1;
    }
}

/* Button */
.intro__btn {
    animation: animButton 0.4s ease-out 4.8s forwards;
}

@keyframes animButton {
    to {
        opacity: 1;
    }
}

/* QR code -desktop only */
@media (min-width: 992px) {
    .intro__alt {
        opacity: 0;
        animation: animQR 0.4s ease-out 5.1s forwards;
    }

    @keyframes animQR {
        to {
            opacity: 1;
        }
    }
}

/* Terms */
.intro__terms {
    animation: animTerms 0.4s ease-out 5.1s forwards;
}

@keyframes animTerms {
    to {
        opacity: 1;
    }
}


/* Responsive */
@media (min-width: 576px) {
    .intro__body {
        margin-bottom: 4rem;
    }
    .intro__body-text {
        max-width: 550px;
        font-size: 1.8rem;
    }
    .intro__btn-text {
        font-size: 2rem;
    }
}
@media (min-width: 768px) {
    .intro__title-holder {
        align-self: center;
    }
}
@media (min-width: 992px) {
    .intro__alt {
        display: flex;
        padding-bottom: 4rem;
        align-items: center;
        justify-content: center;
    }
    .intro__alt-inner {
        max-width: 500px;
        display: flex;
        align-items: center;
    }
    .intro__alt-qr-text {
        font-size: 1.8rem;
        text-align: left;
        padding-right: 40px;
        line-height: 1.2;
        max-width: 300px;
    }
    .intro__alt-qr-img {
        max-width: 100px;
        margin-left: auto;
        margin-right: auto;
    }
}
