/* ==========================================================================
   JS-CSS Media breakpoints 
========================================================================== */

body:before {
    content: "smartphone";
    display: none;
    /* Prevent from displaying. */
}

@media (min-width: 481px) {
    body:before {
        content: "smartphone_wide";
    }
}

@media (min-width: 767px) {
    body:before {
        content: "tablet";
    }
}

@media (min-width: 975px) {
    body:before {
        content: "desktop";
    }
}

.chartButton {
    width: 100%;
    -moz-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;
    background-color: #dcf0f8;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 9px 0;
    cursor: pointer;
    cursor: hand;
}

.chartButton.selected {
    background-color: #232176;
    color: white;
}

@media (min-width:401px) {
    .chartButton br {
        display: none
    }
}

body,
html {
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #232176;
    padding: 25px 0 20px 0;
    webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/** Page Element Styles - Sitewide **/

h1 {
    font-weight: 400;
    font-size: 30px;
    padding: 30px 15px;
    background-color: #edf7fb;
    margin: 0;
    margin-bottom: 30px;
    border-top: 4px solid #ace6ff;
}

h2 {
    font-weight: 600;
    font-size: 26px;
    margin-top: 0px;
}

h3 {
    font-weight: 400;
    font-size: 22px;
}

h4 {
    font-weight: 600;
    font-size: 18px;
}

h5 {
    font-weight: 400;
    font-size: 16px;
    color: #656565;
}

p {
    color: #656565
}


/** Hyperlink Styles - Sitewide **/

a {
    color: #232176;
    cursor: pointer;
}

a:link {
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    -ms-transition: color .3s;
    transition: color .3s;
}

a:visited {
    color: #232176;
    text-decoration: none;
}

a:hover {
    color: #ace6ff;
    text-decoration: none;
}

a:active {
    color: #ace6ff;
    text-decoration: none;
}


/* ==========================================================================
   OL & UL Style
========================================================================== */

ul.bulleted-list {
    margin: 0;
    padding-left: 15px;
}

ul.bulleted-list li {
    list-style: none;
    margin-bottom: 8px;
}

ul.bulleted-list li:before {
    content: "\f054";
    font-family: 'FontAwesome';
    display: inline-block;
    margin-left: -15px;
    /*same as padding-left set on li*/
    width: 15px;
    /*same as padding-left set on li*/
}

ol {
    counter-reset: item;
    padding-left: 35px;
}

ol li {
    display: block;
    position: relative;
}

ol li:before {
    content: counters(item, ".")".";
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 20px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    width: 16px;
}

ol li ol {
    padding-left: 0;
}

ol li ol li:before {
    content: counters(item, ".")"";
    counter-increment: item;
    color: #656565;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    right: 15px;
    width: 21px;
}

ol li ol li ol {
    padding-left: 47px;
}

ol li ol li ol li:before {
    right: 26px;
}

.arrow-right-blue {
    background-image: ('../img/arrow-right-blue.png');
    height: 12px;
    width: 12px;
}

.lead-home {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #232176;
}

.lead {
    font-size: 22px;
    line-height: 26px;
    color: #232176;
}

.logo {
    background: url('../img/strataero-logo.svg') no-repeat;
    width: 212px;
    margin: 14px 0 28px 0;
}

.no-svg .logo {
    background: url('http://www.strat-aero.com/img/strataero-logo.png') no-repeat;
    width: 212px;
    margin: 14px 0 28px 0;
}

@media only screen and (max-width:975px) {
    .no-svg .logo,
    .logo {
        margin: 0px 0 0px 0;
    }
}


/* ==========================================================================
   Table Styles
========================================================================== */

table {
    width: 100%;
    margin: 15px 0;
    border-top: 2px solid #CCC;
}

td,
th {
    vertical-align: top;
    padding: 10px 0;
}

th {
    font-weight: 600;
}

tr {
    border-bottom: 1px solid #CCC;
}


/** Shaded Tables **/

.shaded-table {
    border-top: 2px solid #CCC;
}

.shaded-table th,
.shaded-table td {
    padding: 10px;
}

.shaded-table tr:nth-child(odd) {
    background-color: #f4f4f4;
}

.shaded-table tr td:first-child {
    font-weight: 600;
    width: 100px;
}


/** Share Price Tables **/

.shaded-table-shareprice {
    border-top: none;
}

.shaded-table-shareprice tr,
.shaded-table-detailed-shareprice tr {
    border-bottom: 1px solid #dcf0f8;
}

.shaded-table-shareprice th,
.shaded-table-shareprice td,
.shaded-table-detailed-shareprice th,
.shaded-table-detailed-shareprice td {
    padding: 10px;
    border-top: none !important;
}

.shaded-table-shareprice th {
    border-bottom: 1px solid #222076;
    text-align: right;
}

.shaded-table-shareprice tr:nth-child(even),
.shaded-table-detailed-shareprice tr:nth-child(even) {
    background-color: #edf7fb;
}

.shaded-table-shareprice tr td {
    text-align: right;
}

.shaded-table-shareprice tr td:first-child,
.shaded-table-shareprice tr th:first-child {
    text-align: left;
}


/** Share Price Tables **/

.shaded-table-detailed-shareprice {
    border-top: 1px solid #dcf0f8;
}


/* ==========================================================================
   Navigation
========================================================================== */

@media (min-width: 975px) {
  .navbar{
    margin-bottom: 0px;
  }
}

.navbar-collapse {
    padding: 0;
}

.navbar-nav {
    border-top: 4px solid #ace6ff;
}

.nav>li {
    width: 100%;
    border-bottom: 1px solid #dcf0f8;
}

.navbar-nav>li>a {
    font-size: 18px;
    color: #222076;
}

.navbar-nav>li>ul {
    padding: 0;
}

.navbar-nav>li>ul>li {
    list-style: none;
    border-top: 1px solid #FFF;
}

.navbar-nav>li>ul>li>a {
    font-size: 16px;
    padding: 15px;
    display: block;
    background-color: #daf3fd;
}

.navbar-nav>li>ul>li>a.active {
    border-left: 4px solid #79cff4;
}

.navbar-nav>li>ul>li>a:hover {
    color: #222076;
}

.navbar-nav>li>ul>li>ul {
    padding: 0;
}

.navbar-nav>li>ul>li>ul>li {
    list-style: none;
    border-top: 1px solid #fff;
}

.navbar-nav>li>ul>li>ul>li>a {
    padding: 15px;
    display: block;
    background-color: #ace6ff;
}

.navbar-nav>li>ul>li>ul>li>a.active {
    border-left: 4px solid #222076;
}

.navbar-nav>li>ul>li>ul>li>a:hover {
    color: #222076;
}

.navbar-toggle {
    margin-right: 0;
    padding: 10px 13px;
    margin-top: 10px;
    margin-bottom: 0;
}

.aero-info-mngr {
    background-color: #222076;
    border-radius: 4px;
    color: #FFF !important;
    font-size: 14px;
    padding: 10px 5px;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.aero-info-mngr:hover {
    background-color: #edf7fb;
    color: #222076 !important;
}

.arrow {
    float: right;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
}

.active > a > .fa-caret-right:before {
    content: "\f0d7";
}

@media only screen and (max-width:974px) {
    .navbar-nav>li>a {
        padding: 15px;
    }
    .navbar-nav>li {
        padding: 0 15px;
    }
}


/* ==========================================================================
    Banner
========================================================================== */

.banner-text-wrap {
    top: 0;
    padding: 40px 30px 0 40px;
    float: left;
    width: 100%;
    position: absolute;
}

.banner-text-wrap h1 {
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    color: #FFF;
    background: none;
    margin: 0;
    padding: 0;
    border-top: none;
    margin-bottom: 10px;
}

.banner-text-wrap h2 {
    font-size: 24px;
    font-weight: 400;
    color: #FFF;
}

.banner-image {
    height: 280px;
    background-position: center center;
}

.banner-image {
    max-height: 280px;
    background: #edf7fb;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media (max-width: 767px){
  .banner-image {
    background-position: center center;
  }
}


.banner-ir-links {
    float: left;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.banner-ir-links ul {
    list-style: none;
    padding: 0;
}

.banner-ir-links li a {
    background-color: orange;
    padding: 8px 40px 8px 8px;
    margin-bottom: 5px;
    display: block;
    position: relative;
}

.banner-ir-links li a:hover {
    background-color: #ace6ff;
    color: #222076;
}

.banner-ir-links li a:after {
    padding: 4px 8px;
    font-family: 'FontAwesome';
    background-color: #222076;
    height: 38px;
    width: 38px;
    text-align: center;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 21px;
    webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.banner-ir-links li a.video:after {
    content: "\f04b";
    padding-top: 5px;
}

.banner-ir-links li a.presentation:after {
    content: "\f022";
    padding-top: 6px;
}

@media screen and (min-width:768px) {
    .banner-text-wrap {
        width: 460px;
    }
    .banner-ir-links {
        width: 220px;
        padding: 0;
        right: 45px;
        top: 0;
    }
    .banner-ir-links ul {
        padding-top: 46px;
    }
}

@media only screen and (max-width:767px) {
    .banner-text-wrap {
        padding: 15px;
    }
    .banner-text-wrap h1 {
        font-size: 26px;
        line-height: 26px;
        font-weight: ;
        color: #FFF;
        background: none;
        margin: 0;
        border-top: none;
        margin-bottom: 10px;
    }
    .banner-text-wrap h2 {
        font-size: 20px;
    }
}

body.home:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url('http://www.strat-aero.com/img/banner-image-1.jpg') url('http://www.strat-aero.com/img/banner-image-2.jpg') url('http://www.strat-aero.com/img/banner-image-3.jpg') url('http://www.strat-aero.com/img/banner-image-4.jpg') url('http://www.strat-aero.com/img/banner-image-5.jpg');
}

.banner-image-1 {
    background: url('http://www.strat-aero.com/img/banner-image-1.jpg');
}

.banner-image-2 {
    background: url('http://www.strat-aero.com/img/banner-image-2.jpg');
}

.banner-image-3 {
    background: url('http://www.strat-aero.com/img/banner-image-3.jpg');
}

.banner-image-4 {
    background: url('http://www.strat-aero.com/img/banner-image-4.jpg');
}

.banner-image-5 {
    background: url('http://www.strat-aero.com/img/banner-image-5.jpg');
}


}



/* ==========================================================================
       Banner Links
    ========================================================================== */
.banner-links {
    padding: 0px;
}
.banner-links a {
    display: block;
}
@media only screen and (min-width:768px) {
    .banner-links a {
        padding: 15px 0;
        display: block;
        height: 100px;
    }
    
    .banner-links a:hover {
        color: #232176;
    }
    
    .banner-links:nth-child(2) {
        background-color: #ace6ff;
    }
    
    .banner-links:nth-child(3) {
        background-color: #caefff;
    }
    
    .banner-links:nth-child(4) {
        background-color: #daf3fd;
    }
    
    .banner-links:nth-child(5) {
        background-color: #edf7fb;
    }
    
    .banner-links:hover,
    .banner-links.active {
        color: #222076;
        -webkit-box-shadow: inset 0px -4px 0px 0px #222076;
        -moz-box-shadow: inset 0px -4px 0px 0px #222076;
        box-shadow: inset 0px -4px 0px 0px #222076;
        -webkit-transition: box-shadow .3s;
        -moz-transition: box-shadow .3s;
        -o-transition: box-shadow .3s;
        -ms-transition: box-shadow .3s;
        transition: box-shadow .3s;
    }
    
    .banner-links-next,
    .banner-links-prev {
        color: #FFF;
        background-color: #222076;
        text-align: center;
        margin-bottom: 85px;
        padding: 20px 0;
    }
    
    .banner-links-next {
        border-right: 15px solid #FFF;
    }
    
    .banner-links-prev {
        border-left: 15px solid #FFF;
    }
    
    .banner-links-next a,
    .banner-links-prev a {
        color: #FFF;
    }
}
@media only screen and (max-width:767px) {
    .banner-links {
        padding: 0 15px;
    }
    
    .banner-links a {
        padding: 15px;
    }
    
    .banner-links:nth-child(2) a {
        background-color: #ace6ff;
    }
    
    .banner-links:nth-child(3) a {
        background-color: #caefff;
    }
    
    .banner-links:nth-child(4) a {
        background-color: #daf3fd;
    }
    
    .banner-links:nth-child(5) a {
        background-color: #edf7fb;
        margin-bottom: 30px;
    }
    
    .banner-links a:hover {
        color: #222076;
    }
    
    .banner-links-next,
    .banner-links-prev {
        display: none;
    }
}
.banner-links div:hover {
    border-bottom: 3px solid #222076;
}

/* ==========================================================================
   Latest News Slider
========================================================================== */
.latest-news {
    margin: 0 0 30px;
    width: 100%;
}
@media (max-width:767px) {
    .latest-news {
        min-height: 130px;
    }
}
.latest-news-slider-controls {
    background-color: #edf7fb;
    padding: 10px 15px;
    float: left;
}
.latest-news-item {
    float: left;
}
.latest-news-item p {
    color: #232176;
    padding: 0;
    margin: 10px;
    float: left;
    overflow: hidden;
}
.bx-prev,
.bx-next {
    display: inline-block;
    margin-left: -15px;
    /*same as padding-left set on li*/
    
    width: 15px;
    /*same as padding-left set on li*/
}
.latest-news-slider-prev,
.latest-news-slider-next {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding: 0 4px;
}

/* Desktop & Tablet*/
@media only screen and (min-width:768px) {
    .latest-news-slider-controls {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        border-bottom: 1px solid #ace6ff;
        border-left: 1px solid #ace6ff;
        border-top: 1px solid #ace6ff;
    }
    
    .latest-news-item {
        width: 565px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom: 1px solid #ace6ff;
        border-right: 1px solid #ace6ff;
        border-top: 1px solid #ace6ff;
    }
    
    .latest-news-item p {
        width: 405px;
        height: 22px;
        display: block;
    }
    
    .latest-news-item span {
        float: right;
        margin-top: 10px;
        margin-left: 10px;
        margin-bottom: 10px;
        margin-right: 17px;
        display: block;
        width: 103px;
        text-align: right;
        border-left: 1px solid #ace6ff;
    }
}

/* Mobile */
@media only screen and (max-width:767px) {
    .latest-news-slider-controls {
        width: 100%;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-top: 1px solid #ace6ff;
        border-right: 1px solid #ace6ff;
        border-left: 1px solid #ace6ff;
    }
    
    .latest-news-item {
        width: 100%;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border: 1px solid #ace6ff;
    }
    
    .latest-news-item span {
        float: left;
        width: 100%;
        text-align: left;
        border-top: 1px solid #ace6ff;
        padding: 10px;
    }
}

/* ==========================================================================
   Share Price
========================================================================== */
.share-price {
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    padding: 15px;
}
@media only screen and (max-width:767px) {
    .share-price {
        margin-top: 20px;
    }
}
.share-price h2 {
    padding-bottom: 15px;
    border-bottom: 1px dashed #232176;
    margin-top: 15px;
}
.share-price h3 {
    font-size: 18px;
    margin: 0;
}
.share-price p {
    font-size: 13px;
    margin: 0;
}
.share-price-value {
    font-size: 40px;
}
.share-price-currency {
    font-size: 27px;
}
ul.share-price-change {
    margin: 10px 0;
    height: 30px;
    padding: 0;
    float: left;
    width: 100%;
}
.share-price-change li {
    float: left;
    font-size: 18px;
    margin: 0 15px 0 0;
}

/*li.share-price-up{
  list-style: url('../img/arrow-up-green.png');
}*/
li.share-price-up {
    list-style: none;
}
li.share-price-up:before {
    content: "\f077";
    /*fontawesome char code inside the ''*/
    
    font-family: 'FontAwesome';
    /* or whatever */
    
    display: inline-block;
    margin-right: 10px;
    float: left;
}
li.share-price-down {
    list-style: none;
}
li.share-price-down:before {
    content: "\f078";
    /*fontawesome char code inside the ''*/
    
    font-family: 'FontAwesome';
    /* or whatever */
    
    display: inline-block;
    margin-right: 10px;
    float: left;
}

/* ==========================================================================
   IR Quick links
========================================================================== */
.ir-quick-links {
    padding: 0;
    margin: 30px 0;
}
.ir-quick-links li {
    border-bottom: 1px solid #ace6ff;
    list-style: none;
}
.ir-quick-links li a {
    background-color: #edf7fb;
    display: inline-block;
    padding: 10px;
    width: 100%;
}
.ir-quick-links li a:after {
    content: "\f054";
    /*fontawesome char code inside the ''*/
    
    font-family: 'FontAwesome';
    /* or whatever */
    
    display: inline-block;
    /*margin-left: -1.2em; /*same as padding-left set on li*/
    /*width: 1.2em; /*same as padding-left set on li*/
    
    float: right;
}

/* ==========================================================================
   Quote Panel
========================================================================== */
.quote-panel {
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    padding: 15px;
}
.quote-panel h4 {
    font-size: 18px;
}

/* ==========================================================================
   Link Panel
========================================================================== */
.link-panel {}
.link-panel a:hover {
    border-bottom: 4px solid #232176;
    color: #232176;
}
.link-panel a {
    padding: 15px;
    display: block;
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    margin: 15px 0;
}

/* ==========================================================================
   Contact Page
========================================================================== */
.address-panel {
    padding: 15px;
    font-size: 14px;
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    margin: 0 0 30px 0;
}
.address-panel p {
    color: #232176;
    margin: 0;
}
.address-panel h5 {
    color: #232176;
    margin-top: 0;
}
#map-canvas-london,
#map-canvas-texas {
    position: relative;
    height: 220px;
}
@media only screen and (max-width:767px) {
    #map-canvas-london,
    #map-canvas-texas {
        position: relative;
        padding-bottom: 50%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }
}

