

/* ctrl + shift+ del 
        inside of chrome to pull up clear cache */



#resumeEmail {
    align-items: center;
    text-align: center;
    font-size: 17pt;
    background-color: rgb(255,127,80);

}
#resumeEmail:hover {
    background-color: rgba(255,127,80, .80);
}







#homeVideo {
    width: 100%;
    height: auto;
}






#head {
    text-align: center;
    color: rgb(17, 68, 133);
    font-weight: 700;
    border-bottom: 3px solid rgb(255,127,80);
    padding: 15px;
}




#navbar {
    background-color: white;
    position: fixed; 
    top: 0;
    width: 100%;
    border-bottom: 2px solid;
    border-color:rgb(17, 68, 133);
    /* keeps navbar in front */
    z-index: 1100;
}
#navbar a {
    float: left;
    display: block;
    color:  rgb(17, 68, 133);
    text-align: center;
    font-size: 18px;
    font-weight: 575;
    padding: 15px;
    text-decoration: none;

}
#navbar a:hover {
    color: white;
    background-color: rgb(17, 68, 133);
    transition: .7s;
}
#navbar a:active {
    color: white;
    background-color: rgb(17, 68, 133);
}

#navbar img {
    float: left;
    display: block;
    width: 60px;
}







body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}















/*fade in code */
#fadeIn {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

















/* bullet section */
#bulletSection {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
#bulletSection h1 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    border-bottom: 3px solid rgb(255,127,80);
    padding-bottom: 10px;
}
#bulletSection h2 {
    padding-top: 20px;
    font-weight: 7;
}
#bulletSection i {
    color: rgb(17, 68, 133);
}



















#testimonialSection {
    background-color: rgba(255, 127, 80, 0.80);
    padding: 30px;
}






#section {
    background-color: rgba(17, 68, 133, 0.80);
    padding: 30px;

}
#section h1 {
    text-align: center;
    border-bottom: solid 3px rgb(255,127,80);
    color: white;
    padding: 30px;
    font-family: 'Space Grotesk', sans-serif;

}
#section p {
    padding: 30px;
    font-weight: 30px;
    line-height: 1.8;
    color: white;
}
#section a {
    text-decoration: none;
}















#employeeForm {
    padding-bottom: 20px;
}


















#submitBtn {
    padding: 18px;
    margin-top: 50px;
    font-weight: 575;
    background-color: rgb(17, 68, 133);
}




#footer {
    background-color: rgb(110, 110, 110);
    color: white;
    font-size: 12px;
    margin-bottom: fill;
}
#footerLogo {
    height: 250px;
    padding-left: -50px;
}




#socialsDiv{
    padding-top: 20px;
}
#socialsDiv a {
    padding: 45px 10px 30px;
    text-decoration: none;
    color: white;
}

#socialsDiv a:hover {
    color:  rgb(17, 68, 133);
    transition: .5s;
}








#jobTop h6 {
    text-align: center;
    color: rgb(17, 68, 133);
    font-weight: 575;
}







/**************** th stays at top while scrolling around on table */

table th {
    color: rgb(17, 68, 133);

}
table tr {
    text-align: center;
}
table tr td {
    font-weight: 575;

}























.labi{
    text-decoration: none;
    font-weight: 575;
    padding-top: 50px;
    color: black;
}



#tabImg {
    padding-top: 50px;
}



/* ************************************************* */







/* Table scrollbar insert  */
.my-custom-scrollbar {
    /* position: relative; */
    height: 600px;
    overflow: auto;
}

.table-wrapper-scroll-y {
    display: block;
}








/* scrollbar styling */

/* width */
::-webkit-scrollbar {
    width: 10px;
}
  


/* Track */
::-webkit-scrollbar-track {
    background: #d3d3d3;
    /* more abt this */
    box-shadow: inset 0 0 5px grey;
}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(17, 68, 133);
    width: 7px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(50, 97, 160);
}

::-webkit-scrollbar-corner { 
    background: rgb(17, 68, 133);
}











label.error {
    color: red;
    font-size: 1rem;
    display: block;
    margin-top: 5px;
}

input.error {
    border: 1px dashed red;
    font-weight: 300;
    color: red;
}





