@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=latin-ext');

/* ----------------
    MAIN STYLEs
 --------------- */
html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7); }
    @media screen and (max-width: 992px) {
    body {
      font-size: 1.2em; } }  
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border-right: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    /*perspective: 1500px; removed for fixed sidebar*/
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    min-width: 260px;
    
    max-width: 300px;
    margin-left: -8px;
    /*border-right: 16px #f1f1f1 solid;*/
    overflow-y: scroll;
    color: #666;
    background-color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
    padding-top: 2em;
        /*FIXED SIDEBAR*/
        z-index: 100;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
}

.list-unstyled {transition: all .6s;}

#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg);
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #999;
}

#sidebar ul.components {
    margin-top: 2em;
    padding:  0;
    /*border-bottom: 1px solid #47748b;*/
}

#sidebar ul p {
    color: #666;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #9F1A20;
    
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.dropdown-toggle::active {
    transform: rotate(180deg)!important;
} 


ul ul a {
    font-size: 0.9em !important;
    background: #efefef;

}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}


/* ---------------------------------------------------
    SIDBAR STYLES
----------------------------------------------------- */
#content {
    margin-left: 250px; /*TO ACCOMODATE FIXED SIDEBAR*/
    width: 100%;
    padding: 30px;
    min-height: 100vh;
    transition: all 0.3s;
    padding-top: 40px;
}
    /*TO ACCOMODATE HIDDEN SIDEBAR*/
    .marginAjust { 
        transition: margin 1.6s !important; 
        margin-left: .5em !important;}

#sidebarCollapse {
    min-width: 40px;
    width: 45px;
    height: 45px;
    min-height: 40px;
    cursor: pointer;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #9F1A20;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}

.collapseConatiner {
    width: .5em;
    background-color: #9F1A20;
    z-index: 200;
        /*FIXED SIDEBAR*/
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
}

.sidebarText {
    font-size: 0.6em;
    line-height: 1.4;
}

.sideBarFooter {
    margin-left: -1.8em;
    list-style: none;
    display: inline-flex;
}

.sideBar {
    text-align: center;
}

.sidebarImg {
    margin-bottom: 3em;
    margin-top: 1em;
}

.sideBarFooter {
    margin-left: -3em; 
    list-style: none;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #content {margin-left: 1em;}
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }
    #sidebarCollapse {
    min-width: 40px;
    min-height: 40px;
    cursor: pointer;
    }

}

/*------------------------
        NICO STYLES
------------------------*/
.topZ {z-index: 999 !important}

a:hover {color: #9F1A20 !important; text-decoration: underline; /*background: linear-gradient(90deg,#9F1A20,#921319)!important;*/}

/*CURRENT PAGE INDICATOR*/
#sidebar ul li.currentPage a{font-weight: 900; color: #777;}


.center, .center ul li {text-align:center !important;} 

.quickFacts { 
    background-color: #efefef;
    border-radius: 0;
    padding: 20px 25px 25px 30px;
    margin-bottom: 30px;
    margin-top: 20px;
    width: 100%;
    color: dimgrey;
    border-left: #9F1A20 7px solid;
}

.imgCont {margin-bottom: 30px; padding: 0px !important;}

.quickFacts:hover {background-color: white;}

.quickFacts span {font-weight: 600; color: #9F1A20;}

/*NAV CARET TOGGLE*/
.mainMenu li a:not([aria-expanded="false"]) .fa-caret-down {display: none}
.mainMenu li a:not([aria-expanded="true"]) .fa-caret-up {display: none}



/*  ---------------
        TOOLS 
    --------------- */
.brandColor {color:#9F1A20; background-color: :#9F1A20;} 
.hide {display: none !important;}
.inline {display: inline-block !important; float: left !important;}
.anchor {width: 100%; height: 20px; display: block;}
.block {display: block;}
.midAlign {margin: auto; display: block}
.floatR {float: right;}
.floatL {float: left;}
.margBtm {margin-bottom: 4em !important;}
.center {text-align: center;}
.img100 {width:100%; height:auto;}
.vAlign { display: flex; align-items: center;}
.trans {        
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all .6s;}
/*  ---------------
    HEADER STYLES
    --------------- */

h1 {margin: 0 0 1em 0; letter-spacing: -1PX; font-weight: 900}

/*PROJECT HEADINGS*/
h5 {color: #9F1A20; font-size: 1.4em; font-weight: 800;}

.quickFacts h3 {font-size: 1.2em; font-weight: 800 }

.skImg {border: #9F1A20 7px solid; border-radius: 300px;}

h1 span {
    color: #bbb;
    font-size: .5em;
    margin-bottom: 4em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    }

.h9 { size: 13px; color: #333;}


/*  ---------------
    BUTTON STYLES
    --------------- */

.btn{ letter-spacing: -0px;}

.btn-primary {
    background-color: #efefef; 
    border: 0px;
    border-left: #9F1A20 7px solid;
    color:#666; 
    border-radius: 0em;
    margin-bottom: 30px;
}

.btn-2-nic {
    border: #ccc 2px solid !important;
    width: 60px;
    height: 60px;
    border-radius: 120px;
    vertical-align: middle;
    text-align: center;
    padding-top: 9px;
}

    .btn-2-nic:hover {
        color: white !important;
        background-color: #9F1A20 !important;
        border-color: #9F1A20 !important;
    }

.btn-primary:hover {background-color: #fcfcfc; border-color: #9F1A20}

.btn-3-nic {margin-bottom: 0px !important}


.sectionBtn {
    color: #ccc;
    font-size: 2em;
    margin-bottom: 1em;
    font-weight: 500;
    text-transform: uppercase;
}


.clearSticky {padding-top: 100px;}

/*  -------
    CONTACT
    -------  */

.contactPanel {
    width:  calc((100%) + (80px)); 
    background-color: #999; 
    float: right; 
    text-align: center;
    padding:26px 0px  0px 40px;
    background-color: #f5f5f5;
    border-top: #9F1A20 7px solid !important;
    margin-bottom: -20px;
    margin-right: -20px;
}
  


/*  -------------------------
    SLIDER & CAROUSEL RELATED
    -------------------------- */

.slidePanel {
    background-color: #ccc;
    width: 35em;
    height: 20em;
    position: relative;
    bottom: 10;
    right:10;
    overflow: scroll;
}

.carousel-item {
    height: 90vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: fit;
}

.sr-only {background-color: black !important;}

.projMainImg {
    width: 100%;
    display: inline-block;
}



