/*!
Theme Name: SpeedChain
Theme URI: speedchain.com
Author: Austin Schuetz
Author URI: https://austinschuetz.com
Description: SpeedChain Landing Website
Version: 1.14
*/


/*****

COLORS
dark blue: #283F6A
maroon: #771E12

*****/



body {
    overflow-x: hidden;
}
* {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
.uppercase {
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 1px;
}
p {
    font-size: 16px;
}
a {
    text-decoration: none;
}
a:visited, a:focus, a:focus-within, a:active {
    color: inherit;
    background: inherit;
    outline: 0;
}
.btn-holder {
    width: 250px;
    max-width: 95%;
    margin: 30px auto;
    display: block;
    text-align: center;
}

/************************************

MAIN NAV

************************************/

header {
    width: 100%;
    margin: 0 auto;
    height: 116px;
    position: relative;
    z-index: 14;
    background: #fff;
}
.header-frame {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    color: #4a4a4a;
    height: 80px;
    font-size: 16px;
}
.main-logo {
    height: 50px;
}
.header-frame .main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 120px);
    margin: 0 0 0 5%;
}
.header-frame .main-nav ul, .header-frame .main-nav .left-nav {
    margin: 0;
}
.header-frame .main-nav .left-nav, .header-frame .main-nav .right-nav {
    display: flex;
    flex-direction: row;
}
.header-frame ul.right-nav .main-nav-item:nth-child(4) {
    margin-right: 20px;
}
.header-frame ul.right-nav .main-nav-item:nth-child(3) {
    margin-right: 0;
}
.header-frame ul .main-nav-item {
    height: 80px;
    padding-top: 0;
    display: flex;
    align-items: center;
}
.header-frame ul .main-nav-item i {
    margin-left: 5px;
}
.header-frame ul .main-nav-item a {
    margin: 0 auto;
    padding: 0 15px;
    height: 40px;
    color: #4a4a4a;
    text-decoration: none;
    position: relative;
    align-items: center;
    display: flex;
}
.header-frame ul .main-nav-item a:hover {
    color: #0f2c52;
    text-decoration: none;
    opacity: 0.85;
}
.header-frame ul .main-nav-item .cta-btn, .footer-nav-item .cta-btn, .cta-btn, .btn-holder .cta-btn, .request-form input[type="submit"] {
    border-radius: 22px;
    background: #771E12;
    height: 42px;
    display: block;
    padding: 10px 15px;
    font-weight: bold;
    margin: -10px auto;
    line-height: 1;
    color: #fff ;
    border: 3px solid #771E12;
    cursor: pointer;
    text-decoration: none;
    z-index: 3;
    position: relative;
}
.slider-content .btn-holder {
    position: relative;
    z-index: 11;
}
.slider-content .btn-holder .cta-btn {
    display: inline-block;
    height: inherit;    
    position: relative;
    z-index: 11;
}
.header-frame ul .main-nav-item .cta-btn {
    font-weight: bold;
}
.header-frame ul .main-nav-item .cta-btn:hover, .footer-nav-item .cta-btn:hover, .cta-btn:hover, .cta-btn:focus, .cta-btn:active, .btn-holder .cta-btn:hover, .btn-holder .cta-btn:active, .request-form input[type="submit"]:hover, .request-form input[type="submit"]:active, .request-form input[type="submit"]:focus  {
    background: #fff;
    color: #771E12;
    text-decoration: none;
}
.inner-nav {
    position: absolute;
    margin-top: 0;
    background: transparent;
    border-bottom: 5px solid #0f2c52;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
    top: -1000px;
    transition: 0.25s ease-in opacity;
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
}
.header-frame ul .main-nav-item .inner-nav ul li a {
    margin: 0;
    padding: 15px;
    width: 100%;
    display: block;
    color: #4a4a4a;
    height: inherit;
    border-bottom: 1px solid rgba(155,155,155,0.15);
}
.header-frame ul .main-nav-item .inner-nav ul li a:hover {
    background: rgba(5, 86, 184,0.1);
    opacity: 1;
}
.main-nav-item-hovered .inner-nav {
    opacity: 1;
    background: #fff;
    z-index: 200;
    top: 65px;
}
.sticky-header {
    position: fixed;
    z-index: 100;
    width: 100%;
    -webkit-transform: translate3d(0px,0px,0px);
    transform: translate3d(0px,0px,0px);
    border-bottom: 5px solid #283F6A;
    background: #fff;
}

