/* 
-----------TYPOGRAPHY-----------

FONT SIZES 
12px / 16px / 20px / 24px / 32px / 40px / 48px /  62px

FONT WEIGHTS 
400 / 700

LINE HEIGHTS 
1.2 / 1.5 

LETTER SPACING 
0 / -2px

FON FAMILY 
Poppins

-----------COLORS-----------

PRIMARY
Base Color: #004d25 (Green)
Tint Color: #66947c
Shade Color: #002e16

SECONDARY
Base Color: #a38413 (Gold)
Tint Color: #c8b571
Shade Color: #624f0b

TERTIARY
Base Color: #7b1413 (Maroon)
Tint Color: #a67271
Shade Color: #400c0b

GREY
Base Color: #495057 (Grey)
Tint Color: #f1f3f5
Shade Color: #212529

White color: #ffffff

Black color: #000000


-----------BORDER RADIUS-----------

4px / 8px / 20px 


*/


/* ---------------------------GLOBAL STYLES--------------------------- */




* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: #002e1b;
    margin: 0;
    padding: 0%;


}


h1, h3, h4, h5 {
    
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
    color: rgb(3, 67, 3);
}





h1 {
    text-align: center;
    font-size: 72px;
    font-weight: 900;
}


h2 { 
    font-size: 34px;
    color: rgb(88, 3, 3);
    line-height: 1.2;
    font-weight: 600;
}


h3 {
    
    font-size: 32px;
    font-weight: 500;
}


h4{
    font-size: 32px;
}


h5{
    font-size: 32px;
}


ul {
    list-style: none;
}



p{
    font-size: 20px; 
}


a { 
    text-decoration: none;
    font-size: 16px;
}

#maroon-text{
    color: #6b1413;
}

.features-main-heading{
    font-size: 32px;
    margin-bottom: 50px;
    color: #570d0d;
}


.maroon-text{
   color: #a67271;
   font-size: 28px;
   margin-bottom: 50px;
}

.gold-text{
    color: #624f0b;
}

.light-gold{
    color: rgb(163, 132, 19);
}

.small-text{
    font-size: 12px;
}

/* ---------------------------COMPONENTS--------------------------- */

.btn {
font-size: 16px;
text-decoration: none;
padding: 15px 30px;
border-radius: 10px;

}


.btn-primary:link, .btn-primary:visited{
    color: #ffffff;
    background-color: #004d25;
    border: 2px solid #004d25;
    margin: 16px;
  
}

.btn-primary:hover, .btn-primary:active{
    color: #ffffff;
    background-color: #002e1b;
    border: 2px solid #002e1b;
 
}

.btn-primary-outline:link, .btn-primary-outline:visited{
    color: #004d25;
    background-color: #ffffff;
    border: 2px solid #004d25;
    margin: 16px;
}

.btn-primary-outline:hover, .btn-primary-outline:active{
    color: #002e1b;
    background-color: #ffffff;
    border: 2px solid #002e1b;
}

.btn-secondary:link, .btn-secondary:visited{
    color: #ffffff;
    background-color: #a38413;
   
   
}

.btn-secondary:hover, .btn-secondary:active{
    color: #ffffff;
    background-color: #624f0b;
}


.highlight {
    color: #ffffff;
}

.logo-md {
    width: 80px;
}

.logo-sm{
    width: 80px;
}

/* ---------------------------SECTIONS--------------------------- */

/* -------- NAVBAR ------------- */

.navbar-content{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position:relative;
    /* padding-left: 72px;
    padding-right: 72px; */
    background-color: rgb(218, 225, 222);


}

.brand-logo{
    margin: 10px;
}


.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
    
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a{
    text-decoration: none;
    padding: 1rem;
    display: block;
}

.logo-md{
    align-items: flex-start;
    margin: 0px 16px 0px 0px;
}


/* --------HERO SECTION--------- */

.hero-section{
    text-align: center;
    height:  400px;
    margin-top: 200px;
    border-bottom: 3px solid #62616100; 
    
}


.hero-section h1{
    font-weight: 700;
}

.para-1 p{
    padding: 32px;
}


/* --------FEATURES SECTION--------- */

.features-main-heading{
    text-align: center;
    margin:50px;
}
/* 
.feature-img{
    width: 100px;
    border-radius:10px;
} */

.card-container{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:25px;
    margin:20px;
}

