@font-face {
    font-family: NotoSansLao;
    src: url(../fonts/NotoSansLao-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: TimesNewRoman;
    src: url(../fonts/TimesNewRoman-Regular.ttf);
}

:root {
    scroll-behavior: smooth;

    /* Color */
    --color-primary: #0047AB;
    --color-sub-primary: #4169E1;
    --color-secondary: #E20A17;
    --color-white: #FFF;
    --color-black: #333;
    --color-gray: #C0C0C0;

    /* Color RGB */
    --color-primary-rgb: 0, 71, 171;
    --color-sub-primary-rgb: 65, 105, 225;
    --color-secondary-rgb: 226, 10, 23;
    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 51, 51, 51;
    --color-gray-rgb: 192, 192, 192;

    /* Fonts */
    --font-notosanslao: "NotoSansLao";
    --font-timesnewroman: "TimesNewRoman";

    /* Fonts Size */
    --font-header: 28px;
    --font-title: 24px;
    --font-text: 16px;
    --font-sm-header: 24px;
    --font-sm-title: 20px;
    --font-sm-text: 14px;
}

body {
    color: var(--color-black);
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-sub-primary);
    text-decoration: none;
}

.font-lao {
    font-family: var(--font-notosanslao) !important;
}

.font-english {
    font-family: var(--font-timesnewroman) !important;
}

#section {
    padding: 60px 0;
}

.floating-label {
    position: relative;
    margin: 0 0 16px 0;
}

.floating-label .floating-input,
.floating-label .floating-select {
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-black);
    font-size: var(--font-text);
    height: 40px;
    outline: none;
    padding: 8px;
    transition: 0.5s;
    width: 100%;
}

.floating-label .floating-textarea {
    height: 150px;
}

.floating-label label {
    position: absolute;
    color: var(--color-gray);
    font-size: var(--font-text);
    left: 0;
    padding: 8px;
    pointer-events: none;
    text-transform: capitalize;
    transition: 0.5s;
}

.floating-label .floating-input:focus~label,
.floating-label .floating-input:not(:placeholder-shown)~label,
.floating-label .floating-select:focus~label,
.floating-label .floating-select:not([value=""]):valid~label {
    background: var(--color-white);
    color: var(--color-primary);
    font-size: var(--font-sm-text);
    padding: 0 4px;
    transform: translatex(8px) translatey(-12px);
}

.btn-submit {
    display: block;
    background: var(--color-primary);
    border: 0;
    border-radius: 4px;
    color: var(--color-white);
    font-size: var(--font-text);
    font-weight: 500;
    margin: 0 auto;
    padding: 4px 16px;
}

.btn-submit:disabled {
    pointer-events: none;
    background-color: var(--color-primary);
    color: var(--color-white);
    opacity: 0.5;
}

.btn-submit:hover {
    background: var(--color-sub-primary);
    color: var(--color-white);
}

.read-more a {
    display: inline-block;
    /*background: var(--color-primary);*/
    border-radius: 4px;
   color: #254cbb;
    font-size: var(--font-text);
    margin: 8px 0 0 0;
    padding: 8px 16px;
    transition: 0.3s;
    font-weight:500 !important;
}

/*.read-more a:hover {*/
/*    background: var(--color-sub-primary);*/
/*}*/

/*--------------------------------------------------------------
# Paginate
--------------------------------------------------------------*/
.page-item .page-link {
    color: var(--color-primary);
}

.page-item.active .page-link {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    display: flex;
    align-items: center;
    background: rgba(var(--color-gray-rgb), 0.4);
    min-height: 40px;
    transition: 0.3s;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    font-size: var(--font-sm-text);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs ol li+li {
    padding-left: 4px;
}

.breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    color: var(--color-black);
    padding-right: 4px;
}

.breadcrumbs ol li a {
    color: var(--color-black);
    font-weight: 500
}

.breadcrumbs ol li a:hover {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    background: var(--color-secondary);
    border-radius: 4px;
    bottom: -20px;
    height: 40px;
    opacity: 0;
    right: 20px;
    transition: all 0.4s;
    visibility: hidden;
    width: 40px;
    z-index: 99999;
}

.scroll-top i {
    color: var(--color-white);
    font-size: var(--font-header);
    line-height: 0;
}

