@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", sans-serif;
    width: 100%;
}


.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: 0px;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

li{
    list-style: none;
}




.btnsDropShadows {
    box-shadow: 0px 1px 2px 0px #00000014;
    box-shadow: 0px 0px 56px 0px #00000014;
}

.contactusboxDropshadow {
    box-shadow: 0px 2px 2px 0px #0000000A;
    box-shadow: 0px 12px 40px 0px #0000001F;
}

.inputsshadow {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 8px 64px 0px #0000000A;
}

.btnshadow {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 4px 40px 0px #0000001F;
    box-shadow: 0px 2px 12px 0px #FFFFFF14 inset;
}

.btnshadow1 {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 4px 40px 0px #0000001F;
}

.btnshadow2 {
    box-shadow: 0px 2px 2px 0px #00000029;
    box-shadow: 0px 0px 40px 0px #0000000A;
}

.btnshadow3 {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 2px 40px 0px #00000014;
}

.btnshadow4 {
    box-shadow: 0px 2px 12px 0px #00000052 inset;
}

.btnshadow5 {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 4px 40px 0px #0000001F;
    box-shadow: 0px 2px 12px 0px #FFFFFF14 inset;
}

.boxshadow1 {
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.boxshadow2 {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 8px 64px 0px #00000014;
}

.boxshadow3 {
    box-shadow: 0px 1px 2px 0px #0000000A;
    box-shadow: 0px 8px 64px 0px #00000014;
    box-shadow: 0px 4px 12px 0px #FFFFFF52 inset;
}

.boxshadow4 {
    box-shadow: 0px 1px 4px 0px #0000000A;
    box-shadow: 0px 8px 56px 0px #00000014;
}

.boxshadow5 {
    box-shadow: 0px 2px 2px 0px #0000000A;
    box-shadow: 0px 12px 40px 0px #0000001F;
}

.boxshadow6 {
    box-shadow: 0px 1px 2px 0px #00000014;
    box-shadow: 0px 2px 40px 0px #0000000A;
}

.headershow {
    box-shadow: 0px 4px 4px 0px #00000005;
    box-shadow: 0px 8px 100px 0px #00000014;
}





.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.60);
    padding: 16px;
}

.popup.hidden {
    display: none;
}



.dot {
    width: 8px;
    height: 8px;
    background-color: #D9D9D9;
    border-radius: 50%;
    animation: blink 1s infinite both;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}


.progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: #00D566;
    transition: width 1s;
}









/* Slider  */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.slide {
    border: 1px solid #D0D5DD;
    background-color: white;
    padding: 1rem;
    min-width: 280px;
    width: 280px;
    height: auto;
    border-radius: 16px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: start;
}


@media screen and (max-width: 768px) {
    .slide{
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}





.sliderleftshadow {
    background: linear-gradient(270deg, rgba(231, 233, 253, 0) 0%, rgba(231, 233, 253, 0.4) 26.5%, #E7E9FD 100%);
}




.text-transition {
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}
.text-hidden {
    opacity: 0;
}












.text-secondary {
    color: #2C56FE;
}

/* CSS classes for the arrow container */
.arrow {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Initial background color */
.arrow {
    background-color: #DDDDDD;
}


.withoutWithtab-btn {
    cursor: pointer;
}
.withoutWithtab-btn.withoutWithtabactive {
    background-color: #222222;
    color: white;
}
.withoutWithtab-content {
    display: none;
}
.withoutWithtab-content.withoutWithtabactive {
    display: flex;
}


/* faqs tab  */
.faqtab-btn  {
    cursor: pointer;
}
.faqtab-btn.faqsactive {
    background-color: #2C56FE;
    color: white;
}
.faqtab-content {
    display: none;
}
.faqtab-content.faqsactive {
    display: flex;
    flex-direction: column;
}


.plan-container.selected .plan {
    border-color: #172A6E;
    background-color: #E9EBFF;
}

.plan-container.selected .radio-button {
    background-color: #172A6E;
    border-color: #172A6E;
}

.plan-container.selected img.checkbox {
    display: block;
}

.plan-container img.checkbox {
    display: none;
}


.upsellselected {
    background-color: #E9EBFF;
    border-color: #172A6E;
}

.upsellunselected {
    background-color: white;
    border-color: #D0D5DD;
}

.upsellheading{
    line-height: 44px;
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    .upsellheading{
        font-size: 32px;
        line-height: 34px;
    }
}
@media screen and (max-width: 360px) {
    .upsellheading{
        font-size: 26px;
        line-height: 30px;
    }
}