.card{
    width:325px;
    background-color:#f0f0f0;
    border-radius:10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.card-content{
    padding:30px 30px;

}

.card-content h3{
    font-size:28px;
    margin-bottom:10px;
    color:#0a3b03;
    text-align: left;

}

.card-content p{
    font-size:17px;
    margin-bottom:20px;
    text-align: justify;
}

.card-content img {
    width: 260px;
    border-radius:10px;
}

.job-summary{
    color: #570d0d;
    font-weight:600; 
}

.job-summary-final{
    color: #0a3b03;
    font-weight:700;
}

.card-content a .btn-secondary{

}

/* JOB DETAILS PAGES */
#hero-section{
    
    text-align: center;
    height:  400px;
    margin-top: 200px;
    border-bottom: 3px solid #62616100; 
    
}

.wrapper{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px;
  
}

.card-details{
    width:auto;
    background-color:#f0f0f0;
    border-radius:10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.positions-details{
    padding: 32px;
    align-items: center;
    justify-content: center;
}


/* APPLICATION PAGE */
/* --------CTA SECTION--------- */


/* 
.cta-card{
    background-color: #004d25;
    width: 1000px;
    padding: 100px 200px;
    border-radius: 20px;
    align-items: center;
} */

/* HERO SECTION LAST */


#hero-last{
    text-align: center;
    height: 750px;
    margin-top: 60px;
    border-bottom: 3px solid #62616100; 
    
}
.card-containers{
    padding: 32px;
    margin: 20px;
}


.card-contents{
   margin-top: 32px;
   margin-bottom: 32px;
   padding: 10px;
}

.card-contents h1{
    color: #570d0d;
    font-size: 48px;
    margin-bottom: 20px;
  
}

.card-contents h3{
    color: #624f0b;
    font-size: 24px;
    margin-bottom: 20px;
}

.clearance{
    margin-top: 20px;
}

.note{
    color: #570d0d;
    font-size: 18px;
    font-weight: 700;
}
.note_a{
    color: #b40f0f;
    font-size: 24px;
    font-weight: 700;
}



/* --------FOOTER------------- */
.footer {
    text-align: center;
    margin-top: 20px;
    background-color: rgb(209, 214, 212);
    padding: 20px;
    display:  flex;
    justify-content: space-between;
    align-items: center;
    color:rgb(2, 53, 20);
}

.footer ul{
    margin:0;
    padding:0;
    display:flex;
}

.footer li{
    list-style:none;
}

.footer li a{
    text-decoration:none;
    color:rgb(129, 106, 3);
    display: block;
    padding: 2rem;
}

.social-img{
    width: 20px;
}

/* APPLICATION FORM STARTS HERE */

.container{

    width: 50%;
    max-width: 650;
    background: rgba(0, 0, 0, 0.5);
    padding: 28px;
    margin: 0 28px;
    border-radius: 10px;
    box-shadow: inset -2px 2px 2px rgb(3, 36, 2);
}

.form-title{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 6px;
    color: rgb(12, 58, 9);
    text-shadow: 1px 1px 1px #e9c112;
    border-bottom: solid 1px white;
}




.applicant-bio{
    display: block;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    padding: 20px 0;
  width: 100%;
    
}

.applicant-input-box:nth-child(2n){
    justify-content: end;
}

.applicant-input-box-names{
    display:inline-flex;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
    gap: 10px;
}

.applicant-input-box-names input{
    height: 40px;
    width: 100%;
    border-radius: 7px;
    outline: none;
    border: 1px solid  rgb(5, 53, 9);
    padding: 0 10px;
}

.applicant-input-box{
    display: column;
    align-items: center;
    width: 200;
    padding-bottom: 15px;
}

/* .applicant-input-box label{
    width: 95%;
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0; 

}*/

.applicant-input-box input{
    height: 40px;
    width: 100%;
    border-radius: 7px;
    outline: none;
    border: 1px solid  rgb(4, 87, 11);
    padding: 0 10px;
}

#gender, #position{
    height: 40px;
    border-radius: 7px;
    outline: none;
    border: 1px solid  grey;
    padding: 0 10px;
}

.files-upload input{
    height: 40px;
    border-radius: 7px;
    outline: none;
    border: 1px solid  grey;
    padding: 0 10px;
}

.form-submit-btn input{
    cursor: pointer;
}

.form-submit-btn {
    margin-top: 20px;
}

.form-submit-btn input{
     display: block;
     width: 100%;
     margin-top: 10px;
     font-size: 20px;
     padding: 20px;
     border-radius: 7px;
     border: none;
     color: rgb(224, 177, 38);
     background: rgba(3, 98, 27, 0.7);
    
}
