:root {
    --primary-color: #682475;
}
body {
    font-family: Arial, Helvetica, sans-serif !important;
}

.primaryBtn {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.primaryText {
    color: var(--primary-color) !important;
}
.primaryBackground {
    background-color: var(--primary-color) !important;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.smText {
    font-size: 12px;
}

.fade-section {
    opacity: 0;
    transform: translateY(150px); /* Start slightly below */
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-section.visible {
    opacity: 1;
    transform: translateY(0); /* Reset to original position */
}

/* navbar */
.navbar .logo {
    width: 200px;
}

/* banner */
.banner .imageDiv {
    height: 80vh;
}
.banner .bannerCamera {
    max-width: 512px;
    width: 100%;
}
.banner .bannerEllipse {
    width: 90px;
}
.banner .bannerEllipse2 {
    width: 192px;
}
.banner .bannerEllipse3 {
    width: 132px;
}
.banner .bannerCamera{
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease-out;
}

/* platformBenefit */
.platformBenefit .accordion-button:not(.collapsed) {
    background-color: transparent !important;
}
.platformBenefit .accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e9e9e9 !important;
}
.platformBenefit .accordion .accordion-item .accordion-button .accordionNumber {
    width: 24px;
    height: 24px;
}
.platformBenefit .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url(./assets/accordiationIocn.png);
}

/* footer */
footer a .box {
    width: 24px;
    height: 24px;
}

/* Breakpoints */
@media (max-width: 575.98px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .navbar .logo {
        width: 100px;
    }
    .banner .bannerEllipse {
        width: 80px;
        transform: translate(-50%, 63%) !important;
    }
    .banner .bannerEllipse2 {
        width: 120px;
        transform: translate(-110%, -12%) !important;
    }
    .banner .bannerEllipse3 {
        width: 92px;
        transform: translate(17%, 100%) !important;
    }
}
