html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
    text-decoration: blink !important;
}

a {
    color: #F1210F;
    font-size: 16px;
    line-height: 24px;
}

a:hover {
    text-decoration: blink !important;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.fa {
    display: inline-block;
    font: normal normal normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* scroll animated */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}


/*  */

body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    background: #FFFFFF;
}

#wrapper {
    overflow-x: hidden;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
}

.remove_margin {
    margin: 0 -15px;
}

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

header {
    width: 100%;
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.logo {
    position: relative;
    left: 0;
    top: 15px;
    width: auto;
}

.logo img {
    position: relative;
    width: auto;
    height: 46px;
}

.menu_header {
    width: max-content;
    position: absolute;
    top: 10px;
    left: 200px;
}

.menu_header .nav_menu {
    width: max-content;
    margin: 0;
    padding: 0;
    position: relative;
}

.menu_header .nav_menu ul {
    position: relative;
    list-style-type: none;
    width: max-content;
    margin: 0;
    padding: 0;
}

.menu_header .nav_menu ul li {
    position: relative;
    width: max-content;
    float: left;
    padding: 15px;
}

.menu_header .nav_menu ul li a {
    text-transform: uppercase;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    transition: all 0.3s;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.menu_header .nav_menu ul li:hover a {
    color: #F1210F;
}

.menu_header .nav_menu ul li:hover a:before {
    right: 0;
}

.menu_header .nav_menu ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #C43D40;
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.box_hotline_header {
    width: 210px;
    height: 42px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 15px;
}

.box_hotline_header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 210px;
    height: 42px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #FFFFFF;
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
}

.box_hotline_header a {
    position: relative;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 42px;
    color: #FFFFFF;
}

.box_hotline_header a::before {
    content: url(../images/hotline_header.svg);
    position: relative;
    padding-right: 10px;
    top: 3px;
}

.banner_home {
    width: 100%;
    height: auto;
    position: relative;
}

.banner_home img {
    width: 100%;
}


/* section_about_us */

.section_about_us {
    display: none;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    clear: both;
    background: #0C0C0C;
    background-image: url(../images/bg_img_about_us.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right top;
}

.section_about_us::before {
    content: 'GTX AUTO CARE';
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 100px;
    line-height: 76px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 9;
}

.box_content_about_us {
    width: 58%;
    height: 100%;
    float: left;
    position: relative;
}

.box_content_about_us::before {
    content: '';
    width: 120%;
    height: 120%;
    left: -30%;
    top: 0;
    position: absolute;
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
    background: #0C0C0C;
}

.content_about_us {
    width: 550px;
    height: max-content;
    position: absolute;
    top: 0;
    left: auto;
    right: 120px;
    bottom: 0;
    margin: auto 0;
}

.title_about_us {
    width: 100%;
    padding-bottom: 25px;
    position: relative;
}

.title_about_us::before {
    content: url(../images/line_title_left.svg);
    position: absolute;
    left: 0;
    bottom: 0;
}

.title_about_us h1 {
    margin: 0;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 35px;
    line-height: 45px;
    color: #FFFFFF;
}

.title_about_us h2 {
    margin: 0;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 35px;
    line-height: 45px;
    color: #FFFFFF;
}

.des_about_us {
    position: relative;
    clear: both;
    margin: 25px 0 50px;
    width: 420px;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.des_about_us p {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.box_view_more {
    float: left;
    position: relative;
    text-align: center;
    width: 200px;
    height: 44px;
}

.box_view_more::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
    width: 200px;
    height: 44px;
    background: linear-gradient(90deg, #B31721 0%, #6B0007 81.15%);
}

.box_view_more a {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
}

.box_play_video {
    float: left;
    position: relative;
    text-align: center;
    width: 180px;
    height: 44px;
}

.box_play_video a {
    position: relative;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}


/* Icon Wobble Horizontal */

@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.hvr-icon-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-icon-wobble-horizontal .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hvr-icon-wobble-horizontal:hover .hvr-icon,
.hvr-icon-wobble-horizontal:focus .hvr-icon,
.hvr-icon-wobble-horizontal:active .hvr-icon {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.hvr-icon-wobble-horizontal .fa-arrow-right::before {
    content: url(../images/more.svg);
    padding-left: 5px;
}


/* Icon Pulse */

@-webkit-keyframes hvr-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes hvr-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.hvr-icon-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-pulse .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-icon-pulse:hover .hvr-icon,
.hvr-icon-pulse:focus .hvr-icon,
.hvr-icon-pulse:active .hvr-icon {
    -webkit-animation-name: hvr-icon-pulse;
    animation-name: hvr-icon-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.hvr-icon-pulse .fa-home::before {
    content: url(../images/play_video.svg);
    position: relative;
    padding-right: 6px;
    top: 5px;
}


/* box_img_about_us  */

.box_img_about_us {
    width: 42%;
    height: 100%;
    float: left;
    position: relative;
}

.box_img_about_us .img_about_us {
    width: 800px;
    height: 400px;
    position: absolute;
    margin: auto 0;
    left: -220px;
    right: 0;
    top: 10%;
    bottom: 0;
}

.box_img_about_us .img_about_us img {
    width: 100%;
}

.scroll {
    position: absolute;
    width: max-content;
    bottom: 0px;
    z-index: 10;
    left: auto;
    right: 15px;
    margin: 0;
    display: block;
}

.scroll .text_scroll {
    position: absolute;
    width: max-content;
    height: max-content;
    bottom: 80px;
    right: -20px;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: rotate(-90deg);
}

.scroll .text_scroll::before {
    content: '';
    position: absolute;
    top: 7px;
    right: -60px;
    width: 50px;
    height: 1px;
    background: #FFFFFF;
}

.scroll .mouse {
    position: absolute;
    bottom: 250px;
    right: 47px;
}

.scroll .mouse::before {
    display: block;
    position: absolute;
    top: -2px;
    left: 0;
    width: 24px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    content: "";
}

.scroll .mouse::after {
    display: block;
    position: absolute;
    top: 9px;
    left: 11px;
    width: 2px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 1px;
    content: "";
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: 2s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        height: 8px;
    }
    20% {
        opacity: 1;
        height: 8px;
    }
    30% {
        transform: translateY(0);
        opacity: 1;
        height: 19px;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translateY(19px);
        opacity: 0;
        height: 0;
    }
    81% {
        transform: translateY(0);
        opacity: 0;
        height: 8px;
    }
    100% {
        opacity: 1;
        height: 8px;
    }
}


/*  section_service */

.section_service {
    width: 100%;
    position: relative;
    clear: both;
    padding: 50px 0;
    background: #2C2B31 url(../images/bg_service.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
}

.section_service::after {
    content: 'SERVICES';
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 100px;
    line-height: 76px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    right: 10px;
}

.title_services {
    position: relative;
    width: max-content;
    float: right;
    clear: both;
}

.title_services::before {
    content: url(../images/line_title_right.svg);
    position: absolute;
    right: 270px;
    top: 5px;
}

.title_services h2 {
    position: relative;
    margin: 0;
    margin-bottom: 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    text-align: right;
    color: #FFFFFF;
}

.slider_service {
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 0 0 70px;
    clear: both;
}

.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    padding: 0;
    font-size: 0;
    line-height: 0;
    top: auto;
    bottom: 0;
    z-index: 9;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: none;
}

.slick-next:before,
.slick-prev:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0;
    line-height: 0;
}

.slick-prev {
    left: calc(50% - 55px);
    position: absolute;
}

.slick-next {
    right: calc(50% - 55px);
    position: absolute;
}

.slick-prev:before {
    content: url(../images/prev.svg);
    background-repeat: no-repeat;
}

.slick-next:before {
    content: url(../images/next.svg);
    background-repeat: no-repeat;
}

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slider {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    height: 100%;
    padding: 0;
}

.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide {
    display: block
}

.box_service {
    width: 100%;
    padding: 0;
    position: relative;
}

.box_service .service {
    width: 100%;
    position: relative;
}

.box_service .service .img_service {
    width: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
    position: relative;
}

.box_service .service .img_service::before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url(../images/bg_img_service.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.box_service .service .img_service::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url(../images/bg_more_service.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 10;
    transition: all 0.1s;
}

.box_service .service .img_service .hvr-icon-wobble-horizontal {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 44px;
    opacity: 0;
    z-index: 12;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
    background: url(../images/button_send_mail.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.1s;
}

.box_service:hover .service .img_service::after {
    opacity: 1;
}

.box_service:hover .service .img_service .hvr-icon-wobble-horizontal {
    opacity: 1;
}

.box_service .service .img_service img {
    width: 100%;
    position: relative;
}

.box_service .service .name_service {
    width: 100%;
    padding: 20px 20px 20px 0;
    position: relative;
    text-align: center;
}

.box_service .service .name_service strong {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    text-transform: uppercase;
}


/* section_product */

.section_product {
    width: 100%;
    position: relative;
    clear: both;
    padding: 60px 0;
    background: #0C0C0C;
}

.section_product::after {
    content: 'PRODUCT';
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 100px;
    line-height: 76px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0px;
}

.logo_products {
    width: 200px;
    position: relative;
    margin: 0px auto 15px;
}

.logo_products img {
    width: 100%;
    display: block;
}

.title_products {
    width: max-content;
    clear: both;
    position: relative;
}

.title_products.center {
    text-align: center;
}

.title_products.center::after {
    content: url(../images/line_title_right.svg);
    position: absolute;
    right: 450px;
    top: 5px;
}

.title_products::before {
    content: url(../images/line_title_products.svg);
    position: absolute;
    left: 450px;
    top: 5px;
}

.title_products h2 {
    margin: 0;
    margin-bottom: 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
}

.list_product {
    width: 100%;
    display: inline-block;
    clear: both;
    position: relative;
}

.box_product {
    width: 25%;
    position: relative;
    float: left;
    padding: 0;
}

.box_product .product {
    width: 100%;
    position: relative;
}

.box_product .product .img_product {
    width: 100%;
    z-index: 2;
    position: relative;
}

.box_product .product .img_product::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/bg_img_product.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.1s;
}

.box_product:hover .product .img_product::before {
    opacity: 1;
}

.box_product .product .img_product img {
    width: 100%;
    position: relative;
}

.box_product .product .name_product {
    width: 100%;
    padding: 0;
    padding-right: 20px;
    margin: 15px 0;
    height: 75px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.box_product .product .name_product strong {
    width: 100%;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}


/* box_content_product */

body.overflow_body {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.box_content_blog {
    display: none;
    position: fixed;
    max-width: 1920px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 9999999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.box_content_blog.box_content_block {
    display: block;
    z-index: 1;
    background-image: url(../images/bg_box_content_block.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box_content_detail_blog {
    width: 1000px;
    margin: 0 auto;
    max-height: 100vh;
    height: 100%;
    position: relative;
    background: #2C2B31;
    padding: 50px 40px;
    overflow: hidden;
    overflow-y: auto;
}

.box_content_detail_blog::-webkit-scrollbar-track,
.box_content_detail_blog::-webkit-scrollbar {
    width: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.box_content_detail_blog::-webkit-scrollbar-thumb {
    background: linear-gradient(183.93deg, #B31721 -24.35%, #6B0007 124.89%);
    width: 8px;
}

.close_blog {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999999999;
}

.close_blog img {
    width: 30px;
}

.title_content_blog {
    width: 100%;
}

.title_content_blog h1 {
    width: 100%;
    position: relative;
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
}

.content_blog {
    width: 100%;
    position: relative;
    clear: both;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
}

.content_blog table tbody tr td,
.content_blog ul li,
.content_blog p {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 1);
}

.content_blog p strong {
    font-size: 18px;
    line-height: 26px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.content_blog h2 {
    font-size: 24px;
    line-height: 30px;
    color: #c0392b;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.content_blog a {
    font-size: 16px;
    line-height: 24px;
    color: #F1210F;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.content_blog .hotline_order {
    margin: 15px 0;
    clear: both;
    display: inline-block;
    padding: 13px 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #FFFFFF;
    background: url(../images/button_hotline_order.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.content_blog ul {
    width: 100%;
    clear: both;
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
}

.content_blog table {
    width: 100%;
    position: relative;
    clear: both;
}

.content_blog table tbody {
    width: 100%;
}

.content_blog table tbody tr {
    border: 1px solid #FFFFFF;
}

.content_blog table tbody tr td {
    padding: 10px 15px;
}

.content_blog .img_mobile {
    display: none;
}


/* footer */

footer {
    margin-bottom: 40px;
    width: 100%;
    background: none;
    position: relative;
    clear: both;
    overflow: hidden;
}

.box_contact_footer::after {
    content: 'CONTACT';
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 100px;
    line-height: 76px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 1;
}

.box_contact_footer {
    width: 50%;
    z-index: 2;
    position: relative;
    background: url(../images/bg_footer.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}

.contact_footer {
    width: 540px;
    padding: 100px 0;
    height: max-content;
    margin: 0 auto;
    position: relative;
}

.logo_footer {
    width: 165px;
    float: left;
    position: relative;
}

.logo_footer img {
    width: 100%;
}

.coppyright {
    padding-left: 25px;
    width: calc(100% - 200px);
    float: right;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.coppyright strong {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.list_contact {
    width: 100%;
    clear: both;
    position: relative;
    padding: 30px 0;
}

.lovaweb {
    width: 100%;
}

.lovaweb a {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.list_contact p {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.list_contact p a {
    color: rgba(255, 255, 255, 0.8);
}

.list_social {
    width: 100%;
    position: relative;
    clear: both;
}

.list_social a {
    margin-right: 20px;
}

.list_social a img {
    width: auto;
    height: 26px;
}

.box_mapfooter {
    width: 55%;
    z-index: 1;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}

.box_mapfooter iframe {
    position: relative;
    left: -25%;
    width: 150%;
    height: 100%;
    z-index: 1;
}

.form_contact_mail {
    margin: 45px 0 30px;
    display: inline-block;
    width: 100%;
    clear: both;
    position: relative;
}

.form_contact_mail form {
    width: 100%;
    position: relative;
}

.form_contact_mail form input {
    margin-right: 15px;
    position: relative;
    float: left;
    width: 370px;
    height: 41px;
    padding-left: 35px;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255);
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    outline: 0 none;
    -webkit-appearance: none;
    cursor: pointer;
    background: url(../images/send_mail.svg) no-repeat scroll 0% center;
}

.form_contact_mail form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form_contact_mail form button {
    position: relative;
    float: left;
    border: 0;
    width: 130px;
    height: 42px;
    background: rgba(255, 255, 255, 0) url(../images/button_send_mail.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
}


/*  */

.popup {
    position: fixed;
    z-index: 999999999;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px auto;
    clear: both;
    overflow: hidden;
    display: none;
    height: 100%;
    width: 100%;
}

.popup.show {
    display: block;
}

.popup img.close_video {
    width: 30px;
    position: absolute;
    z-index: 999999999;
    top: 20px;
    right: 20px;
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0;
    margin: auto;
    width: 900px;
    height: 510px;
}

.bg {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 99999999;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg.active {
    display: block;
}


/*  */

.messenger_fixed {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 9999999;
    bottom: 45%;
    right: 30px;
}

.fcta-zalo-nen-nut {
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06), 0 2px 32px rgba(0, 0, 0, .16)
}

.fcta-zalo-nen-nut {
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: #0068FF;
    border-radius: 50%;
    position: relative
}

.fcta-zalo-nen-nut::after,
.fcta-zalo-nen-nut::before {
    content: "";
    position: absolute;
    border: 1px solid #0068FF;
    background: #0068FF;
    z-index: -1;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: zoom 1.9s linear infinite
}

.fcta-zalo-nen-nut::after {
    animation-delay: .4s
}

.fcta-zalo-ben-trong-nut,
.fcta-zalo-ben-trong-nut i {
    transition: all 1s
}

.fcta-zalo-ben-trong-nut {
    position: relative;
    text-align: center;
}

.fcta-zalo-ben-trong-nut img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
}

.fcta-zalo-ben-trong-nut i {
    animation: lucidgenzalo 1s linear infinite
}

.fcta-zalo-text {
    cursor: pointer;
}

.fcta-zalo-nen-nut:hover .fcta-zalo-ben-trong-nut,
.fcta-zalo-text {
    opacity: 0
}

.fcta-zalo-text {
    position: absolute;
    top: 9px;
    font-size: 16px;
    line-height: 19px;
    transform: scaleX(-1);
    transition: all .5s;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.fcta-zalo-nen-nut:hover .fcta-zalo-text {
    transform: scaleX(1);
    opacity: 1
}

@keyframes zoom {
    0% {
        transform: scale(.5);
        opacity: 0
    }
    50% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: scale(0.8)
    }
}

@keyframes lucidgenzalo {
    0% {
        transform: rotate(-25deg)
    }
    50% {
        transform: rotate(25deg)
    }
}

.zalo {
    position: fixed;
    z-index: 9999;
    bottom: calc(45% + 70px);
    right: 30px;
    height: 45px;
}

.zalo .coccoc-alo-ph-circle {
    border: 2px solid #2C2B31;
}

.zalo .coccoc-alo-ph-img-circle {
    background: url(../images/zalo_fixed.svg) no-repeat center center;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
}

.zalo .coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle-fill {
    background-color: #2C2B31;
}

.zalo .coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-img-circle {
    background-color: #2C2B31;
}

.zalo .coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle {
    border-color: #2C2B31;
    opacity: .7;
}

@-moz-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-webkit-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-o-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-moz-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes coccoc-alo-circle-img-anim {
    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)
    }
}

@-webkit-keyframes coccoc-alo-circle-img-anim {
    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)
    }
}

@-o-keyframes coccoc-alo-circle-img-anim {
    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)
    }
}

@keyframes coccoc-alo-circle-img-anim {
    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)
    }
}

.ring {
    position: fixed;
    z-index: 9999;
    bottom: calc(45% + 140px);
    right: 30px;
    height: 45px;
}

.alo-phone {
    position: absolute;
    top: 10px;
    right: 0px;
}

.alo-phone a {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}

.coccoc-alo-phone {
    background-color: transparent;
    cursor: pointer;
    z-index: 2000000;
    width: 50px;
    height: 50px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
}

.coccoc-alo-ph-circle {
    width: 90px;
    height: 90px;
    top: -20px;
    left: -20px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(179, 23, 33, 0.6);
    -webkit-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle-fill {
    background-color: rgba(179, 23, 33, 0.8);
}

.coccoc-alo-ph-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    left: -10px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .2;
    -webkit-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.coccoc-alo-ph-img-circle {
    width: 50px;
    height: 50px;
    top: 0px;
    left: 0px;
    position: absolute;
    background: url(../images/alo-phone.svg) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
    -webkit-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-img-circle {
    background-color: rgba(179, 23, 33, 1);
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle {
    border-color: rgba(179, 23, 33, 1);
    opacity: .7;
}

.box_note_fixed {
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 40px;
    background: #DC2128;
}

.box_note_fixed .note_fixed {
    width: 100%;
    height: 40px;
    background-image: url(../images/note_fixed.svg);
    background-repeat: repeat;
    background-size: auto 100%;
    text-align: center;
    animation: marquee 8s infinite linear;
}

@keyframes marquee {
    0% {
        background-position: 0;
    }
    100% {
        background-position: -940px;
    }
}