.shapesw {
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    opacity: .7;
    right: 36%;
    top: 0%;
    text-align: center;
    margin: 0 auto;
    transform: translateX(50%);
}
.blueketshape1 {
    background-image: radial-gradient(#333 2px,transparent 2px);
    background-size: 16px 16px;
}

.imageset {
    display: flex;
    grid-gap: 30px;
}
.imageset11 + .imageset11{margin-top: 100px}
.imageset11 img {border-radius: 10px; overflow: hidden;}
.main-bg {
    background-image: url(../img/career/main-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.ph-bg {
    background: #5D008F;
    opacity: 0.8;
}
.head-p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}
.fw900{
    font-weight: 900;
}

.sc{
    padding-top: 75px;
}
.wcc {
    position: relative;
    margin: -120px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
}

.why h2{
    font-weight: 900;
    font-size: 34px;
    line-height: 41px;
    color: #2A262C;
}
.why p{
    font-size: 20px;
    line-height: 24px;
    color: #2A262C;
    padding-top: 15px;
}

.sub-bg{
    background-image: url(../img/career/sub-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.sub-pad{
    padding: 70px 0px;
}
.sub{
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
}
.sub h2{
    font-weight: 900;
    font-size: 34px;
    line-height: 41px;
    color: #FFFFFF;
    margin-top: 0px;
}
.sub p{
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.sub-feature {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}
.sub-feature h3{
  font-size: 20px;
}

.sub-feature .sub-feature-i {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    margin-bottom: 15px;
}

.ree-card {
   background: #fff;
   position: relative;
   place-items: start;
   display: grid;
   border-radius: 14px;
   padding: 40px 30px;
   -webkit-box-shadow: 0 10px 15px -2px rgb(82 0 57 / 8%);
   box-shadow: 0 10px 15px -2px rgb(82 0 57 / 8%);
   border-bottom: 5px solid #e5baff;
   height: 100%
}
.jobcards{margin-top: 50px;}
.job-detail h4 {
    color: #5d008f;
}
.career-detail {
    display: grid;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: 30% auto;
    grid-gap: 20px;
}
.career-detail p:last-child{text-align: right;}

.job-titl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.w-100 {
    width: 100%!important;
}
.career-detail+.career-detail {
    margin-top: 10px;
}


/*  Slider Css  */
.owl-nav {
    position: absolute;
    height: 0;
    top: 50%;
    left: 10px;
    right: 10px;
}
.owl-nav [class^="owl"] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff !important;
    position: absolute;
    top: -12px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0px 4px 15px rgb(0 0 0 / 10%);
}
.owl-nav [class^="owl"]:after {
    content: "";
    display: block;
    border: 8px solid transparent;
    position: absolute;
    top: calc(50% - 8px);
    transition: opacity 0.2s ease 0.2s;
}
.owl-nav [class^="owl"].disabled {
    transform: scale(0);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.owl-nav [class^="owl"].disabled:after {
    opacity: 0;
}
.owl-nav > :first-child {
    left: 0;
}
.owl-nav > :first-child:after {
    left: calc(50% - 15px);
    border-right-color: #2A262C;
}
.owl-nav > :last-child {
    right: 0;
}
.owl-nav > :last-child:after {
    right: calc(50% - 15px);
    border-left-color: #2A262C;
}
.owl-dots {
    text-align: center;
    line-height: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}
.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
}
.owl-dot + .owl-dot {
    margin-left: 12px;
}
.owl-dot:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2A262C;
    transform: scale(0.25);
    transition: transform 0.3s ease;
}
.owl-dot.active:after {
    transition-delay: 0.2s;
    transform: scale(1);
}

.dot-indicator {
    width: 24px;
    height: 2px;
    background: #2A262C;
    position: absolute;
    top: calc(50% - 1px);
    transform: scaleX(0);
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.dot-indicator.next {
    left: 50%;
    -webkit-animation-name: dot-indicator-next;
    animation-name: dot-indicator-next;
}
.dot-indicator.prev {
    right: 50%;
    -webkit-animation-name: dot-indicator-prev;
    animation-name: dot-indicator-prev;
}






/*form*/
.form-block input, .form-block select, .form-block textarea {
    height: 60px;
    padding: 15px;
    border-width: 0px 0px 2px;
    border-image: initial;
    border: 1px solid rgb(211 211 211);
    border-radius: 6px;
}
.form-block textarea {
    height: 100px;   
}
.form-block input, .form-block select, .form-block textarea {   
    font-size: 16px;
    width: 100%;
    margin: 0px;
    background: rgb(255, 255, 255);
    outline: 0px;
}
.floating-label {
    position: relative;
    margin-bottom: 20px;
}
.floating-input, .floating-select {
    font-size: 14px;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C5C5C5;
}
.floating-input:focus, .floating-select:focus {
    outline: none;
    box-shadow: 0 5px 10px #673ab724;
    border: 1px solid #ad5cd9;
}
.floating-label label {   
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 30px;
    top: 20px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    margin-bottom: 0;
}
.floating-input:focus~label, .floating-input:not(:placeholder-shown)~label, .floating-select:focus~label, .floating-select:not([value=""]):valid~label {
    top: -12px;
    font-size: 12px;
    color: #828282;
    background: #fff;
    width: fit-content;
    padding: 0 4px;
}
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    grid-gap: 15px;
    font-size: 15px;
}
.custom-checkbox input{
    width: 20px;
    height: 20px;
    margin: 0;
}
.custom-checkbox label{
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin: -2px 0 0 0;
}

.formfooter {
    display: grid;
    grid-template-columns: 30% auto;
    grid-gap: 30px;
    align-items: center;
}
.linktitle {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    opacity: .8;
    display: block;
}
.contactnumberdiv a {
    display: table;   
    margin-top: 10px;
}


.uploadFile {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    padding: 0;
    position: relative;
    height: 30px;
    resize: none;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    margin-bottom: 0;}

    .uploadFile [type="file"] {
        cursor: pointer !important;
        display: block;
        font-size: 999px;
        filter: alpha(opacity=0);
        min-height: 100%;
        min-width: 100%;
        opacity: 0;
        position: absolute;
        right: 0px;
        text-align: right;
        top: 0px;
        z-index: 1;
        height: 50px;
        padding: 0 0;
    }

    .mr-2{margin-right: 8px;}
  

