/*------------------------------------------------------------------
cta.css
Last edited: 10/6/25
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)

[Notes]



-------------------------------------------------------------------*/

.band-cta {
	background: var(--theme-color-blue);
	color: var(--theme-color-light);
	text-align: center;
}

.band-cta .btn {
	background: none;
	border: solid 2px var(--theme-color-light);
}

.band-cta .container-flex-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.band-cta p {
    font-size: var(--theme-fs-medium);
    font-weight: 500;
    line-height: 1.4;
}

.band-cta p:last-child {
    margin-bottom: 0;
}

.band-cta .content-wrapper {
}


.band-cta .btn {
    min-width: max-content;
    padding-inline: 40px;
}

.checkmark-wrapper {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
}

.checkmark-wrapper svg {
    position: absolute;
    display: block;
}

.checkmark-wrapper .svg-circles {
    top: 0;
    left: 0;
    z-index: 1;
    width: 176px;
    height: 176px;
}

.band-cta.active .checkmark-wrapper .svg-circles * {
    opacity: 1;
}

.checkmark-wrapper .svg-circles * {
    fill: var(--theme-color-light);
    transition: opacity 600ms ease-in-out;
    opacity: 0;
}

.checkmark-wrapper .svg-circles .c1 {
    transition-delay: 0;
}

.checkmark-wrapper .svg-circles .c2 {
    transition-delay: 600ms;
}

.checkmark-wrapper .svg-circles .c3 {
    transition-delay: 1200ms;
}

.checkmark-wrapper .svg-circles .c4 {
    transition-delay: 1800ms;
}

.checkmark-wrapper .svg-check {
    top: 50%;
    left: 50%;
    width: 120px;
    height: auto;
    transform: translate(-48%, -50%);
    z-index: 2;
}


/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {

    
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {
    .band-cta {
        text-align: left;
    }
    
    .band-cta .container-flex-center {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 90px;
    }
    .band-cta .content-wrapper {
        padding-top: 0;
        background-repeat: no-repeat;
        background-position: left;
    }
}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
    .band-cta .container-flex-center {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 90px;
    }
    .band-cta .content-wrapper {
        padding-top: 0;
        background-repeat: no-repeat;
        background-position: left;
    }
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}