/*!
 * Copyright (C) 2021 Mobana Software IP, LLC - All Rights Reserved.
 *
 * We will take legal action against those who copy our HTML content, CSS style sheets
 * and JavaScript code.
 *
 */

/* Jobs page */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-color: #fff;
    font-family: 'Lato', 'Arial', sans-serif;
}

/* ----------------------------------------------- */
/*                   HEADER                        */
/* ----------------------------------------------- */

/* navbar ttoggler close button */
.navbar-toggler>.close {
    display: inline;
}
.navbar-toggler.collapsed>.close, .navbar-toggler:not(.collapsed)>.navbar-toggler-icon {
    display: none;
}

#header {
    z-index: 9999;
}

/* Sticky header on window scroll */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.jobs-banner-section {
    background-image: -webkit-linear-gradient(to left, rgba(30, 28, 29, 0.3), rgba(51, 42, 45, 0.3)), url('../img/jobsPageBanner.jpg');
    background-image: linear-gradient(to left, rgba(30, 28, 29, 0.3), rgba(51, 42, 45, 0.3)), url('../img/jobsPageBanner.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
}

.jobs-banner-text--container {
    padding: 30px 20px;
    background-color: rgba(30, 28, 29, 0.7);
    border-radius: 4px;
    position: absolute;
    top: 20%;
    left: 5%;
}

.jobs-heading {
    font-family: "Montserrat ExtraBold", sans-serif;
    font-weight: 500;
    letter-spacing: 5px;
}

.jobs-paragraph {
    line-height: 1.5;
    padding: 0 30px;
}

.jobs-paragraph span {
    font-size: 20px;
    color: #92DD59;
}

/* ----------------------------------------------- */
/*               Jobs Content area              */
/* ----------------------------------------------- */

.telephone-number {
    /*display: inline-block;*/
    color: #92DD59;
    margin-left: 20px;
    font-size: 40px;
    font-family: "Montserrat ExtraBold", sans-serif;
    font-weight: 600;
    vertical-align: bottom;
}

.jobs-sub--paragraph {
    margin-top: 20px;
    font-size: 20px;
}

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

section {
    padding: 80px;
}

button {
    background-color: #F99121;
    color: white;
}

button:hover,
button:active {
    background-color: #cf6d17;
    cursor: pointer;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #F99121;
    margin: 1em 0;
    padding: 0;
}

/*  GRID COLUMN SETUP   ====================== */

.col {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
    padding: 1em 0;
    text-align: center;
}

/*  GRID OF THREE   ============================= */

.span_1_of_3 {
    width: 32.26%;
}

@media only screen and (max-width: 480px) {
    .span_1_of_3 {
        width: 100%;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .span_1_of_3 {
        width: 100%;
    }
}

/* ----------------------------------------------- */
/*                     Footer                      */
/* ----------------------------------------------- */

footer h6 {
    color: #41CAFF;
}

footer a{
    color: #FFFFFF;
    font-family: Lato, sans-serif;
}

footer a:hover {
    color: #e67e22;
}

.footer{
    background: #231F20;
    padding: 2em 0;
    color: white;
    margin-top: 30px;
}

.logo-copyright--section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-copyright--section img {
    margin-bottom: 8px;
}

.logo-copyright-text {
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 1rem;
}


