.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 50% 20% / 10% 40%
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.about {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.edu-about .text-primary {
    color: #ff4880 !important;
}

.edu-about .border-bottom {
    border-bottom: 1px solid #ff4880 !important;
}

.edu-about .text-secondary {
    color: #1d70a2 !important;
}

.edu-about .btn-primary {
    color: #fff !important;
    background-color: #ff4880 !important;
    border-color: #ff4880 !important;
}

.edu-about .btn-primary:hover {
    color: #ff4880 !important;
    background-color: #fff !important;
}

.btn-border-radius {
    border-radius: 25% 10% !important;
}