/* Tailwind Classes */
.d-flex {
    display: flex;
}

.jc-between {
    justify-content: space-between;
}

.jc-center {
    justify-content: center;
}

.jc-around {
    justify-content: space-around;
}

.ai-fstart {
    align-items: flex-start;
}

.ai-center {
    align-items: center;
}

.ac-center {
    align-content: center;
}

.fwrap {
    flex-wrap: wrap;
}

.fg-1 {
    flex-grow: 1;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.uppercase {
    text-transform: uppercase;
}

.of-auto {
    overflow: auto;
}

.f-right {
    float: right;
}

.ta-center {
    text-align: center;
}

.noborder {
    border: 0 !important;
}

.weight-400 {
    font-weight: 400 !important;
}

.weight-600 {
    font-weight: 600 !important;
}

/* Evergreen */
.raleway {
    font-family: 'Raleway', 'Open Sans', Arial, Helvetica, sans-serif;
}

.open-sans {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10000;
}

.header a,
a:focus,
a:hover,
a:active {
    outline: 0;
    cursor: pointer;
}

.header a {
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

.header a {
    color: #337ab7;
    text-decoration: none;
}

.logo {
    height: 75px;
}

.padding {
    padding: 40px;
}

.footer {
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(to bottom, #555555 0%, #313131 100%);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.separator-b {
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.section-header {
    color: #fff;
    background-color: #151515;
}

.section-header-text {
    margin: 20px 0 20px 0;
    font-weight: 300;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: 'Raleway', 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

p {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #121212;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a,
a:focus,
a:hover,
a:active {
    outline: 0;
    cursor: pointer;
}

/* Index Page */
.font-title {
    font-family: Georgia, serif;
    padding: 0 10px;
}

.font-size-title {
    font-size: 72px;
}

.card {
    width: 40%;
    min-width: 300px;
}

.font-card-title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-decoration: none !important;
}

/* Capabilities Page */
.capibilities-title {
    font-size: 20px !important;
    line-height: 26px !important;
}

/* Careers Page */
.section-heading-title {
    border-bottom: #A94545 2px solid;
    position: relative;
    font-size: 28px;
}

.section-heading-text {
    font-size: 26px;
    color: #b42616;
}

.section-content-list {
    font-size: 16px;
}

.mail-btn {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    text-align: center;
    display: block;
    font-size: 18px;
}


.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #000000;
    height: 2px;
    width: 2em;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 1em;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .navigation ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 100%;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-out;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .navigation li {
        margin-bottom: 1em;
        margin-left: 1em;
    }

    .nav-toggle:checked~ul {
        transform: scale(1, 1);
    }
}