* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    list-style: none;
}

html {
    font-size: 92.5%;
    overflow-x: hidden;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@font-face {
    font-family: 'icofont';
    src: url('../fonts/icofont.ttf');
}

/*style the scrollbar*/
* {
    scrollbar-width: thin;
    scrollbar-color: #2fbca2 transparent;
}

/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #0c7ccc;
}

body {
    font-family: arial, tahoma;
    height: auto;
}

a:hover {
    text-decoration: none !important;
}

button:focus {
    outline: none;
}

.my_container {
    width: 92%;
    margin: auto;
}

header .top_banner {
    padding: 7px 0;
    background-color: #d6181e;
    color: #fff;
}

header .top_banner .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

header .top_banner .left h4 {
    font-size: inherit
}

header .top_banner .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .top_banner .right h4 {
    font-size: inherit;
}

header .top_banner .right a {
    font-size: 25px;
    color: #fff;
}

/* input with icon */
form#serch {
    width: 21.875rem;
    margin-left: auto;
    position: relative;
    margin-top: 2.1875rem;
}

form#serch button.icon {
    position: absolute;
    right: 0;
    background-color: #e8e8e8;
    height: 100%;
    width: 43px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    font-size: 25px;
    cursor: pointer;
}

form#serch input {
    border: none;
    background-color: #e8e8e8;
    font-size: 1.25rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* -============================ */

nav {
    margin-top: -30px;
    padding: 0 !important;
}

nav>div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

nav>div:first-child img {
    width: 15rem;
}

nav>div:first-child a.lang {
    font-size: 1.6875rem;
    color: #051ab3;
    text-transform: none;
    text-decoration: underline;
    margin-left: 1.5625rem;
    font-weight: bold;
}

#my_nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#my_nav ul li a {
    font-size: 1.25rem;
    color: #3e3c3c;
    font-weight: bold;
}

#my_nav ul li a.active_link {
    color: #051ab3;
}

#my_nav ul li span {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3e3c3c;
}

.header_content {
    margin-top: 20px;
}

/* ==================================== */

.header_content_left {
    background-color: #051ab3;
    padding: 100px 0 100px 60px;
    height: 100%;
}

.home .header_content_left {
    padding: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home .header_content_left>div {
    width: 80%;
}

/* ==================================== */

.header_content_left div h2 {
    width: 100%;
    font-size: 45px;
    font-weight: 900;
    color: #fff;
}

.home .header_content_left div h2 {
    width: 60%;
    font-size: 2.75rem;
    font-weight: bold;
    color: #fff;
}

/* ==================================== */

.header_content_left div p {
    font-size: 1.125rem;
    color: #fff;
}

/* make custom style for all button and link that has class my_btn */
.my_btn {
    color: #fff;
    background-color: transparent;
    padding: 0.5625rem 1.375rem;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-perspective: 450px;
    perspective: 450px;
    z-index: 1;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    margin-top: 30px;
    border: 2px solid #d6181e;
}

.my_btn:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform-origin: left center 0;
    -ms-transform-origin: left center 0;
    transform-origin: left center 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #d6181e;
}

.my_btn:hover:before {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
}

.my_btn:hover {
    color: #fff;
}

