@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary: #5C068C;
    --primary-light: #771caa;

    --accent: #FF4949;

    --green: #5ea54b;

    --secondary: #FFE8D9;

    --gray: #fafafa;
}


body {
    font-family: "Inter", sans-serif;
    color: #000000;
    font-weight: 300;
}

.rounded {
    border-radius: 1rem !important;
}

.margin-default {
    margin: 6rem 0;
}
.padding-default {
    padding: 6rem 0;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-gray {
    background-color: var(--gray) !important;
}




.form-label {
    margin-bottom: 4px;
}
.form-control {
    border-radius: 50px;
    outline: none !important;
    box-shadow: none !important;
    padding: 0.65rem 1.25rem;
}
.form-control:focus {
    border-color: var(--primary) !important;
}




.btn {
    font-weight: 300;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
}
.btn-primary:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 300;
}


.header {
    padding: 1.5rem 0;
}
.header .image {
    height: 95px;
}
.header .image img {
    max-width: 100%;
    max-height: 100%;
}
.header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header__inner .cta {
    margin-left: auto;
}


.text-accent {
    color: var(--primary) !important;
}



.icon-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.icon-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.icon-row__icon {
    font-size: 32px;
    margin-right: 1rem;
    color: var(--green) !important;
}
.icon-row__text {
    font-size: 1.15rem;
    font-weight: 300;
}

.square-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #cccccc;
    border-radius: 1rem;
    overflow: hidden;
}
.image-holder {
    background-color: #cccccc;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}
.image-holder img {
    max-height: 100%;
    max-width: 100%;
}


.stats-bubbles-holder {
    display: flex;
    justify-content: space-evenly;
}
.stats-bubble {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
}
.stats-bubble__title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
}
.stats-bubble__text {
    font-size: 16px;
    text-align: center;
}
@media only screen and (max-width: 991px) {
    .stats-bubble {
        width: 150px;
        height: 150px;
        padding: 22px;
    }
    .stats-bubble__title {
        font-size: 28px;
    }
    .stats-bubble__text {
        font-size: 14px;
    }
}


.w-80 {
    width: 80% !important;
}


.user-journey-holder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.user-journey-block {
    background-color: var(--gray);
    border-radius: 1rem;
    display: flex;
    padding: 1rem;
}
.user-journey-block__icon {
    flex: 0 0 80px;
    font-size: 48px;
    color: var(--primary);
    display: flex;
    align-items: center;
}
.user-journey-block__title {
    font-weight: 500;
}



.logo-scroller {
    width: 100%;
    overflow: hidden;
}
.logo-scroller__holder {
    display: flex;
    transform: translateX(0);
    animation-name: scroll-logos;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.logo-scroller__part {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.logo-scroller__part .image {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-scroller__part img {
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (max-width: 1500px) {
    .logo-scroller__part .image {
        width: 150px;
        height: 40px;
    }
}

@media only screen and (max-width: 1200px) {
    .logo-scroller__part .image {
        width: 130px;
        height: 35px;
    }
}

@media only screen and (max-width: 991px) {
    .logo-scroller__holder {
        animation-name: scroll-logos-mobile;
        animation-duration: 25s;
    }
    .logo-scroller__part {
        flex: 0 0 300%;
        width: 300%;
    }
    .logo-scroller__part .image {
        width: 120px;
        height: 35px;
    }
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes scroll-logos-mobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-300%);
    }
}



.faq-holder {
    border: 1px solid #E6E7EB !important;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-button {
    cursor: pointer !important;
    border: none !important;
    background-color: transparent !important;
    width: 100%;
    font-weight: 300;
    font-size: 1.1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}
.faq-holder .card {
    border: none !important;
    border-top: 1px solid #E6E7EB !important;
}
.faq-button__text {
    font-weight: 400;
}
.faq-button__icon {
    color: var(--accent);
}



.box {
    background-color: var(--gray);
    padding: 3rem;
    border-radius: 1rem;
}



footer {
    background-color: var(--gray);
    padding-top: 3rem;
    padding-bottom: 1rem;
}
.footer-logo {
    height: 95px;
}
.footer-credits {
    color: inherit !important;
    text-decoration: none !important;
    font-size: 12px;
}
.footer-credits:hover {
    opacity: 0.7;
}


@media only screen and (max-width: 767px) {
    .header {
        padding: 1rem 0;
    }
    .header .image {
        height: 60px;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }

    .margin-default {
        margin: 4rem 0;
    }
    .padding-default {
        padding: 4rem 0;
    }

    .box {
        padding: 1.75rem;
    }

    .icon-row__text {
        font-size: 1rem;
    }

    .faq-button {
        font-size: 1rem;
    }
}
