@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 {
    --blue: #2596cf;
    --kBlack: #000000;
    --kWhite: #ffffff;
    --kOrange: #FF6F24;
    --kOrangeHover: #ff5900;
    --kGray: #f2f2f2;
    --kBgMenu: #03050B;
    --kBd: #dedede;
}

* {
    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: var(--kBlack);
}

body {
    background: #f2f2f2;
}

h1, h2 {
    font-family: 'neoSansIntelBold', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 24px;
    color: var(--kOrange);
}

h4 {
    font-family: 'neoSansIntelBold', sans-serif;
    font-size: 16px;
}

.clear-fix {
    clear: both;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--blue);
}

ul li {
    list-style: none;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
}

table {
    width: 100%;
}

.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: var(--black);
}

.car:hover {
    color: var(--red) !important;
}

.price {
    font-family: 'neoSansIntelBold', sans-serif;
    color: var(--kOrange);
    font-weight: bold;
    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: #333;
    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;
}

.btn-car {
    text-align: center;
    margin-bottom: 30px;
}

.btn-car a {
    display: inline-block;
    padding: 10px 100px;
    text-align: center;
    text-transform: uppercase;
    color: var(--kWhite);
    border-radius: 4px;
    cursor: pointer;
    background: var(--kOrange);
    font-weight: bold;
    margin-top: 5px;
}

.btn-car a:hover {
    background: var(--kOrangeHover);
}


/*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(--kOrange);
}

.breadcrumb .fa-angle-right {
    margin: 0 3px;
    color: var(--gray3);
}

/*nút gọi điện*/
.contact-box {
    position: fixed;
    bottom: 25px;
    z-index: 100;
    right: 5px;
}

@keyframes img-phone {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.kh-phone {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

@keyframes zoomEffect {
    0% {
        transform: scale(.9)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-box {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    background-color: rgba(255, 0, 0, .9);
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: zoomEffect 1.3s infinite;
    animation: zoomEffect 1.3s infinite;
    opacity: .7;
    box-shadow: 0 0 0 0 #4971fe;
}

.img-phone {
    background-color: red;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-animation: img-phone 1s infinite ease-in-out;
    animation: img-phone 1s infinite ease-in-out;
}

.img-phone a {
    display: block;
    line-height: 37px;
}

.img-phone img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/*chat zalo*/
.kh-zalo {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.kh-zalo .phone-box {
    box-shadow: 0 0 0 0 #0091ff;
    background-color: rgba(0, 145, 255, .9);
}

.kh-zalo .img-phone {
    background-color: #0091ff;
}

/*chat messenger fb*/
.kh-fbm {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.kh-fbm .phone-box {
    box-shadow: 0 0 0 0 #126bd1;
    background-color: rgba(18, 107, 209, .9);
}

.kh-fbm .img-phone {
    background-color: #126bd1;
}

.kh-fbm .img-phone img {
    max-height: 45px;
    max-width: 40px;
}

@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: 670px) {
    .thongtinphu {
        min-height: 57px;
    }
}

@media only screen and (max-width: 576px) {
    h2 {
        font-size: 16px;
    }

    .breadcrumb {
        padding: 10px 10px !important;
    }

    .thongtinphu {
        min-height: auto;
    }

    .btn-car {
        margin-bottom: 20px;
    }

    .btn-car a {
        padding: 8px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .thongtinphu {
        min-height: 57px;
    }
}

@media only screen and (max-width: 320px) {
    .thongtinphu {
        min-height: auto;
    }
}



