:root {
    --bg-primary: #e5e5e5;
    --bg-secondary: #0b0d17;
    --bg-tertiary: #23172d;

    --color-primary: #9672fb;
    --color-secondary: rgba(0, 0, 0, 0.84);

    --gradient-bg: linear-gradient(158.45deg, #9672fb 16.23%, #d772fb 89.24%);
    --gradient-btn: linear-gradient(299.57deg, #9672fb 0%, #d772fb 100%);

    --font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    background: var(--bg-primary);
    overflow-x: hidden !important;
}

a,
a:visited,
a:link {
    font-size: 1rem;
    color: var(--color-primary);
    text-decoration: underline;
}

/* Common Styles */
.section {
    padding: 4rem 5rem;
    margin: 0 auto;
}

.button {
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    background: var(--gradient-btn);
    outline: none;
    border: none;
    color: white;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    font-family: var(--font-family);
}

.button:hover {
    cursor: pointer;
    /* raise the button a little and add a small box shadow */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.2rem);
}

.button:active {
    /* when the button is pressed down, remove the box shadow */
    box-shadow: none;
    transform: translateY(0);
}

/* Styles For Hero Section */

.hero {
    position: relative;
    margin: 4rem 0;
}

.hero__logo {
    width: 225px;
    height: 113px;
}

.hero__logo img {
    width: 100%;
    height: 100%;
}

.hero__contents {
    display: flex;
}

.hero__contents--left {
    flex: 1;
    padding-top: 2rem;
}

.hero__contents--left h1 {
    font-weight: 800;
    font-size: 3.125rem;
    line-height: 4.2313rem;
    letter-spacing: -4%;
    color: var(--color-secondary);
}

.hero__contents--left-paragraph {
    font-size: 18px;
    max-width: 80%;
    padding-top: 1.3125rem;
    line-height: 155.4%;
    letter-spacing: -0.04em;
    color: var(--color-secondary);
}

.hero__contents--left-button {
    padding-top: 2rem;
}

.hero__contents--right {
    /* position: relative; */
    flex: 1;
    width: 100%;
}

.hero__circle {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: var(--gradient-bg);
    top: -40%;
    right: -20%;
    z-index: -1;
}

.hero__contents--right img {
    position: absolute;
    /* transform: translateY(-15%) translateX(20%); */
    right: 0;
    top: 10%;
}

@media screen and (max-width: 1400px) {
    .hero__circle {
        top: -45%;
        right: -25%;
    }
}

@media screen and (max-width: 1200px) {
    .hero__circle {
        top: -40%;
        right: -35%;
    }

    .hero__contents--left h1 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .hero__contents--right img {
        width: 550px;
    }

    .hero__contents--left-paragraph {
        line-height: 140.4%;
    }
}

@media screen and (max-width: 1080px) {
    .hero__contents {
        flex-direction: column;
    }

    .hero__contents--right {
        margin-top: 6rem;
        position: relative;
    }

    .hero__circle {
        /* display: none; */
        /* position: relative; */
        width: 900px;
        height: 900px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero__contents--right img {
        position: relative;
        width: 750px;
        height: 750px;
    }
    .hero__logo {
        margin: 0 auto;
    }

    .hero__contents--left {
        padding-top: 0;
        width: 70%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 3rem;
    }
    .hero__contents--left-paragraph {
        text-align: center;
        max-width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .hero__contents--right img {
        width: 500px;
        height: 500px;
    }

    .hero__circle {
        /* display: none; */
        /* position: relative; */
        width: 600px;
        height: 600px;
    }

    .hero__contents--left h1 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .hero__contents--left-paragraph {
        font-size: 16px;
        line-height: 120.4%;
    }

    .hero {
        margin-top: 2rem;
    }

    .section {
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 600px) {
    .hero__contents--right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__contents--right img {
        width: 400px;
        height: 400px;
    }

    .hero__circle {
        /* display: none; */
        /* position: relative; */
        width: 500px;
        height: 500px;
    }

    .hero__contents--left {
        width: 100%;
    }
}

/* Feature */

.feature {
    position: relative;
    display: flex;
    padding: 6rem 0;
    width: 100%;
}

.feature__left {
    flex: 1;
}

.feature__left--box {
    position: relative;
    width: 581px;
    height: 415px;
}

.feature__left--box .pill-box {
    background: var(--gradient-bg);
    position: absolute;
    border-top-right-radius: 10%;
    border-bottom-right-radius: 10%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature__left--box img {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(25%) translateY(-15%);
}

.feature__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature__right--contents {
    padding-top: 2rem;
    padding-left: 5rem;
}

.feature__right--contents h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.3125rem;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
}

.feature__right--contents ul {
    padding-top: 1.3125rem;
    padding-left: 1.3125rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature__right--contents ul li {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.875rem;
    letter-spacing: -0.03em;
    color: rgba(0, 0, 0, 0.54);
    position: relative;
}

.feature__right--contents ul li::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 3px;
    background: var(--gradient-bg);
    left: -20px;
    top: 50%;
    transform: translate(0, -50%);
}

.feature__right--button {
    margin-top: 2.625rem;
}

.feature-alternate .feature__left {
    order: 1;
}

.feature-alternate .feature__left--box {
    margin-left: auto;
}

.feature-alternate .feature__left--box .pill-box {
    transform: rotate(180deg);
}

.feature-alternate .feature__left--box img {
    transform: translateX(-25%) translateY(-5%);
    width: 100%;
}

.feature-alternate .feature__right {
    align-items: center;
}

@media screen and (max-width: 1250px) {
    .feature {
        flex-direction: column;
    }

    .feature__left--box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature__left--box img {
        width: auto;
        transform: translateX(0) translateY(0);
    }

    .feature__right--contents {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature__right--contents h2 {
        font-size: 3rem;
        line-height: 3.75rem;
    }

    .feature-alternate .feature__left--box img {
        transform: translateX(0) translateY(0);
        width: auto;
    }

    .feature-alternate .feature__left--box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 3rem;
    }
}

@media screen and (max-width: 650px) {
    .feature__right--contents h2 {
        font-size: 2.5rem;
        line-height: 3.25rem;
        text-align: center;
    }

    .feature {
        padding: 3rem 0;
    }

    .feature__left--box img {
        width: 85%;
        height: auto;
    }
    .feature-alternate .feature__left--box img {
        width: 85%;
        height: auto;
    }

    .feature__right--contents {
        padding-top: 2rem;
        padding-left: 2rem;
    }
}

/* Listtttttttt */
.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0;
}

.list .list__header {
    padding-left: 9.375rem;
    padding-bottom: 5rem;
}

.list__header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.3125rem;
    letter-spacing: -0.03em;
    color: #2f2651;
    position: relative;
}

.list__header h2 span {
    color: var(--color-primary);
}

.list__header h2::after {
    content: '';
    position: absolute;
    width: 7.5rem;
    height: 7px;
    background: var(--gradient-bg);
    left: -12rem;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 13px;
}
.list__contents {
    display: flex;
}

.list__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list__left .timeline {
    padding-left: 10rem;
}

.timeline__outer {
    border-left: 1px solid rgba(150, 114, 251, 0.5);
    list-style: none;
}

.timeline__outer li {
    margin: 2rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.6875rem;
    letter-spacing: -0.03em;
    position: relative;
}

.timeline__outer li::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--gradient-bg);
    border-radius: 999px;
    left: -43px;
    top: 0;
    border: 5px solid var(--bg-primary);
}

