﻿/*!
* Created by Kroplet (https://www.kroplet.com)
* The easiest way to create Bootstrap 4 themes.
*/

/*Google fonts*/
@import url('https://fonts.googleapis.com/css?family=Lato');

html,
body {
    width: 100%;
    height: 100%;
}
body{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}
.navbar-brand{
    font-weight: 600;
    color: #fff;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
.brand-logo{
    width: 180px;
}
.navbar{
    min-height: 80px;
    background-color: #cb060e;
    opacity: 0.8;
}
.navbar-nav .nav-item .nav-link{
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.navbar .nav-item .active, .navbar .nav-link:hover, .navbar .navbar-brand:hover{
    color: #030f1e !important;
}
.hero{
    height: 80vh;
    min-height: 500px;
}

.hero h1{
    margin-bottom: 30px;
    font-weight: 600;
}
.hero h2{
    font-weight: 200;
    line-height: 45px;
}

.store-img{
    width: 170px;
    padding-bottom: 10px;
}

a {
    color: #cb060e;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}
a:hover,
a:focus {
    color: #cb060e;
    outline: 0;
    text-decoration: none;
}
a.btn:hover,
a.btn:focus {
    color: #fff;
}
.bg-dark a{
    color: #fff;
}
section{
    padding: 80px 0px;
}
.img-team{
    width: 120px;
}
.card-outline-primary{
    border: solid 1px #512DA8;
}
.sticky-navigation{
    top: -80px;
}
/*===============================================
* Background Colors
================================================*/
.bg-texture{
    background-color: #020d1c;
    background-size: cover;
    position: relative;
}

.bg-texture{
    background-image: url("../img/AQ-Background.jpg") ;
}

.bg-grey{
    background-color: #e1dfdf;
}
.bg-primary{
    background-color: #cb060e !important;
}
.bg-charcoal{
    background-color: #030f1e;
}
/*===============================================
* Text Colors
================================================*/
.text-dark {
    color: #030f1e;
}
.text-primary {
    color: #cb060e !important;
}
.text-orange{
    color: #ffb300 !important;
}

.text-green{
    color: #45bf55 !important;
}

.badge-primary {
    background-color: #030f1e !important;
    color: #ffffff;
}

.badge-green {
    background-color: #45bf55 !important;
    color: #ffffff;
}

.badge-orange {
    background-color: #ffb300 !important;
    color: #ffffff;
}
/*===============================================
* Icon
================================================*/

.icon-box{
    color:#cb060e;
    width: 100%;
    text-align: center;
}
/*===============================================
* Colored Buttons
================================================*/
.btn {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
.btn-outline-white {
    color: #fff !important;
    background-image: none;
    background-color: transparent;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}
.btn-white {
    color: #512DA8;
    background-color: #fff;
    border-color: #fff;
}
.btn-white:hover {
    background: transparent !important;
    color: #fff !important;
}
.btn-primary{
    background-color: #512DA8 !important;
    border-color: #512DA8 !important;
}
.btn-radius{
    border-radius: 50px;
}

/*===============================================
* Borders Utilities
================================================*/
.border-none{
    border: none !important;
    border-color: transparent !important;
}
.border-all{
    border: 1px solid #DEE5E5 !important;
}
.border-left{
    border-left: 1px solid #DEE5E5 !important;
}
.border-right{
    border-right: 1px solid #DEE5E5 !important;
}
.border-top{
    border-top: 1px solid #DEE5E5 !important;
}
.border-bottom{
    border-bottom: 1px solid #DEE5E5 !important;
}

/*===============================================
* Mobile
================================================*/

@media (max-width: 767.98px) {

    .bg-texture{
        background-image: none;
    }

    .hero {
        height: 120vh;
    }

    .hero .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .store-img{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .lead {
        text-align: center;
    }
}