*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Navbar */

body {
    width: 100%;
}

nav {
    background-color: black;
}

nav .image {
    height: 18%;
    width: 14%;
    margin-left: 1%;
}

nav img {
    height: 100%;
    width: 100%;
}

.links {
    margin-left: 11%;
}

.links li {
    margin-left: 11px;
}

.links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-family: monospace;
}

.links a:hover {
    color: rgb(255, 236, 22);
}

.search_area {
    width: 46% !important;
    height: 44% !important;
}

.search_button {
    width: 28% !important;
    height: 44% !important;
    font-size: 15px !important;
    font-weight: bold;
    color: white !important;
    border-color: white !important;
    font-family: monospace;
    transition: all 0.5s;
}

.search_button:hover {
    color: black !important;
    font-weight: bold;
    background-color: rgb(255, 255, 255) !important;
    transition: all 0.5s;
}




/* Heading */
.motorcylces_heading
{
    width: 100%;
    height: 8vh;
    color: white;
    font-size: 25px;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    text-align: center;
    line-height: 7.4vh;
    background-color: rgb(38, 38, 38);
}




/* Body grid */

.body_grid .row {
    width: 100% !important;
    height: 44vh;
}

/* ads */

.body_grid .row .image
{
    border: none !important;
    width: 344px;
    height: 44vh;
    overflow: hidden;
    padding: 0px !important;
}
  
.body_grid .row .image img 
{
    width: 100%;
    height: 100%;
    transition: all 0.8s ease-in-out;
}
.body_grid .row .image:hover img
{
  transform: scale(1.1,1.1);
  cursor: pointer;
}




/* footer */

footer {
    width: 100%;
    height: 100%;
    background-color: rgb(221, 221, 221) !important;
}

.social_media_icons {
    width: 92%;
    margin-left: 4%;
    border-bottom: 1px solid black;
}

.social_media .text {
    font-size: 17px;
    font-weight: bold;
    font-family: monospace;
    color: black;
    display: inline;
}

.social_media i {
    font-size: 28px;
    color: black;
    margin-left: 18px;
    width: 5%;
    height: 5%;
}

.icon1 i:hover {
    cursor: pointer;
    color: rgb(14, 99, 209);
}

.icon2 i:hover {
    cursor: pointer;
    color: rgb(0, 225, 255);
}

.icon3 i:hover {
    cursor: pointer;
    color: rgb(255, 0, 0);
}

.icon4 i:hover {
    cursor: pointer;
    color: rgb(255, 0, 136);
}

/* footer links */

footer .links {
    height: 100% !important;
    width: 92% !important;
    margin-left: 4% !important;
    text-transform: capitalize !important;
}

footer .row {
    float: left;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 5px;
}

footer .row .items {
    width: 180px;
}

footer .row .items .heading {
    margin-left: 11px;
    text-align: left !important;
}

footer .row h5 {
    font-size: 22px;
    font-weight: bold;
    font-family: monospace;
    color: black;
}

footer .row ul li {
    margin-top: 5px;
}

footer .row ul li a {
    font-size: 15px;
    font-weight: bold;
    font-family: monospace;
    color: black;
}

footer .row ul li a:hover {
    cursor: pointer;
    color: rgb(255, 200, 0);
    text-decoration: none;
}

/* copyright */

.copyright {
    margin-top: 70vh;
    border-top: 1px solid black;
    background-color: rgb(221, 221, 221) !important;
}