.ob-acrd {
    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
}

.ob-acrd .card {
    /* display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 64px; */

    border: solid 1px var(--e-global-color-17a8a4f);

    padding: var(--ob-card-padding);

    margin-bottom: -1px;

    width: 100%;
}

.ob-acrd .card h3 {
    font-family: var(--e-global-typography-3732e84-font-family), Sans-serif;
    font-size: var(--e-global-typography-3732e84-font-size);
    font-weight: var(--e-global-typography-3732e84-font-weight);
    color: var(--e-global-color-primary);
    text-align: left;
}

.ob-acrd .card p {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    text-align: left;
}

.ob-acrd .card__top {
    position: relative;

    display: flex;

    flex-direction: row;

    justify-content: center;
    align-items: center;

    width: 100%;

    background-color: transparent;
}

.ob-acrd .card__top > * {
    pointer-events: none;
}

.ob-acrd .card__top__title {
    flex: 1;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ob-acrd > :nth-child(1) h3 {
    max-width: 420px;
}

.ob-acrd > :nth-child(2) h3 {
    max-width: 370px;
}

.ob-acrd > :nth-child(3) h3 {
    max-width: 490px;
}

.ob-acrd > :nth-child(4) h3 {
    max-width: 420px;
}

.ob-acrd .icon-wrapper {
    position: relative;
    display: flex;

    --ob-local-main-sq-size: 26px;
    --ob-local-sq-gap: 2px;

    transition: opacity .1s ease-out;
    transition-delay: 0s;
}

.ob-acrd .icon-wrapper .sq {
    background-color: var(--e-global-color-17a8a4f);

    transition: left .5s;
}

.ob-acrd .icon-wrapper .sq--main {
    width: var(--ob-local-main-sq-size);
    height: var(--ob-local-main-sq-size);
}

.ob-acrd .icon-wrapper .sq--1 {
    position: absolute;

    top: 0;
    left: calc(-1 * (var(--ob-local-main-sq-size) / 2 + var(--ob-local-sq-gap)));

    width: calc(var(--ob-local-main-sq-size) / 2);
    height: var(--ob-local-main-sq-size);
}

.ob-acrd .icon-wrapper .sq--2 {
    position: absolute;

    top: 0;
    left: calc(-1 * (var(--ob-local-main-sq-size) / 2 + var(--ob-local-main-sq-size) / 4 + var(--ob-local-sq-gap) * 2));

    width: calc(var(--ob-local-main-sq-size) / 4);
    height: var(--ob-local-main-sq-size);

    transition-delay: .1s;
}

.ob-acrd .icon-wrapper .sq--3 {
    position: absolute;

    top: 0;
    left: calc(-1 * (var(--ob-local-main-sq-size) / 2 + var(--ob-local-main-sq-size) / 4 + var(--ob-local-main-sq-size) / 6 + var(--ob-local-sq-gap) * 3));

    width: calc(var(--ob-local-main-sq-size) / 6);
    height: var(--ob-local-main-sq-size);

    transition-delay: .2s;
}

.ob-acrd .card__bottom {
    position: relative;

    /* display: none; */
    width: 100%;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
}

.ob-acrd .card__bottom p {
    padding-top: 64px;

    max-width: 670px;
}



.ob-acrd .card {
    position: relative;

    background-color: var(--e-global-color-fb53f0f);

    transition: background-color 1s;
    transition-delay: 0s;
}

.ob-acrd .card[ data-active="true" ] {
    background-color: var(--e-global-color-17a8a4f);

    transition-delay: .7s;
}

.ob-acrd .card::after {
    content: '';
    position: absolute;
    
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    background: var(--ob-global-grainy-texture-url);
    
    background-blend-mode: darken;
    
    /* mix-blend-mode: darken; */
    
    opacity: 0;

    z-index: 0;

    transition: opacity 0.5s;
}

.ob-acrd .card[ data-active="true" ]::after {
    opacity: 0.1;
    transition-delay: 1.4s;
}

.ob-acrd .card::before {
    content: '';
    position: absolute;
    
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    /* background: linear-gradient(13deg, rgba(49, 123, 68, 0.1) 0%, rgba(8, 33, 31, 0) 20%, rgba(8, 33, 31, 0) 80%, rgba(49, 123, 68, 0.4) 100%); */

    background: linear-gradient(13deg, rgba(49, 123, 68, 0.1) 0%, rgba(8, 33, 31, 0.5) 50%, rgba(49, 123, 68, 0.1) 80%, rgba(49, 123, 68, 0.5) 100%);
    
    opacity: 0;

    z-index: 1;

    transition: opacity 0.5s;
}

.ob-acrd .card[ data-active="true" ]::before {
    opacity: 1;
    transition-delay: 1.4s;
}

.ob-acrd .card > * {
    z-index: 10;
}

.ob-acrd .card[ data-active="true" ] h3, .ob-acrd .card[ data-active="true" ] p {
    color: var(--e-global-color-fb53f0f);

    transition-delay: 0.7s;
}

.ob-acrd .card[ data-active="true" ] .icon-wrapper {
    opacity: 0;

    transition: opacity .4s ease-out;
    transition-delay: .7s;
}

.ob-acrd .card[ data-active="true" ] .icon-wrapper .sq--1,
.ob-acrd .card[ data-active="true" ] .icon-wrapper .sq--2,
.ob-acrd .card[ data-active="true" ] .icon-wrapper .sq--3 {
    left: 0;
}


/*--------------------------------------------------------------
# Tablets
--------------------------------------------------------------*/

@media (max-width: 1024px) {
    .ob-acrd .icon-wrapper {
        --ob-local-main-sq-size: 20px;
        --ob-local-sq-gap: 2px;
    }
}

/*--------------------------------------------------------------
# Phones
--------------------------------------------------------------*/

@media (max-width: 767px) {
	.ob-acrd .card__top {
        flex-direction: column-reverse;
        justify-content: end;
        align-items: stretch;
        gap: 32px;
    }

    .ob-acrd .card__top__icon {
        display: flex;
        justify-content: flex-end;
    }

    .ob-acrd .card__bottom p {
        padding-top: 32px;
        padding-bottom: 64px;
    }
}