


.container .card {
    margin-top: 10px;
    position: relative;
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: var(--border);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;;
    transition: 0.5s;
}
.doi-tuong{
    height: 350px !important;
}
.container:hover .card {
    filter: blur(5px);
    transform: scale(0.9);
    opacity: 0.5;
    font-size: 15px;
}

.container .card:hover {
    filter: blur(0px);
    transform: scale(1.1);
    opacity: 1;
}

.container .card .circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: circle(180px at center 0);
    text-align: center;
    align-items: center;
}

.container .card .circle h2 {
    color: #fff;
    font-size: 4.5em;
    font-weight: 500;
    padding: 30px 0;
}

.container .card .content {
    margin-top: 20px;
    position: absolute;
    bottom: 10px;
    padding: 20px;
    page-break-after: 20px;
    text-align: center;
}

.container .card .content p {
    color: #666;
    font-size: 15px;
}



.container .card-1 .circle{
    background: var(--gradient);
}

.container .card-2 .circle {
    background: linear-gradient(135deg, #145F4B 0%, #8FBF7A 100%);
}

.container .card-4 .circle {
    background: linear-gradient(135deg, #1B7A63 0%, #C9D68A 100%);
}
.container .card-3 .circle {
    background: linear-gradient(135deg, #166B58 0%, #5FC3A2 100%);
}


