*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

#siteNav{
    background-color: #000;
    color: #999;
    width: 100%;
    padding-top: 5px;
}
#logoAndLangs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 80%;
    margin: 0 auto;
    padding: 7px;
}

#logoCon{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 220px;
}
#langs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80px;
}
.activeLang{
    color: #ccc;
    background-color: #2a2a2a;
    font-weight: bold;
    padding: 3px;
    border-radius: 3px;
}

#pcNav hr{
    border: none;
    border-top: 2px solid #444 !important;
    margin: 3px;
}

#navItems, #mobileMenu{
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#navItems i, #mobileMenu i{
    font-size: 20px;
    color: #ddd;
}
#navItems a, #langs a, #mobileMenu a{
    text-transform: capitalize;
    text-decoration: none;
    margin-right: 40px;
    color: #999;
    transition: color 0.3s;
}
#navItems a:hover, #langs a:hover, #mobileMenu a:hover{
    color: #ccc;
    transition: color 0.5s;
}

/* ************ footer ************* */
footer{
    background-color: #000;
    color: #999;
    width: 100%;
}

#footer01{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 35px 5%;
    padding-bottom: 15px;    
}
#footer01 > div {
    width: 33%;
}
footer h3{
    color: #ddd;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 15px;
}
footer h4{
    font-size: 12px;
    padding: 5px 11px;
}

footer a{
    text-decoration: none;
    cursor: pointer;
    color: #999;
    transition: color 0.5s;
}
footer a:hover{
    color: #ddd;
    transition: color 0.5s;
}

footer .socialLine{
    display: flex;
    flex-wrap: wrap;    
    justify-content:center;
    width: 100% !important;
}

footer .fa{
    color: #ddd;
}

footer .socialLine a i{
    font-size: 24px;
}

footer hr{
    width: 80%;
    margin: 0 auto;
    border: none;
    border-top: 2px solid #444 !important;
    margin: 3px;
}

footer h6{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #444;
}

/* **************** offers ***************** */
#offers{
    padding: 35px 0;
}
#offers #categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
#offers #categories .category{
    margin-left: 33px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
#offers #categories .category:hover{
    color: darkred;
}
.categoryIsActive{
    color: red;
}

#offers{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
#offers #offeredCars{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
#offers .choice{
    width: 33%;
    padding: 25px;
}

#offers .choice h1{
    font-size: 16px;
    margin-top: 15px;
    font-weight: bold;
    color: #111;
    text-transform: uppercase;
}
#offers .choice h3{
    font-size: 12px;
    color: #333;
}
#offers .choice:hover h1, #offers .choice:hover h3{
    color: darkred !important;
}
#offers .choice a{
    text-decoration: none;
}

#offeredCars img{
    width: 18vw;
}

/* ***************** side buttons ****************** */
#sideButtons{
    display: none;
    position: fixed;
    top: 45vh;
    /* right: -154px; */
}
.sideBtn i{
    font-size: 26px;
    color: white;
    padding: 10px;
}
.sideBtn a{
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
}
.sideBtn{
    font-size: 14px;
    margin-bottom: 3px;
    width: 200px;
    cursor: pointer;
    background-color: #00adef;
}
.sideBtnEn {
    transition: all 0.3s ease-out;
}
.sideBtnEn:hover{
    background-color: #008fc7;
    transform: translateX(calc(-100% + 48pt));
    transition: all 0.3s ease-out;
}
.sideBtnAr {
    transition: all 0.3s ease-out;
}
.sideBtnAr:hover{
    background-color: #008fc7;
    transform: translateX(150px);
    transition: all 0.3s ease-out;
}


/* ****************** car details ********************* */
#carDetails{
    position: fixed;
    width: 90vw;
    height: 90vh;
    padding-bottom: 5px;
    top: 5vh;
    left: 5vw;
    background-color: whitesmoke;
    border: 1px #000 solid;
    border-radius: 5px;
    box-shadow: #000 5px 5px 10px;
}
#carDetails #closePane{
    position: absolute;
    right: 20px;
    top: 5px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

#carDetails h1{
    text-align: center;
    margin-top: 10px;
}
#carDetails a{
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    color: #111;
}
#carDetails a:hover{
    color: #555;
}
#carDetails a i{
    color: #00adef;
    font-size: 24px;
}



#mobileMenu{
    display: none;
    width: 100%;
    text-align: center;
}
#mobileMenu i {
    cursor: pointer;
}

@media screen and (max-width: 750px){
    nav, #langs{
        display: none;
    }
    #enLang, #arLang {
        display: inline-block;
        padding-top: 11px;
    }
    #logoCon{
        width: 100%;
    }
    #mobileMenu{
        display: block;
    }
    #mobileMenuItems a{
        margin: auto 0;
    }
    #mobileMenuItems div {
        margin-top: 7px;
    }
    #mobileMenuItems {
        transform: scale(1,0);
        height: 0;
        transform-origin: top;
    }
    .mobileMenuItemsOpen {
        transform: scale(1,1) !important;
        height: auto !important;
        transform-origin: top;
        transition: all 0.3s;
    }



    #footer01 .contacts, #footer01 .social, #footer01 .mapouter {
        width: 100%;
    }
    #footer01 .social {
        margin-top: 31px;
    }
    footer h3 {
        text-align: center;
    }
    .socialLine {
        width: 33% !important;
    }
}