/* MISCELLANEOUS */
i {
    color: crimson;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: white;
}


/* IMAGE CUSTOM CLASS */
.img-custom {
    width: 100%;
    height: 20em;
    object-fit: cover;
    border-radius: 5px;
}

/* BUTTON CUSTOM CLASS */
.btn-custom {
    background-color: #333;
    /* background-color: rgba(184, 134, 11, 0.8); */
    border-radius: 25px;
    padding: 0.5em 0.9em 0.5em 0.9em;
    color: white;
}

.btn-custom:hover {
    transform: scale(1.05);
    transition: 0.3s;
    background-color: crimson;
    box-shadow: 3px 3px lightgray;
    color: white;
}

/* FONT*/
/* body {
    font-family: 'Cardo', serif;
}
   
h1, h2, h3, h4, h5, h6, nav a, footer a, header button {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: darkgoldenrod;
} */

/* body {
    font-family: 'Lora', serif;
   }
   
   h1, h2, h3, h4, h5, h6, nav a, footer a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
   } */

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, footer a {
    font-weight: 500;
    color: darkgoldenrod;
}

/* body {
    font-family: 'Judson', serif;
}

h1, h2, h3, h4, h5, h6, footer a, header button {
    font-family: 'Archivo Black', sans-serif;
    color: darkgoldenrod;
} */

/* body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
   
h1, h2, h3, h4, h5, h6, footer a, header button {
    font-family: 'Abril Fatface', serif;
    color: darkgoldenrod;
} */


/* NAVBAR */
nav {
    background-color: white;
}

nav img {
    height: 2em;
}

nav h5 {
    margin-bottom: 0;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

nav .form-control {
    border: none;
}

nav form {
    border-bottom: 1px solid darkgoldenrod;
    border-radius: 0.2em;
    margin-left: 2em;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 400;
}

/* .nav-link {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: #333;
    border-top: 2px solid crimson;
    transition: 0.3s;
} */

/* nav .nav-link::before {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background: linear-gradient(to right, crimson, crimson);
}

nav .nav-link:hover::before {
    width: 100%;
    transition: 0.3s;
} */

nav .nav-link:hover {
    color: crimson;
    transform: scale(1.02);
    transition: 0.1s;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus,
nav form .form-control:focus,
nav form .form-control:active,
nav form .btn:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    color: #333;
    font-size: 1.7em;
}


/* HEADER */
header {
    /* background-image: linear-gradient(to left, rgba(220,20,60,0.4), rgba(184,134,11,0.6), rgba(0, 0, 0, 0)),  */
    background-image: linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
    url('../img/careers-header-1.jpg');
    /* height: 50vh; */
    background-size: cover;
    background-position: right 35% bottom 35%;
    padding-top: 10em;
    padding-bottom: 10em;
    margin-top: 5.5em;
}


/* EMPLOYMENT */
:focus {
    /* outline:0 !important; */
    box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}

.accordion-button:not(.collapsed) {
    background-color: whitesmoke;
}


/* JOB APPLICATION */
.form-group, .g-recaptcha {
    margin-bottom: 2em;
}

.form-group .col-form-label {
    padding-top: 6px;
    padding-bottom: 6px;
}

.form-control {
    border-radius: 5px;
}

.form-control:focus {
    outline: none;
    border: 1px solid lightgray;
}

/* remove arrows on number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* FOOTER */
footer {
    background-color: whitesmoke;
    color: crimson;
}

footer a {
    color: #333;
}

footer a:hover {
    color: darkgoldenrod;
    transition: 0.3s;
}

footer span {
    margin-left: 0.3em;
    margin-right: 0.3em;
    color: crimson;
}


/* MEDIA QUERY */
@media all and (min-width: 992px) {
    /* NAVBAR */
    nav .container-fluid {
        margin-left: 1em;
        margin-right: 1em;
    }

	.navbar .nav-item .dropdown-menu { 
        margin-top:0; 
    }
}

@media only screen and (max-width: 1024px) {
    /* NAVBAR */
    .nav-link {
        font-size: 15px;
    }
}