*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: black;
}
body i,a{
    color: #66fcf1;
    text-decoration: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
}
body i:hover,a:hover{
    color: red;
}


/* navbar */

.navbar{
    background-color: #0b0c10;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#login{
    font-size: 24px;
}
.search-box{
    display: flex;
    align-items: center;
    border: 2px solid #66fcf1;
    border-radius: 10px;
    background-color: #0b0c10;
}
.search-box input{
    font-size: 20px;
    padding: 5px;
    background: transparent;
    border: none;
    outline: none;
    color: #66fcf1;
}
.search-box button{
    border: none;
    border-radius: 10px;
    background-color: #0b0c10;
}
.dialogBox {
    display: none;
    position: absolute;
    top: 48px;
    background-color: #0b0c10;
    border-radius: 10px;
    border: 2px solid red;
    padding: 10px;
    width:150px;
  }
.bars:hover .dialogBox {
    display: block;
}
#dialogbox {
    display: none;
    position: absolute;
    top: 48px;
    background-color: #0b0c10;
    border-radius: 10px;
    border: 2px solid red;
    padding: 10px;
    padding-bottom: 0;
  }
#location:hover #dialogbox {
    display: block;
}
#dialogbox p{
    color: #66fcf1;
    font-size: 20px;
    margin-bottom: 10px;
}
#dialogbox p:hover{
    color: red;
    cursor: pointer;
}
#logo{
    height: 10vh;
    width: 15vh;
}
#logo img{
    height: 100%;
    width: 100%;
}


/* background-image */

#background-image{
    height: 75vh;
    margin-top: 25px;
}
#background-image img{
    height: 100%;
    width: 100%;
}


/* bikes-logo */

h1{
    background-color: #0b0c10;
    color: red;
    margin-top: 25px;
    text-align: center;
    padding: 10px;
}
#bikes-logo{
    background-color: #0b0c10;
    height: 30vh;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.logo{
    height: 70%;
    width: 10%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 3px solid #66fcf1;
    border-radius: 10px;
    cursor: pointer;
}
.logo:hover{
    transform: scale(1.2);
    border-color: red;
    transition: 0.5s;
}
.ducati{
    background-image: url(images/ducati-logo.jpg);
}
.kawasaki{
    background-image: url(images/kawasaki-logo.jpg);
}
.bmw{
    background-image: url(images/bmw-logo.jpg);
}
.triumph{
    background-image: url(images/triumph-logo.jpg);
}
.aprilia{
    background-image: url(images/aprilia-logo.jpg);
}


/* top-models */

#top-models{
    height: 50vh;
    margin-top: 25px;
    background-color: #0b0c10;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.models{
    height: 85%;
    width: 17%;
    border: 3px solid #66fcf1;
    border-radius: 10px;
}
.top-model-img{
    height: 55%;
    /* margin: 5px; */
    background-position: center;
    background-size: cover;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.top-model-img img{
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.top-model-info{
    color: #66fcf1;
}
.top-model-info p{
    margin: 5px;
}
.top-model-info i{
    font-size: 18px;
}
.top-model-info i:hover{
    color: #66fcf1;
    cursor:auto;
}
.line1{
    font-weight: bold;
    font-size: 18px
}
.line2{
    font-size: 20px;
    font-weight: bolder;
    display: inline-block;
}
.line3{
    display: inline-block;
    color: gray;
    font-size: 14px;
}
.top-model-info button{
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #66fcf1;
    color: #0b0c10;
    font-weight: bold;
    cursor: pointer;
    border: none;
    margin: 5px;
}
.top-model-info button:hover{
    background-color: #45a29e;
    color: #ffffff;
}


/* sell-section */

#sell-section{
    background-color: #0b0c10;
}
h2{
    color: red;
    margin-top: 25px;
    padding: 10px;
}
#sell-section p{
    color: #66fcf1;
    padding: 5px;
    margin-left: 10px;
}
#sell-section button{
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #66fcf1;
    color: #0b0c10;
    font-weight: bold;
    cursor: pointer;
    border: none;
    margin: 10px;
}
#sell-section button:hover{
    background-color: #45a29e;
    color: #ffffff;
}


/* review-section */

#review-section{
    background-color: #0b0c10;
}
#review-section p{
    color: #66fcf1;
    padding: 5px;
    margin-left: 10px;
}


/* footer */

#footer{
    background-color: #0b0c10;
    margin-top: 25px;
}
#footer p,a{
    text-align: center;
    color: #66fcf1;
    font-size: 20px;
    padding: 10px;
}
#footer i{
    font-size: 18px;
}
#footer i:hover{
    color: #66fcf1;
    cursor: auto;
}
#apps-box{
    display: flex;
    justify-content: center;
}
.apps{
    height: 5vh;
    width: 8vw;
    background-position: center;
    background-size: cover;
    margin: 10px;
    margin-top: 0;
    border-radius: 10px;
    border: 2px solid white;
}
.apps:hover{
    transform: scale(1.2);
    transition: 0.5s;
    cursor: pointer;
}
.img1{
    background-image: url(../android.jpg);
}
.img2{
    background-image: url(../ios.jpg);
}
 #copyright-section{
    display: flex;
    justify-content: center;
}
#connect-us-section{
    display: flex;
    justify-content: center;
}
#connect-us-section i{
    font-size: 24px;
}
#connect-us-section i:hover{
    color: red;
    transform: scale(1.5);
    transition: 0.5s;
    cursor: pointer;
}
