:root {
    --color-brand-secondary: #e8f5fe;
    --color-brand-secondary-10: #ffffff;
    --color-brand-secondary-20: #fafdff;
    --color-brand-secondary-30: #f6fbff;
    --color-brand-secondary-40: #f1f9fe;
    --color-brand-secondary-50: #edf7fe;
    --color-brand-secondary-60: #e8f5fe;
    --color-brand-secondary-70: #bac4cb;
    --color-brand-secondary-80: #8b9398;
    --color-brand-secondary-90: #5d6266;
    --color-brand-secondary-100: #2e3133;

    --color-primary: rgba(139, 59, 126, 1);
    --color-primary-background: rgb(232, 245, 254);
    --color-primary-background-light: rgb(244, 252, 253);
    --text-color: rgba(58, 77, 143, 1);

}

* {
    padding: 0;
    margin: 0;
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
}

.header {
    background: var(--color-brand-secondary);

    .navbar-toggler {
        border: none;
    }

    .btn-login {
        padding-inline: 2rem;
    }
}

.section-title {
    color: var(--text-color);
    font-size: 40px;
}




.banner {
    background: var(--color-brand-secondary);
    display: flex;
    justify-content: center;

    .banner-container {
        max-width: 1344px;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        padding-inline: 1rem;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;

        .banner-image-section {
            flex: 1;
            height: 100%;
            padding-inline: 1rem;
        }

    }


    .banner-content {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: end;
        padding-inline: 0;
        justify-content: flex-end;

        .section-title {
            padding-left: calc(var(--bs-gutter-x) * .5);
            font-size: 42px;
        }
    }

    .cte-text {
        font-size: 22px;
        padding-bottom: 3rem;
        font-weight: 400;
        line-height: 3rem;
    }

    .get-started-btn-container {
        display: flex;
        justify-content: flex-end;
        padding-inline: 0;
    }

    .get-started-btn {
        padding-block: 22.5px;
        width: 300px;
        font-size: 15px;
    }
}

.brand-logos {
    background: var(--color-brand-secondary-30);

    .logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    img {
        opacity: 0.5;
    }
}


#brands {
    background: var(--color-primary-background);

    .banner-brands-context-list {
        padding: 0;

        li {
            padding-bottom: 1rem;
            display: flex;
            gap: 1rem;

            .list-number {
                background-color: rgb(250, 138, 140);
                box-shadow: rgba(250, 138, 140, 0.4) 4px 4px 4px 0;
                overflow: visible;
                border-radius: 5px;
                opacity: 1;
                height: 35px;
                padding: 0 15px;
                margin: 0;
                z-index: 4;
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }
}

#creators {
    position: relative;
    height: 60rem;
    z-index: 1;
    background: var(--color-brand-secondary-30);

    .card-creator {
        z-index: 10;
        width: 20rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 50px;

        .assert {
            position: relative;
            overflow: visible;
            border-radius: 20px;
            opacity: 1;
            min-width: 130px;
            max-width: 130px;
            min-height: 130px;
            width: 130px;
            height: max-content;
            z-index: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .creator-banner-container {
        position: relative;
    }

    .creator-banner-background {
        background: rgba(255, 245, 217, 0.99);
        width: 180px;
        height: 180px;
        border-top-left-radius: 90px;
    }

    .creator-banner-content {
        position: absolute;
        top: 35px;
        width: 400px;
        left: 60px;
        font-size: 32px;
        font-weight: bold;
        color: rgba(58, 77, 143, 1);
    }
}

#creator-banner {
    position: absolute;
    left: 10%;
    top: 300px;
}

#ka-ching {
    position: absolute;
    right: 35%;
    top: 5rem;

    .assert {
        background: rgb(241, 247, 255);
    }

    img {
        top: 15px;
        left: 0;
        display: block;
        position: absolute;
    }
}

#ring {
    z-index: -1;
    right: 9%;
    top: 47rem;
    position: absolute;
}

#creative-freedom {
    position: absolute;
    right: 50%;
    top: 32rem;

    .assert {
        background: rgb(255, 242, 248);
    }
}


