@font-face {
    font-family: neoSansIntel;
    src: url(../font/UTM_Neo_Sans_Intel.ttf);
}

@font-face {
    font-family: neoSansIntelBold;
    src: url(../font/UTM_Neo_Sans_IntelBold.ttf);
}

:root {
    --red: #e60017;
    --redHover: #b80011;
    --blue: #2596cf;
    --white: #ffffff;
    --gray: #B9B9B9;
    --gray2: #E1E1E1;
    --gray3: #999999;
    --gray4: #F2F2F2;
    --gray5: #333333;
    --gray6: #DADBDD;
    --black: #000000;
    --bgMenu: #1D1D1D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    line-height: 22px;
    font-size: 14px;
    font-family: 'UTM_Neo_Sans_Intel', sans-serif;
    color: #e8eddf;
}

body {
    background: #0c0c0c;
}

h2 {
    font-family: 'neoSansIntelBold', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 24px;
}

h4 {
    font-family: 'neoSansIntelBold', sans-serif;
    font-size: 16px;

}

.clear-fix {
    clear: both;
}

a {
    outline: none;
    text-decoration: none;

}

ul li {
    list-style: none;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.light {
    width: 100%;
    margin: 5px 0;
    position: relative;
    height: 3px;
}

.light:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 25%;
    background: var(--red);
}

.loading-img {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background: rgba(33, 33, 33, .5);
    display: none;
}

.box-loading {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car {
    font-family: 'neoSansIntelBold', sans-serif;
    color: #e8eddf;
}

.car:hover {

    color: var(--red) !important;
}

.price {
    font-family: 'neoSansIntelBold', sans-serif;
    color: var(--red);
    font-size: 1.2em;
}

.news-title {
    font-family: 'neoSansIntelBold', sans-serif;

    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
}

.thongtinphu {
    margin: 0.5em 0;
    color: #fff;
    border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
    padding: 0.4em 0;
}

#wrapper {
    padding: 20px 0;
}

/*nút gọi điện*/

.call-me {
    position: fixed;
    bottom: 30px;
    left: 30px;
}

.call-me a {
    display: flex;
    align-items: center;
}

.call-me img {
    width: 55px;
    z-index: 10;
}

.call-me span {
    background: #EA0000;
    padding: 5px 10px;
    border-radius: 4px 30px 30px 4px;
    color: var(--white);
    font-weight: bold;
    position: relative;
    left: -5px;
}

/*phân trang*/

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.pagination li a {
    display: inline-block;
    text-align: center;
    color: var(--black);
    width: 35px;
    line-height: 35px;
    margin: 0 5px 0 0;
    background: var(--gray);
    border-radius: 4px;
}

.pagination li a:hover {
    background: var(--red) !important;
}

.active-pag {
    background: var(--red) !important;
    font-weight: bold;
}

/*banner ảnh quảng cáo*/

.advertisement-img {
    display: inline-block;
    margin-top: 5px;
}

/*breadcrumb*/

.breadcrumb {
    padding: 10px 0;
    text-transform: capitalize;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb .fa-angle-right {
    margin: 0 3px;
    color: var(--gray3);
}

@media only screen and (max-width: 1200px) {
    .container {
        width: 100%;
    }

    /*breadcrumb*/
    .breadcrumb {
        padding: 10px 15px;
    }
}

@media only screen and (max-width: 1024px) {
    h2 {
        font-size: 18px;
    }

    .light:after {
        width: 15%;
    }
}

@media only screen and (max-width: 768px) {
    h2 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    h2 {
        font-size: 16px;
    }

    .breadcrumb {
        padding: 10px 10px;
    }
}



