.how-to-apply-section {
padding: 80px 50px;
}

.how-to-apply-section .container {display: flex;justify-content: space-between;align-items: flex-start;max-width: 1500px;margin: 0 auto;gap: 120px;}

.how-to-apply-section .container .how-to-apply-section-left { 
}

.how-to-apply-section .container .how-to-apply-section-left h2 {
    color: rgba(114, 52, 196, 1);
    text-align: left;
}

.how-to-apply-section .container .how-to-apply-section-left-button { 
    width: fit-content;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    border: 1px solid #000;
    padding: 16px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(114, 52, 196, 1);
}

.how-to-apply-section .container .how-to-apply-section-left .how-to-apply-section-left-button.desktop-button {
    display: block;
    margin-top: 70px;
}

.how-to-apply-section .container .how-to-apply-section-left-button.mobile-button {
    display: none;
}

.how-to-apply-section .container .how-to-apply-section-right { 
}

.how-to-apply-section .container .how-to-apply-section-right ul {
    list-style: none;
    padding: 0;
    position: relative;
}

.how-to-apply-section .container .how-to-apply-section-right ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 28px;
    line-height: 140%;
}

.how-to-apply-section .container .how-to-apply-section-right ul li span {
    color: rgba(0, 21, 74, 0.5);
}

.how-to-apply-section .container .how-to-apply-section-right ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: rgba(114, 52, 196, 1);
    border-radius: 50%;
}

.how-to-apply-section .container .how-to-apply-section-right ul li:not(:last-child):after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 2px;
    height: calc(100% + 30px);
    background: rgba(0, 21, 74, 0.1);
}

@media (max-width: 992px) {
    .how-to-apply-section {
        padding: 50px 20px;
    }

    .how-to-apply-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .how-to-apply-section .container .how-to-apply-section-right ul li {
        font-size: 20px;
    }

    .how-to-apply-section .container .how-to-apply-section-left .how-to-apply-section-left-button.desktop-button {
        display: none;
    }

    .how-to-apply-section .container .how-to-apply-section-left-button.mobile-button {
        display: block;
    }
    
}

