/* pps */
.pps-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fbff;
}

.pps-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Wrapper */

.pps-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0, 41, 100, 0.1);
}

/* Heading */

.pps-heading {
    position: relative;
    display: flex;
    min-height: 430px;
    padding: 50px;
    align-items: center;
    overflow: hidden;
    background: #002964;
    box-sizing: border-box;
}

.pps-heading::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -110px;
    width: 290px;
    height: 290px;
    border: 44px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.pps-heading::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background: rgba(255, 59, 48, 0.13);
    border-radius: 50%;
}

.pps-heading h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.pps-heading h2 span {
    display: block;
    color: #ff3b30;
}

/* Resource Links */

.pps-links {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 24px;
    gap: 14px;
}

.pps-links a {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr 42px;
    padding: 20px 22px;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    color: #002964;
    background: #f8fbff;
    border: 1px solid #e1e9f5;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.35s ease;
}

.pps-links a::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -60px;
    width: 125px;
    height: 125px;
    background: rgba(0, 41, 100, 0.035);
    border-radius: 50%;
    transition: 0.35s ease;
}

.pps-links a:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateX(7px);
}

.pps-links a:hover::after {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.3);
}

/* Number */

.pps-number {
    position: relative;
    z-index: 2;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.pps-links strong {
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* Arrow */

.pps-arrow {
    position: relative;
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 50%;
    font-size: 19px;
    transition: 0.3s ease;
}

.pps-links a:hover .pps-arrow {
    color: #ff3b30;
    background: #ffffff;
    transform: translateX(4px);
}