/* IMPORTING FONT FAMILIES */
@import url('https://fonts.googleapis.com/css?family=Roboto|Rubik|Montserrat');

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
html, body {
    padding: 0;
}
html, body {
    font: 18px 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    word-wrap: break-word;
    line-height: 1.5
}

div, section, article, aside, ul, li {
    min-height: 0;
}
h1, h2, h3, h4{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 700;
    width: 100%;
}
h1, h2, h3, h4 { text-transform: capitalize; }
h1 { font-size: 40px; margin-bottom: 10px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
a { 
    color: #fc4c02; 
    text-decoration: none;
    font-weight: 700;
}
a:hover {
    transition: all 0.5s;
    color: #ff6f3f;
}
a:active { color: #c93100; }


/*****************************************/
/* HEADER STYLES                         */
/*****************************************/
.header-container-wrapper {
    background-color: #212121;
    border-bottom: 1px solid #424242;
    position: fixed;
    width: 100%;
    z-index: 99999;
}
.header-container-wrapper .content-wrapper  { margin:0; padding: 0; }
.header-container-wrapper .content-wrapper .logo-wrap img { 
    display: block;
    width: 100px !important;
    padding: 10px 0;
}

.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {
/* Targets all unordered lists within horizontal menus */
    color: white;
    list-style: none; 
    margin: 0;
    padding: 0;
}
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
/* Targets the top-level unordered list within horizontal menus */
    margin: 0;
    text-align: right;
}
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
/* Targets top-level list items within the top-level unordered list */
    display: inline-block;
    position: relative;
    margin: 15px 0;
    vertical-align: middle;
}
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
/* Targets top-level list links within the top-level unordered list */
    border-radius: 2px;
    box-sizing: border-box;
    color: #9e9e9e;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
}
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover, 
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:hover > a { 
    transition: all 0.5s;
    background-color: #313131; 
    border-radius: 2px 2px 0 0;
    color: #fff;
}

/* ALL FROM SECOND LEVEL MENU */
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
/* Targets second-level unordered lists when flyouts are enabled (for styling dropdowns) */
    background-color: #313131;
    display: none;
    text-align: left;
    min-width: 215px;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover ul.hs-menu-children-wrapper{
    display: block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
/* Targets links within second-level unordered lists  */
    font-size: 16px;
    color: #bdbdbd;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover a{
    color: #ffffff;
}


/* SECOND LEVEL MENU */
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    position: absolute;
}

/*.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li {
    padding-bottom: 10px;
}

/* THIRD LEVEL MENU */
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children li a {
    color: #bdbdbd;
    font-size: 14px;
    text-indent: 15px;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children li a:hover,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children li:hover a {
    color: #fff;
    background-color: #f03d00;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children li.active a {
    color: #fff;
    background-color: #424242;
}


.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child > a{
/* Targets the last list item in the top level (for styling GET IN TOUCH) */
    background-color: #fc4c02;
    border-radius: 2px;
    color:  white;
    font-weight: bold;
    height: auto;
    padding: 10px 20px;
}
.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child > a:hover {
    background-color: #ff5722;
}
.hs-menu-wrapper.hs-menu-flow-horizontal li.active > a{
/* Targets the link within the active list item */
    transition: all 0.5s;
    color: white !important;
}

.header-container-wrapper .menu-icon-box {
    width: 112px;
    position: absolute;
    top: 20px;
    right: 0;
}
.header-container-wrapper .row-number-3 .menu-icon-box {
    display: none;
}
.menu-icon-box .mobile-header-buttons {
    min-width: auto;
}
.menu-icon-box .mobile-header-buttons a {
    display: inline-block;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.menu-icon-box .mobile-header-buttons #cta-contact { 
    background: url("//offers.axelerant.com/hubfs/Axelerant_Facelift_2017/Contact-fill.png") no-repeat; 
    background-size: 40px 40px;
}
.menu-icon-box .mobile-header-buttons #cta-menu { 
    background: url("//offers.axelerant.com/hubfs/Axelerant_Facelift_2017/Menu.png") no-repeat;
    background-size: 40px 40px; 
}
/* MOBILE MENU */
.header-container-wrapper .row-number-4 { 
    display: none; 
}

.mobile-menu ul{
    list-style: none;
    padding: 0;
}
.mobile-menu ul li a {
    color: #bdbdbd;
    display: block;
    font-size: 16px;
    padding: 10px 0;
    width: auto !important;
}
.mobile-menu ul li a:active { background: black; }
.mobile-menu ul li li a { text-indent: 20px; }
.mobile-menu ul li li li a { 
    font-weight: 500;
    text-indent: 40px; 
    text-transform: capitalize;
}
.mobile-menu ul li.hs-item-has-children ul.hs-menu-children-wrapper { display: none; }
.mobile-menu ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper { display: block; }

.mobile-menu ul li.active > a{
/* Targets the link within the active list item */
    color: white !important;
}

