@use "../../../../src/scss/utilities.scss";
.twoColumnsWithBullets{
    &__title{
        color: var(--b-medianoche);
    }
    &_subtitle{
        font-size: 1.2rem;
        @extend %openSans-font;
    }
    &_card{
        height: 100%;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: none;
        font-size: 1.2rem; 
        @extend %VFSans-font;
        &__title{
            background-color: rgba(0, 146, 209, 0.12);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            min-height: 50px;
            width: 100%;
            font-size: 0.9rem;
            font-size: clamp(0.9rem, 0.7428571428571429rem + 0.7857142857142858vw, 2rem);   
            font-weight: 600;
            color: #004976;
            text-align: center;
            text-transform:capitalize;
            @extend %VFSans-font;

            span{
                height: 100%;
                aspect-ratio: 1/1;
                color: var(--b-cereza);
                display: flex;
                justify-content: center;
                align-items: center;
                border: solid 2px var(--b-cereza);
                border-radius: 50%;
                font-size: 1rem;
                font-weight: 900;
            }
        }
        &_subtitle{
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: normal;
            color: #27251f;
            @extend %openSans-font;
        }
        &__bullets{
            &-item{
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 1rem;
                font-size: 1.1rem;
                @extend %openSans-font;@extend %openSans-font;
            }
        }
    }
    &_bottomtext{
        @extend %openSans-font;
        font-size: 1.2rem;
        p{
            @extend %openSans-font;
            font-size: 1.2rem;
        }
    }
}