#growth-partner {
    position: absolute;
    right: 10%;
    top: 4rem;

    .assert {
        background: rgb(255, 247, 227);
    }

}

#hoe {
    right: 12%;
    top: 30rem;
    position: absolute;

    .assert {
        background: rgb(222, 255, 238);
    }
}


#contact {
    background: var(--color-primary-background);

    .form-content {
        margin: auto;
        max-width: 50rem;
    }

    .contact-us-title {
        display: flex;
        color: var(--text-color);
        font-size: 40px;
        justify-content: center;
        gap: 2rem;
        padding-bottom: 2rem;
        align-items: center;

        .section-title {
            margin: 0;
        }

        .line {
            width: 3rem;
            border: 0;
            border-bottom: 1px solid rgb(58, 77, 143);
        }
    }

    .form-control {
        border-style: solid;
        border-width: 2px;
        border-color: rgb(17, 29, 87);
        border-radius: 10px;
    }
}

#contact-message {
    min-height: 10rem;
}

.form-footer {
    margin-top: 2rem;

    .btn {
        padding-inline: 2rem !important;
    }
}

.footer-container {
    background: rgba(63, 120, 127, 0.1);
    color: rgba(17, 29, 87, 1) !important;

    .logo-sub-text {
        font-size: 18px;
    }

    .nav-link {
        color: rgba(17, 29, 87, 1) !important;
    }

    .footer-social {
        .bi {
            font-size: 30px;
        }
    }

    .footer-copyright {
        font-size: 18px;
        text-align: center;
    }

    .heart {
        color: red;
        font-size: 25px
    }
}


.banner-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

.partner-card {
    max-width: 50rem;
    margin: auto;
    display: flex;
    gap: 2rem;
    flex-direction: row;
    padding-block: 5rem;


    .avatar {
        position: relative;

        .avatar-img {
            width: 15rem;
            height: 15rem;
            border-radius: 100%;
        }

        .dots {
            width: 200px;
            height: 120px;
            position: absolute;
            z-index: -1;
            top: -18%;
            left: 20%;
        }

        .avatar-background {
            position: absolute;
            z-index: -1;
            bottom: -7%;
            height: 100px;
            width: 100px;
        }
    }

    .partner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;

        .partner-name {
            color: #757575;
        }

        .partner-type {
            color: rgb(117, 117, 117);
        }

        .partner-message {
            font-style: italic;
        }
    }
}

.partner-card-navigation {
    display: flex;
    gap: .5rem;
    width: fit-content;
    margin: auto;


    .nav-dot {
        height: 1.5rem;
        width: 1.5rem;
        border-radius: 100%;
        background: rgb(231, 240, 252);
        cursor: pointer;


    }

    .active .nav-dot {
        background: rgb(38, 57, 237);
    }
}

.mobile {
    display: none;
}

@media only screen and (max-width: 992px) {


    .mobile {
        display: block;
    }



    .banner {

        .banner-container {
            flex-direction: column;
            justify-content: center;
        }

        .banner-content {
            margin-top: 3rem;
            text-align: center;
            justify-content: center;
        }

        .banner-image-section {
            padding-inline: calc(var(--bs-gutter-x)* .5);
        }

        .get-started-btn-container{
            display: block;
            padding: 1rem;
        }
        .get-started-btn {
            width: 100%;
        }
    }


    #creators {
        height: initial;

        .card-creator {
            position: initial;
            width: calc(100% - 2rem);
            right: initial;
            left: initial;
            margin: 2rem 1rem;
        }
    }

    #ring {
        right: 4%;
        top: 15rem;

        img {
            height: 100px;
        }
    }

    #creator-banner {
        position: initial;
        width: calc(100% - 2rem);
        right: initial;
        left: initial;
        margin: 2rem 1rem;

        .creator-banner-content {
            width: 300px;
        }
    }

    .partner-card {
        flex-direction: column;
        margin: auto;
        align-items: center;
        padding-block: 2rem;
    }

}