﻿
@font-face {
    font-family: 'JosefinSans-BoldItalic';
    src: url('../fonts/JosefinSans-BoldItalic.ttf') format('truetype');
}

body {
    font-family: "Roboto Mono", Monaco, Consolas, "Courier New", monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #9b9b9b;
    background-color: #000;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: subpixel-antialiased;
}

    body a {
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

a:hover {
    text-decoration: none;
}

h1 {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 30px;
    text-align: center;
    color: #252525;
    padding-top: 0em;
    margin-bottom: 2.5em;
    text-transform: capitalize;
    position: relative;
}

    h1:after {
        content: '';
     
        background: rgb(12, 116, 185);
        
        height: 2px;
        width: 70px;
        position: absolute;
        top: 132%;
        right: 47%;
    }


h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
}

p {
    margin: 0;
    font-family: 'Hind Vadodara', sans-serif;
    letter-spacing: 1px;
}

ul {
    margin: 0;
    padding: 0;
}

.top-nav {
    height: auto;
    background: rgba(2,11,12,1);
    padding-top: 5px;
    padding-bottom: 5px;
}

    .top-nav ul {
        margin-top: 10px;
    }

    .top-nav li {
        display: inline-block;
        font-size: 16px;
    }

    .top-nav i {
       
        color:rgb(12, 116, 185);
        margin-right: 5px;
        margin-left: 5px;
    }

.navbar-default {
    background-color: #282923;
    z-index: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(37, 66, 69,0.4);
    border-color: transparent !important;
    border-radius: inherit;
}

@keyframes sticky-nav-anim {
    from {
        top: -100%;
    }

    to {
        top: 0px;
    }
}

.sticky-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0px;
    z-index: 9999;
    border-top: 0;
    animation-name: sticky-nav-anim;
    animation-duration: .5s;
}
/*.sticky-nav:after
{
   
    top: 0px;
}*/

.navbar {
    margin-bottom: 0;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-brand
{
height:auto !important;
}

    .navbar-brand h2 {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 30px;
        margin: 12px 0px -15px 0px;
        width: max-content;
        /* padding-top: 15px; */
        font-family: JosefinSans-BoldItalic;
        color: #fff;
    }
    .navbar-brand h4 {
        text-align: center;
        margin-top: 20px;
    }

.nav {
    
    margin-top: 18px !important;
  
}

.navbar img {
    width: auto;
    height: 85px;
    margin-top: -5px;
    visibility: visible;
}

.navbar-nav > li > a {
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
    margin-top: 20px;
    
    font-weight: 600;
    
}

.navbar-default .navbar-nav li > a:hover, .navbar-default .navbar-nav li > a:focus {
    color: #fff;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #fff;
    background-color: transparent;
}

.navbar li a:before, .navbar li a:after {
    display: inline-block;
    opacity: 0;
    transition: transform .5s, opacity 0.2s;
}

.navbar li a:before {
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #0e70bb;
    opacity: 0;
    transition:.5s ease-in-out;
}
/*
.navbar li a:after {
    margin-left: 10px;
    content: ']';
    transform: translateX(-20px);
    opacity: 0;
}*/


.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #fff;
    background-color: transparent;
}

.navbar li:hover > a:before, .navbar li.active > a:before {
    opacity: 1;
    color: #fff;
    bottom:-10px;
}




.dropdown-content1 {
    position: absolute;
    margin-top: 0px;
    z-index: 4;
}

    .dropdown-content1 ul li {
        position: static;
        background-color: black;
        display: none;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }

    .dropdown-content1 > ul > li {
        min-width: 200px;
    }

    .dropdown-content1 ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .dropdown-content1 ul li a {
            float: none;
            color: white;
            padding: 12px 10px;
            text-decoration: none;
            display: block;
            text-align: left;
            /*border-bottom:2px solid rgba(0,0,0,0.5);*/
        }
/*.dropdown-content1 ul li a:hover {
    background-color: none;
	color:#22e27d;
}*/

@keyframes dropeffect {
    0% {
        opacity: 0;
        transform: rotateY(-90deg) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) translateY(0px);
    }
}

.dropdown1:hover .dropdown-content1 {
    perspective: 1000px;
}

    .dropdown1:hover .dropdown-content1 li {
        display: block;
        opacity: 5;
        animation-name: dropeffect;
        animation-duration: 300ms;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
    }


.sub_menu1 {
    display: none;
    background-color: #000;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99;
    position: absolute;
    top: 0px;
    left: 198px;
    border-bottom: 1px solid (0,0,0,0.5);
}

    .sub_menu1 li {
        width: auto;
    }

.dropdown1 .dropdown-content1 .ups:hover .sub_menu1 {
    display: block;
}
/*dropdown1 end*/

/*dropdown2 start*/
.dropdown-content2 {
    position: absolute;
    margin-top: 0px;
    z-index: 4;
}


    .dropdown-content2 li {
        display: none;
        position: static;
        background-color: black;
        min-width: 300px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }

    .dropdown-content2 ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .dropdown-content2 ul li a {
            float: none;
            color: WHITE;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            /*border-bottom:2px solid rgba(0,0,0,0.5);*/
        }
/*
.dropdown-content2 ul li a:hover {
    background-color: none;
	color:#22e27d;
}*/

.dropdown2:hover .dropdown-content2 {
    perspective: 1000px;
}

    .dropdown2:hover .dropdown-content2 li {
        display: block;
        opacity: 5;
        animation-name: dropeffect;
        animation-duration: 300ms;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
    }


.sub_menu2 {
    display: none;
    background-color: #f4f7f6;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 4;
    position: absolute;
    top: 0px;
    left: 160px;
    border-bottom: 1px solid (0,0,0,0.5);
}

.dropdown2 .dropdown-content2 .ups:hover .sub_menu2 {
    display: block;
}
.motors {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #000;
}

    .motors .item
    {
        background-color:#fff;
    }

    .motors img {
        width: 100%;
        height: 170px;
    }

.motor-data
{
   
    padding-bottom:50px;

}

.motor-data h1
{
    color:#fff !important;
}

.motor-data p
{
    font-size:14px;
}