.preheader {
    color: #fff;
    background: #283F6A;
    width: 100%;
    padding: 7px 15px 0;
    height: 36px;
    max-width: 100%;
    margin: 0 auto;
}
.preheader .wrap {
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.preheader .wrap p {
    font-size: 14px;
    font-weight: bold;
    padding: 0 10px;
    line-height: 18px;
}
.preheader-left, .preheader-right {
    display: flex;
    flex-direction: row;    
}
.sticky-header-locked {   
    background: #fff;
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    top: 0;
}
.mobile-search {
    display: none;
}
.preheader-right i, .preheader i, .mobile-search i {
    font-size: 18px;
    color: #fff;
    margin: 0 8px;
}
.preheader-right a .fa-linkedin:hover, .blog-share-holder .fa-linkedin:hover {
    color: #0077B5;
}
.preheader-right a .fa-facebook-f:hover, .blog-share-holder .fa-facebook-f:hover {
    color: #3C5A99;
}
.preheader-right a .fa-twitter:hover, .blog-share-holder .fa-twitter:hover {
    color: #1DA1F2;
}
.preheader .wrap .search-form, .mobile-search .search-form {
    margin-top: -2px;
    display: flex;
    flex-direction: row;
}
.preheader .wrap .search-form input, .mobile-search .search-form input {
    font-size: 14px;
    vertical-align: top;
    z-index: 10;
    position: relative;
    border: none;
    height: 26px;
    padding: 3px 3px 3px 10px;
    border-top-left-radius: 5000px;
    border-bottom-left-radius: 5000px;
}
.preheader .wrap .search-form input:focus, .mobile-search .search-form input:focus {
    outline: none;
}
.preheader .wrap .search-submit, .mobile-search .search-submit {
    height: 26px;
    padding: 0 3px;
    padding-left: 10px;
    margin-left: -10px;
    background: none;
    border: 2px solid #fff;
    border-left: none;
    border-top-right-radius: 5000px;
    border-bottom-right-radius: 5000px;
    cursor: pointer;
}
.preheader .wrap .search-form i, .mobile-search .search-form i {
    font-size: 14px;
}
@media only screen and (max-width:950px) {
    .main-logo {
        height: 30px;
    }
    .header-frame .main-nav {
        margin: 0 0 0 15px;
    }
}

@media only screen and (max-width:850px) {
    .preheader {
        display: none;
    }
    .mobile-search {
        display: block;
        margin: 0 auto;
    }
    .header-frame ul .main-nav-item .inner-nav ul li a {
        padding: 10px;
    }
    .header-frame .main-logo {
        height: 35px;
        margin-top: 0px;
    }
    header {
        height: 70px;
    }
    .header-frame {
        height: 70px;
        background: #fff;
        border-bottom: 5px solid #283F6A;
        position: fixed;
        z-index: 101;
    }
    .header-frame .mobile-opened {        
        background: #fff;
    }
    body.mobile-opened .header-frame, .sticky-header-locked .header-frame {
        background: #fff;
    }
    .sticky-header-locked .header-frame {        
        box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    }
    .fa-bars {
        margin-top: 0px;
        margin-right: 15px;        
        font-size: 2em;
        color: #283F6A;
        display: inline-block;
        line-height: 60px;
        text-decoration: none;
    }
    .mobile-menu-btn-holder {
        display: block;
        position: absolute;
        right: 15px;
        top: 10px;
    }    
    #nav-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 8px auto;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nav-icon span {
        display: block;
        position: absolute;
        height: 6px;
        width: 100%;
        background: #283F6A;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    #nav-icon span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(2) {
        top: 12px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(3) {
        top: 24px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #nav-icon.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -1px;
        left: 6px;
    }

    #nav-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #nav-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 27px;
        left: 6px;
    }
    .header-frame .main-nav {
        opacity: 0;
        display: block;
        visibility: hidden;
        transition: opacity 0.5s, visibility 0s 0.5s;
        background: linear-gradient(45deg, #283F6A, #1a2945);
        width: 100%;
        padding-bottom: 15px;
        left: 0;
        right: 0;
        top: 70px;
        bottom: 0;
        position: fixed !important;
        z-index: 999;
        -webkit-overflow: auto !important;
        overflow: auto !important;
        margin: 0;
        height: calc(100vh - 70px);
    }
    .main-nav li {
        padding: 0;
        margin: 0;
    }
    .header-frame .main-nav .main-nav-item {
        width: 100%;
        padding: 0;
    }    
    .header-frame .main-nav .main-nav-item a:not(.cta-btn) {
        height: inherit;
        color: #fff;
        border-bottom: 2px solid rgba(255,255,255,0.15);
        padding: 15px;
        display: flex;
        justify-content: space-between;
    }
    .header-frame .main-nav .main-nav-item .inner-nav a:not(.cta-btn) {
        color: #4a4a4a;   
    }
    .header-frame .main-nav .main-nav-item a:hover {
        color: #fff;
    }
    .header-frame .menu-open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s;
        width: 100%;
    }
    .header-frame ul .main-nav-item .cta-btn {
        margin: 35px auto;
        color: #fff;
        text-align: center;
        width: 160px;
    }
    .main-nav li.request-mobile-menu-holder {
        text-align: center;
        margin: 5px auto;
        width: 100%;
    }
    .header-frame .main-nav .left-nav, .header-frame .main-nav .right-nav {
        display: flex;
        flex-direction: column;
    }
    .header-frame .main-nav .main-nav-item {
        display: block;
        height: initial;
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
    .inner-nav {
        position: relative;
        margin-top: 0;
        background: #fff;
        border-bottom: 0;
        border-radius: 0;
        opacity: 1;
        z-index: 1;
        top: initial;
        box-shadow: none;
    }
    .main-nav-item-hovered .inner-nav {
        top: initial;
    }
}
/************ END HEADER / MENU ***************/




/************ SEARCH ***************/

.search-header {
    background: linear-gradient(rgba(4, 42, 66, 0.95),rgba(8, 66, 94,0.8)), url(/assets/SpeedChainHeroBG.jpg) 50% 50% no-repeat;
    background-size: cover;
    padding: 70px 10px;
    width: 100%;
}
.search-wrap {
    padding: 0px 0px 50px;
}
.search-title {
    text-align: center;
    font-size: 2em;
    color: #fff;
    display: flex;
    width: 550px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-around;
}
.search-result {
    margin: 30px auto;
    width: 750px;
    max-width: 95%;
    border-radius: 5px;
    -webkit-box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    background: #fff;
}
.search-result > a {    
    display: flex;
    width: 100%;
    margin: 0;
}
.search-result .search-thumbnail {
    position: relative;
    width: 200px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;    
}
.search-result .search-result-content {
    padding: 25px;
    width: calc(100% - 200px);
}
.search-result .search-result-content .tag-search-result .tag-link {
    color: #283F6A;
    display: inline-block;
    margin-right: 5px;
}
.search-result .search-result-content .tag-search-result .tag-link:hover {
    text-decoration: underline;
}
.search-result .search-result-content .tag-search-result p {
    display: inline-block;    
    margin-right: 5px;
}
.searchpage-box-form {    
    margin-top: -5px;
}
.search-btn {
    display: inline-block;
    margin: 0;
    height: 34px;
    border-radius: 5px;
    line-height: 0.9;
    border-color: #771E12;
}
.search-btn:hover {
    display: inline-block;
    margin: 0;
    border-color: #771E12;
    color: #771E12;    
}
.tag-section {
    display: block;
    width: 1250px;
    max-width: 100%;
    margin: -34vh auto 0;
    padding: 50px 10px;
    color: #fff;
}
.tag-section a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-left: 10px;
}
.tag-section a:hover {
    color: #f2f2f2;
    text-decoration: none;
    opacity: 0.8;
}
.tag-section h1 {
    font-size: 1.8em;
    color: #fff;
    margin: 15px 0 25px;
    text-decoration: underline;
    text-align: center
}
.search-result:hover {
    background: rgba(5, 86, 184, 0.15);   
}
.search-result:hover .search-thumbnail::after {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(5, 86, 184, 0.15);    
}
@media only screen and (max-width:500px) {
    .search-result {
        width: 300px;
    }
    .search-result > a {
        flex-direction: column;        
    } 
    .search-result .search-result-content {        
        width: 100%;
    }
    .search-result .search-thumbnail {
        width: 100%;
        height: 200px;        
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0;    
    }
}


