.card-container {
    background-color: #FFFFFF;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 16px;
    text-align: center;
    margin-top: 32px;
}

.card-knw-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.card-text-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-knw-desktop {
    width: 60%;
}

.card-knw-mobile {
    width: 90%;
}

.ellipse-1 {
    position: absolute;
}

.ellipse-2 {
    position: absolute;
}

.ellipse-3 {
    position: absolute;
}

.ellipse-4 {
    position: absolute;
}

.card-logo-left {
    position: absolute;
}

.card-logo-right {
    position: absolute;
}

@media (min-width: 0px) and (max-width: 768px) {
    .card-container {
        width: 90%;
    }

    .ellipse-1 {
        display: none;
    }
    
    .ellipse-2 {
        display: none;
    }
    
    .ellipse-3 {
        bottom: -26px;
        left: 5px;
        height: 16px;
    }
    
    .ellipse-4 {
        bottom: -42px;
        left: 23px;
        height: 40px;
    }

    .card-logo-left {
        display: none; 
    }
    
    .card-logo-right {
        width: 100px;
        right: -45px;
        top: -68px;  
    }

    .card-knw-desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .card-container {
        width: 40%;
    }

    .ellipse-1 {
        top: -40px;
        left: 60px;
        height: 50px;
    }
    
    .ellipse-2 {
        top: -45px;
        right: 60px;
        height: 50px;
    }
    
    .ellipse-3 {
        bottom: -27px;
        left: 83px;
        height: 25px;
    }
    
    .ellipse-4 {
        bottom: -35px;
        left: 109px;
        height: 60px;
    }

    .card-logo-left {
        width: 140px;
        left: -80px;
    }
    
    .card-logo-right {
        width: 140px;
        right: -45px;
    }

    .card-knw-mobile{
        display: none;
    }

    .text-end-desktop {
        width: 50%;
    }
}