section.how-to-apply .application-option {
    background-color: #cfee7b;
    padding: 24px 24px;
    border-radius: 12px;
    overflow: hidden;
}

section.how-to-apply .application-option.dark {
    background-color: #f6f6f6;
}

section.how-to-apply .application-option .option-icon {
    background-color: #fff;
    display: table;
    padding: 8px;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 46px;
    height: 46px;
    text-align: center;
    font-size: 20px;
}

section.how-to-apply .application-option .option-title {
    font-weight: 700;
    font-size: 1.4rem;
}

section.how-to-apply .application-option .option-desc {
    font-weight: 400;
}

section.how-to-apply .application-option .button {
    width: fit-content;
}

section.how-to-apply .application-option .button i {
    position: relative;
    top: 0px;
    margin-left: 16px;
    font-size: 22px;
    line-height: 16px;
}

section.apply-banner {
    background-color: #a3e4e0;
    overflow: hidden;
}

section.apply-banner .section-title {
    font-size: 4rem;
    text-align: left;
    display: table;
    padding: 20px 0;
}

section.apply-banner .section-title span {
    display: table;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    margin: -20px 0px;
}

section.apply-banner .section-desc {
    font-weight: 400;
    letter-spacing: -1px;
}

section.apply-banner .section-img {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
    aspect-ratio: 4 / 3;
}

section.apply-banner .section-img img {
    position: absolute;
    width: calc(100% + 40px);
    max-width: inherit;
    height: calc(100% + 40px);
    right: 0;
    bottom: -80px;
    object-fit: cover;
}

section.apply-banner form .form-group {
    margin-bottom: 12px;
}

section.apply-banner form .form-group label {
    display: none;
}

section.apply-banner form .form-group input.form-control {
    padding: 16px 20px;
    border-radius: 8px;
    border: none;
    font-size: .8rem;
}

section.apply-banner form .form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

section.apply-banner form .form-group input[type="checkbox"]+span {
    font-size: 1rem;
    top: -4px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    section.how-to-apply .application-option {
        margin-bottom: 24px;
    }

    section.apply-banner .section-img img {
        position: relative;
        bottom: inherit;
        width: 100%;
        height: auto;
    }
}