.about-image img {
    width: 100%;
    height: 500px;
    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(188, 225, 238, 0.89), rgba(255, 255, 255, 0.8)), url(../images/Image.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.edu-about .text-secondary {
    color: #363b3c !important;
}

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

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

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