:root {
    --mute: rgba(189, 189, 189, 1);
    --light: rgba(218, 218, 218, 1);
    
    --black: rgba(1, 1, 1, 1);
    --white: #fff;

    --purple-system: rgba(23, 4, 48, 1);
    --purple-quiz: rgba(29, 4, 61, 1);
    --puple-clock: rgba(51, 16, 99, 1);
    --purple-dark: rgba(10, 0, 30, 1);
    --purple: rgba(15, 0, 46, 1);
    --purple-light: rgba(37, 0, 116, 1);

    --violet: rgba(148, 91, 237, 1);
    --pink: rgba(236, 72, 152, 1);
    --pink-0_4: rgba(236, 72, 152, 1);
    --pink-0_6:rgba(236, 72, 152, 0.4);
    --pink-muted: rgba(197, 169, 255, 1);

    --grad1: linear-gradient(145deg, rgba(144, 91, 241, 1) 0%, rgba(230, 73, 158, 1) 100%);
}
.screen {
    min-height: 100vh;
}
img {
    max-width: 100%;
}
* {
    outline: none !important;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
body {
    line-height: 1;
    font-weight: 400;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    box-sizing: border-box;
}
section {
    padding: 40px 0;
}
html {
    font-size: 20px;
    background: var(--purple-dark);
}
body {
    font-family: "Inter";
    font-size: inherit;
    line-height: 1.5;
    color: var(--white);
}
.mb-0_5 {
    margin-bottom: 0.5rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-1_5 {
    margin-bottom: 1.5rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
    .mob-mb-0_5 {
        margin-bottom: 0.5rem;
    }
    .mob-mb-1 {
        margin-bottom: 1rem;
    }
    .mob-mb-1_5 {
        margin-bottom: 1.5rem;
    }
    .mob-mb-2 {
        margin-bottom: 2rem;
    }
}
.brad-10 {
    border-radius: 10rem !important;
}
strong {
    font-weight: bold;
}
.semi-bold {
    font-weight: 500;
}
.rotate-infinite {
    animation: spin 1.2s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.center {
    text-align: center;
}
.wrapper {
    width: 1000px;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.wrapper-md-inner {
    width: 592px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.wrapper-sm {
    width: 450px;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.wrapper-sm-inner {
    width: 450px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.small {
    font-size: 14px;
}
.block {
    padding: 1rem;
    border-radius: 1rem;
}
.block-lg {
    padding: 2rem 3rem;
    border-radius: 1rem;
}

.border-pink {
    border: 1px solid var(--pink);
}
.border-purple-light {
    border: 1px solid var(--purple-light);
}
.shadow-pink {
    box-shadow: 0px 4px 32px 0px rgba(236, 72, 116, 0.2);
}
p {
    padding-bottom: 0;
}
.btn {
    width: 100%;
    text-decoration: none;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    background: var(--grad1);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    border: 0px solid #000;
    font-size: 18px;
    line-height: 1;
    min-height: 48px;
}
.btn img {
    margin-right: 0.5rem;
    display: block;
}
.btn-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}
h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
}
h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
}
h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
}
h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
}
h5 {
    font-size: 22px;
}
.desk-only {
    display: initial;
}
.text-grad {
    background: var(--grad1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.uppercase {
    text-transform: uppercase;
}
.light {
    color: var(--light);
}
.mute {
    color: var(--mute);
}
.violet {
    color: var(--violet)
}
.pink {
    color: var(--pink);
}
.pink-muted {
    color: var(--pink-muted);
}
.tag {
    display: inline-block;
    border-radius: 10rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
}
.tag-lg {
    display: inline-block;
    border-radius: 10rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
}
.btn-blink {
    overflow: hidden;
    position: relative;
}
.btn-blink:after {
    content: "";
    display: block;
    width: 1rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 1;
    transform: rotate(45deg) scale(2);
    animation: 3s linear 0s infinite normal animation-blink;
}
@keyframes animation-blink {
    0% {
        left: -100%;
    }
    100%,
    20% {
        left: 100%;
        margin-left: 5rem;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 17px;
    }
    html {
        font-size: 16px;
    }
    .desk-only {
        display: none;
    }
    .block-lg {
        padding: 1.5rem 1rem;
    }
}




/* timer */
.timer {
    background: var(--purple-system);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 16px;
}
.timer img {
    display: block;
    margin-right: 5px;
}
.timer .timer-clock {
    width: 78px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background: var(--puple-clock);
    min-height: 32;
    padding: 4px 16px;
}
.timer .wrapper-md-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* hero */
.hero .blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem
}
.hero .blocks .block {
    background: var(--purple);
}
.hero .block .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.hero .block .icon img {
    display: block;
}
.hero .block h4 {
    margin-bottom: 0.5rem;
}
.hero .rating .trusted {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .rating .trusted img {
    max-width: 240px;
    display: block;
}
.hero .rating .line {
    font-size: 15px;
}
.hero .rating .line span {
    font-size: 16px;
}
.hero .rating .verified {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.hero .rating .verified img {
    margin-right: 0.5rem;
    display: block;
}


@media screen and (max-width: 767px) {
    .hero .block {
        padding: 12px 6px;
    }
    .hero .block .icon {
        margin-bottom: 8px;
    }
    .hero .block .icon img {
        width: 34px;
        min-width: 34px;
    }
    .hero .block h4 {
        margin-bottom: 4px;
    }
    .hero .block p {
        font-size: 12px;
        font-weight: 300;
    }
    .hero .tag-lg {
        font-size: 12px;
        padding: 7px 7px;
    }
}



/* reviews */
.reviews {
    background: var(--black);
    /* overflow: hidden; */
}
/* .reviews .swiper {
    overflow: initial;
} */
.reviews .blocks {
    align-items: stretch; 
}
.reviews .block {
    flex-grow: 1;
    background: var(--purple-dark);
    height: auto !important;
    display: flex;
    flex-direction: column;
}
.reviews .author {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.reviews .info {
    font-size: 16px;
}
.reviews .ava {
    width: 48px;
    min-width: 48px;
    aspect-ratio: 1/1;
    margin-right: 1rem;
    background: var(--grad1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews .ava p {
    line-height: 0;
    color: var(--purple-dark);
    font-weight: bold;
}
.reviews .info .name {
    margin-bottom: 6px;
}
.reviews .stats,
.reviews .starts,
.reviews .verified {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.reviews .starts {
    gap: 2px;
}
.reviews img {
    display: block;
}
.reviews .starts {
    margin-right: 1rem;
}
.reviews .verified img {
    margin-right: 0.5rem;
}
.reviews .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.reviews .content > img {
    width: 24px;
}
.reviews .text {
    font-size: 18px;
}
.reviews .content > p {
    margin-top: auto;
}

.reviews .reviews-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}
.reviews .reviews-nav button {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews .reviews-nav button.swiper-button-disabled {
    opacity: 0.5;
}
.reviews .reviews-nav button img {
    width: 16px;
    margin-right: 0;
}



@media screen and (max-width: 767px) {
    .reviews .blocks {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
    .reviews .text {
        font-size: initial;
        min-height: initial;
    }
    .reviews .reviews-nav {
        display: none;
    }
}




/* contact */
.contact {
    background: var(--black);
}
.contact .blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem
}
.contact .block {
    background: var(--purple);
}
.contact .block p {
    font-size: 16px;
}
@media screen and (max-width: 767px) {
    .contact .blocks {
        grid-template-columns: 1fr;
    }
}

/* footer */
footer {
    padding: 1rem 0;
    background: var(--purple-system);
}
.footer-links {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--purple-light);
}
.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links ul a {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    padding: 0 10px;
}


/* quiz */
.survey {
    display: none;
}
.quiz-container {
    background: var(--purple-quiz);
}
.progress-legend {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-line-container {
    display: flex;
    flex-direction: column;
    background: var(--black);
    height: 8px;
    border-radius: 1rem;
    overflow: hidden;
}
.progress-line {
    width: 8px;
    flex-grow: 1;
    background: var(--pink);
    border-radius: 1rem;
    transition: all 0.3s linear;
}
.survey .question:not(.question-1) {
    display: none;
}


/* final */
.final {
    display: none;
    padding-top: 1.5rem;
}
.final-hero {
    position: relative;
    overflow: hidden;
    background: var(--purple-quiz);
}
#confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.final .final-timer {
    padding: 8px 8px 8px 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.final .final-timer .tag {
    padding: 6px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
    width: 66px;
    background: var(--pink-0_6);
}
.final .final-timer img {
    width: 14px;
    display: block;
    margin-right: 3px;
}
.final .final-timer .timer-clock {
    line-height: 1;
}
.final .logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.final .logo img {
    margin-right: 1rem;
    display: block;
}
.final .logo p {
    font-size: 24px;
    font-weight: bold;
}
.final .reward {
    background: rgba(255, 255, 255, 0.04);
}
.final .reward .ico-blocks {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem
}
.final .reward .ico-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.final .reward .ico-block > div > p:first-child {
    font-size: 16px;
}
.final .reward .ico-block img {
    min-width: 40px;
    margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
    .final .final-timer {
        padding: 8px 8px 8px 12px;
        font-size: 12px;
    }
}