.list__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.list__right--contents {
    padding-left: 5rem;
}

.list__right--contents .pill-box {
    background: var(--gradient-bg);
    position: absolute;
    border-top-right-radius: 10%;
    border-bottom-right-radius: 10%;
    top: 50%;
    right: 0;
    width: 40rem;
    height: 26rem;
    transform: rotate(180deg) translate(0, 50%);
}

.list__right--contents img {
    position: relative;
}

@media screen and (max-width: 1250px) {
    .list__contents {
        flex-direction: column;
    }

    .list__right {
        margin-top: 2rem;
    }

    .list__right--contents .pill-box {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

@media screen and (max-width: 650px) {
    .list__left .timeline {
        padding-left: 5rem;
    }

    .list__right--contents {
        padding-left: 0;
    }

    .list__right--contents img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 650px) {
    .list__left .timeline {
        padding-left: 2rem;
    }

    .list__left .timeline .timeline__outer li {
        font-size: 1rem;
    }
}

/* CTA section */
.cta {
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gradient-bg);
    color: white;
}

.cta__title {
    font-size: 3.125rem;
    font-weight: 800;
    line-height: 4.25rem;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 1.25rem;
}

.cta__subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 2.125rem;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 5.625rem;
}

.cta__button .button--white {
    background: white;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.cta__button a {
    text-decoration: none;
}

.cta__button .button img {
    width: 13.75px;
    height: 13.75px;
    margin-left: 2rem;
}

@media screen and (max-width: 850px) {
    .cta {
        padding: 7rem 2rem;
    }

    .cta__title {
        font-size: 2.5rem;
        line-height: 3.25rem;
    }

    .cta__subtitle {
        font-size: 1rem;
        line-height: 1.6875rem;
        margin-bottom: 4.5rem;
    }

    .cta__button .button--white {
        font-size: 0.9rem;
        padding: 1rem 2rem;
    }
}

/* Footer Logo */

.logo_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-secondary);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
}