/*****************************************/
/* BODY STYLES                           */
/*****************************************/
.body-container-wrapper > .body-container > .row-fluid-wrapper:first-child {
    margin-top: 68px;
}

.widget-type-space { min-height: 28px !important; }

/*****************************************/
/* PAGES                                 */
/*****************************************/
.home-bg{
    min-height: 90vh !important; 
    background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Homepage-Agency-Success-Header.jpg') no-repeat center bottom;
    /*background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Why%20Axelerant%20Agency/Agency-Homepage-Header.jpg') no-repeat center bottom;*/
}
.qa-bg{
    padding: 90px 0;
    background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/QA-Services-Header.jpg') no-repeat center bottom;
}
.devops-bg{
    padding: 90px 0;
    background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/DevOps-Header.jpg') no-repeat center bottom;
}
.devops-bg .qa-bg .home-bg .content-wrapper { margin: 5% auto !important; }


.services-section a { color: #212121; }
.services-section a:hover { color: #f03d00; }

/* OLD TESTIMONIAL STYLES
.testimonials {
  width: 100%;
  margin: 0px ;
  position: relative;
}
.testimonials > div { display: inline-block; vertical-align: top;}
.testimonials .next, .testimonials .prev {
    cursor: pointer;
    font-size: 30px;
    width: auto;
}
.testimonial-wrapper { width: 90%; padding-left:20px; padding-right:20px; }
.testimonial-wrapper .testimonial {
    display: none; 
    width: 100%;
    min-height: 130px !important;
}
.testimonial-wrapper .testimonial:first-child { display: block; }
.testimonials .prev, .testimonials .next { color: #bdbdbd; }
.testimonials .prev:hover, .testimonials .next:hover { transition: all ease-in 0.5s; color: black; }
*/
.testimonials { font-size: 0; margin-top: 20px; }
    .testimonials > div { 
        display: inline-block;
        width: 31.623931624%;
        margin-left: 2.564102564%;
        font-size: 18px;
        vertical-align: top;
    }
    .testimonials > div:first-child { margin-left: 0; }
    
    .testimonials > div > blockquote, .testimonials > div > h3 {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        box-sizing: border-box;
        font-size: 20px;
        font-weight: normal; 
        line-height: 26px;
        padding: 20px;
        text-transform: inherit;
        -webkit-margin-start: 0;
        -webkit-margin-end: 0;
        -webkit-margin-before: 0;
        -webkit-margin-after: 0;
    }
    .testimonials div img {
        height: 24px;
    }
    .testimonials div p {
        margin: 5px 0;
    }
    .testimonials .fa {
        font-size: 30px;
        position: relative;
        top: -10px;
        left: 10px;
        color: rgba(255, 255, 255, 0.1);
    }
.testimonials .small-text{
    font-style: normal;
}

.client-logos {
        font-size: 0;
        list-style: none;
        padding: 0;
    }
.client-logos li {
    display: inline-block;
    font-size: 16px;
    margin-right: 2%;
    width: 18.4%;
}
.client-logos li:nth-child(5n) { margin-right: 0; }
.client-logos li img { width: 100%; opacity: 0.5;}
.client-logos li.collaborator img { opacity: 1; }

/* WEB CONTENT MANAGEMENT */
.why-axelerant-bg {
    background: url("https://www.axelerant.com/hubfs/Axelerant_Facelift_2017/Page%20Banners/Why-Axelerant-Header.jpg") no-repeat center bottom; 
}
.web-cms-bg{
    min-height: 200px !important;
    background: url('https://www.axelerant.com/hubfs/Axelerant_Facelift_2017/Page%20Banners/WCMS.jpg') no-repeat center bottom;
}

.success-stories-bg {
    background: url("https://www.axelerant.com/hubfs/Axelerant_Facelift_2017/Page%20Banners/Success-Stories-Header-1.jpg") no-repeat center bottom; 
}

/* FAQs in INDUSTRY Pages */
.faqs ul{
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.faqs ul li {
    border: 1px solid #e0e0e0;
    color: #212121;
    display: block;
    padding: 10px;
    margin-bottom: 10px;
}
.faqs ul li:hover { border-color: #959595; }
.faqs ul li:hover h4 { color: #fc4c02; }
.faqs ul li h4:hover { cursor: pointer; }
.faqs ul li p { display: none; }

/* GET IN TOUCH PAGE */
.get-in-touch .contact-form {
    position: static;
    background-color: #f5f5f5;
    margin-top: 20px;
    padding: 20px;
    color: #212121;
    float: none !important;
    border-radius: 5px;
    text-align: left;
}
.get-in-touch .hs-form fieldset { max-width: 100%; }

/* ================== OUR STORY PLANS ===================== */
.slick-dots li { display: none; }

/* ================== SUPPORT PLANS ===================== */
.support-plans { margin: 0; padding: 0; }
.support-plans > li {
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    display: inline-block;
    list-style: none;
    padding: 10px;
    height: 575px;
    width: 19%;
    vertical-align: top;
    position: relative;
}
.support-plans > li img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 80px;
}

.support-plans .plan-benefits {
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
    padding: 0;
}
.support-plans .plan-benefits li {
    border-top: 1px solid #e0e0e0;
    font-size: 0.8em;
    list-style: none;
    padding: 10px 0;
}

.support-plans input[type="checkbox"]{
    bottom: 10px;
    position: absolute;
    right: 45%;
}

/* ================== NEW SUPPORT PLANS ===================== */
.support-plan-pc, .support-plan-mob { font-size: 0; text-align: left; }
.support-plan-pc .plan {
    display: inline-block;
    font-size: 18px;
    width: 17.5%;
    vertical-align: top;
}
.support-plan-pc .plan:first-child { width: 30%; }
.support-plan-pc .plan:first-child ul li { font-weight: 600; }

.support-plan-pc .plan-title, .support-plan-mob .plan-title { padding: 10px; }
.support-plan-pc ul, .support-plan-mob ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.support-plan-pc ul li, .support-plan-mob ul li { border-top: 1px dashed #e0e0e0; padding: 10px; position: relative;}
.support-plan-pc .plan ul li:nth-child(even), .support-plan-mob .plan ul li:nth-child(even){ background-color: #f5f5f5; }
.support-plan-pc .featured .plan-title span, .support-plan-mob .featured .plan-title span { color: #9e9e9e; font-size: 0.8em; font-weight: 400; }
.support-plan-pc .featured ul li, .support-plan-mob .featured ul li { background-color: #fff4f0; }
.support-plan-pc .featured ul li:nth-child(even), .support-plan-mob .featured ul li:nth-child(even) { background-color: #ffe5dc; }
.support-plan-pc .fa-times-circle, .support-plan-pc .fa-info-circle { color: #bdbdbd; }
.support-plan-pc .tooltip {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0 !important;
    border-radius: 2px;
    color: #81736f;
    display: none;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    max-width: 150px;
    padding: 5px;
    position: absolute;
    z-index: 9999;
}
.support-plan-pc .fa-info-circle:hover { cursor: pointer; color: #81736f;}

.support-plan-mob .plan {
    display: none;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    width: 100%;
    vertical-align: top;
    margin-bottom: 10px;
    padding: 10px;
}
.support-plan-mob ul { display: none; }
.support-plan-mob .cta-select-plan { border-top: 1px dashed #e0e0e0; padding: 10px; }
.support-plan-mob .plan-title .btn-accordion {
    color: #81736f !important;
    float: right;
    font-size: 0.8em;
    font-weight: 400;
}
.support-plan-mob .plan-title .btn-accordion:hover { cursor: pointer; }

/* ==== TECHNOLOGIES ===== */
.technologies-grid ul { padding-left: 0; }
.technologies-grid .row-fluid li.span2:nth-child(6n + 1) { margin-left: 0; }
.technologies-grid .row-fluid li.span2 img { width: 100%; }



/* ==================== BLOG/SUCCESS STORIES =================== */
.blog-post-wrapper, .blog-listing-wrapper, .blog-articles { background-color: #f5f5f5; }
.blog-post-wrapper .content-wrapper { width: 800px !important; }
.blog-post-wrapper #hubspot-topic_data{ font-size: 0.8em; text-align: left; }

.blog-post-wrapper .hs-featured-image-wrapper {
    display: block;
    text-align: left;
}
.blog-post-wrapper .hs-featured-image-wrapper img.hs-featured-image { max-width: 100% !important; float: none; margin: 0;}
.post-listing { font-size: 0; }

.blog-articles .post-body img { 
    width: 100%; 
    height: auto !important; 
}


.author-details { 
    background-color: white;
    box-shadow: 0 1px 3px #bdbdbd;
    font-size: 0;
    margin-top: 40px;
    padding: 20px;
    text-align: left; 
}
.author-details img{
    border-radius: 100px;
    display: inline-block;
    width: 100%;
}
.author-details > div { display: inline-block; font-size: 18px; vertical-align: top; }
.author-details > div:first-child { width: 8%; margin-right: 2%; }
.author-details > div:last-child { width: 90%; }
.author-details a { display: block; padding: 5px 0; }
.author-details p { display: inline; }


.article-publisher { background-color: #f5f5f5; padding: 20px 10px; }
.blog-articles .post-card { 
    vertical-align: top; 
    margin-bottom: 2.564102564%;
    min-height: 280px;
}
.blog-articles .post-card:nth-child(3n+1){ margin-left: 0; }
.blog-articles .post-card img.hs-featured-image{
    max-width: 100%;
    margin: 0 0 10px 0;
    float: none;
}
.blog-articles .post-card .small-text { margin: 0; }
.blog-articles .post-card a { color: #212121; font-size: 1em; }
.blog-articles .post-card a:hover { color: #f03d00; }
.blog-pagination { display: block; font-size: 18px; text-align: center; margin-top: 20px;}
.blog-pagination a { margin: 10px; }

.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
    display: inline-block;
    float: none;
    margin-bottom: 10px;
    vertical-align: top;
}
a.cta_button { width: auto; }

.blog-topics a {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #616161 !important;
    font-size: 14px !important;
    font-weight: 400;
    padding: 5px;
}


.hs-blog-social-share { display: none; }

.social-sharing-custom { 
    position: fixed;
    top: 80px;
    right: 15px;
    z-index: 99999; 
}
.social-sharing-custom ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-sharing-custom ul li { margin-bottom: 10px; }
.social-sharing-custom ul li:last-child { margin-bottom: 0; }
.social-sharing-custom .share-button {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    display: none;
    margin-left: 44px;
    margin-bottom: 10px;
    padding: 12px;
    height: 16px;
    width: 16px;
    text-align: center;
}
.social-sharing-custom .share-button .fa { 
    color: #ff5f6d;
    margin: 0;
    font-size: 16px;
    display: block;
    margin-top: 2px;
}
.social-sharing-custom .share-button:hover { cursor: pointer; }
.social-sharing-custom .share-options { 
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 10px;
    width: 32px;
}


.responsive-table{
    width: 100%;
  overflow-y: scroll;
}

/*****************************************/
/* PAGE WIDGETS                          */
/*****************************************/
/* PAGE BREADCRUMB */
.breadcrumb img { margin: 10px; }

/* TAB PAGE NAVIGATION */
.domain-page-menu { height: auto; background-color: #f5f5f5; box-shadow: 0px 1px 2px #bdbdbd; z-index: 9999;}
.domain-page-menu .content-wrapper { padding: 0; }
.domain-page-menu ul { margin: 0 !important; padding: 0; }
.domain-page-menu ul li { display: inline-block; }
.domain-page-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a, .domain-page-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #616161;
    font-size: 18px;
    text-decoration: none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
.domain-page-menu ul li a:hover {
    transition: all 0.5s;
    background-color: #bdbdbd;
}
.domain-page-menu ul li.active>a {
    background-color: #424242 !important;
    color: white !important;
}
/* FLOAT ICONS WIDGET*/
.floating-links-wrap{
    display: none !important;
    position: absolute;
    top: 120px;
}
.floating-links {
    background: #e0e0e0;
    border-radius: 10px 0 0 10px;
    position: fixed;
    right: 0;    
    width: 50px !important;
}
.floating-links a {
    display: block;
    padding: 10px;
    width: 32px;
}
.floating-links img { width: 100%; }

/* SUCCESS STORIES */
.posts-widget .widget-module { margin-top: 20px; }
.posts-widget .widget-module ul {
    font-size: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.posts-widget .widget-module ul li {
    background-color: white;
    box-shadow: 0 1px 3px #bdbdbd;
    display: inline-block;
    font-size: 18px;
    margin: 0 0 2% 2%;
    padding: 10px;
    text-align: left;
    /*height: 235px;*/
    width: 21.75%;
    vertical-align: top;
    overflow: hidden;
}
.posts-widget .widget-module ul li:first-child { margin-left: 0; }
.posts-widget .widget-module ul li img {
    height: 100%;
    width: 100%;
}
.posts-widget .widget-module ul li a {
    color: #212121;
    display: block;
    padding: 0 0 10px 0;
}
.posts-widget .widget-module ul li:hover { box-shadow: 0 1px 3px #616161;}
.posts-widget .widget-module ul li a:hover { color: #f03d00; }


/*****************************************/
/* NONPROFIT STYLES                         */
/*****************************************/
.hs-cta-img { width: 100% !important; }

/*****************************************/
/* FOOTER STYLES                         */
/*****************************************/
/* FOOTER FORM */
.footer-container-wrapper .content-wrapper{ position: relative; }
.footer-cta .content-wrapper { padding: 120px 0; }
.contact-form {
    background-color: #f5f5f5;
    border-radius: 5px;
    color: #212121;
    float: none !important;
    padding: 20px;
    position: absolute;
    right: 0;
    text-align: left;
    z-index: 999;
}
.contact-form h3 { margin-bottom: 20px; }
.contact-form form > div, .contact-form .field { margin-bottom: 20px; }
.contact-form form ul { 
    margin: 5px 0 0 0;
    padding: 0; 
}
.contact-form form li { 
    color: #9e9e9e;
    font-size: 16px;
    list-style: none; 
}

/* FOOTER NAVIGATION */
.footer-container-wrapper {
    background-color: #212121;
    color: white;
    text-align: left;
}
.footer-container-wrapper .footer-container .content-wrapper {
    padding-top: 100px;
    padding-bottom: 0;
}
.footer-container-wrapper .hs-menu-wrapper.hs-menu-flow-vertical ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}
.footer-container-wrapper .hs-menu-wrapper.hs-menu-flow-vertical ul li a {
    color: #999;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
}
.footer-container-wrapper .hs-menu-wrapper.hs-menu-flow-vertical ul li a:hover {
    color: white;
}
.footer-copyright { 
    border-top: 1px solid #424242;
    font-size: 16px;
    padding: 20px 0;
    margin-top: 50px;
}
.footer-copyright .widget-type-social_sharing {
    text-align: right;
}

.footer-copyright .widget-type-text { position: relative; top: 10px; }

.social-sharing a{
    color: white;
    display: inline-block;
    width: auto;
    font-size: 20px;
    padding: 5px;
}

/*****************************************/
/* FORM STYLES                           */
/*****************************************/
form > div { margin-bottom: 20px; }
form input[type='text'], form input[type='email'], form input[type='tel'], form select {
    border: 1px solid #e0e0e0;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    display: block;
    height: 100%;
    width: 100% !important;
    padding: 5px;
}
form select { 
    -webkit-appearance: menuitem; 
    height: 35px;
    background: #fff;
}
form textarea{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    display: block;
    font-family: 'Roboto', sans-serif;
    height: 80px;
    width: 100% !important;
    resize: none;padding: 10px;
    border: 1px solid #e0e0e0;
}
form label { 
    display: block; 
    margin-bottom: 5px; 
}
form .hs-button { display:block; margin-top: 20px; text-align: center;}
input[type="submit"], input[type="button"], .orange-btn, .hs-button {
    font-family: 'Rubik', sans-serif;
    background-color: #fc4c02;
    box-sizing: border-box;
    float: none !important;
    padding: 7px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none !important;
    cursor: pointer;
    -webkit-appearance: none;
}
input[type="submit"]:hover, input[type="button"]:hover, button:hover, .orange-btn:hover, .hs-button:hover {
    background-color: #ff602c; 
    color: white;
}
input[type="submit"]:active, input[type="button"]:active, button:active, .orange-btn:active, .hs-button:active {
    background-color: #c93100; 
    color: white;
}


/*****************************************/
/* CUSTOM CLASSES                        */
/*****************************************/
.full-width-bg { 
    display: block; 
    width: 100%; 
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important; 
}
.grey-bg { background-color: #f5f5f5; }
.black-bg { background-color: #212121; color: white; }
.orange-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Employee-Collage.jpg") no-repeat center bottom; color: white; }
.white-bg { background-color: white; }
.offers-bg { 
    background: url("https://offers.axelerant.com/hubfs/Axelerant_Facelift_2017/Page%20Banners/Why-Axelerant-Header.jpg") no-repeat center bottom; 
    color: white; 
    text-shadow: 1px 1px 3px #616161;
}
.balloons-night-bg { background: url("https://www.axelerant.com/hubfs/Axelerant_Facelift_2017/Page%20Banners/About-Axelerant.jpg") no-repeat center bottom; }
.nonprofit-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Nonprofit-Header.jpg") no-repeat center bottom; }
.nonprofit-metrics-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Stats-Banner.jpg") no-repeat center bottom;  }
.highed-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Highered-Header.jpg") no-repeat center bottom; }
.highed-metrics-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Highered-Stats.jpg") no-repeat center bottom;  }
.hero-bg .content-wrapper { padding: 150px 0; }

.ghost-btn {
    border: 1px solid #fc4c02 !important;
    border-radius: 3px;
    box-sizing: border-box;
    color: #fc4c02;
    cursor: pointer;
    display: inline;
    float: none !important;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    padding: 7px 10px;
    text-transform: capitalize;
    text-decoration: none !important;
    -webkit-appearance: none;
    width: auto;
}
.ghost-btn:hover, .ghost-btn:active {
    background-color: #fc4c02;
    color: white;
}

.center-align { text-align: center; }
.left-align { text-align: left; }
.right-align { text-align: right; }
.float-right { float: right !important; } 

.margin-at-top-60 { margin-top: 60px; }
.margin-at-top-40 { margin-top: 40px; }
.margin-at-top-20 { margin-top: 20px; }
.margin-at-top-10 { margin-top: 10px; }
.small-text {
    color: #757575;
    font-size: 16px
}
.black-bg .small-text { color: #bdbdbd; }
.content-wrapper  {
    box-sizing: border-box;
    float: none !important;
    margin: 0 auto !important;
    padding: 60px 0;
    position: relative;
    height: auto;
    width: 1200px !important;
}
.content-tile { margin-top: 20px; }
.content-tile h3 { padding: 10px 0; }
.content-tile p { margin: 0; }
.image-fullwidth img { width: 100%; }


.hero-bg {
    display: block;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
}
/* POST CARDS */
.post-card {
    background-color: white;
    display: inline-block !important;
    font-size: 18px;
    float: none !important;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px #bdbdbd;
    text-align: left;
    vertical-align: top;
}
.post-card:hover { box-shadow: 0 1px 3px #616161; }
/*
.post-card .post-body {
    height: 96px;
    overflow: hidden;
}*/
.post-card img {
    display: block;
    width: 100% !important;
    height: auto;
}
.post-card h4 {
    margin-top: 5px;
}
.post-card a { color: #212121; }
.post-card a:hover { transition: all 0.5s; color: #ff6f3f; }
.post-card a:active { color: #c93100; }

.success-stories-section .post-card { float: left !important; }

.disabled, .disabled:hover, .disabled:active { color: #616161; cursor: default; }
.set-max-width { max-width: 300px !important; }
.set-min-height { min-height: 768px !important; }

.form-small form{
    width: 50%; 
    margin: 0 auto; 
    float: none;
}
.form-small fieldset { 
    margin-right: 0 !important;  
    max-width: 100% !important; 
}
.form-small fieldset .hs-form-field { margin-bottom: 20px !important; }
.form-small fieldset.form-columns-2 .hs-form-field {
    width: 49% !important;
    margin-right: 2%; 
}
.form-small fieldset.form-columns-2 .hs-form-field:last-child { margin-right: 0; }
.form-small form label { text-align: left; }
.form-small form .input { margin-right: 0 !important; }
.form-small form .inputs-list {
    list-style: none;
    padding: 0;
}
.form-small form .inputs-list .hs-form-radio-display input{
    display: inline;
    width: auto !important;
}

/* Tab Navigation */
.tab-nav { box-shadow: 0 1px 3px #bdbdbd; border-radius: 2px; }
.tab-nav ul{ 
    display: block; 
    list-style: none;
    margin: 0 0 20px 0;
    padding: 10px !important; 
}
.tab-nav ul li { 
    display: inline-block;
    margin: 0 10px 0 0;
}
.tab-nav ul li a { 
    color: #757575; 
    display: block; 
    padding: 5px 10px;
    width: auto;
}
.tab-nav ul li a:hover { color: #212121; }

.tab-nav li.active a, .tab-nav li.active a:hover{ 
    background-color: #212121;
    border-radius: 2px;
    color: white;
}

/* Switching images in Staffing */
.desktop-only { display: block; }
.mobile-only { display: none !important; }

/* Font Awesome */
.fa { margin-left: 10px; }
.fa-caret-right {
    position: absolute;
    right: 10px;
    top: 10px;
}


/*****************************************/
/* SCROLL TO TOP                         */
/*****************************************/
.row-fluid [class*="span"].btn-scroll-wrapper {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 100px !important;
    z-index: 99;
}
.btn-scroll-wrapper .btn-scroll {
    background: white;
    border-radius: 50px;
    box-shadow: 0px 1px 1px #aaa;
    display: block;
    float: right;
    padding: 18px;
    /* height: 42px; */
    width: 22px;
    text-align: center;
    opacity: 0.3;
}
.btn-scroll-wrapper .btn-scroll:hover { opacity: 1; }
.btn-scroll-wrapper .btn-scroll .fa { margin-left: 0; }



/* cta-boxes */
.cta-boxes ul { padding-left: 0; margin: 0; }
.cta-boxes li {
    display: inline-block;
    list-style: none;
    margin-right: 20px;
    width: 29%;
    vertical-align: top;
}
.cta-boxes li a {
    box-sizing: border-box;
    color: #212121;
    display: block;
    padding: 30px 10px;
}
.cta-boxes li a:hover {
    background-color: #f5f5f5;
}
.cta-boxes li a img { margin-bottom:10px; width: 120px; }


/* IMAGE TILE*/
.image-tile { margin-top: 20px;}
.image-tile img { width: 100% !important; }


/*****************************************/
/* MEDIA QUEIRES                         */
/*****************************************/
@media screen and (min-width: 1400px) {
    .qa-bg .home-bg .devops-bg .content-wrapper {
        margin: 10% auto !important;
    }
}
@media screen and (max-width: 1199px) {
    /*html, body { text-align: justify; }*/
    /*.left-align { text-align: center; }*/
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 16px; }
    p, ul { text-align: left; }
    /*.body-container-wrapper { overflow: hidden; }*/
    /* ===== HEADER STYLES ===== */
    .header-container-wrapper .content-wrapper  {
        padding: 0 10px;
    }
    .logo-wrap {
        width: 100%;
    }
    .main-menu-wrap {
        min-height: 0!important;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    /* Targets the top-level unordered list within horizontal menus */
        display: none;
        text-align: left;
        
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    /* Targets the top-level unordered list within horizontal menus */
        padding: 10px 0;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    /* Targets top-level list items within the top-level unordered list */
        display: block;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    /* Targets top-level list links within the top-level unordered list */
        padding: 20px 10px;
        width: 100%;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    /* Targets second-level unordered lists when flyouts are enabled (for styling dropdowns) */
        background-color: #424242;
        position: relative;
        text-indent: 20px;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    /* Targets links within second-level unordered lists  */
        padding: 20px;
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover, 
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover > a {
    /* Targets links within second-level unordered lists  */
        background-color: #616161
    }
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child {
        display: none;
    }
    .header-container-wrapper .row-number-3 .menu-icon-box {
        display: block;
    }
    
    /* ===== PAGES ===== */
    .home-bg{ 
        height: 578px; 
        /*background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Homepage-Agency-Success-Header-Mobile.jpg') no-repeat center center;*/
    }
    .qa-bg{
                height: 280px; 
        /*background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/QA-Services-Header-Mobile.jpg') no-repeat center center;*/
    }
        .devops-bg{
                height: 280px; 
        /*background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/DevOps-Header-Mobile.jpg') no-repeat center center;*/
    }
    .client-logos img{ width: 80% !important; }
    
    .testimonial-wrapper .testimonial {
        min-height: 280px !important;
    }
    .testimonials .next, .testimonials .prev { display: none; }
    
    /* FLOAT ICONS WIDGET*/
    .floating-links-wrap{ display: none !important; }
    
    /* TAB NAVIGATION */
    .domain-page-menu { height: auto; }
    .domain-page-menu .content-wrapper { 
        border-sizing: border-box;
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar; 
    }
    ::-webkit-scrollbar { display: none; }
    .domain-page-menu.widget-type-menu { min-height: auto !important; }
    .domain-page-menu .hs-menu-flow-horizontal > ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .domain-page-menu .hs-menu-flow-horizontal > ul > li { display: inline-block; }
    .domain-page-menu .hs-menu-flow-horizontal > ul > li > a {
        display: block;
        padding: 10px;
    }
    .domain-page-menu ul li a:hover {
        background-color: none;
    }
    /*.domain-page-menu ul li { display: block; }
    .domain-page-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
        padding: 10px;
        border: 1px solid #e0e0e0;
        font-size: 0.9em;
        background-color: white;
        max-width: 100%;
    }*/
    
    /* ===== SUCCESS STORIES ===== */
    .posts-widget .widget-module ul li {
        box-sizing: border-box;
        font-size: 14px;
        margin-bottom: 10px;
        width: 23.45%;
        height: 180px;
    }
    .posts-widget .widget-module ul li img {
        height: auto;
    }
    
    /* ===== BLOG/SUCCESS STORY DETAILS ===== */
    .blog-section .post-body { overflow: hidden; }
    .blog-post-wrapper .content-wrapper { width: 100% !important; padding: 40px 10px;}
    .blog-section .post-body img { width: 100% !important; height: auto;}
    .blog-section .post-body img.image-size-reset { width: auto !important; }
    .blog-section ul { padding: 0; }
    .blog-section ul li {
        overflow: hidden;
        /*white-space: nowrap;
        text-overflow: ellipsis;*/
    }
    .blog-pagination { margin-top: 20px; }
    .blog-section table{
        width: 100% !important;
    }
    .blog-section table td {
        width: 100% !important;
        display:block; box-sizing:border-box; clear:both
    }
    .blog-pagination { margin-bottom: 30px; }
    .blog-post-wrapper #hubspot-topic_data { text-align: left }
    
    .social-sharing-custom { 
        top: 21px;
        right: 125px;
    }
    .social-sharing-custom .share-button { display: block; padding: 10px; }
    .social-sharing-custom .share-options { display: none; margin-left: 28px; }
    
    /* ==================== SUPPORT PLANS ========================= */
    .support-plans > li {
        display: block;
        width: 100% !important;
        height: auto;
        margin-bottom: 10px;
    }
    .support-plans > li img {
        display: inline-block;
        margin: 0;
        width: 20%;
        vertical-align: middle;
    }
    .support-plans > li .plan-name {
        display: inline-block;
        width: 75%;
        margin-left: 3%;
        vertical-align: middle;
    }
    .support-plans .plan-benefits {
        display: none;
        padding: 10px 0;
    }
    .support-plans > li:hover .plan-benefits, .support-plans > li:active .plan-benefits {
        transition: all 2s;
        display: block;
    }
    .support-plans .plan-benefits li span { display: inline !important; }
    .support-plans input[type="checkbox"] { top: 0; right: 0; }
    
    /* ===== FOOTER ===== */
    .footer-container-wrapper .footer-container .content-wrapper { padding-top: 70px; }
    
        
    /* ===== GET IN TOUCH FORM ===== */
    .contact-form{
        right: 10px;
    }
    .get-in-touch .contact-form { margin-bottom: 20px; }
    .footer-cta .content-wrapper { padding: 100px 10px; }
    
    /* ===== CUSTOM CLASS STYLES ===== */
    .hero-bg .content-wrapper { padding: 60px 10px; }
    .content-wrapper {
        padding: 40px 10px;
        width: 100% !important;
    }
    /*.post-card { width: 100% !important; }
    .content-tile { margin-top: 40px; }
    .content-tile > div{ display: inline-block; vertical-align: top; }
    .content-tile > div:first-child { width: 20%; }
    .content-tile > div:last-child { width: 75%; margin-left: 3%; }
    .content-tile img { margin: 0; width: 60px !important; }*/
    .form-small form{
        width: 100%; 
        margin: 0 auto; 
        float: none;
        text-align: left;
    }
    .form-small form .input { margin-right: 0 !important; }
    
    /* Tab Navigation */
    .tab-nav ul li { margin: 0 5px 0 0; }
    /*
    .blog-section .tab-nav { 
        border-sizing: border-box;
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar; 
    }
    ::-webkit-scrollbar { display: none; }*/
    
    .footer-copyright .widget-type-raw_html {
        position: relative;
        top: 20px;
    }
    
    /* CTA Boxes */  
    .cta-boxes ul { margin: 0; }
    .cta-boxes li { width: 42%; }
}

@media screen and (max-width: 576px){
    /* ===== BACKGROUND IMAGES ===== */
    .home-bg{
        height: 570px;
        background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Homepage-Agency-Success-Header-Mobile.jpg') no-repeat center bottom;
        /*background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Why%20Axelerant%20Agency/Agency-Homepage-Mobile.jpg') no-repeat center bottom;*/
    }
    .qa-bg{
        height: 280px;
        background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/QA-Services-Header-Mobile.jpg') no-repeat center bottom;
    }
        .devops-bg{
        height: 280px;
        background: url('https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/DevOps-Header-Mobile.jpg') no-repeat center bottom;
    }
    
    
    .balloons-night-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/About-Axelerant-Mobile.jpg") no-repeat center bottom; }
    .orange-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Employee-Collage-Mobile.jpg") no-repeat center bottom; color: white; }
    
    .nonprofit-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Nonprofit-Header-Mobile.jpg") no-repeat center bottom; }
    .nonprofit-metrics-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Nonprofit-Stats-Mobile.jpg") no-repeat center bottom;  }
    .highed-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Highered-Header-Mobile.jpg") no-repeat center bottom; }
    .highed-metrics-bg { background: url("https://cdn2.hubspot.net/hubfs/557351/Axelerant_Facelift_2017/Page%20Banners/Industry%20Pages%20Banner/Highered-Stats-Mobile.jpg") no-repeat center bottom; }    
    .nonprofit-bg .content-wrapper, .highed-bg .content-wrapper {  padding: 100px 10px; }

    /* ===== HOME ===== */
    .success-stories-section .content-tile img { width: 100% !important; }
    .testimonials > div {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }
    .client-logos li {
        margin-right: 0;
        width: 50%;
    }

    
    /* ====== BLOG ===== */
    .author-details > div:first-child { width: 13%; margin-right: 2%; }
    .author-details > div:last-child { width: 85%; }
    
    /* ===== SUCCESS STORIES ===== */
    .posts-widget .widget-module ul li {
        box-sizing: border-box;
        display: block;
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
    }
    .post-card { width: 100% !important; }
    .right-align { text-align: left; }
    .center-align { text-align: left; }
    
    /* ===== Pricing Plans ===== */
    .support-plan-pc .plan { display: none; }
    .support-plan-mob .plan { display: block; }
    
    /* ===== FOOTER ===== */
    .contact-form { margin-top: 20px; }
    .form-small fieldset.form-columns-2 .hs-form-field {
        width: 100% !important;
        margin-right: 0%;
    }
    .footer-copyright .widget-type-social_sharing {
        margin-top: 20px;
        text-align: left;
    }    
    
    .metrics-bg .content-tile:first-child{
        margin-top: 0;
    }
    
    .contact-form {  position: static; }
    
    /* Switching images in Staffing */
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    
    /* Table */
    table td { width: 100% !important; }
    
    
    /* CTA Boxes */    
    .cta-boxes li { width: 100%; margin-right: 0; margin-top: 20px; }
    
    /*Technologies page */
    .technologies-grid .row-fluid .span2 {
        display: inline-block;
        width: 44%;
    }
}

@media screen and (max-width: 1199px) and (orientation: landscape) {
    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
        font-size: 0.6em !important;
        padding: 5px 10px !important;
    }
    .header-container-wrapper .row-number-4 { 
        display: none; 
        height: 260px;
        overflow: scroll;
    }
}



/*!* Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license(Font:SIL OFL 1.1,CSS:MIT License) */@font-face {
    font-family:'FontAwesome';src:url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.eot?v=4.1.0');src:url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal
}

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg)
    }

    100% {
        -moz-transform: rotate(359deg)
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg)
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg)
    }

    100% {
        -o-transform: rotate(359deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
    -webkit-transform: scale(-1,1);
    -moz-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    -o-transform: scale(-1,1);
    transform: scale(-1,1)
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
    -webkit-transform: scale(1,-1);
    -moz-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    -o-transform: scale(1,-1);
    transform: scale(1,-1)
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,.fa-image:before,.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,.fa-reorder:before,.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,.fa-rouble:before,.fa-rub:before {
    content: "\f158"
}

.fa-won:before,.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,.fa-bank:before,.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-square:before,.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}