main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-direction: row;
    background-color: transparent;
    padding: 20px;
    padding-bottom: 30px;
}

.banner {
    position: relative;
}

.banner img {
    opacity: 0.3;
}

.banner h1 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-10%, -50%);
    z-index: 3;
    color: #1E4E77;
}

.career {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
}

.career h2 {
    font-size: 24px;
    color: #1E4E77;
}

.career .wrapper {
    background-color: #FFF;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
}

.career .wrapper .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.career .wrapper .container:last-child {
    max-width: 280px;
}

.career .wrapper .container:first-child {
    flex-grow: 1;
}

.career .wrapper .container:last-child {
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    min-width: 280px;
}

.career .wrapper label {
    display: block;
    font-size: 12px;
    color: #1E4E77;
}

.career .wrapper label b {
    font-size: inherit;
    color: #1E4E77;
}

.career .wrapper p {
    font-size: 16px;
    color: #1E4E77;
}

.career .wrapper hr {
    border: none;
    background-color: #1E4E77;
    width: 1px;
    height: 100px;
    margin: auto 0px;
}

.career .wrapper button,
.career .wrapper a {
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    border: none;
    text-decoration: none;
    background-color: #1AAF87;
    color: #FFF;
    min-width: 200px;
}

.application .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.application textarea {
    border: none;
    padding: 20px;
    resize: none;
    width: 265px;
    border-radius: 5px;
    min-width: 100%;
}

.application button {
    background-color: #1E4E77;
    color: #FFF;
    min-width: 200px;
}

.application h2 {
    font-size: 24px;
    color: #1E4E77;
    margin-bottom: 20px;
}

.quick-nav {
    margin-top: 56px;
}

@media screen and (max-width: 1280px) {
    main {
        flex-direction: column;
    }
}

@media screen and (max-width: 880px) {
    .career .wrapper {
        flex-direction: column;
    }

    .career .wrapper hr {
        width: 50%;
        height: 2px;
        margin: 0px auto;
    }

    .career .wrapper button {
        max-width: 300px;
    }

    .quick-nav {
        margin-top: 0px;
        width: 100%;
        max-width: none;
    }
}