.my_btn:focus,
button.my_btn:focus {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* end style btn button and link */

/* =========================== */
.home .header_content_right {
    height: 450px;
}

.header_content_right {
    position: relative;
    height: 100%;
}

.header_content_right .my_slider {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.home .header_content_right .my_slider {
    height: 100%;
    margin-top: 0;
}

/* =========================== */

.header_content_right .my_slider .carousel-inner,
.header_content_right .my_slider #my_carousel {
    height: 100%;
}

.home .header_content_right .my_slider .carousel-item,
.home .header_content_right .my_slider .carousel-item img {
    height: 100%;
}

.header_content_right .my_slider .carousel-control-prev,
.header_content_right .my_slider .carousel-control-next {
    display: none;
}

.header_content_right .my_slider .carousel-indicators {
    margin: 0;
    bottom: 27px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 3.75rem;
}

.header_content_right .my_slider .carousel-indicators li {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    margin-left: 0.4375rem;
    background-color: #0f23b6;
    cursor: pointer;
}

.header_content_right .my_slider .carousel-indicators .active {
    background-color: #d6181e;
}

.header_content_right .rendez_vous_badge {
    background-color: #0c7ccc;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 1.875rem;
    color: #fff;
    padding: 0.875rem;
    z-index: 20;
    cursor: pointer;
}

.header_content_right .rendez_vous_badge h3 {
    font-size: 1.4375rem;
    font-weight: bold;
}

.header_content_right .rendez_vous_badge p {
    font-size: 1.375rem;
    line-height: 1;
}

.header_content_right .rendez_vous_badge::before {
    content: "";
    position: absolute;
    width: 1.8125rem;
    height: 100%;
    background-color: #d6181e;
    top: 0;
    left: -1.875rem;
}

.selections_form {
    background-color: #2c2c2c;
    padding: 40px 0;
}

.selections_form h1 {
    display: block;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.selections_form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.selections_form form .form-group {
    position: relative;
    margin-bottom: 0 !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #434444;
    height: 2.8125rem !important;
    font-size: 1.0625rem !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

select+i {
    pointer-events: none;
    font-size: 1.875rem;
    position: absolute;
    right: 0.375rem;
    top: 0.5625rem;
}

#marques,
#modeles,
#years {
    width: 18.75rem;
    text-transform: capitalize;
}

.selections_form a.advance_resh {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.selections_form a.advance_resh img {
    width: 45px;
    margin-right: 15px;
}

.selections_form form button {
    color: #fff;
    background-color: transparent;
    padding: 7px 14px;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-perspective: 450px;
    perspective: 450px;
    z-index: 1;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    border: 2px solid #0e99fa;
    font-size: 13px;
}

.selections_form form button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform-origin: left center 0;
    -ms-transform-origin: left center 0;
    transform-origin: left center 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #0e99fa;
}

.selections_form form button:hover:before {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
}

/* ======================================= */
/* ======================================= */

/* START MAIN ================================= */
main {
    overflow: hidden;
}

main .main_banner {
    height: 31.25rem;
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

main .main_banner .main_banner_desc {
    position: absolute;
    display: inline-block;
    right: 2.875rem;
    top: 6.25rem;
    width: 33.125rem;
}

main .main_banner .main_banner_desc h2 {
    font-size: 3.125rem;
    font-weight: bold;
    color: #0e99fa;
}

main .main_banner .main_banner_desc ul {
    list-style: none;
}

main .main_banner .main_banner_desc ul li {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-left: -2.1875rem;
}

main .main_banner .main_banner_desc ul li i {
    color: #cecece;
    margin-right: 0.6875rem;
    font-size: 2.0625rem;
}

main .main_banner .main_banner_desc p {
    font-size: 1.5625rem;
    line-height: 1.2;
    color: #797979;
}

main .main_banner .main_banner_desc img {
    position: absolute;
    bottom: -8.4375rem;
    right: -3.5rem;
    width: 7.5rem;
}

main .latest_car {
    padding-top: 100px;
    background-color: #f6f6f6;
    position: relative;
    overflow: hidden;
}

main .latest_car .carousel_title h2 {
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0 !important;
    color: #0e99fa;
}

main .latest_car .carousel_title p {
    font-size: 1.875rem;
    text-transform: uppercase;
}

/* style owel carousel */
main .latest_car .owl-nav {
    position: absolute;
    top: -75px;
    right: 13px;
}

main .latest_car .owl-carousel .owl-nav button.owl-next,
main .latest_car .owl-carousel .owl-nav button.owl-prev {
    font-size: 35px;
}

main .latest_car .owl-carousel .owl-item {
    margin: 50px auto;
}

/* ==================================== */

/* style the card in all pages */
.card {
    border: none;
    border-radius: none !important;
    margin-bottom: 3.125rem;
    background-color: transparent;
    width: 95%;
    margin: auto;
}

.card img {
    border: 0.1875rem solid grey;
    padding: 3px;
    background-color: #fff;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-body h4 {
    color: #33353b;
    font-size: 2.1875rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
}

.card-body p {
    font-size: 1.875rem;
    color: #231f20;
}

.card-body h3 {
    color: #d6181e;
    font-size: 1.6875rem;
    font-weight: bold;
    margin-bottom: 2.8125rem;
}

.card-body a {
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 17px;
    padding: 6px 12px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    outline: none;
}

.card-body a:hover {
    background-color: #33353b;
}

/* end style the card in all pages */

/* ==================================== */

main .our_services {
    height: 550px;
    background-color: #f6f6f6;
}

main .our_services .row {
    height: 100%;
}

main .our_services .left_part,
main .our_services .right_part {
    height: 100%;
}

.primo_tires {
    background-image: url(../images/tires_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.primo_parts {
    background-image: url(../images/parts_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.primo_service {
    background-image: url(../images/service_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.right_part_top,
.right_part_bottom {
    height: 50%;
}

.service_content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 20px 20px 50px;
}

.service_content h5 {
    text-transform: uppercase;
    font-size: 2.1875rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.service_content p {
    text-transform: uppercase;
    font-size: 1.875rem;
    line-height: 1;
    color: #fff;
    margin-top: 1.25rem;
    margin-bottom: 0.4375rem;
}

.service_content a {
    text-transform: uppercase;
    font-size: 1.875rem;
    line-height: 1;
    color: #fff;
}

.service_content a:hover {
    text-decoration: none;
}

.primo_parts a img {
    width: 15.625rem;
}

.primo_parts .service_content h5 {
    margin-top: 1.25rem;
    font-size: 1.5625rem;
    color: #33353b;
}

.primo_parts .service_content p {
    font-size: 1.25rem;
    color: #5f5f5f;
}

.primo_parts .service_content a {
    font-size: 1.25rem;
    color: #5f5f5f;
}

.primo_service .service_content h5 {
    margin-top: 1.25rem;
    font-size: 1.5625rem;
    color: #33353b;
}

.primo_service .service_content p {
    font-size: 1.25rem;
    color: #5f5f5f;
}

.primo_service .service_content a {
    font-size: 1.25rem;
    color: #5f5f5f;
}

/* END MAIN ================================= */

/* ======================================= */
/* ======================================= */

/* ================================= START FOOTER */
footer {
    margin-top: 7.5rem;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.0625rem;
    background-color: #484848;
    top: 5.625rem;
}

footer .main_footer_content h5 {
    margin-bottom: 7rem;
    font-size: 1.5625rem;
    color: #484848;
}

footer .main_footer_content .sLinks ul li a {
    font-size: 2.1875rem;
    color: #484848;
    text-transform: uppercase;
}

footer .demandez_vous {
    margin-top: -0.9375rem;
}

footer .demandez_vous>div:first-of-type {
    margin-bottom: 3.75rem;
}

footer .demandez_vous p {
    margin-bottom: 0;
    font-size: 18px;
    color: #484848;
    line-height: 1.2;
}

footer .demandez_vous strong {
    font-size: 18px;
    color: #d6181e;
}

footer .demandez_vous input.envoyer {
    background-color: #d6181e;
    outline: none;
    color: #fff;
    padding: 0.1875rem 0.625rem;
    cursor: pointer;
}

footer #msg,
#msg2,
#msg3,
#msg4,
#msg5 {
    font-size: 13px;
    display: none;
}

.footer_input {
    border: none;
    background-color: transparent;
    border-bottom: 0.0625rem solid #484848;
    padding: 0;
    border-radius: 0;
    width: 19.375rem;
    text-transform: none;
}

.footer_input:focus {
    background-color: transparent;
    border-color: gray;
}

label.error {
    color: red;
    font-size: 12px;
    margin-bottom: 0;
}

footer textarea.error {
    color: #495057 !important;
    font-size: 1rem !important;
}

footer textarea {
    color: #495057 !important;
}

footer .copyright {
    border-top: 0.0625rem solid #484848;
    margin-top: 3.75rem;
}

footer .copyright .copyright_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.875rem 0;
}

footer .copyright .copyright_content p {
    font-size: 1.25rem;
    color: #484848;
}

footer .copyright .copyright_content a {
    font-size: 1.25rem;
    color: #484848;
}

/* ================================= END FOOTER */

/* ======================================= */
/* ======================================= */

/* START ABOUT =============================== */

.about .header_content_right .my_slider {
    background-image: url(../images/about_bg.jpg);
    background-position: left;
}

.about .amical .amical_desc {
    padding: 95px 50px 80px 50px;
}

.about .amical .amical_desc div {
    width: 90%;
    margin-bottom: 35px;
}

.about .amical .amical_desc h4 {
    font-weight: 700;
    font-size: 27px;
}

.about .amical .amical_desc p {
    font-size: 23px;
    line-height: 1.2;
    color: #757575;
}

/* END ABOUT ================================= */

/* ======================================= */
/* ======================================= */

/* ============================= START CONTACT */

.contact .header_content_right .my_slider {
    background-image: url(../images/contact_bg.jpg);
    background-position: left;
}

.contact .send_us {
    margin: 100px 0;
}

.contact .send_us_left {
    width: 75%;
}

.contact .send_us_left h4 {
    color: #d6191f;
    font-size: 33px;
    font-weight: 600;
    text-transform: none;
}

.contact .send_us ul {
    margin-top: 50px;
}

.contact .send_us ul li {
    margin-bottom: 5px;
}

.contact .send_us ul li a {
    color: #757575;
    font-size: 30px;
    font-weight: 700;
}

.contact .send_us ul li:hover a,
.contact .send_us ul li:hover i {
    color: #d6191f;
}

.contact .send_us ul li a i {
    color: #484848;
    margin-right: 20px;
    font-size: 40px;
    vertical-align: text-bottom;
}

.contact .send_us ul li:first-child i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.contact .send_us .send_us_form {
    margin-top: 75px;
}

.contact .send_us .send_us_form .form-group {
    margin-bottom: 5px;
}

.my_input {
    border: none;
    border-radius: 0;
    font-size: 20px;
    background-color: #e8e8e8;
    text-transform: none;
}

.my_input:focus {
    background-color: #e8e8e8;
}

.contact .send_us .send_us_form textarea {
    color: #495057;
    padding: 10px;
}

.contact .send_us button.my_btn:hover {
    color: #d6181e;
}

.contact .send_us .send_us_right {
    width: 480px;
    margin-left: auto;
    height: 100%;
}

.contact .send_us .send_us_right h5 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bolder;
}

.contact .send_us .send_us_right .big_ring {
    width: 100%;
    height: 450px;
    margin: 25px 0;
}

.contact .send_us .send_us_right .big_ring .contact_map {
    width: 100%;
    height: 100%;
}

.contact .send_us .send_us_right h5:last-of-type {
    color: #757575;
    font-size: 25px;
    text-transform: none;
}

/* ============================= END CONTACT */

/* ===================================== */
/* ===================================== */

/* START RENDEZ VOUS ======================== */

.rendez_vous .header_content_right .my_slider {
    background-image: url(../images/about_bg.jpg);
    background-position: left;
}

.rendez_vous .rendez_vous_section {
    height: auto;
    margin-bottom: 60px;
}

.rendez_vous .rendez_vous_section .rendezVous_form form {
    position: relative;
    padding-top: 100px;
}

.rendez_vous .rendez_vous_section .rendezVous_form form .alert {
    position: absolute;
    width: 100%;
    top: 30px;
}

/* style the datepiker plugin */
.rendez_vous .rendez_vous_section .rendezVous_form .lightpick--inlined,
.rendez_vous .rendez_vous_section .rendezVous_form .lightpick__month {
    width: 100%;
    border-radius: 0 !important;
}

.rendez_vous .rendez_vous_section .rendezVous_form .lightpick--inlined {
    padding: 0;
}

.rendez_vous .rendez_vous_section .datepicker_section {
    position: relative;
    height: 100%;
    width: 85% !important;
}

.rendez_vous .rendez_vous_section .datepicker_section #select_date {
    width: 100%;
}

#ui-datepicker-div {
    display: block !important;
    width: 35rem !important;
}

/* ========================== CUSTOM DATEPICKER START ============================== */

.datepicker {
    margin: 50px 0;
}

.ui-datepicker {
    width: 100%;
}

.ui-datepicker .ui-datepicker-header {
    padding: 0;
}

/* ========================== CUSTOM DATEPICKER END ============================== */

.rendez_vous .rendez_vous_section .rendezVous_form {
    margin-left: auto;
}

.rendez_vous .rendez_vous_section .rendezVous_form .form-group {
    margin-bottom: 7px;
}

.rendez_vous .rendez_vous_section .rendezVous_form h5 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.rendez_vous .rendez_vous_section .rendezVous_form button.my_btn:hover {
    color: #d6181e;
}

.rendez_vous .merci_msg {
    margin-top: 40px;
    font-size: 25px;
    font-weight: 700;
}

/* END  RENDEZ VOUS ======================== */

/* =========================================== */
/* =========================================== */

/* START OCCASION ================================*/

.occasion .header_content_right .my_slider {
    background-image: url(../images/vehiculeA_bg.jpg);
    background-position-y: bottom;
}

.occasion main {
    background-color: #e7e7e7;
}

#loading {
    width: 100%;
    height: 150px;
    background-image: url(../images/loader.gif);
    background-repeat: no-repeat;
    background-position: center;
}

.occasion .my_filter_car {
    width: 85%;
    margin: 50px auto 80px;
}

.occasion .my_filter_car .square_div_filter {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 7px;
}

.occasion .my_filter_car .square_div_filter .check_all {
    margin-right: 30px;
    margin-bottom: 2px;
    padding: 6px 15px;
    background-color: #051ab3;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: none;
    /*will display when check checkbox inbox*/
}

.occasion .my_filter_car .square_div_filter>div {
    width: 120px;
    border: 2px solid #051ab3;
    margin: 0 7px;
    padding: 5px 8px;
    font-size: 15px;
    color: #d6181e;
    font-weight: bold;
    overflow: hidden;
}

.occasion .my_filter_car .square_div_filter>div span {
    color: #051ab3;
    float: right;
    cursor: pointer;
}

.occasion .my_filter_car .filter_title {
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.occasion .my_filter_car .filter_title span i {
    font-size: 35px;
    vertical-align: bottom;
    margin-right: 5px;
}

.occasion .my_filter_car .list-group {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0 20px;
}

.occasion .my_filter_car .list-group-item {
    border: none;
    padding: 0;
    margin-bottom: 8px;
    background-color: transparent;
}

.occasion .my_filter_car p#price_show {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.occasion .my_filter_car h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0;
    font-size: 20px;
    position: relative;
    cursor: pointer;
}

.occasion .my_filter_car h3:after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 0;
    font-size: 15px;
    font-weight: bold;
    color: inherit;
}

.occasion .my_filter_car h3[aria-expanded="true"]:after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.occasion .my_filter_car label {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
    cursor: pointer;
}

.occasion .my_filter_car input[type="checkbox"] {
    position: relative;
    opacity: 1;
    width: 16px;
    margin-right: 10px;
}

.occasion .my_filter_car input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 2px solid #d6181e;
    cursor: pointer;
}

.occasion .my_filter_car input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #d6181e;
    opacity: 0;
    -webkit-transform: translateX(-14px);
    -ms-transform: translateX(-14px);
    transform: translateX(-14px);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.occasion .my_filter_car input[type="checkbox"]:checked:after {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.ui-widget.ui-widget-content {
    width: 90%;
    height: 7px;
    margin: 0 auto 25px;
    border: 1px solid #d6181e;
    border-radius: 0;
}

.ui-slider-handle .ui-corner-all .ui-state-default {
    left: -4% !important;
}

.ui-slider-horizontal .ui-slider-handle {
    background-color: #d6181e !important;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: -10px;
}

.ui-slider-horizontal .ui-slider-range {
    background-color: #d6181e !important;
}

.occasion footer {
    margin-top: 70px;
}

/* END OCCASION ================================*/

/* =========================================== */
/* =========================================== */

/* START VEHICLE C ================================*/

.vehicule_c .header_content_right .my_slider {
    background-image: url(../images/vehiculeA_bg.jpg);
    background-position-y: bottom;
}

.vehicule_c .single_car_details {
    width: 100%;
    height: auto;
    background-color: #f6f6f6;
    padding-bottom: 50px;
}

.vehicule_c .single_car_desc {
    padding: 1px;
}

.vehicule_c .single_car_desc .car_title {
    margin-top: 45px;
}

.vehicule_c .single_car_desc .car_title h5 {
    font-size: 25px;
    font-weight: 600;
    color: #2c2c2c;
}

.vehicule_c .single_car_desc .car_title h5 a {
    font-size: inherit;
    color: inherit;
}

.vehicule_c .single_car_desc .car_title ul li {
    display: inline-block;
    font-size: 30px;
    margin-right: 2px;
    font-weight: bold;
    text-transform: none;
    color: #2c2c2c;
}

.vehicule_c .single_car_desc .car_title ul li span {
    text-transform: uppercase;
    font-size: 25px;
}

.vehicule_c .car_showcase {
    height: 500px;
}

.vehicule_c .car_showcase .master_car {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.vehicule_c .car_showcase .master_car .master_car_img {
    width: 80%;
    position: relative;
}

.vehicule_c .car_showcase .master_car .master_car_img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/* add classs fade in in order to show the img with fade in when click on every left small img */
@-webkit-keyframes fadeIn {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes fadeIn {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.fadeIn {
    -webkit-animation: fadeIn .5s forwards;
    animation: fadeIn .5s forwards;
}

.vehicule_c .car_showcase .master_car .master_car_img .img_content {
    position: absolute;
    bottom: 0;
}

.vehicule_c .car_showcase .master_car .master_car_img .img_content h6 {
    font-size: 25px;
    background-color: #fff;
    padding: 2px 20px;
    margin-bottom: 0;
    display: inline-block;
}

.vehicule_c .car_showcase .master_car .master_car_img .img_content p {
    background-color: #d6181e;
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
    padding: 7px 20px;
}

.vehicule_c .car_showcase .master_car .right_small_imgs {
    width: 20%;
}

.vehicule_c .car_showcase .master_car .right_small_imgs .small_img {
    height: 25%;
    border: 5px solid #d6181e;
    border-bottom: none;
}

.vehicule_c .car_showcase .master_car .right_small_imgs .small_img:last-child {
    border-bottom: 5px solid #d6181e;
}

.vehicule_c .car_showcase .master_car .right_small_imgs .small_img img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.vehicule_c .car_showcase .car_specifications_form {
    background-color: #051ab3;
    padding: 20px;
    width: 90%;
    height: 100%;
    margin-left: auto;
}

.vehicule_c .car_showcase .car_specifications_form label.error {
    color: #fff !important;
    margin-bottom: 0;
}

.vehicule_c .car_showcase .car_specifications_form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3px;
}

.vehicule_c .car_showcase .car_specifications_form .form-group>div {
    width: 49%;
}

.vehicule_c .car_showcase .car_specifications_form input {
    border: none;
    border-radius: 0;
    margin-bottom: 12px;
    padding: 12px 10px;
}

.vehicule_c .car_showcase .car_specifications_form input.error,
.vehicule_c .car_showcase .car_specifications_form textarea.error {
    color: #495057 !important;
    font-size: 15px;
}

.vehicule_c .car_showcase .car_specifications_form textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    color: #495057;
    padding: 10px;
}

.vehicule_c .car_more_details {
    height: auto;
    margin-top: 50px;
}

.vehicule_c .car_more_details .specifications_list h6 {
    font-size: 25px;
    color: #051ab3;
}

.vehicule_c .car_more_details .specifications_list ul li {
    font-size: 20px;
    font-weight: 600;
    color: #484848;
    margin-bottom: 5px;
}

.vehicule_c .car_more_details .specifications_list ul li span {
    font-weight: lighter;
}

.vehicule_c .car_more_details .characteristics h3 {
    color: #051ab3;
    margin-bottom: 30px;
}

.vehicule_c .car_more_details .characteristics td {
    color: #484848;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
}

.vehicule_c .car_more_details .characteristics td span {
    font-weight: lighter;
}

table * {
    white-space: nowrap;
}

/* END VEHICLE C ================================*/

/* ============================== start PAGE SEARCH */

.page_search .product_exists {
    width: 80%;
    height: auto;
    background-color: #f6f6f6;
    margin: 50px auto 100px;
    padding: 40px 0;
}

.my_new_card {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 220px;
    -webkit-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
}

.my_new_card .my_new_card_left {
    width: 30%;
    padding: 5px;
}

.my_new_card .my_new_card_left a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.my_new_card .my_new_card_left img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.my_new_card .my_new_card_right {
    width: 70%;
    padding: 15px 0 0 15px;
}

.my_new_card .my_new_card_right .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}

.my_new_card .my_new_card_right .content h4,
.my_new_card .my_new_card_right .content h5 {
    font-weight: bold;
}

.my_new_card .my_new_card_right .content>div:last-child a {
    -webkit-transform: translateX(108%);
    -ms-transform: translateX(108%);
    transform: translateX(108%);
}

.my_new_card:hover .content>div:last-child a {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.my_new_card:hover .my_new_card_left img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.my_new_card .my_new_card_right h6 {
    margin-top: 15px;
    font-weight: bold;
}

.my_new_card .my_new_card_right p {
    font-size: 12px;
    font-weight: 600;
    color: gray;
}

.my_new_card .my_new_card_right span {
    display: block;
    text-align: center;
    background-color: #d6181e;
    color: #fff;
    font-size: 20px;
}

.my_new_card .my_new_card_right a {
    display: block;
    background-color: #007bff;
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
    padding: 5px 10px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.my_new_card .my_new_card_right a:hover {
    background-color: #33353b;
}

.page_search .product_exists .empty_search {
    width: 100%;
    text-align: center;
}

.page_search .product_exists .empty_search img {
    display: block;
    width: 120px;
    margin: auto;
}

.page_search .product_exists .empty_search span {
    font-size: 20px;
}

.page_search .product_exists .empty_search p {
    font-size: 15px;
    color: grey;
}

.page_search .product_exists p.exists_title {
    font-size: 25px;
}

.page_search .product_exists p.exists_title span,
.page_search .product_exists p.exists_title strong {
    color: #d6181e;
    font-weight: bold;
}

/* register */
.register,
.login {
    background-color: #f6f6f6;
}

.admin_nav {
    background-color: #008489;
    height: 100px;
}

.admin_nav .my_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.admin_nav h2 {
    font-size: 35px;
    margin-bottom: 0;
    color: #fff;
}

.admin_nav img {
    width: 150px;
}

.admin_registration {
    width: 35%;
    margin: 40px auto 100px;
    background-color: #fff;
    padding: 30px;
}

.admin_registration .card .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding: 10px 0;
}

.admin_registration .card .content h5 {
    margin-bottom: 0;
}

.admin_registration .card .content h5 span {
    font-weight: bold;
    color: #d6181e;
}

.admin_registration .message {
    background: red;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    padding: 10px 0;
}

.admin_registration h4 {
    text-align: center;
    font-size: 35px;
    color: #d6181e;
    font-weight: bold;
    color: #d6181e;
    margin-bottom: 20px;
}

.admin_registration form {
    margin-top: 15px;
}

.admin_registration input[type=file] {
    background-color: #e8e8e8;
    width: 100%;
    padding: 9px 0;
}

.admin_registration select {
    font-size: 20px !important;
}

.admin_registration button.admin_btn {
    background-color: #051ab3;
    color: #fff;
    display: block;
    width: 100%;
    padding: 5px 0;
    margin: 15px 0;
    text-transform: capitalize;
    font-size: 20px;
    cursor: pointer;
}

.admin_registration a {
    color: #d6181e;
}

.admin_nav a.dropdown-toggle {
    color: #fff !important;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.admin_nav a.dropdown-toggle div {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 50%;
    position: relative;
}

.admin_nav span.badge_msg {
    position: absolute;
    top: -10px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-color: #d6181e;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 15px;
    border-radius: 50%;
    font-weight: bold;
}

.admin_nav .right_part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.admin_nav ul {
    width: 92%;
    margin: 20px auto;
}

.admin_nav ul li {
    display: inline-block;
    position: relative;
}

.admin_nav ul li a {
    color: #000;
    font-size: 20px;
}

.admin_nav ul li a.active {
    color: #d6181e !important;
}

.admin_nav a.dropdown-toggle div img.admin_foto {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.admin_nav .dropdown-menu {
    background-color: #008489;
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
    top: calc(100% + 6px);
    text-align: center;
    cursor: default;
}

.admin_nav .dropdown-menu a {
    font-size: 18px;
    color: #fff !important;
}

.admin_nav .dropdown-menu a:hover {
    background-color: #d6181e;
}

.showUserMsg .admin_registration .content h5 {
    margin-bottom: 0 !important;
    padding: 10px 0;
}

/* style the tabel of car display */

.add_new_car {
    width: 100%;
    padding: 20px 0;
    margin-top: 25px;
}

.add_car_form {
    margin: 110px 0;
}

.add_car_form input[type=file] {
    cursor: pointer;
}

.add_car_form>div:last-of-type button {
    background-color: #007bff;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    width: 25rem;
    margin-top: 50px;
}

.add_car_form>div:last-of-type button:hover {
    background-color: #333;
}

.add_new_car button {
    border: none;
    text-transform: capitalize;
    background-color: #d6181e;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.display_car {
    margin-bottom: 150px;
}

.display_car .car_table {
    width: 100%;
    text-align: center;
}

.display_car .car_table thead {
    background-color: #d6181e;
    color: #fff;
}

.display_car .car_table th {
    padding: 3px;
    font-size: 15px;
}

.display_car .car_table td {
    font-size: 15px;
    padding: 0;
    vertical-align: middle;
    white-space: initial;
}

.display_car .car_table td img {
    width: 100px;
    height: auto;
    max-width: 100%;
}

.display_car .car_table td a.small_btn {
    display: block;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    margin: 7px 0;
    font-size: 15px;
    background-color: #27ae60;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 15px;
}

.display_car .car_table td a.small_btn:hover {
    background-color: #333 !important;
}

.display_car .no_car {
    background-color: #eee;
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
}

/* style the input type file */
label.inputLabel {
    background-color: #d6181e;
    margin-bottom: 0;
    position: relative;
    width: 18rem;
    height: 40px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 15px;
    border-radius: 4px;
}

label.inputLabel:first-of-type {
    background-color: #051ab3;
}

label.inputLabel input[type=file] {
    width: 20%;
    opacity: 0;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

label.inputLabel span {
    cursor: pointer;
    font-size: 16px;
    color: #fff;
}

/* to avoid the default padding when open the modal */
.view_car,
.footer_msgs {
    padding: 0 !important;
}

.view_car .admin_registration {
    width: 50%;
}

.view_car .edit_view_form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    background-color: rgba(0, 0, 0, .5);
    padding: 5px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.view_car .edit_view_form form {
    width: 65%;
    border-radius: 4px;
    background-color: #fff;
    padding: 20px;
}

.view_car .card {
    margin: auto !important;
}

.view_car .card .all_image_cars {
    width: 100%;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.view_car .card .all_image_cars>div {
    width: 25%;
    height: 100%;
}

.view_car .card .all_image_cars>div img {
    width: 100%;
    height: 100%;
    padding: 0;
}

.view_car .card a.btn {
    background-color: #007bff;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    width: 100%;
    margin-top: 20px;
}

.view_car .card a.btn:hover {
    background-color: #333;
}

.update-btn,
.option-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #2980b9;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 0;
}

.option-btn {
    background-color: #ffa500;
}

/* ======================== */
.edit_car .edit_car_form {
    margin: 100px 0;
}

.edit_car input.input_submit {
    background-color: #007bff;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    width: 25rem;
    margin-top: 50px;
}

.edit_car input.input_submit:hover {
    background-color: #333;
}

.display_car {
    overflow-x: auto;
    padding-bottom: 25px;
}

.display_car::-webkit-scrollbar {
    height: 5px;
    background-color: #000;
}

.display_car::-webkit-scrollbar-thumb {
    border-radius: 5px;
}

table.dataTable thead .sorting {
    background-image: none;
}

table.dataTable thead .sorting_asc {
    background-image: none;
}

table.dataTable {
    border: none;
}

table.dataTable.no-footer {
    border-bottom: none;
}

.dataTable>tbody td {
    background-color: #eee;
}

table.dataTable>tbody tr.odd td {
    background-color: #fff;
}

.my_modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: red;
    display: none;
}

.open_modal {
    display: block;
}

.swiper-container {
    margin-bottom: 50px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 23%;
    left: 90%;
}

.swiper-button-prev {
    left: 85%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 30px;
    font-weight: bold;
}

.swiper-slide .my_new_slider {
    width: 100%;
    height: 270px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.swiper-slide .my_new_slider .slider_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.swiper-slide .my_new_slider .my_new_content {
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, .3);
    padding: 0 10px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.swiper-slide .my_new_slider .my_new_content p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.swiper-slide .my_new_slider .my_new_content span {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.swiper-slide .my_new_slider .my_new_content a {
    display: block;
    background-color: #007bff;
    color: #fff;
    padding: 2px 7px;
    font-size: 12px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.swiper-slide .my_new_slider .my_new_content a:hover {
    background-color: #33353b;
}

.swiper-slide .my_new_slider:hover .my_new_content {
    bottom: 0;
}