.scroll-top:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.scroll-top.active {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    background: var(--color-white);
    inset: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    z-index: 999999;
}

#preloader:before {
    content: "";
    position: fixed;
    border: 4px solid;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    height: 60px;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    width: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-text);
    height: 60px;
    padding: 0;
    transition: all 0.5s;
}

.topbar .contact-info i {
    color: var(--color-white);
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    color: var(--color-white);
    padding-left: 8px;
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.topbar .contact-info i a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.topbar .social-links a {
    color: var(--color-white);
    line-height: 0;
    margin-left: 16px;
    transition: 0.3s;
}

.topbar .social-links a:hover {
    color: var(--color-white);
}

.header {
    background: var(--color-white);
    height: 60px;
    transition: all 0.5s;
    z-index: 997;
}

.header.sticked {
    position: fixed;
    box-shadow: 0px 4px 16px rgba(var(--color-black-rgb), 0.4);
    left: 0;
    right: 0;
    top: 0;
}

.header .logo img {
    max-height: 40px;
    margin-right: 8px;
}

.sticked-header-offset {
    margin-top: 60px;
}

section {
    scroll-margin-top: 60px;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    padding: 12px 20px;
    white-space: nowrap;
}

.navbar a,
.navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-black);
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    background: var(--color-primary);
    bottom: -4px;
    height: 2px;
    left: 0;
    transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    width: 0px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--color-primary);
}

.mobile-nav-show,
.mobile-nav-hide {
    display: none;
}

/*--------------------------------------------------------------
# Index
--------------------------------------------------------------*/
#hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
    width: 100%;
}

#hero img {
    max-height: 80vh;
    object-fit: cover;
    width: 100%;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    color: var(--color-primary);
    font-size: var(--font-header);
    font-weight: 800;
}

.main #section {
    padding: 60px 0 0 0;
}

.main #section:last-child {
    padding: 60px 0;
}