/* ==========================================================================
   Geographic Reach
========================================================================== */
.office-panel {}
.office-panel ul {
    margin: 0;
    padding: 0;
}
.office-panel ul li {
    padding: 15px 15px 15px 45px;
    font-size: 14px;
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    margin: 0 0 15px 0;
    list-style: none;
}
.office-panel ul li:first-child {
    background: url('../img/pin-1.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li {
    background: url('../img/pin-2.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li + li {
    background: url('../img/pin-3.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li + li + li {
    background: url('../img/pin-4.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li + li + li + li {
    background: url('../img/pin-5.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li + li + li + li + li {
    background: url('../img/pin-6.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li:first-child + li + li + li + li + li + li {
    background: url('../img/pin-7.svg') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child {
    background: url('http://www.strat-aero.com/img/pin-1.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li {
    background: url('http://www.strat-aero.com/img/pin-2.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li + li {
    background: url('http://www.strat-aero.com/img/pin-3.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li + li + li {
    background: url('http://www.strat-aero.com/img/pin-4.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li + li + li + li {
    background: url('http://www.strat-aero.com/img/pin-5.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li + li + li + li + li {
    background: url('http://www.strat-aero.com/img/pin-6.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.no-svg .office-panel ul li:first-child + li + li + li + li + li + li {
    background: url('http://www.strat-aero.com/img/pin-7.png') 10px center no-repeat #edf7fb;
    background-size: 22px;
}
.office-panel ul li p {
    color: #232176;
    margin: 0;
}
.office-panel ul li h5 {
    color: #232176;
    margin: 0;
}

/* ==========================================================================
   Board Slider
========================================================================== */
.slider-wrap {
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
}
.slider-wrap li {
    list-style: none;
    border-bottom: 1px solid #dcf0f8;
    padding: 5px 0;
}
.slider-wrap li ul {
    margin: 0;
    padding: 0;
}
.slider-wrap li ul li {
    border-bottom: none;
}
.slider-wrap li a:visited,
.slider-wrap li a:active {
    color: #232176;
}
.slider-wrap li a:hover {
    color: #ace6ff;
}
.slider-arrow {
    float: right;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    margin-top: 9px;
}
.active > a > .fa-chevron-right:before {
    content: "\f078";
}

/* ==========================================================================
   Affilliates Page
========================================================================== */
ul.logos {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}
.row-1 li {
    list-style: none;
    float: left;
    margin: 20px 10px;
}
.row-2 li {
    list-style: none;
    float: left;
    margin: 20px 10px;
}
.row-3 li {
    list-style: none;
    float: left;
    margin: 20px 10px;
}

/* ==========================================================================
   Sticky footer styles
========================================================================== */
html {
    position: relative;
    min-height: 100%;
}
footer {
    position: absolute;
    font-size: 14px;
    bottom: 0;
    width: 100%;
    background-color: #efefef;
}
@media only screen and (min-width:975px) {
    body {
        margin-bottom: 332px;
    }
    /* Margin bottom by footer height */
    
    footer {
        height: 332px;
    }
    /* Set the fixed height of the footer here */
}
@media only screen and (min-width:768px) and (max-width:974px) {
    body {
        padding: 0 0 20px 0;
        margin-bottom: 372px;
    }
    /* Margin bottom by footer height */
    
    footer {
        height: 372px;
    }
    /* Set the fixed height of the footer here */
}
@media only screen and (max-width:767px) {
    footer .site-map {
        display: none;
    }
    
    body {
        padding: 0 0 20px 0;
        margin-bottom: 95px;
    }
    /* Margin bottom by footer height */
}
footer .site-map {
    padding: 35px 0;
}
footer .copyright {
    background-color: #e1e1e1;
    padding: 20px 0;
}
footer .copyright a {
    display: inline;
}
footer a {
    display: block;
    width: 100%;
    margin: 7px 0;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ul li {}
footer ul li ul {
    margin: 0 0 0 20px;
}
footer ul li ul li a {
    font-style: italic;
}
.social-icons li {
    width: 32px;
    height: 32px;
    margin: 7px 0;
    float: right;
    display: block;
}
.social-icons li a {}
.social-icons li.linkedin {
    background: url('../img/social-icons.png') 0 0 no-repeat;
}
.social-icons li.linkedin:hover {
    background: url('../img/social-icons.png') 0 -32px no-repeat;
}
.social-icons li.twitter {
    background: url('../img/social-icons.png') -32px 0 no-repeat;
}
.social-icons li.twitter:hover {
    background: url('../img/social-icons.png') -32px -32px no-repeat;
}
.social-icons li.facebook {
    background: url('../img/social-icons.png') -64px 0px no-repeat;
}
.social-icons li.facebook:hover {
    background: url('../img/social-icons.png') -64px -32px no-repeat;
}

/* ==========================================================================
   UItoTop jQuery Plugin 1.2
========================================================================== */
#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    width: 51px;
    height: 51px;
    border: none;
    background: url('../img/top.svg') no-repeat left top;
}
#toTopHover {
    background: url('../img/top.svg') no-repeat left -51px;
    width: 51px;
    height: 51px;
    display: block;
    overflow: hidden;
    float: left;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}
.no-svg #toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    width: 51px;
    height: 51px;
    border: none;
    background: url('http://www.strat-aero.com/img/top.png') no-repeat left top;
}
.no-svg #toTopHover {
    background: url('http://www.strat-aero.com/img/top.png') no-repeat left -51px;
    width: 51px;
    height: 51px;
    display: block;
    overflow: hidden;
    float: left;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}
#toTop:active,
#toTop:focus {
    outline: none;
}

/* ==========================================================================
   Contact Form
========================================================================== */
.form {
    max-width: 100%;
    min-width: 100%;
    margin: 20px 0;
    padding: 0px;
}
.form label {
    display: block;
}
.form input[type=radio],
input[type=checkbox] {
    margin: 10px;
    width: 13px;
}
.form div {
    display: block;
}
.form input,
form textarea,
form select {
    border: none;
    padding: 10px;
    width: 100%;
    background-color: #f8f8f8;
}
.form select {
    background-color: #f8f8f8;
    height: 45px;
}
.form textarea {
    height: 115px;
    width: 100%;
}
.form button[type=submit],
.form-button input[type=submit] {
    width: 100%;
    background-color: #232176;
    color: #FFF;
    border: none;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 4px;
}
.form button[type=submit]:hover,
.form-button input[type=submit]:hover {
    background-color: #ace6ff;
    color: #232176;
}
.form-button input[type=checkbox] {
    display: block;
    float: left;
    width: inherit;
    margin: 4px 0;
}
.form-button label {
    display: initial;
    margin-bottom: 0;
}
.field {
    margin-bottom: 15px;
    border-bottom: 2px solid #ace6ff;
}

/* ==========================================================================
   5 Col Bootsrap
========================================================================== */
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-15 {
    width: 20%;
    float: left;
    padding-right: 5px;
    padding-left: 5px;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/* ==========================================================================
   carousel-fade
========================================================================== */
.carousel-fade .carousel-inner .item {
    /*-webkit-transition-property: opacity;*/
    /*transition-property: opacity;*/
    
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}
.carousel-indicators {
    position: relative;
    top: 0;
    left: 0;
    z-index: 15;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
    padding: 0;
}
.carousel-indicators .active {
    width: 25%;
    height: 100%;
}
@media (max-width: 768px) {
    .carousel-indicators .active {
        width: 100%;
    }
}
.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* -----------------------------------------------------------------------------
  Twitter Feed
----------------------------------------------------------------------------- */
.twitter-section {
    min-height: 110px;
    margin-bottom: 30px;
    background-color: #edf7fb;
    border-bottom: 4px solid #ace6ff;
    padding: 15px;
    background: url(http://www.strat-aero.com/img/twitter_logo.png) #edf7fb no-repeat;
    background-size: 20px;
    background-position: 15px 15px;
}
.twitter-section:before {
    content: "Twitter Feed";
    color: #232176;
    position: absolute;
    font-size: 18px;
    top: 11px;
    left: 60px;
}
.twitter-section .bx-wrapper {
    margin: 0;
    padding-top: 35px;
}
.twitter-section .bx-wrapper .bx-pager.bx-default-pager a {
    background: #ace6ff;
}
.twitter-section .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #232176;
}
.twitter-section .bx-wrapper .bx-pager.bx-default-pager a:hover,
.twitter-section .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #232176;
}
.twitter-section .bx-wrapper .bx-pager {
    padding-top: 0;
    top: 5px;
    right: 0;
    width: 50px;
}
.twitter-section .bx-wrapper .bx-pager.bx-default-pager a {
    margin: 0 3px;
}
#loading-container {
    padding: 35px 0px 16px 0px;
    text-align: center;
}
#twitter-feed {
    overflow: auto;
    position: relative;
}
.twitter-link {
    background: url(http://www.strat-aero.com/img/twitter-logo.gif) no-repeat left;
    display: inline-block;
    padding: 18px 0 18px 40px;
    font-size: 14px;
}
.twitter-article,
#loading-container {
    width: 100%;
    float: left;
    position: relative;
}
.twitter-pic {
    display: none;
}
.twitter-pic img {
    float: left;
    border: none;
}

/* -------- TEXT STYLING ------*/
.twitter-text {
    width: 100%;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    /*padding: 10px 10px 15px;*/
}
.twitter-text p {
    margin: 0px;
    padding-bottom: 0px;
    color: #232176;
    font-size: 16px;
}
.twitter-text a,
h1 a {
    color: #232176;
    text-decoration: none;
}
.twitter-text a:hover,
h1 a:hover {
    text-decoration: underline;
    color: #232176;
}
.tweet-time {
    color: #232176;
    float: right;
}
.tweet-time a,
.tweet-time a:hover {
    color: #232176;
}
.tweetprofilelink a {
    color: #232176;
    display: inline-block;
    margin-bottom: 5px;
}
.tweetprofilelink a:hover {
    color: #232176;
}

/* -------- FEED  ACTIONS ------*/
#twitter-actions {
    width: 75px;
    float: right;
    margin-right: 5px;
    margin-top: 3px;
    display: none;
}
.intent {
    width: 25px;
    height: 16px;
    float: left;
}
.intent a {
    width: 25px;
    height: 16px;
    display: block;
    background-image: url(http://www.strat-aero.com/img/tweet-actions.png);
    float: left;
}
.intent a:hover {
    background-position: -25px 0px;
}
#intent-retweet a {
    background-position: 0px -17px;
}
#intent-retweet a:hover {
    background-position: -25px -17px;
}
#intent-fave a {
    background-position: 0px -36px;
}
#intent-fave a:hover {
    background-position: -25px -36px;
}

/* -------- RETWEET INDICATOR ------*/
#retweet-indicator {
    width: 14px;
    height: 10px;
    background-image: url(http://www.strat-aero.com/img/tweet-actions.png);
    background-position: -5px -54px;
    margin-top: 3px;
    float: left;
}

/* ==========================================================================
   Strat Aero Icon
========================================================================== */

@font-face {
    font-family: "strat-aero-icon";
    src: url("http://www.strat-aero.com/fonts/strat-aero-icon.eot");
    src: url("http://www.strat-aero.com/fonts/strat-aero-icon.eot#iefix") format("embedded-opentype"), url("../fonts/strat-aero-icon.woff") format("woff"), url("http://www.strat-aero.com/fonts/strat-aero-icon.ttf") format("truetype"), url("http://www.strat-aero.com/fonts/strat-aero-icon.svg#strat-aero-icon") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: "strat-aero-icon" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="sa-"]:before,
[class*=" sa-"]:before {
    font-family: "strat-aero-icon" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sa-icon-commercial:before {
    content: "\61";
}

.sa-icon-agriculture:before {
    content: "\62";
}

.sa-icon-construction:before {
    content: "\64";
}

.sa-icon-electricity:before {
    content: "\65";
}

.sa-icon-flood-defences:before {
    content: "\66";
}

.sa-icon-insurance:before {
    content: "\67";
}

.sa-icon-mining-quarrying:before {
    content: "\68";
}

.sa-icon-oil-gas:before {
    content: "\69";
}

.sa-icon-property-management:before {
    content: "\6a";
}

.sa-icon-real-estate:before {
    content: "\6b";
}

.sa-icon-telecommunications:before {
    content: "\6c";
}

.grid-icon {
    border: 3px solid #efefef;
    text-align: center;
    color: #222076;
    margin-bottom: 15px;
    height: 130px;
    display: block;
    line-height: 18px;
    position: relative;
}

@media (min-width:768px) {
    .grid-icon {
        margin-bottom: 30px;
    }
}

.grid-icon span:before {
    display: block;
    font-size: 50px;
}

.grid-icon:hover {
    background-color: #edf7fb;
    border-color: #ace6ff;
    color: #222076;
}

.grid-icon span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    right: 0;
    padding: 5px;
}

/* Logo in training banner*/
.autq-logo{
    position: absolute;
    right: 45px;
    bottom: 25px;
    width: 220px;
    height: 110px;
    text-align: right;
}

@media (max-width: 767px) {
  .autq-logo{  display:none;}
}