/* MOBILE STYLES
   ========================================================================== */
@font-face {
    font-family: "sm-font";
    src: url("./fonts/sm-font.eot");
    src: url("./fonts/sm-font.eot?#iefix") format("embedded-opentype"), url("./fonts/sm-font.woff") format("woff"), url("./fonts/sm-font.ttf") format("truetype"), url("./fonts/sm-font.svg#sm-font") format("svg");
    font-weight: normal;
    font-style: normal;
}
[data-icon]:before {
    font-family: "sm-font" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    . -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "sm-font" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    vertical-align: middle;
}
.icon-cross:before {
    content: "a";
}
.icon-tick:before {
    content: "b";
}
.icon-caret-right:before {
    content: "c";
}
.icon-facebook:before {
    content: "d";
}
.icon-gplus:before {
    content: "e";
}
.icon-hamburger:before {
    content: "f";
}
.icon-instagram:before {
    content: "g";
}
.icon-mobile:before {
    content: "h";
}
.icon-play:before {
    content: "i";
}
.icon-linkedin:before {
    content: "j";
}
.icon-mapmarker:before {
    content: "k";
}
.icon-mail:before {
    content: "l";
}
.icon-caret-down:before {
    content: "m";
}
.icon-twitter:before {
    content: "n";
}
.icon-youtube:before {
    content: "o";
}
.icon-phone:before {
    content: "p";
}
.icon-search:before {
    content: "q";
}
.icon-shopping-cart:before {
    content: "r";
}
.icon-calendar:before {
    content: "s";
}
.icon-arrow-down:before {
    content: "t";
}
.icon-arrow-left:before {
    content: "u";
}
.icon-arrow-right:before {
    content: "v";
}
.icon-arrow-up:before {
    content: "w";
}
.icon-caret-left:before {
    content: "x";
}
.icon-caret-up:before {
    content: "y";
}
.icon-right-arrow:before {
    content: "D";
}
/* Layout
   ========================================================================== */

html {
    height: 100%;
    font-family: 'FuelAutotek', sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: RGB(64, 64, 64);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background: #fff;
    padding-top: 37px;
}
section {
    margin: 0;
}

header img {
    max-width: 100%;
    height: auto;
    display: block;
}
header a img {
    display: block;
}

.t-light {
    font-weight: 300;
}
.t-left {
    text-align: left;
}
.t-right {
    text-align: right;
}
.t-center {
    text-align: center;
}
.t-white {
    color: #fff !important;
}
.t-grey {
    color: RGB(64, 64, 64)!important;
}
.t-blue {
    color: #F68E1E;
}
.t-red {
    color: RGB(237, 28, 36);
}
.t-small {
    font-size: 12px;
    line-height: 1em;
}
.t-upper {
    text-transform: uppercase;
}
.t-lower {
    text-transform: lowercase;
}
.inline-list {
    margin: 0;
    padding: 0;
}
.inline-list li {
    display: inline-block;
    list-style: none;
    vertical-align: middle;
}
.m-top {
    margin-top: 10px;
}
.red-bg {
    background-color: #ff152b;
    color: #fff;
}
/* Navigation
   ========================================================================== */

.nav-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: RGB(64, 64, 64);
}
.nav-menu .wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
}
.primary-nav {
    display: none;
}
header .logo {
    float: left;
    width: 122px;
    margin-top: 40px;
    margin-left: 10px;
}
header .logo img {
    display: block;
}
.mobile-link {
    height: 34px;
    font-weight: 22px;
    /*margin-top: 9px;*/
    
    color: #fff;
    text-transform: uppercase;
    border: 0;
    background-color: transparent;
}
.mobile-link span {
    display: inline-block;
}
.mobile-link .icon-hamburger {
    margin-left: 2px;
    font-size: 30px;
}
.mobile-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 530;
    -webkit-transition: all 1.4s ease;
    -moz-transition: all 1.4s ease;
    transition: all 1.4s ease;
}
.show-menu .mobile-overlay {
    display: block;
    -webkit-animation: mobile_overlay 1s;
    animation: mobile_overlay 1s;
}
@-webkit-keyframes mobile_overlay {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, 0.6);
    }
}
@keyframes mobile_overlay {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, 0.6);
    }
}
.nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent;
}
.m-menu {
    position: fixed;
    top: 37px;
    right: -101%;
    width: 100%;
    min-width: 225px;
    background: #eee;
    height: 100%;
    z-index: 3000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: auto;
}
.show-menu .m-menu {
    right: 0;
}
.m-menu .nav-child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.m-menu li .nav-child li .nav-child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.m-menu li .nav-child li .nav-child li .nav-child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.m-menu .show .nav-child {
    max-height: 1000px;
}
.m-menu .nav-child .show .nav-child {
    max-height: 1000px;
}
.m-menu .nav-child .nav-child .show .nav-child {
    max-height: 1000px;
}
.m-menu ul {
    margin: 0;
    padding: 0;
}
.m-menu li {
    padding: 0;
    list-style: none;
    text-align: center;
}
.m-menu a {
    display: block;
    padding: 10px 0;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #E0E0E0;
    text-transform: uppercase;
    font-weight: 300;
}
/*m-menu .parent > a {
	background-color: RGB(64,64,64);
	color: #FFF;
}*/