/************ END SEARCH ***************/





/************ FOOTER ***************/


footer {
    position: relative;
    padding: 50px 10px;
    background-color: #283F6A;
    background-size: 12px 12px;
}
footer .btn-holder {
    width: 250px;
    max-width: 90%;
    margin: 30px auto 50px;
    display: block;
    text-align: center;
}
footer, footer div {
    position: relative;
    z-index: 3;
}
footer .top-footer {
    text-align: center;
    color: #fff;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0 15px;
}
footer .top-footer h2 {
    color: #E2E8F0;
    font-weight: 300;
    margin: 0;
}
footer .footer-content {
    margin: 0 auto 50px;
    text-align: center;
    max-width: 100%;
    padding: 0;
}
footer .footer-item {
    width: 300px;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 25px;
}
footer .footer-item a {
    color: #CBD5E0;
    margin: 5px 0;
    display: block;
    font-weight: 700;
}
footer .footer-item a:hover {
    color: #ccc;
}
footer .footer-item a.footer-link-title {
    color: #E2E8F0;
    margin-bottom: 10px;
}
.sub-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    width: 1250px;
    max-width: 95%;
}
footer .sub-footer img {
    height: 50px;
    margin: 0 10px;
}
footer p {
    color: #CBD5E0;    
}
footer .sub-footer p {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-social {
    justify-content: center;
}


/************ END FOOTER ***************/






/************ HOME / HERO SLIDER ***************/

.swiper-container {
    width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 116px);
}
.swiper-slide {
    width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 116px);
    background: url(/assets/SpeedChainHeroBG.jpg) 50% 50% no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.bluchip-slide {
    background: url(/assets/bluchip-background.png) 50% 50% no-repeat;
    background-size: cover;    
}
.swiper-slide::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    position: absolute;
}
.swiper-slide .slider-content {
    width: 650px;
    max-width: 90%;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 2;
}
.swiper-slide .slider-content h2, .swiper-slide .slider-content h1, .swiper-slide .slider-content p {
    margin: 0 auto 20px;
    position: relative;
    text-align: center;
}
.swiper-slide .slider-content h1 {
    width: 550px;
    max-width: 100%;
    margin: 0 auto 5px;
}
.swiper-slide .slider-content p {
    width: 550px;
    max-width: 100%;
    margin: 25px auto 50px;
    font-weight: bold;
    line-height: 1.7;
}
.hero-icon-bg {
    width: 450px;
    position: absolute;
    bottom: -100px;
    right: -75px;
    opacity: 0.3;
    overflow: hidden;
    z-index: 2;
}
.swiper-button {
    display: none;
}
@media only screen and (max-width:850px) {
    .swiper-slide .slider-content h1 {
        height: 144px;
    }
    .swiper-container {
        width: 100%;
        margin: 0 auto;
        min-height: 470px;
    }
    .swiper-slide {
        min-height: 470px;        
    }
    .swiper-button {
        display: block;
    }    
}

