.university-breadcrumb {
    padding: 100px 0 90px;
    background:
        linear-gradient(
            90deg,
            rgba(48,25,90,.92),
            rgba(27,57,117,.78)
        ),
        url("../derr.jpg") center/cover no-repeat;
}

.university-breadcrumb-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #d4a862;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.university-breadcrumb .breadcrumb__title {
    margin-bottom: 10px;
    color: #fff;
}

.university-breadcrumb-location {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.university-breadcrumb-location i {
    margin-right: 6px;
    color: #d4a862;
}

.university-image-card {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 14px;
}

.university-image-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.university-info-section {
    padding-top: 0;
}

.university-info-card {
    height: 100%;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #e5e8ee;
    border-radius: 14px;
    text-align: center;
}

.university-info-card > i {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1b3975;
    color: #fff;
}

.university-info-card span {
    display: block;
    margin-bottom: 5px;
    color: #7a8495;
    font-size: 12px;
}

.university-info-card strong {
    display: block;
    color: #1b3975;
    font-size: 14px;
}

.university-light-section {
    background: #f8f9fc;
}

.university-section-heading {
    margin-bottom: 30px;
}

.university-section-heading span {
    display: block;
    margin-bottom: 8px;
    color: #d4a862;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.university-section-heading h2 {
    margin: 0;
    color: #1b3975;
    font-size: 32px;
}

.university-section-heading h2 strong {
    color: #d4a862;
}

.university-document-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    background: #fff;
    border: 1px solid #e5e8ee;
    border-radius: 10px;
}

.university-document-card i {
    color: #1b3975;
    font-size: 18px;
}

.university-document-card span {
    color: #5f6c80;
    font-size: 14px;
}

.university-process-card {
    height: 100%;
    padding: 25px;
    background: #fff;
    border: 1px solid #e5e8ee;
    border-radius: 12px;
}

.university-process-number {
    margin-bottom: 15px;
    color: #d4a862;
    font-size: 25px;
    font-weight: 700;
}

.university-process-card h3 {
    margin: 0;
    color: #1b3975;
    font-size: 17px;
}

.university-faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.university-faq-wrapper details {
    margin-bottom: 12px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid #e5e8ee;
    border-radius: 10px;
}

.university-faq-wrapper summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 0;
    cursor: pointer;
    color: #1b3975;
    font-size: 15px;
    font-weight: 600;
    list-style: none;
}

.university-faq-wrapper summary::-webkit-details-marker {
    display: none;
}

.university-faq-wrapper summary i {
    transition: .3s ease;
}

.university-faq-wrapper details[open] summary i {
    transform: rotate(180deg);
}

.university-faq-wrapper details p {
    margin: 0;
    padding: 0 0 18px;
    color: #697589;
    font-size: 14px;
    line-height: 1.7;
}

.university-apply-section {
    padding: 70px 0;
}

.university-apply-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 45px;
    background: #1b3975;
    border-radius: 15px;
}

.university-apply-inner > div:first-child {
    max-width: 700px;
}

.university-apply-inner span {
    color: #d4a862;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.university-apply-inner h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 30px;
}

.university-apply-inner h2 strong {
    color: #d4a862;
}

.university-apply-inner p {
    margin: 0;
    color: #e5e9f1;
    font-size: 14px;
}

.university-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    background: #d4a862;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 767px) {

    .university-breadcrumb {
        padding: 75px 0 65px;
    }

    .university-breadcrumb .breadcrumb__title {
        font-size: 28px;
    }

    .university-image-card,
    .university-image-card img {
        min-height: 230px;
        height: 230px;
    }

    .university-section-heading h2 {
        font-size: 27px;
    }

    .university-apply-inner {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .university-apply-inner h2 {
        font-size: 25px;
    }

}