.m-menu li .nav-child li .nav-child {
    background-color: RGB(220, 220, 220);
    border-bottom: 1px solid #FFF;
}
.m-menu .menu-header {
    background-color: RGB(64, 64, 64)!important;
    color: #FFF !important;
}
.menu-header2 {
    background-color: RGB(120, 120, 120)!important;
    color: #FFF !important;
}
.m-menu .show >a {
    background-color: RGB(237, 28, 36) !important;
}
.m-menu .active > a {
    background: RGB(237, 28, 36);
    color: #FFF;
}
.m-menu .nav-child a {
    background: RGB(250, 250, 250);
    color: #000;
}

/* Main Content
   ========================================================================== */

.main {
    position: relative;
}
.cols {
    display: block;
    position: relative;
    width: 100%;
    margin: 10px 0;
    vertical-align: top;
    overflow: hidden;
}
a {
    text-decoration: none;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}

.brand-p {
    text-align: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-image: url('../image/background2.jpg');
	    background-position: center 0px;
}
.brand-p .gradient {
    padding-top: 120px;
        background: -moz-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 15%,rgba(255,255,255,0.6) 20%,rgba(255,255,255,0.8) 28%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 50%,rgba(64,64,64,1) 100%);
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 15%,rgba(255,255,255,0.6) 20%,rgba(255,255,255,0.8) 28%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 50%,rgba(64,64,64,1) 100%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 15%,rgba(255,255,255,0.6) 20%,rgba(255,255,255,0.8) 28%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 50%,rgba(64,64,64,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff',endColorstr='#404040',GradientType=0);
}
.box {
    -webkit-box-shadow: 0 0 15px RGB(64,64,64);
    box-shadow: 0 0 15px RGB(64,64,64);
    margin: 0 0 20px 0 !important;
    background-color: #FFF;
    max-width: 1250px;
}

.footer {
    background-color: RGB(64,
    64,
    64);
}
.footer-links {
    color: #fff;
}
.footer-links .wrapper {
    padding-top: 0px;
    padding-bottom: 15px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
}
.footer-links a:hover {} .footer-links ul {
    margin:0;
    padding: 0;
    list-style: none;
}
.footer-links li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.footer-links li a {
    display: block;
    padding: 5px 20px 5px 20px;
    color: #fff;
    text-transform: lowercase;
    font-size: 14px;
}
.footer-links .nav {
    margin-top: 10px;
}

.social {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
    padding-left: 0;
}
.social li {
    display: inline-block;
}
.social a {
    display: block;
    width: 50px;
    height: 50px;
    padding: 9px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    border-radius:50%;
}
.footer .social a,
.wheel-social .social a,
.tyre-content .social a,
.wheel-content .social a {
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 24px;
    margin-left: 10px;
}
.footer .social a.icon-twitter,
.wheel-social .social a.icon-twitter,
.tyre-content .social a.icon-twitter,
.wheel-content .social a.icon-twitter {
    background-color: #64cbee;
}
.footer .social a.icon-facebook,
.wheel-social .social a.icon-facebook,
.tyre-content .social a.icon-facebook,
.wheel-content .social a.icon-facebook {
    background-color: #507cbd;
}
.footer .social a.icon-gplus,
.wheel-social .social a.icon-gplus,
.tyre-content .social a.icon-gplus,
.wheel-content .social a.icon-gplus {
    background-color: #565656;
}
.footer .social a.icon-youtube,
.wheel-social .social a.icon-youtube,
.tyre-content .social a.icon-youtube,
.wheel-content .social a.icon-youtube {
    background-color: #f06361;
}
.footer .social a.icon-linkedin,
.wheel-social .social a.icon-linkedin,
.tyre-content .social a.icon-linkedin,
.wheel-content .social a.icon-linkedin {
    background-color: #4875B4;
}
.footer .social a.icon-mail,
.wheel-social .social a.icon-mail,
.tyre-content .social a.icon-mail,
.wheel-content .social a.icon-mail {
    background-color: #666;
}
.footer .social a.icon-instagram {
    background-color: #a9a9a9;
}
.footer .social a:hover {
    color: #fff;
}
.footer h3 {
    color: #F68E1E;
    font-size: 18px;
    text-transform: uppercase;
}
.footer h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    text-transform: uppercase;
}
.footer p,
.footer a {
    color: #808080;
}

/* Hide desktop items on mobile
   ========================================================================== */

