/*!
 * Copyright (C) 2018 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.
 *
 */

/* Company page */

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

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

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

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

.customer-hero--text {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.customer-hero--text p {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 24px;
}

/** About Customers section **/
.secondary-heading-text {
    font-family: Montserrat, sans-serif;
    font-size: 46px;
    font-weight: 700;
}

.customers-mobanacloud {
    padding: 80px 40px;
}

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

.customers-mobanacloud-text {
    margin-top: 20px;
    font-size: 20px;
}

/* ----------------------------------------------- */
/* TESTIMONIALS */
/* ----------------------------------------------- */

.customers-testimonials {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/customerTestinomial.jpg');
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/customerTestinomial.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    background-attachment: fixed;
    padding: 80px 0;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}

.tertianary-heading-text {
    font-family: Montserrat, sans-serif;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

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

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



