/*------- our team section------ **/
.our_team .image_vector {
    position: relative;
}

/* image vector */
.our_team .image_vector::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 60%;
    top: 12%;
    left: 0%;
    transform: translate(-50%, -50%);
    background: url(./../images/vectors/common_banner_Vector.svg) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

/*------- career section ---------*/
.career_opportunity .vector {
    position: relative;
}

/* text-underline */
/* .highlighted {
    display: inline-block;

    border-bottom: 1px solid rgba(248, 149, 32, 1);
   
    padding-bottom: 7px;
} */


/* vector 1 */
.vector::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 40%;
    left: 11%;
    transform: translate(-50%, 50%);
    background: url(./../images/vectors/career_page_vector_1.svg) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}
/* vector 2 */
.vector::after {
    content: "";
    position: absolute;
    width: 35%;
    height: 50%;
    bottom: 18%;
    right: 22%;
    transform: translate(50%, 50%);
    background: url(./../images/vectors/career_page_vector_2.svg) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

/* file to upload in form */
 .file-upload-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     width: 100%;
     position: relative;
 }
 .file-btn {
     background-color: #fff2e5;
     border: 1px solid #f6c288;
     padding: 4px 10px;
     cursor: pointer;
     border-radius: 3px;
     white-space: nowrap;
     transition: background-color 0.3s;
 }

 .file-btn:hover {
     background-color: #ffe0c2;
 }

 .file-line {
     border: none;
     border-bottom: 1px solid #999;
     margin-top: 10px;
     margin-bottom: 5px;
 }

/* Optional: Remove inner shadow from Chrome on focus */
.custom-dropdown-arrow:focus-visible {
  box-shadow: none;
}


@media screen and (max-width: 768px) {
    .our_team .image_vector::before {
        display: none;
    }

    .vector::before {
        display: none;
    }

    .vector::after {
        display: none;
    }
}

@media screen and (max-width: 1920px) {
    /*------- our team section------ **/
    .our_team {
        padding-top: 60px!important;
    }
    /* image vector */
    .our_team .image_vector::before {
        top: 20%;
    }
}