.hide-mobile,
.show-tablet {
    display: none !important;
}

@media (max-width: 900px) {
    
    header .logo {
        margin-top:15px;
    }
    .box {
        margin: 0 !important;
        box-shadow: none;
    }
}
@media (min-width: 500px) {
    .nav .heading {
        visibility: hidden;
    }
}
/* DESKTOP STYLES
   ========================================================================== */

@media (min-width: 900px) {
    /* Layout
   ========================================================================== */
    
    html {
        font-size: 15px;
    }
    body {
        padding: 55px 0 0 0;
    }
    /* Navigation
   ========================================================================== */
    
    .nav-menu {
        position: fixed;
    }
    .nav-menu .wrapper {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    header .logo {
        width: 195px;
        margin-top:50px;
    }
    .mobile-link {
        color: #000;
    }
    .m-menu .parent {
        background: RGB(64,
        64,
        64);
        color: #FFF;
    }
    .mobile-link {
        display: none;
    }
    .primary-nav {
        display: block;
        float: left;
        margin-left: 40px;
    }
    .primary-nav ul {
        margin: 0;
        padding: 0;
        z-index: 50;
        margin-bottom: 3px;
        margin-bottom: 3px;
    }
    .primary-nav li {
        display: inline-block;
        position: relative;
        vertical-align: middle;
    }
    .primary-nav a {
        position: relative;
        display: block;
        padding-top: 49px;
        padding-bottom: 5px;
        padding-left: 20px;
        padding-right: 20px;
        letter-spacing: 1px;
        color: #FFF;
        border: none;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        text-align: center;
        text-transform: lowercase;
        line-height: 1em;
        -webkit-transition: all 0.1s ease;
        -moz-transition: all 0.1s ease;
        transition: all 0.1s ease;
        border-bottom: 1px solid RGB(64,
        64,
        64);
		font-family: 'FuelAutotek', sans-serif;
		font-size: 14px;
		line-height: 1.5em;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
    }
    .primary-nav .current > a {
        border-bottom: 1px solid RGB(237,
        28,
        36);
        ;
    }
    .primary-nav li:hover a {
        border-bottom: 1px solid RGB(237,
        28,
        36);
        ;
    }
    .primary-nav .nav-child {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 100%;
        padding-top: 3px;
        white-space: nowrap;
    }
    .primary-nav li:hover .nav-child {
        display: block;
    }
    .primary-nav .nav-child > li {
        display: block;
        border-bottom: 1px solid #fff;
    }
    .primary-nav .nav-child > li a {
        background-color: RGB(237,
        28,
        36);
        padding: 18px 24px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }
    .primary-nav li .nav-child li .nav-child {
        left: 100%;
        top: 0px;
        padding: 0px;
        display: none;
        border-left: 1px solid #fff;
    }
    .primary-nav li .nav-child li .nav-child > li a {
        text-transform: lowercase;
    }
    .primary-nav li .nav-child li:hover .nav-child {
        display: block;
    }
    .primary-nav .nav-child > li a:hover {
        background-color: #fff;
        border-bottom: 1px solid #fff;
        color: #000 !important;
    }

    /* Main Content
   ========================================================================== */
    
    .cols {
        display: inline-block;
        margin: 10px 2% 10px 0;
    }
    .col-12 {
        width:100%;
    }
    .col-10 {
        width: 83%;
    }
    .col-9 {
        width: 74.5%;
    }
    .col-8 {
        width: 66%;
    }
    .col-7 {
        width: 60%;
    }
    
    .col-7 {
        width: 57.5%;
    }
    .col-6 {
        width: 49%;
    }
    .col-5 {
        width: 40.5%;
    }
    .col-4 {
        width: 32%;
    }
    .col-3 {
        width: 23.5%;
    }
    .col-2 {
        width: 15%;
    }
    .col-1 {
        width: 6.5%;
    }
    .box {
        width: 90%;
    }
    /* Hide mobile items on desktop
   ========================================================================== */
    
    .hide-desktop,
    .show-tablet {
        display: none !important;
    }
}
@media (min-width: 1000px) {
    body {
        padding-top: 59px;
    }
    header .logo {
        width: 260px;
    }
    .primary-nav a {
        padding-top: 49px;
        padding-bottom: 5px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 1100px) {
    .primary-nav a {
        padding-left: 13px;
        padding-right: 13px;
    }
}
@media (min-width: 1200px) {
    body {
        padding-top: 60px;
    }
    header .logo {
        width: 360px;
        margin-top: 40px;
    }
    .primary-nav > ul > li a {
        padding-top: 49px;
        padding-bottom: 5px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hide-mobile {
        display: block !important;
    }
    .box {
        width: 66%;
    }
}
@media (min-width: 1310px) {
    body {
        padding-top: 73px;
    }
    header .logo {
        width: 360px;
    }
}
