/*!
 * 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.
 *
 */

/* Services page */

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #424242;
}

/* ----------------------------------------------- */
/*                   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%;
}

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

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

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

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

/* ----------------------------------------------- */
/*               Services Content area              */
/* ----------------------------------------------- */

.services-heading--text {
    font-family: Montserrat, sans-serif;
    font-size: 46px;
    font-weight: 700;
}

.services-heading--text:after {
    display: block;
    height: 6px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 20px;
}

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

/* Services section 1 area */
.service-content-1 {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.service-content-1--img {
    background-image: url('../img/training1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    outline-offset: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .4);
}

.service-content-1--text {
    padding-left: 80px;
    line-height: 1.5;
}

.service-content-1--text-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.service-content-1--text ul {
    list-style: none;
}

.service-content-1--text ul li {
    margin: 0 0 5px 0;
}

.service-content-1--text ul li::before {
    content: "\2022";
    color: #F99121;
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

/* ----------------------------------------------- */
/*               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_3_of_3 {
        width: 100%;
    }
    .span_2_of_3 {
        width: 100%;
    }
    .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;
}

.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;
}




