/*==================================
CAREER HERO
==================================*/
/*==========================
Premium Job Card
===========================*/

.job-card{
    position: relative;
    overflow: hidden;
    background: #fff;
}

.job-card::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,121,0,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgb(11 34 57 / 4%) 1px, #00000000 1px);
    background-size:35px 35px;
    opacity:.7;
    z-index:0;
}

.job-card>*{
    position:relative;
    z-index:2;
}
.job-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    border:1px solid #e8edf5;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}


.job-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*======================*/

.job-card-header{

display:flex;

justify-content:space-between;

align-items:flex-start;

margin-bottom:20px;

}

.job-card h3{font-size: 25px;font-weight:700;color: #044f8a;margin:8px 0 0;line-height:1.3;}

.job-department{

display:inline-block;

background:#eef5ff;

color:#0b2239;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.job-type{

background:#ff7900;

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

/*======================*/

.job-desc{margin: 11px 0;font-size:15px;line-height: 25px;color:#666;}

/*======================*/

.job-meta{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin:25px 0;

}

.job-meta span{background:#f8f9fc;padding: 7px 15px;border-radius: 9px;display:flex;flex-direction:column;}

.job-meta strong{font-size: 14px;color: #0019a6;margin-bottom:5px;text-transform:uppercase;font-weight: 500;}

.job-meta span{

font-size:15px;

font-weight:600;

color:#0b2239;

}

/*======================*/

.job-footer{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:25px;

padding-top:20px;

border-top:1px solid #eee;

}

.posted{

font-size:14px;

color:#888;

}

.job-btn{

background:#0b2239;

color:#fff;

padding:12px 22px;

border-radius:8px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.job-btn:hover{

background:#ff7900;

color:#fff;

}

@media(max-width:767px){

.job-meta{

grid-template-columns:1fr;

}

.job-footer{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

.job-btn{

width:100%;

text-align:center;

}

}
.career-hero{
    position: relative;
    padding: 120px 0;
    background: url("../images/career/career-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,
    rgba(7,25,48,.93) 0%,
    rgba(7,25,48,.88) 45%,
    rgba(7,25,48,.45) 100%);
}

.career-content{
    position:relative;
    z-index:2;
}

.career-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:rgba(255,255,255,.12);

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

    backdrop-filter:blur(10px);

}

.career-tag i{

    color:#ff7900;

}

.career-content h1{

    color:#fff;

    font-size:60px;

    line-height:72px;

    font-weight:700;

    margin-bottom:25px;

}

.career-content h1 span{

    color:#ff7900;

}

.career-content p{

    color:#ddd;

    font-size:18px;

    line-height:34px;

    margin-bottom:40px;

}

.hero-btn{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-outline{

    background:transparent !important;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

}

.hero-outline:hover{

    background:#fff !important;

    color:#0b2239 !important;

}

.career-counter{

    display:flex;

    gap:30px;

    margin-top:60px;

    flex-wrap:wrap;

}

.counter-box{

    width:140px;

    padding:22px;

    text-align:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:15px;

    backdrop-filter:blur(12px);

}

.counter-box h3{

    color:#ff7900;

    font-size:34px;

    font-weight:700;

    margin-bottom:5px;

}

.counter-box span{

    color:#fff;

    font-size:15px;

}

.career-image{

    position:relative;

    z-index:2;

}

.career-image img{

    max-width:100%;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@media(max-width:991px){

    .career-hero{

        padding:90px 0;

        text-align:center;

    }

    .career-content h1{

        font-size:42px;

        line-height:55px;

    }

    .hero-btn{

        justify-content:center;

    }

    .career-counter{

        justify-content:center;

    }

    .career-image{

        margin-top:50px;

    }

}

@media(max-width:576px){

    .career-content h1{

        font-size:34px;

        line-height:46px;

    }

    .career-content p{

        font-size:16px;

        line-height:28px;

    }

}
/* ===========================
   Premium Job Card
=========================== */

.career-job-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    border:1px solid #e9edf5;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.career-job-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#ff7900;
}

.career-job-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* ===================== */

.job-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.job-top h3{
    font-size:22px;
    font-weight:700;
    color:#0b2239;
    margin-bottom:6px;
}

.job-top span{
    font-size:14px;
    color:#777;
}

.job-badge{
    background:#fff4eb;
    color:#ff7900;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

/* ===================== */

.job-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:20px 0;
}

.job-meta div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    background:#f8f9fc;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
}

.job-meta i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ff7900;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

/* ===================== */

.job-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #eee;
    padding-top:18px;
}

.post-date{
    font-size:13px;
    color:#888;
}

.post-date i{
    color:#ff7900;
    margin-right:5px;
}

/* ===================== */

.job-footer .theme-btn{
    background:#0b2239;
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.job-footer .theme-btn:hover{
    background:#ff7900;
    color:#fff;
}

@media(max-width:768px){

.job-meta{
grid-template-columns:1fr;
}

.job-footer{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

.job-footer .theme-btn{
width:100%;
text-align:center;
}

}

/* ===========================
   Premium Hero Buttons
=========================== */

.hero-btn{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary Button */

.hero-btn .theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff7900,#ff9d2f);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 30px rgba(255,121,0,.35);
    transition: all .35s ease;
}

.hero-btn .theme-btn:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 18px 35px rgba(255,121,0,.45);
}

.hero-btn .theme-btn i{
    transition: .3s;
}

.hero-btn .theme-btn:hover i{
    transform: translateX(6px);
}

/* Outline Button */

.hero-btn .hero-outline{
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    box-shadow: none;
}

.hero-btn .hero-outline:hover{
    background: #fff;
    color: #0b2239;
    border-color: #fff;
}

@media (max-width:767px){

.hero-btn{
    justify-content:center;
}

.hero-btn .theme-btn{
    width:100%;
}

}

/*=========================
Hiring Process
==========================*/

.hiring-process{
    background:#f8f9fc;
    padding:100px 0;
}

.timeline{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    position:relative;

    margin-top:60px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:8%;

    right:8%;

    top:40px;

    height:4px;

    background:#d9e3ef;

    z-index:0;

}

.timeline-item{

    width:19%;

    text-align:center;

    position:relative;

    z-index:2;

}

.timeline-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#ff7900;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:4px solid #fff;

    transition:.35s;

}

.timeline-item:hover .timeline-icon{

    background:#ff7900;

    color:#fff;

    transform:translateY(-8px);

}

.timeline-item h5{

    margin-top:20px;

    font-size:20px;

    color:#0b2239;

    font-weight:700;

}

.timeline-item p{

    color:#666;

    font-size:15px;

    margin-top:10px;

    line-height:26px;

}

.timeline-item.active .timeline-icon{

    background:#ff7900;

    color:#fff;

}

@media(max-width:991px){

.timeline{

flex-wrap:wrap;

}

.timeline::before{

display:none;

}

.timeline-item{

width:50%;

margin-bottom:40px;

}

}

@media(max-width:576px){

.timeline-item{

width:100%;

}

}

/*=========================
Job Banner
=========================*/

.job-details-banner{

padding:120px 0 70px;

background:linear-gradient(rgba(9,28,53,.88),rgba(9,28,53,.88)),
url(assets/images/career/career-bg.jpg);

background-size:cover;

background-position:center;

}

.job-banner-content{

color:#fff;

}

.job-banner-content h1{

font-size:48px;

font-weight:700;

margin:20px 0;

}

.job-category{

display:inline-block;

background:#ff7900;

padding:10px 22px;

border-radius:40px;

font-weight:600;

}

.job-banner-meta{

display:flex;

gap:30px;

flex-wrap:wrap;

margin-top:20px;

}

.job-banner-meta span{

font-size:17px;

}

.job-banner-meta i{

color:#ff7900;

margin-right:8px;

}

/*=========================*/
/*================================================
            JOB DETAILS PAGE
================================================*/

.job-details-area{
    padding:100px 0;
    background:#f4f7fc;
}

/*=====================================
Left Content Card
=====================================*/

.job-details-box{

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 10px 35px rgba(17,24,39,.08);

    border:1px solid #edf2f7;

}

.job-details-box h3{

    font-size:28px;

    font-weight:700;

    color:#0b2239;

    margin-bottom:18px;

    position:relative;

    padding-left:18px;

}

.job-details-box h3::before{

    content:"";

    position:absolute;

    left:0;

    top:3px;

    width:6px;

    height:32px;

    border-radius:20px;

    background:#ff7900;

}

.job-details-box p{

    color:#666;

    font-size:16px;

    line-height:30px;

    margin-bottom:35px;

}

/*=====================================
Summary Card
=====================================*/

.job-summary{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(17,24,39,.08);

    border:1px solid #edf2f7;

    position:sticky;

    top:110px;

}

.job-summary h4{

    margin:0;

    background:#0b2239;

    color:#fff;

    text-align:center;

    padding:22px;

    font-size:24px;

    font-weight:700;

}

/*=====================================
Summary List
=====================================*/

.job-summary ul{

    list-style:none;

    margin:0;

    padding:25px;

}

.job-summary li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px dashed #e4e4e4;

}

.job-summary li:last-child{

    border:none;

}

.job-summary span{

    color:#666;

    font-weight:500;

}

.job-summary strong{

    color:#0b2239;

    font-weight:700;

}

/*=====================================
Apply Button
=====================================*/

.apply-btn{

    display:block;

    margin:25px;

    padding:16px;

    text-align:center;

    background:linear-gradient(135deg,#ff7900,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.apply-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(255,121,0,.35);

}

/*=====================================
Job Meta Cards
=====================================*/

.job-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;

}

.highlight-box{

    background:#fff;

    border-radius:15px;

    padding:22px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.3s;

}

.highlight-box:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.highlight-box i{

    width:60px;

    height:60px;

    line-height:60px;

    border-radius:50%;

    background:#fff4eb;

    color:#ff7900;

    font-size:22px;

    margin-bottom:15px;

}

.highlight-box h6{

    margin:10px 0 5px;

    color:#777;

    font-size:15px;

}

.highlight-box h5{

    color:#0b2239;

    font-size:18px;

    font-weight:700;

}

/*=====================================
Section Divider
=====================================*/

.job-details-box hr{

    margin:40px 0;

    border-top:1px solid #ececec;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px){

.job-summary{

margin-top:40px;

position:relative;

top:0;

}

}

@media(max-width:767px){

.job-details-box{

padding:25px;

}

.job-highlights{

grid-template-columns:1fr;

}

.job-summary{

margin-top:30px;

}

}

/*====================================
Apply Job
====================================*/

.apply-job-area{

padding:100px 0;

background:#f5f7fb;

}

.apply-card{

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.apply-header{

text-align:center;

margin-bottom:40px;

}

.apply-header h2{font-size:40px;font-weight: 400;color:#0b2239;margin-bottom:10px;}

.apply-header p{

color:#666;

}

.form-group{

margin-bottom:25px;

}

.form-group label{

display:block;

margin-bottom:10px;

font-weight:600;

color:#0b2239;

}

.form-control{

height:56px;

border-radius:12px;

border:1px solid #dfe6ef;

padding:0 18px;

font-size:15px;

transition:.3s;

}

textarea.form-control{

height:170px;

padding-top:18px;

resize:none;

}

.form-control:focus{

border-color:#ff7900;

box-shadow:0 0 0 4px rgba(255,121,0,.10);

}

input[type=file]{

padding:14px;

}

.apply-btn{

padding:16px 45px;

border:none;

background:linear-gradient(135deg,#ff7900,#ff9d2f);

color:#fff;

border-radius:50px;

font-size:17px;

font-weight:600;

transition:.3s;

}

.apply-btn:hover{

background:#0b2239;

transform:translateY(-3px);

color:#fff;

}

.apply-btn i{

margin-left:10px;

}

@media(max-width:767px){

.apply-card{

padding:25px;

}

.apply-header h2{

font-size:30px;

}

}

/*==============================
Career Hero
==============================*/

.career-hero{

    padding:70px 0;

    background:linear-gradient(135deg,#f8fbff 0%,#ffffff 100%);

    overflow:hidden;

    position:relative;

}

/* Light Grid */

.career-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(11,34,57,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(11,34,57,.03) 1px,transparent 1px);

    background-size:45px 45px;

}

.career-content{

    position:relative;

    z-index:2;

}

.career-badge{display:inline-flex;align-items:center;gap:8px;background: #eff5ff;color: #1088e7;padding:10px 18px;border-radius:40px;font-weight:600;margin-bottom:20px;}

.career-content h1{font-size: 49px;line-height:1.15;font-weight: 500;color:#0b2239;margin-bottom:20px;}

.career-content h1 span{color: #13a1e1;}

.career-content p{

    color:#666;

    font-size:17px;

    line-height:30px;

    max-width:550px;

    margin-bottom:35px;

}

/* Buttons */

.hero-btn{

    display:flex;

    gap:15px;

    margin-bottom:45px;

}

.btn-primary-custom{

    background:#ff7900;

    color:#fff;

    padding:15px 28px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:#0b2239;

    color:#fff;

}

.btn-outline-custom{

    border:2px solid #0b2239;

    color:#0b2239;

    padding:13px 28px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-outline-custom:hover{

    background:#0b2239;

    color:#fff;

}

/* Stats */

.hero-stats{

    display:flex;

    gap:20px;

}

.hero-stats div{background:#fff;width:150px;padding: 14px;text-align:center;border-radius:14px;border:1px solid #edf2f7;box-shadow:0 10px 25px rgba(0,0,0,.05);}

.hero-stats h3{margin:0;font-size: 30px;color: #f77433;font-weight:700;}

.hero-stats span{

    color:#666;

    font-size:15px;

}

/* Image */

.hero-image{

    position:relative;

    z-index:2;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:480px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/* Responsive */

@media(max-width:991px){

.career-content{

text-align:center;

}

.hero-btn{

justify-content:center;

flex-wrap:wrap;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

margin-bottom:40px;

}

.career-content h1{

font-size:40px;

}

}

/*=========================
Job Banner
=========================*/

.job-banner{

    position:relative;

    padding:110px 0 90px;

    background:
    linear-gradient(rgba(8,24,45,.88),rgba(8,24,45,.88)),
    url("assets/images/career/banner.jpg") center/cover no-repeat;

    overflow:hidden;

}

.job-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);

    background-size:40px 40px;

}

.job-banner-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.banner-tag{

    display:inline-block;

    background:rgba(255,121,0,.15);

    color:#ff7900;

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.job-banner h1{

    color:#fff;

    font-size:56px;

    font-weight:800;

    margin-bottom:20px;

}

.job-banner p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:30px;

    max-width:700px;

    margin-bottom:35px;

}

.banner-meta{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.banner-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    padding:12px 18px;

    border-radius:10px;

    color:#fff;

    backdrop-filter:blur(10px);

}

.banner-meta i{

    color:#ff7900;

}

@media(max-width:991px){

.job-banner{

padding:80px 0 70px;

}

.job-banner h1{

font-size:38px;

}

.job-banner p{

font-size:16px;

}

.banner-meta{

gap:10px;

}

.banner-meta span{

width:100%;

}

}

/*=========================
Job Details
==========================*/

.job-details-area{

    background:#f6f8fc;

    padding:90px 0;

}

/*========================*/

.job-content-card{background:#fff;border-radius:20px;padding: 27px;box-shadow:0 15px 40px rgba(0,0,0,.07);}

.content-block{

    margin-bottom:45px;

    position:relative;

}

.content-block:last-child{

    margin-bottom:0;

}

.content-block h3{font-size:28px;font-weight: 500;color:#0b2239;margin-bottom:20px;display:flex;align-items:center;gap:12px;}

.content-block h3 i{

    width:48px;

    height:48px;

    background:#fff3ea;

    color:#ff7900;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.content-block p{

    color:#555;

    font-size:16px;

    line-height:32px;

}

/*========================*/

.job-summary-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    position:sticky;

    top:120px;

}

.summary-header{background:#0b2239;padding: 19px;text-align:center;}

.summary-header h4{

    color:#fff;

    margin:0;

    font-size:26px;

}

.job-summary-card ul{

    list-style:none;

    margin:0;

    padding:25px;

}

.job-summary-card ul li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.job-summary-card ul li:last-child{

    border:none;

}

.job-summary-card span{

    color:#666;

    font-size:15px;

}

.job-summary-card strong{

    color:#0b2239;

    font-size:16px;

    font-weight:700;

}

/*========================*/

.apply-btn{

    display:block;

    margin:25px;

    background:#ff7900;

    color:#fff;

    text-align:center;

    padding:16px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.apply-btn:hover{

    background:#0b2239;

    color:#fff;

    transform:translateY(-3px);

}

/*========================*/

@media(max-width:991px){

.job-content-card{

padding:25px;

}

.content-block h3{

font-size:24px;

}

.job-summary-card{

margin-top:30px;

position:relative;

top:0;

}

}

/*==============================
Apply Job
==============================*/

.apply-job-area{

    background:#f6f8fc;

    padding:100px 0;

}

.apply-info{background:#0b2239;color:#fff;padding: 24px;border-radius:20px;height:100%;position:sticky;top:120px;}

.info-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:20px;

    color:#ff7900;

    font-weight:600;

}

.apply-info h2{font-size: 32px;margin-bottom:20px;font-weight: 400;color: #fff;}

.apply-info p{

    color:#d7dce5;

    line-height:30px;

}

.info-item{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.info-item i{

    width:55px;

    height:55px;

    background:#ff7900;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.info-item h5{

    color:#fff;

    margin-bottom:8px;

}

/*================*/

.apply-card{background:#fff;padding: 24px;border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.08);}

.form-tag{

    display:inline-block;

    background:#fff3ea;

    color:#ff7900;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.apply-header h2{font-size: 28px;color:#0b2239;margin-bottom:10px;}

.apply-header p{

    color:#666;

    margin-bottom:35px;

}

/*================*/

.form-group{

    margin-bottom:22px;

}

.form-group label{

    font-weight:600;

    color:#0b2239;

    margin-bottom:8px;

    display:block;

}

.form-control{

    height:56px;

    border-radius:10px;

    border:1px solid #dde4ee;

    box-shadow:none;

}

textarea.form-control{

    height:160px;

    padding-top:15px;

}

.form-control:focus{

    border-color:#ff7900;

    box-shadow:0 0 0 4px rgba(255,121,0,.08);

}

/*================*/

.apply-btn{

    background:linear-gradient(135deg,#ff7900,#ff9d2f);

    border:none;

    color:#fff;

    padding:16px 40px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.apply-btn:hover{

    background:#0b2239;

    color:#fff;

}

@media(max-width:991px){

.apply-info{

position:relative;

top:0;

margin-bottom:30px;

}

}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}