header {
    background-color: #DDE4FB;
}

.right_nav ul li {
    text-decoration-color: #2B60FF !important;
}

.right_nav ul li a {
    color: #000;
}

/* ------------------------ Section 1 ------------------------------------ */
.career_section1_container {
    background: linear-gradient(to top, #000, transparent),url('./../../assets/photos/career.png');
    background-size: cover;
    background-position: left center;
}

.career_section1 {
    height: 90dvh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.career_section1 .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    justify-content: center;
    color: #fff;
    margin-bottom: 100px;
    gap: 20px;
}

.career_section1 .content h2 {
    font-size: 40px;
    width: 70%;
}

.career_section1 .content p {
    line-height: 1.7;
}


/* --------------------------- Section 2 ------------------------ */
.career_section2 {
    display: flex;
    align-items: center;
    padding: 40px 4%;
}

.career_section2 .left {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.career_section2 .left h2 {
    font-size: 40px;
}

.career_section2 .left h2 span {
    color: #5b9de9;
}

.career_section2 .left p {
    line-height: 1.7;
    width: 90%;
    font-weight: 300;
}

.career_section2 .right {
    width: 40%;
}

.career_section2 .right img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

/* ----------------- Section 3 ------------------ */
.career_section3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 4%;
}

.career_section3 .box {
    background-color: #D9D9D999;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #547aeb;
    gap: 100px;
}

.career_section3 .box img {
    width: 300px;
}


/* ------------------------- Section 4 ----------------------- */
.career_Section4_container {
    background-color: #132d40;
}

.career_section4 {
    padding: 40px 4%;
    display: flex;
}

.career_section4 .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.career_section4 .left .box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.career_section4 .left .box .content {
    background-color: #ccd7f9;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 3px 10px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccd7f9;
}

.career_section4 .left .box .triangle {
    width: 45px;
    height: 45px;
    background-color: #87a2f1;
    clip-path: polygon(0 0, 0 100%, 70% 50%);
    border-radius: 5px;
    transform: scale(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

.career_section4 .left .box:hover .triangle {
    transform: scale(1);
    transform-origin: left;
}

.career_section4 .left .box:hover .content {
    background-color: #87a2f1;
    color: #fff;
    border-top: 1px solid #0b1e5a;
    border-bottom: 1px solid #0b1e5a;
}

.career_section4 .left .box .content.active {
    background-color: #87a2f1;
    color: #fff;
    border-top: 1px solid #0b1e5a;
    border-bottom: 1px solid #0b1e5a;
}

.career_section4 .left .box .content.active+.triangle {
    transform: scale(1);
    transform-origin: left;
}


.career_section4 .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.career_section4 .right .content {
    display: none;
    background-color: #9da6c0;
    height: 150px;
    width: 80%;
    padding: 15px;
}

.career_section4 .right .content.active {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}


/* ---------------------- Section 5 ----------------------- */
.career_section5 {
    padding: 40px 4%;
    display: flex;
    align-items: flex-start;
}

.career_section5 .left {
    width: 50%;
}

.career_section5 .left .box {
    border: 1px solid #2B60FF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    flex-direction: column;
    gap: 20px;
}

.career_section5 .left .box p:last-child {
    color: #2B60FF;
    cursor: pointer;
}

.career_section5 .left .box p {
    text-align: center;
    list-style: 1.7;
}

.career_section5 .right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.career_section5 .right .form {
    background-color: #e3eaff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    padding: 20px;
    gap: 20px;
    box-shadow: rgb(38, 57, 77) 0px 10px 10px -10px;
}

.career_section5 .right .form .box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.career_section5 .right .form .input_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.career_section5 .right .form .input_div label span {
    color: #ff0000;
}

.career_section5 .right .form .input_div input,
select {
    width: 100%;
    min-height: 45px;
    outline: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    padding: 0 10px;
    background-color: #fff;
}

#resume {
    color: #444;
    padding: 7px 7px !important;
    font-family: 'Poppins';
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 100%;
}

#resume::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

#resume::file-selector-button:hover {
    background: #0d45a5;
}
#interestLetter {
    color: #444;
    padding: 7px 7px !important;
    font-family: 'Poppins';
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 100%;
}

#interestLetter::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

#interestLetter::file-selector-button:hover {
    background: #0d45a5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
}


.contactButton {
    background: #547aeb;
    color: white;
    font-family: 'Poppins';
    padding: 0.45em;
    padding-left: 1em;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3em;
}

.iconButton {
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #7a8cf3;
    right: 0.3em;
    transition: all 0.3s;
}

.contactButton:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em #5566c2;
}

.contactButton:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em #5566c2;
}





@media screen and (max-width: 768px) {

    /* ------------------------ Section 1 ------------------------------------ */
    .career_section1_container{
        background-position: center;
    }

    .career_section1 {
        width: 100%;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 30px 4%;
    }

    .career_section1 .content {
        width: 100%;
    }

    .career_section1 .content h2 {
        font-size: 28px;
        width: 100%;
    }

    /* ------------------------- Section 2 ---------------------- */
    

    .career_section2 {
        flex-direction: column;
        gap: 30px;
    }

    .career_section2 .left {
        width: 100%;
    }

    .career_section2 .left h2 {
        font-size: 28px;
    }

    .career_section2 .left p {
        line-height: 1.5;
        width: 90%;
        font-weight: 400;
    }

    .career_section2 .right {
        width: 100%;
    }

    /* ----------------- Section 3 ------------------ */
    .career_section3 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 4%;
        padding-top: 0;
    }

    .career_section3 .box {
        background-color: #D9D9D999;
        width: 100%;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #547aeb;
        gap: 30px;
    }

    .career_section3 .box h2 {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
    }

    .career_section3 .box img {
        width: 300px;
    }

    /* ---------------------------- Section 4 ------------------------- */
    .career_section4 {
        flex-direction: column;
        gap: 30px;
    }

    .career_section4 .left {
        width: 100%;
    }

    .career_section4 .right {
        width: 100%;
    }

    .career_section4 .right .content {
        width: 100%;
    }

    /* ---------------------- Section 5 ----------------------- */
    .career_section5 {
        padding: 40px 4%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .career_section5 .left {
        width: 100%;
    }

    .career_section5 .right {
        width: 100%;
    }

    .career_section5 .right .form {
        width: 100%;
    }

    .career_section5 .right .form .box {
        flex-direction: column;
    }
}