/************ END HOME / HERO SLIDER ***************/



/************ HOME BLOG ***************/

.home-blog {
    width: 100%;
    margin: 0 auto;
    padding: 50px 15px;
    background: #fff;
    text-align: center;
    position: relative;
}
.home-blog .blog-wrap {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-grow: 1;
}
.home-blog .subtitle-wrap {
    color: #4a4a4a;
    width: 650px;
    max-width: 95%;
    margin: 0 auto 25px;
    position: relative;
}
.blog-wrap .blog-item {
    width: 300px;  
    display: inline-block;
    background: #fff;
    color: #4a4a4a;
    vertical-align: top;
    text-align: left;
    margin: 25px;
    font-weight: bold;    
    -webkit-box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
}
.blog-wrap .blog-item h6 {
    color: #9B9B9B;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 400;
}
.blog-wrap .blog-item .blog-link {
    color: #4a4a4a;
    text-decoration: none;
}
.blog-wrap .blog-item .blog-link:hover {
    color: #4a4a4a;
    text-decoration: none;
}
.blog-wrap .blog-item .blog-item-text {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 150px);
    background: #fff;
}
.blog-wrap .blog-item .blog-link:hover .blog-item-text {
    background: rgba(5, 86, 184, 0.15);   
}
.blog-wrap .blog-item .blog-link .blog-img {
    position: relative;
}
.blog-wrap .blog-item .blog-link .blog-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(5, 86, 184, 0);
}
.blog-wrap .blog-item .blog-link:hover .blog-img::after {
    background: rgba(5, 86, 184, 0.15);    
}
.blog-wrap .blog-item h5 {
    font-weight: bold;
    min-height: 54px;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.blog-wrap .blog-item p {
    color: #575757;
    font-weight: normal;
}
.blog-wrap .blog-item .blog-item-text .date {
    border-bottom: 5px solid #283F6A;
    padding-bottom: 5px;
    color: #575757;
}


@media only screen and (max-width:850px) {
    .home-blog {
        padding: 50px 15px;
    }
}

/************ END HOME BLOG ***************/





/************ CATEGORY PAGES / BASICS ***************/


.category-hero {
    padding: 40px 25px 80px;
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(45deg, #283F6A, #4299E1);
}
.category-wrap .blog-wrap {    
    width: 1050px;
    max-width: 100%;
    margin: 50px auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-grow: 1;
}
.category-wrap .blog-item {    
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
}

.category-hero .text-content {
    width: 650px;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
    text-align: center
}


/************ END CATEGORY PAGES / BASICS ***************/

/************ SINGLE PAGES / BASICS***************/

.single-hero {
    color: #fff;
    padding: 100px 25px 175px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.single-hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}
.single-hero-text {
    width: 750px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    color: #fff;
    z-index: 2;
    text-align: center;
}
.single-content {
    margin: -75px auto 0;
    background: #fff;
    width: 850px;
    max-width: 100%;
    border-top: 5px solid #283F6A;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 3;
    position: relative;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
}
.single-content .more-blogs {
    margin: 50px auto 100px;
    max-width: 100%;
    text-align: center;
}
.single-content p {
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 20px;
}
.single-content ul li {
    list-style: initial;
    margin: 5px 0;
}
.single-content ul {
    margin-left: 35px;
}
.prev-next-nav {
    width: 40%;
    margin: 10px 5%;
    display: flex;
    align-items: center;
    color: #283F6A;
}
.blog-nav-holder {
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.blog-nav-holder a {
    padding: 10px;
}
.blog-share-holder {
    display: block;
    border-top: 3px solid rgba(155,155,155,0.2);
    padding-top: 50px;
    margin: 50px auto 0;
    width: 650px;
    text-align: center;
    max-width: 100%;
}
.blog-share-holder h5 {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    color: #8e8e8e;
    font-weight: bold;
}
.blog-share-holder .fab {
    font-size: 24px;
    color: #8e8e8e;
    text-decoration: none;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px;
}
 .blog-share-holder .fa-linkedin:hover {
    color: #0077B5;
}
.blog-share-holder .fa-facebook-f:hover {
    color: #3C5A99;
}
.blog-share-holder .fa-twitter:hover {
    color: #1DA1F2;
}



/************ END SINGLE PAGES / BASICS***************/







/************ SPEEDCHAIN CUSTOM PAGES / FEATURES***************/


.icon-logo-flex {
    width: 550px;
    max-width: 100%;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.icon-logo-flex-home {    
    margin: 75px auto;
}
.icon-logo-flex .line-break {
    width: 100px;
    border-bottom: 1px solid #979797;
    margin-right: 15px;
}
.icon-logo-flex .icon-home {
    height: 100px;
    width: 100px;
}


.home-blog .subtitle-wrap h2 {
    margin-bottom: 25px;
}
.home-blog .subtitle-wrap img {
    opacity: 0.35;
    position: absolute;
    height: 200px;
    z-index: 0;
    left: -200px;
    bottom: -100px;
    overflow: hidden;
    display: none;
}
.why-hero-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.why-hero-flex img {
    width: 450px;
    margin: 0;
    max-width: 35%;
}
.why-hero-flex h1 {
    color: #283F6A;
}
.why-hero-flex .why-content {
    padding: 25px;
}
.divider {
    background: #283F6A;
    margin: 25px 0;
    width: 50px;
    height: 3px;
}
.solution-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.solution-lines {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.solution-lines span {
    height: 2px;
    background: #283F6A;
    width: 15px;
    margin: 4px 0;
}
.solution-lines span.first-line {
    width: 45px;
}
.solution-lines span.second-line {
    width: 30px;
}

.why-icon-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.why-icon-wrap-mobile {
    display: none;
}
.why-icon-wrap .item {
    width: 275px;
    max-width: 100%;
    margin: 15px 0;
    text-align: center;
}
.why-icon-wrap .item p {
    padding: 0 5px;
}
.why-icon-wrap .item img {
    height: 100px;
    margin: 10px auto;
    text-align: center;
    display: block;
}
.why-speedchain-section {
    background: #e5e5e5;
    padding: 50px 10px;
    margin: 0 auto;
}
.why-speedchain-section .subtitle {
    width: 650px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.why-speedchain-section .illustration {
    width: 550px;
    max-width: 75%;
    margin: 50px auto;
    display: block;
}
.why-speedchain-section h3 {
    color: #771E12;
}
.unifi-hero-slide {    
    background: url(/assets/UNIFI-Hero.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.unifi-hero-slide .img-holder {
    position: relative;
    background: radial-gradient(rgba(255,255,255,0.15), transparent 60%);    
}
.unifi-hero-slide img {
    display: block;
    margin: 0 auto;
    width: 250px;
    max-width: 80%;
    position: relative;
    z-index: 5;
}
.unifi-hero-slide .slider-content p {
    margin: 15px auto 40px;    
}
.solution-title-unifi {
    margin: 0 auto;
    width: 250px;
}
.solution-title-unifi h1 {
    color: #283F6A;
}
#accordion {
    width: 650px;
    max-width: 100%;
    margin: 50px auto;
}
.unifi-capabilities-wrap h2 {
    text-align: center;
    color: #283F6A;
}
#accordion .ui-state-active {
    background: #283F6A;
    border-color: #283F6A;
}
/*
.ui-accordion .ui-accordion-content {
    height: initial !important;    
}
*/
.unifi-icon-wrap {
    width: 1150px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0;    
}
.unifi-icon-wrap .item {
    width: 350px;
    max-width: 100%;
}
.unifi-icon-wrap i {
    font-size: 64px;
    color: #283F6A;
    text-align: center;
    margin: 10px auto;
}
.unifi-icon-wrap p {
    text-align: center;
}
.unifi-icon-wrap p strong {
    color: #283F6A;
}
.unifi-icon-wrap p span {
    display: block;
    text-align: center;
    margin-top: 10px;
}
.request-form {
    width: 375px;
    max-width: 100%;
    margin: 30px auto 50px;
    padding: 0 20px;
}
.request-form input, .request-form textarea {
    max-width: 100%;
}
.request-wrap h2 {
    margin: 50px auto 0;
    color: #283F6A;
    text-align: center;    
}
.home-blog {
    padding-left: 0;     
    padding-right: 0;  
}
.why-unifi-split-wrap {
    width: 100%;
    margin: 100px auto 0;
    background: #e5e5e5;
}
.why-unifi-split {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap-reverse;
    align-items: flex-start;
    width: 1050px;
    max-width: 100%;
    padding: 25px 10px;
    margin: 0 auto;
}
.why-unifi-split h2 {
    margin-bottom: 20px;
    color: #283F6A;
}
.why-unifi-split div {
    text-align: center;
    width: 450px;
    max-width: 100%;
    padding: 20px;
}
.why-unifi-split div img {
    display: block;
    margin: 0 auto;
    width: 200px;
    max-width: 100%;
}
.request-wrap p.subtitle {
    width: 550px;
    max-width: 100%;
    margin: 10px auto;
    padding: 0 10px;    
    text-align: center;
}


/************ UNIFI VIDEO HERO***************/

#hero {
    position: relative;
    padding: 0;
    z-index: 1;
    min-height: 400px;
}
#hero:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(40, 63, 106, 0.8);
    background-blend-mode: multiply;
}
.video-hero-content {
    position: absolute;
    width: 600px;
    max-width: 95%;
    margin: 0 auto;
    left: calc(50% - 275px);
    top: 5%;
    z-index: 3;
}
.video-hero {
    z-index: -1;
    overflow: hidden;
}
.video-hero-content h2, .video-hero-content h1, .video-hero-content p {
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.video-hero-content h1 {
    width: 550px;
    max-width: 100%;
    margin: 0 auto 5px;
}
.video-hero-content p {
    width: 550px;
    max-width: 100%;
    margin: 25px auto 50px;
    font-weight: bold;
    line-height: 1.7;
}
.video-hero-content .img-holder {
    position: relative;
    z-index: 2;
    background: radial-gradient(rgba(255,255,255,0.15), transparent 60%);    
}
.video-hero-content img {
    display: block;
    margin: 0 auto;
    width: 250px;
    max-width: 80%;
    position: relative;
    z-index: 5;
}

.unifi-margin-video {
    position: relative;
    margin: -200px auto 0;
    z-index: 4;
}
.why-hero-flex .why-content .solution-title, .why-hero-flex .why-content p {
    width: 650px;
    max-width: 100%;
    margin: 15px auto;
}

@media only screen and (max-width:1115px) {
    .video-hero-content {
        width: 90%;
        margin: 0 auto;
        position: relative;
        left: auto;
        top: auto;
    }
    .video-hero-content img {
        width: 150px;
    }
    #hero {
        background: url(/assets/UNIFI-Hero.jpg) 50% 50% no-repeat;
        background-size: cover;
        padding: 25px 10px;
    }
    #hero:after {        
        background-color: rgba(40, 63, 106, 0.6);
    }
    .video-hero {
        display: none;
    }    
    .unifi-margin-video {
        margin: 0 auto;
    }    
}




@media only screen and (max-width:850px) {
    .why-hero-flex img {
        display: none;
    }
    .why-hero-flex {
        background: url(/assets/why-speedchain-hero.jpg) 50% 50% no-repeat;
        background-size: cover;
        position: relative;
    }    
    .why-hero-flex::after {
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.65);
        position: absolute;
    }
    .solution-lines span {
        background: #fff;
        position: relative;
    }
    .solution-title-unifi .solution-lines span {
        background: #283F6A;
    }
    .why-hero-flex .why-content, .why-hero-flex h1, .why-hero-flex p {
        color: #fff;
        position: relative;
        z-index: 2;
    }
    .unifi-icon-wrap i {
        font-size: 32px;
    }
    .why-icon-wrap {
        display: none;
    }
    .unifi-icon-wrap {
        display: flex;
    }
    .why-icon-wrap-mobile {
        display: flex;
    }
}

@media only screen and (max-width:650px) {
    .home-blog .subtitle-wrap img {
        opacity: 0.25;
        height: 100px;
        left: 50px;
        bottom: -50px;
    }
    .swiper-slide .slider-content p {        
        margin: 15px auto 0px;
    }
    .hero-icon-bg {
        width: 350px;
        top: 20px;
    }
    .why-hero-flex h1 {
        font-size: 22px;
    }
}
@media only screen and (max-width:1620px) {
    .why-icon-wrap .item {
        width: 205px;
    }    
}

@media only screen and (max-width:1300px) {
    .why-hero-flex img {
        display: none;
    }
}

@media only screen and (max-width:850px) {
    .why-icon-wrap .item {
        width: 275px;
    }    
}




/************ ABOUT US / LEADERSHIP PAGE ***************/

.leadership-page-wrap {
    padding: 50px 10px;
}
.leadership-page-wrap p {
    width: 750px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}
.leadership-page-wrap h1 {
    text-align: center;
}
.leadership-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
}
.leadership-item {
    width: 300px;
    margin: 25px;
}
.flip-card {
    width: 300px;
    height: 300px;
    cursor: pointer;
    border-radius: 5000px;
}
.flip-card img {
	width: 300px;
	height: 300px;
    border-radius: 5000px;
}

/* Style the back side */
.flip-card-back {
    background-color: #f2f2f2;
    color: #1d1d1d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border-radius: 5000px;
    height: 300px !important;
    width: 300px !important;
}
.leadership-title-wrap {
    text-align: center;
    margin-top: 20px;
}
.leadership-title-wrap .fab{
    color: #404040;
}
.leadership-title-wrap .fab:hover {
    color: #2867B2;
}

/************ bluchip **************/


.bluchip-slide .bluchip-logo-bg {
    background-color: rgba(255,255,255,0.75);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 30px 20px 40px;
}
.bluchip-slide .bluchip-logo-bg img {
    width: 550px;
    max-width: 90%;
    margin: 0 auto;
    display: block;
}
.bluchip-benefits-wrap {
    padding: 50px 15px;
    margin: 50px auto 0;
    width: 100%;
    background: #e5e5e5;
}
.subtitle-wrap .fa-money-check {
    color: #9BC9FF;
    position: absolute;
    top: 35%;
    right: 0;
    font-size: 64px;
    opacity: 0.4;
}
.icon-section-bluchip {
    width: 750px;
    max-width: 100%;
    margin: 50px auto 0;
}
.icon-section-bluchip .item i {
    font-size: 48px;
    color: #9BC9FF;
    margin-bottom: 15px;
}
.icon-section-bluchip .item:nth-child(even) i {
    color: #283F6A;
}
