.footer__left {
    flex: 1;
}

.footer__left--contents {
    margin-left: 6rem;
}

.footer__left--contents a {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0em;
    text-align: left;
    color: white;
    text-decoration: none;
    margin-right: 1.625rem;
    font-feature-settings: 'salt' on, 'liga' off;
}

.footer__right {
    flex: 1;
    margin-right: 6rem;
    display: flex;
    justify-content: flex-end;
}

.copyright {
    font-size: 14px;
    line-height: 24px;

    font-feature-settings: 'salt' on, 'liga' off;

    color: #ffffff;
}

@media screen and (max-width: 850px) {
    .footer {
        flex-direction: column;
    }

    .footer__left--contents {
        padding-left: 0;
        margin-left: 0;
    }

    .footer__right {
        margin-right: 0;
    }
}


/* SVG's */

/* In hero section */
.hero__square {
    position: absolute;
    left: 0;
    top: 176px;
}

.hero__square--1 {
    position: absolute;
    right: 50%;
    top: 80%;
}

.hero__triangle {
    position: absolute;
    left: 648px;
    top: 76px;
}

.hero__triangle--1 {
    position: absolute;
    left: 505px;
    top: 683px;
}

.hero__circle--svg {
    position: absolute;
    top: 613px;
    left: 710px;
}

.hero__circle--svg-half {
    position: absolute;
    left: 0;
    top: 75%;
}

.hero__circle--1 {
    position: absolute;
    bottom: 0;
    right: 20%;
}

.feature1__square {
    position: absolute;
    right: 0;
    bottom: 10%;
}

.feature2__square {
    position: absolute;
    left: 0;
    top: 40%;
}

.feature2__circle {
    position: absolute;
    top: 20%;
    left: 45%;
}

.feature3__circle {
    position: absolute;
    right: 0;
    top: 0;
}

.feature3__circle--2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

#list-features {
    position: relative;
}

.list__cricle {
    position: absolute;
    left: 45%;
    top: 20%;
}

.list__triangle {
    position: absolute;
    right: 8%;
    top: 20%;
}

.list__triangle--2 {
    position: absolute;
    right: 55%;
    bottom: 10%;
}

.list__circle {
    position: absolute;
    right: 0;
    bottom: 10%;
}

#cta {
    position: relative;
    overflow: hidden;
}

.cta__long-circle {
    position: absolute;
    bottom: 0;
    left: 45px;
    opacity: 0.3;
}

.cta__long-circle--1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.cta__square {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 0.3;
}

.cta__square--1 {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.3;
}

.cta__long-circle--2 {
    position: absolute;
    bottom: 0;
    right: 18%;
    opacity: 0.3;
}

.cta__triangle {
    position: absolute;
    top: 85px;
    left: 20%;
}

.cta__triangle--1 {
    position: absolute;
    right: 0;
    top: 15%;
}

.cta__square--2 {
    position: absolute;
    bottom: 15%;
    left: 0;
}

.cta__circle {
    position: absolute;
    right: 25%;
    bottom: 25%;
}


@media screen and (max-width: 728px) {
    svg {
        display: none;
    }
}

.brand-link .brand-image {
    width: 100%;
}

.brand-link .img-circle {
    border-radius: 0px;
    max-height: none;
    margin-left: 0px;
    float: none;
}

        [data-title]:hover:after {
            opacity: 1;
            transition: all 0.1s ease 0.5s;
            visibility: visible;
        }
        [data-title]:after {
            content: attr(data-title);
            background-color: #CAD2CA;
            color: #000000;
            position: absolute;
            padding: 5px;
            left: 100%;
            white-space: nowrap;
            box-shadow: 1px 1px 3px #222222;
            opacity: 0;
            border: 1px solid #111111;
            border-radius: 2px;
            z-index: 99999;
            visibility: hidden;
        }

        [data-title] {
            position: relative;
        }
        
        .form-group .checkbox {
            margin-top: 0px;
            margin-bottom: 0px;
        }