.steps-to-apply-section {
    padding-block: var(--container-padding-block);
}

.steps-to-apply-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.steps-to-apply-section .steps-to-apply__title {
    margin-top: .5rem;
    margin-bottom: .75rem;
}

.steps-to-apply-section .steps-to-apply__subtitle-top {
}

.steps-to-apply-section .steps-to-apply__subtitle-bottom {
    font-size: 20px;
}

.steps-to-apply-section .steps-to-apply-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    margin-top: 40px;
}

.steps-to-apply-section .steps-to-apply-list .steps-to-apply-list-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: start;
    padding: 2rem;
    border: 1px solid var(--border-gray,#C4CCD1);
    background-color: var(--gray-section-background-color,#F2F4F5);
    border-radius: 1rem;
    position: relative;
}

.steps-to-apply-section .steps-to-apply-list .steps-to-apply-list-item h4{
    font-family: Larken, sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.steps-to-apply-section .steps-to-apply-list .steps-to-apply-list-item h2{
    color: var(--muted-blue);
}

.steps-to-apply-section .arrow-icon{
    position: absolute;
    right: -.5rem;
    top: 50%;
    width: 3rem;
    height: 3rem;
    transform: translate(50%,-50%);
    background-color: #00154A;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.steps-to-apply-section .steps-to-apply-list-item:nth-child(3n) .arrow-icon,
.steps-to-apply-section .steps-to-apply-list-item:last-child .arrow-icon{
    display: none;
}

@media (max-width: 768px) {
    .steps-to-apply-section .steps-to-apply-list {
        grid-template-columns: 1fr;
    }
    .steps-to-apply-section .steps-to-apply-list-item .arrow-icon{
        display: none;
    }
}