.main .title {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: var(--color-primary);
    font-size: var(--font-header);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.main .title hr {
    border-top: 2px solid var(--color-primary);
    opacity: 0.5;
    width: 300px;
}

.main .read-more a {
    display: flex;
    align-items: center;
    justify-content: end;
    background: none;
    border-radius: 0;
    font-weight:500;
    color: var(--color-primary);
    font-size: var(--font-text);
    font-style: italic;
    margin: 10px 0 0 0;
    padding: 0;
    transition: 0.3s;
}

.main .read-more a i {
    margin-left: 16px;
}

.main .read-more a:hover {
    color: var(--color-sub-primary);
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news .card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 0;
    padding: 16px;
    height: 100%;
}

.news .card .news-img {
    margin: -16px -16px 0 -16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.news .card .news-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.news .card:hover .news-img img {
    transform: scale(1.1);
}

.news .card .news-title {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-title);
    font-size: var(--font-text);
    font-weight: 500;
    margin: 8px 0 0 0;
    padding: 0;
    text-overflow: ellipsis;
    transition: 0.3s;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
}

.news .card .news-date {
    color: var(--color-gray);
    margin-top: 8px;
}

.news .card .news-date i {
    font-size: var(--font-sm-text);
    margin-right: 8px;
    line-height: 0;
    color: var(--color-primary);
}

.news .card .news-content {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-sm-text);
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# News View
--------------------------------------------------------------*/
.news-view .news-details {
    padding: 8px;
}

.news-view .news-details .news-img {
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.news-view .news-details .news-img img {
    height: 300px;
    max-width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.news-view .news-details .news-img .swiper-button-next::after,
.news-view .news-details .news-img .swiper-button-prev::after {
    color: var(--color-primary);
    font-size: var(--font-header);
    font-weight: 800;
}

.news-view .news-details .news-title {
    color: var(--color-black);
    font-size: var(--font-title);
    font-weight: 500;
    margin: 16px 0 0 0;
}

.news-view .news-details .news-date {
    color: var(--color-gray);
    margin-top: 16px;
}

.news-view .news-details .news-date i {
    color: var(--color-primary);
    font-size: var(--font-text);
    line-height: 0;
    margin-right: 8px;
}

.news-view .news-details .news-content {
    color: var(--color-black);
    font-size: var(--font-text);
    margin: 8px 0 0 0;
}

.news-view .news-title span {
    font-size: var(--font-title);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.news-view .news-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-view .news-box .news-img {
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    width: 40%;
}

.news-view .news-box .news-img img {
    height: 100px;
    object-fit: cover;
    transition: 0.3s;
    width: 100%;
}

.news-view .news-box:hover .news-img img {
    transform: scale(1.1);
}

.news-view .news-box .news-title {
    width: 60%;
}

.news-view .news-box .news-title span {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-sm-title);
    font-weight: 500;
    margin: 8px 0;
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
    transition: 0.3s;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-view .news-box .news-date {
    color: var(--color-gray);
    margin-top: 8px;
    padding: 0 8px;
}

.news-view .news-box .news-date i {
    color: var(--color-primary);
    font-size: var(--font-sm-text);
    line-height: 0;
    margin-right: 8px;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .products-flters {
    list-style: none;
    margin: 0 auto;
    padding: 0 0 30px 0;
    text-align: center;
}

.products .products-flters li {
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-text);
    font-weight: 500;
    line-height: 1;
    margin: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
}

.products .products-flters li:hover,
.products .products-flters li.filter-active {
    background: var(--color-primary);
    color: var(--color-white);
}

.products .card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 0;
    height: 100%;
    padding: 16px;
}

.products .card .products-img {
    margin: -16px -16px 0 -16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.products .card .products-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.products .card:hover .products-img img {
    transform: scale(1.1);
}

.products .card .products-title {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-title);
    font-weight: 500;
    margin: 8px 0 0 0;
    padding: 0;
    text-overflow: ellipsis;
    transition: 0.3s;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products .products-item .card .products-title {
    -webkit-line-clamp: 1;
}

.products .card .products-content {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-sm-text);
    margin: 8px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# Products View
--------------------------------------------------------------*/
.products-view .title {
    color: var(--color-black);
    font-size: var(--font-sm-title);
    font-weight: 600;
    margin-bottom: 8px;
}

.products-view .subtitle {
    color: var(--color-primary);
    font-size: var(--font-title);
    font-weight: 600;
    margin-bottom: 8px;
}

.products-view .slogan {
    color: var(--color-primary);
    font-size: var(--font-sm-title);
    font-weight: 500;
    margin-bottom: 8px;
}

.products-view .description,
.products-view .details {
    color: var(--color-black);
    font-size: var(--font-text);
}

.products-view .details .table th {
    color: var(--color-primary);
}

.products-view .products-view-2 {
    margin: 0 0 24px 0;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.products-view .products-view-2 img {
    height: 300px;
    max-width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.products-view .products-view-2 .swiper-button-next::after,
.products-view .products-view-2 .swiper-button-prev::after {
    color: var(--color-primary);
    font-size: var(--font-header);
    font-weight: 800;
}

.products-view .products-view-1 {
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.products-view .products-view-1 img {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.products-view .products-view-1 .swiper-slide {
    opacity: 0.25;
}

.products-view .products-view-1 .swiper-slide-thumb-active {
    opacity: 1;
}

/*--------------------------------------------------------------
# Dealer
--------------------------------------------------------------*/
.dealer .card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 0;
    padding: 16px;
    height: 100%;
}

.dealer .card .dealer-img {
    margin: -16px -16px 0 -16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.dealer .card .dealer-img img {
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.dealer .card:hover .dealer-img img {
    transform: scale(1.1);
}

.dealer .card .dealer-title {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-title);
    font-weight: 500;
    margin: 8px 0 0 0;
    padding: 0;
    text-overflow: ellipsis;
    transition: 0.3s;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dealer .card .dealer-date {
    color: var(--color-gray);
    margin-top: 8px;
}

.dealer .card .dealer-date i {
    font-size: var(--font-sm-text);
    margin-right: 8px;
    line-height: 0;
    color: var(--color-primary);
}

.dealer .card .dealer-content {
    display: -webkit-box;
    color: var(--color-black);
    font-size: var(--font-sm-text);
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# Dealer View
--------------------------------------------------------------*/
.dealer-view .map {
    border-radius: 4px;
    height: 300px;
    width: 100%;
}

.dealer-view .title {
    color: var(--color-black);
    font-size: var(--font-sm-title);
    font-weight: 600;
    margin-bottom: 8px;
}

.dealer-view .title i {
    margin-left: 8px;
}

.dealer-view .subtitle,
.dealer-view .subtitle a {
    color: var(--color-primary);
    font-size: var(--font-title);
    font-weight: 600;
    margin-bottom: 8px;
}

.dealer-view .details,
.dealer-view .details a {
    color: var(--color-black);
    font-size: var(--font-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.dealer-view .details i span {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us ul {
    list-style: none;
    padding: 0;
}

.contact-us .map {
    border-radius: 4px;
    height: 100%;
    width: 100%;
}

.contact-us .title {
    color: var(--color-primary);
    font-size: var(--font-title);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-us .content {
    color: var(--color-black);
    font-size: var(--font-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-us .info i {
    font-size: var(--font-sm-title);
    color: var(--color-sub-primary);
    float: left;
    width: 40px;
    height: 40px;
    background: rgba(var(--color-sub-primary-rgb), 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact-us .info h4 {
    padding: 0 0 0 60px;
    font-size: var(--font-title);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.contact-us .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-black);
}

.contact-us .info .email,
.contact-us .info .phone {
    margin-top: 40px;
}

.contact-us .info .email:hover i,
.contact-us .info .address:hover i,
.contact-us .info .phone:hover i {
    background: var(--color-primary);
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--color-primary);
    color: var(--color-black);
    font-size: var(--font-text);
}

#footer .footer-top {
    background: rgba(var(--color-white-rgb), 0.975);
    padding: 60px 0;
}

#footer .footer-top h4 {
    font-size: var(--font-title);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 8px 0;
    padding: 0 0 8px 0;
}

#footer .footer-top .footer-detail p {
    color: var(--color-black);
    font-size: var(--font-text);
    line-height: 24px;
    margin: 0 0 16px 0;
}

#footer .footer-top .footer-detail p strong {
    margin: 0 8px 0 0;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .footer-top .footer-links ul i {
    color: var(--color-primary);
    font-size: var(--font-text);
    line-height: 1;
    padding: 0 4px 0 0;
}

#footer .footer-top .footer-links ul li {
    display: flex;
    align-items: center;
    padding: 4px 0 12px 0;
}

#footer .footer-top .footer-links ul a {
    display: inline-block;
    color: var(--color-black);
    line-height: 1;
    transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

#footer .copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 20px 0;
    text-align: center;
}

#footer .copyright a {
    color: var(--color-white);
}

#footer .copyright a:hover {
    text-decoration: underline;
}

#footer .copyright strong,
#footer .copyright span,
#footer .copyright i {
    margin-right: 8px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login {
    background: rgba(var(--color-primary-rgb), 0.25);
    height: 100vh;
}

.login .card {
    border: 0;
    box-shadow: 0px 8px 16px rgba(var(--color-gray-rgb), 0.5);
    padding: 8px;
}

.login img {
    height: 150px;
    max-width: 100%;
    margin: 0 0 16px 0;
    object-fit: contain;
}

.login .title span:first-child {
    color: var(--color-primary);
    font-size: var(--font-sm-title);
    font-weight: 600;
    margin: 0 0 16px 0;
}

.login .title span:last-child {
    color: var(--color-primary);
    font-size: var(--font-sm-title);
    font-weight: 600;
    margin: 0 0 16px 0;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199.98px) {

    /*--------------------------------------------------------------
    # Main
    --------------------------------------------------------------*/
    #main .news #news-item-4,
    #main .products #products-item-4,
    #main .dealer #dealers-item-4 {
        display: none;
    }
}

@media (max-width: 991.98px) {

    /*--------------------------------------------------------------
    # Navbar
    --------------------------------------------------------------*/
    .navbar {
        position: fixed;
        bottom: 0;
        max-width: 400px;
        right: -100%;
        top: 0;
        transition: 0.3s;
        width: 100%;
        z-index: 9997;
    }

    .navbar ul {
        display: block;
        position: absolute;
        background: var(--color-white);
        inset: 0;
        overflow-y: auto;
        padding: 60px 0 12px 0;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar>ul>li {
        padding: 0;
    }

    .navbar a,
    .navbar a:focus {
        font-size: var(--font-sm-text);
        padding: 12px 20px;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: hidden;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--color-primary);
    }

    .mobile-nav-show {
        display: block;
        cursor: pointer;
        color: var(--color-black);
        font-size: var(--font-header);
        line-height: 0;
        margin-right: 8px;
        transition: 0.5s;
        z-index: 9999;
    }

    .mobile-nav-hide {
        display: block;
        position: fixed;
        cursor: pointer;
        color: var(--color-black);
        font-size: var(--font-header);
        line-height: 0;
        right: 20px;
        top: 20px;
        transition: 0.5s;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        background: rgba(var(--color-black-rgb), 0.7);
        inset: 0;
        z-index: 9996;
    }

    /*--------------------------------------------------------------
    # Breadcrumbs
    --------------------------------------------------------------*/
    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }

    /*--------------------------------------------------------------
    # Index
    --------------------------------------------------------------*/
    #hero img {
        height: 350px;
    }

    .main .title hr {
        width: 200px;
    }

    /*--------------------------------------------------------------
    # News View
    --------------------------------------------------------------*/
    .news-view .news-title span {
        font-size: var(--font-sm-title);
    }

    .news-view .news-box {
        flex-direction: column;
        height: 100%;
    }

    .news-view .news-box .news-img,
    .news-view .news-box .news-title {
        width: 100%;
    }

    .news-view .news-box .news-img img {
        height: 150px;
    }

    /*--------------------------------------------------------------
    # Products View
    --------------------------------------------------------------*/
    .products-view .products-view-2 {
        margin: 0 0 16px 0;
    }

    .products-view .products-view-2 img {
        height: 250px;
    }

    .products-view .products-view-1 img {
        height: 75px;
    }
}

@media (max-width: 575.98px) {

    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    .topbar,
    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: var(--font-sm-text);
    }

    .topbar .social-links a {
        margin-left: 8px;
    }

    /*--------------------------------------------------------------
    # Index
    --------------------------------------------------------------*/
    #hero img {
        height: 200px;
    }

    .main .title {
        font-size: var(--font-sm-header);
    }

    .main .title hr {
        display: none;
    }

    /*--------------------------------------------------------------
    # News
    --------------------------------------------------------------*/
    .news .card .news-title {
        font-size: var(--font-sm-title);
    }

    /*--------------------------------------------------------------
    # News View
    --------------------------------------------------------------*/
    .news-view .news-details .news-title {
        font-size: var(--font-sm-title);
    }

    .news-view .news-details .news-img img {
        height: 150px;
    }

    .news-view .news-details .news-content {
        font-size: var(--font-sm-text);
    }

    /*--------------------------------------------------------------
    # Products
    --------------------------------------------------------------*/
    .products .products-flters li {
        font-size: var(--font-sm-text);
        margin: 4px;
    }

    /*--------------------------------------------------------------
    # Products View
    --------------------------------------------------------------*/
    .products-view .description,
    .products-view .details {
        color: var(--color-black);
        font-size: var(--font-sm-text);
    }

    .products-view .products-view-2 img {
        height: 150px;
    }

    .products-view .products-view-1 img {
        height: 50px;
    }

    /*--------------------------------------------------------------
    # Dealer
    --------------------------------------------------------------*/
    .dealer .card .dealer-title {
        font-size: var(--font-sm-title);
    }

    /*--------------------------------------------------------------
    # Dealer View
    --------------------------------------------------------------*/
    .dealer-view .map {
        height: 200px;
        width: 100%;
    }

    .dealer-view .title {
        font-size: var(--font-sm-title);
    }

    .dealer-view .subtitle {
        font-size: var(--font-sm-title);
    }

    /*--------------------------------------------------------------
    # Contact Us
    --------------------------------------------------------------*/
    .contact-us .map {
        height: 200px;
        width: 100%;
    }

    .contact-us .title {
        font-size: var(--font-sm-title);
    }

    .contact-us .content {
        font-size: var(--font-sm-text);
    }

    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #footer .footer-top h4 {
        font-size: var(--font-sm-title);
    }

    #footer .copyright {
        flex-direction: column;
    }

    #footer .copyright strong,
    #footer .copyright span {
        margin-right: 0;
    }

    /*--------------------------------------------------------------
    # Login
    --------------------------------------------------------------*/
    .login img {
        height: 150px;
    }
}
