* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    margin-bottom: 0;
    padding: 0;
}

@font-face {
    font-family: utm_avo;
    src: url(/themes/VUTA/assets/libs/font/utm-avo/UTM\ Avo.ttf);
    font-weight: 400;
}

@font-face {
    font-family: utm_avo;
    src: url(/themes/VUTA/assets/libs/font/utm-avo/UTM\ AvoItalic.ttf);
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: utm_avo;
    src: url(/themes/VUTA/assets/libs/font/utm-avo/UTM\ Avo\ Regular.ttf);
    font-weight: 500;
}

@font-face {
    font-family: utm_avo;
    src: url(/themes/VUTA/assets/libs/font/utm-avo/UTM\ AvoBold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: utm_avo;
    src: url(/themes/VUTA/assets/libs/font/utm-avo/UTM\ AvoBold_Italic.ttf0);
    font-weight: 700;
    font-style: italic;
}

:root {
    --spacing: 100px 0;
}

body {
    font-size: 16px;
    font-family: "Roboto", sans-serif !important;
    line-height: 1.5 !important;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

p {
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

ul li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.seo-content ol {
    text-transform: capitalize;
    font-weight: bold;
}

.seo-content ol li {
    margin-left: 18px;
    margin-bottom: 10px;
}

.seo-content ul li {
    position: relative;
    margin-left: 20px;
    margin-bottom: 10px;
}

.seo-content ul li::before {
    content: "*";
    position: absolute;
    left: 0;
    top: -1px;
    color: #0d6efd;
    font-weight: 400;
    font-size: 18px;
    margin-left: -20px;
}

.vuta ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.vuta ul li::before {
    content: "*";
    position: absolute;
    left: 0;
    top: -1px;
    color: #0d6efd;
    font-weight: 400;
    font-size: 18px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

figure {
    margin: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

a:focus-visible {
    outline: none;
}

.hometext {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 10px 20px;
    box-shadow: 0 5px 10px rgba(230, 80, 80, 0.84);
    -webkit-box-shadow: 0 5px 10px rgba(230, 80, 80, 0.84);
    -moz-box-shadow: 0 5px 10px rgba(230, 80, 80, 0.84);
    -ms-box-shadow: 0 5px 10px rgba(230, 80, 80, 0.84);
    border-left: 5px solid #0d6efd;
    border-radius: 1rem;
    background-color: #fff;
}

.custom-select {
    position: relative;
    border-radius: 7px;
    border: 1px solid #ececec;
    background: #fff;
}

.custom-select select {
    width: 95%;
    border: none;
    border-radius: 7px;
    height: 40px;
    padding: 0 10px;
}

.custom-select select:focus {
    border: none;
    outline: none;
}

.select-selected {
    background-color: #333;
    border-radius: 4px;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #2d264b transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #2d264b transparent;
    top: 10px;
}

.select-selected {
    color: #000;
    border: 1px #333;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    font-weight: 400;
    background: #fff;
    cursor: pointer;
}

.select-items div {
    padding: 8px 13px;
    cursor: pointer;
    color: #fff;
}

.select-items {
    position: absolute;
    background-color: var(--primary);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 12.92px;
    border-radius: 4px;
    box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.07);
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: #333;
    color: #fff;
}

.slick-arrow {
    padding: 20px;
    border-radius: 50%;
}

.slick-arrow.slick-prev {
    left: 10px;
    z-index: 2;
}

.slick-arrow.slick-prev::before {
    background-image: url(../images/left.svg);
}

.slick-arrow.slick-next {
    right: 10px;
    z-index: 2;
}

.slick-arrow.slick-next::before {
    background-image: url(../images/right.svg);
}

.slick-arrow.slick-next,
.slick-arrow.slick-prev {
    transition: all ease 0.5s;
}

.slick-arrow.slick-next:hover::before,
.slick-arrow.slick-prev:hover::before {
    opacity: 1;
}

.slick-arrow.slick-next::before,
.slick-arrow.slick-prev::before {
    z-index: 9;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 50%;
    background-position: center;
    transition: 0.5s;
    content: "";
    position: absolute;
    top: 50%;
    height: 20px;
    width: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    opacity: 0;
}

.box-img img {
    width: 100%;
}

.form-booking {
    position: relative;
    z-index: 99;
    margin-top: -90px;
}

@media screen and (max-width: 996px) {
    .form-booking {
        margin-top: 30px;
    }
}

@media screen and (max-width: 575px) {
    .form-booking {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.form-booking form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
}

.form-booking form .gr-input {
    margin-bottom: 15px;
}

@media screen and (max-width: 996px) {
    .form-booking form .gr-input:first-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 996px) {
    .form-booking form .gr-input input {
        margin-bottom: 15px;
    }
}

.form-booking form .custom-select,
.form-booking form input {
    width: 100%;
    border: solid 1px #ececec;
    border-radius: 7px;
}

.form-booking form .custom-select:focus,
.form-booking form input:focus {
    outline: none;
    box-shadow: 0 0 5px #ccc;
}

@media screen and (max-width: 996px) {
    .form-booking form .custom-select,
    .form-booking form input {
        margin-bottom: 15px;
    }
}

.form-booking .box-btn {
    margin-bottom: -65px;
    text-align: center;
    margin-top: 15px;
}

.form-booking .box-btn .submit-btn {
    padding: 8px 80px;
    border-radius: 7px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary);
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
    border: none;
}

.form-booking .box-btn .submit-btn:focus {
    outline: none;
}

.container.resize {
    max-width: 1655px;
    position: relative;
}

@media screen and (max-width: 996px) {
    .container.resize {
        max-width: 720px;
    }
}

.breadcrumb {
    background: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .breadcrumb-item {
        display: block;
    }
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ol li {
    list-style: none;
    margin-right: 20px;
    position: relative;
}

.breadcrumb ol li::before {
    position: absolute;
    content: "/";
    right: -15px;
    color: rgba(102, 102, 102, 0.7);
}

.breadcrumb ol li a {
    color: rgba(102, 102, 102, 0.7);
    transition: all ease 0.4s;
    font-size: 16px;
}

.breadcrumb ol li:last-child a,
.breadcrumb ol li:hover a {
    color: #111 !important;
}

.breadcrumb ol li:last-child {
    margin-right: 0;
}

.breadcrumb ol li:last-child::before {
    display: none;
}

.breadcrumb .main-title {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.keyword {
    padding: 10px 0;
    text-transform: uppercase;
    color: #252a2b;
    font-size: 14px;
}

.service-slider {
    margin: 0 -15px;
}

.service-slider .item {
    margin: 0 15px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.service-slider .item:hover {
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.service-slider .item:hover .detail-button {
    background: #252a2b;
}

.service-slider .item h3 {
    margin-top: 15px;
    text-align: center;
    margin-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    height: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 700;
    color: #252a2b;
    text-transform: uppercase;
}

.service-slider .item .detail-button {
    text-align: center;
    padding: 5px 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
    background: var(--primary);
    color: #fff;
    transition: all ease 0.4s;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.sale-price {
    color: #666;
    margin-left: 10px;
    text-decoration: line-through;
    font-weight: 400;
}

.support {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.support-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

table {
    border: 1 solid #cecece !important;
    width: 100%;
}

table tr th {
    font-weight: 700;
    text-align: center;
    padding: 10px;
    border: 1 solid #cecece !important;
}

table tr td {
    padding: 10px;
    border: 1 solid #cecece !important;
    color: currentColor;
}

table tr td span {
    color: currentColor;
    font-size: 16px;
    margin: 0;
}

.content-1,
.content-2,
.content-3 {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
}

.content-1 p,
.content-2 p,
.content-3 p {
    padding-left: 25px;
}

#sv-1:checked>label .button {
    background-color: rgba(0, 0, 0, 0.03);
}

#sv-1:checked .button {
    color: #252a2b;
}

#sv-1:checked~.content-1 {
    max-height: 5000px;
}

#sv-2:checked~.content-2 {
    max-height: 5000px;
}

#sv-3:checked~.content-3 {
    max-height: 5000px;
}

#lb-1,
#lb-2,
#lb-3 {
    width: 100%;
}

#lb-1 .button,
#lb-2 .button,
#lb-3 .button {
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid;
    font-size: 18px;
    color: #666;
    transition: all ease 0.4s;
}

#lb-1 .button i,
#lb-2 .button i,
#lb-3 .button i {
    margin-right: 8px;
    color: #666;
}

#lb-1 .button:hover,
#lb-2 .button:hover,
#lb-3 .button:hover {
    color: #252a2b;
}

#lb-1 .button:hover i,
#lb-2 .button:hover i,
#lb-3 .button:hover i {
    color: #252a2b;
}

.support label:checked .button {
    background-color: rgba(0, 0, 0, 0.03);
}

#accordian .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
    padding: 5px 0;
}

#accordian .link:hover a,
#accordian .link.active a {
    color: var(--primary);
}

#accordian .link:hover i,
#accordian .link.active i {
    color: var(--primary);
}

#accordian .link i {
    cursor: pointer;
    transition: all ease 0.4s;
    opacity: 0.5;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: 7px;
    margin-right: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#accordian .link>a {
    width: 100%;
    color: #252a2b;
    transition: all ease 0.4s;
    font-size: 18px;
}

#accordian li {
    list-style-type: none;
}

#accordian li.active a {
    color: var(--primary);
    font-weight: 600;
}

#accordian li.active i {
    color: var(--primary);
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: 600;
}

#accordian li.active>ul {
    display: block;
    margin-left: 15px;
    padding-top: 0;
    background: #fff;
}

#accordian li.active>ul li {
    padding: 5px 0;
}

#accordian li.active>ul li a {
    color: #252a2b;
    display: block;
    font-weight: 400;
    transition: all ease 0.4s;
}

#accordian li.active>ul li a:hover {
    color: var(--primary);
}

#accordian ul ul {
    display: none;
}

.form-breadcrumb {
    display: flex;
    align-items: center;
}

.form-breadcrumb span {
    margin-right: 10px;
}

.form-breadcrumb .custom-select {
    min-width: 180px;
    padding: 8px 13px;
    background: #fff;
}

.form-breadcrumb .custom-select .select-selected {
    margin-right: 15px;
}


/* .aside .aside-item {
    margin-bottom: 15px;
} */

.aside-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    padding-bottom: 20px;
    color: #252a2b;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 20px;
    position: relative;
}

.aside-title::before {
    height: 3px;
    background: var(--primary);
    width: 50px;
    position: absolute;
    bottom: -2px;
    content: "";
}

.buttons_added {
    opacity: 1;
    display: inline-block;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
}

.is-form {
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    height: 2.2rem;
    width: 1.9rem;
    padding: 0;
    text-shadow: 1px 1px 1px #fff;
    border: 1px solid #ddd;
}

.is-form:focus,
.input-text:focus {
    outline: none;
}

.input-qty {
    background-color: #fff;
    height: 2.2rem;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    padding: 0;
    width: 70px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-qty::-webkit-outer-spin-button,
.input-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type="number"] {
    -moz-appearance: textfield;
    text-align: center;
}

.red {
    color: #ed1c24;
    font-weight: 700;
}

.blue {
    color: var(--primary);
    font-weight: 700;
}

.table-cart {
    border: 0 !important;
}

.table-cart td {
    border: 0;
    border-bottom: 1px solid #c6c6c6;
}

.table-cart th {
    border: 0;
    border-bottom: 2px solid #c6c6c6;
    text-align: left;
    text-transform: uppercase;
}

.table-cart img {
    width: 75px;
}

.table-cart .remove {
    height: 30px;
    width: 30px;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    color: #c6c6c6;
    cursor: pointer;
    transition: all ease 0.4s;
}

.table-cart .remove:hover {
    color: #222222;
    border: 1px solid #222;
}

.table-cart .name-products {
    font-size: 16px;
}

.table-cart .name-products a {
    color: #222222;
    transition: all ease 0.4s;
}

.table-cart .name-products a:hover {
    color: var(--primary);
}

.fixed-cart {
    background-color: #f3f3f3;
    animation: stuckMoveUp 0.6s;
    position: fixed;
    bottom: -300px;
    width: 100%;
    background-color: #f3f3f3;
    transition: all ease 0.5s;
}

.fixed-cart.fixed {
    bottom: 0;
}

@media screen and (max-width: 996px) {
    .fixed-cart .table-cart td {
        padding: 5px;
    }
}

.fixed-cart .table-cart .add-to-cart {
    padding: 10px 15px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border: none;
    transition: all ease 0.4s;
}

.fixed-cart .table-cart .add-to-cart i {
    display: none;
}

.fixed-cart .table-cart .add-to-cart .text {
    display: block;
}

@media screen and (max-width: 996px) {
    .fixed-cart .table-cart .add-to-cart {
        font-size: 13px;
        padding: 8px 15px;
    }
}

@media screen and (max-width: 996px) {
    .fixed-cart .table-cart .add-to-cart {
        padding: 10px 15px;
    }
    .fixed-cart .table-cart .add-to-cart i {
        display: block;
    }
    .fixed-cart .table-cart .add-to-cart .text {
        display: none;
    }
}

.fixed-cart .table-cart .add-to-cart:focus {
    outline: none;
}

.fixed-cart .table-cart .add-to-cart:hover {
    background: #333;
}

.navbar {
    padding: 0;
    justify-content: space-around;
    display: flex;
}

@media screen and (max-width: 1200px) {
    .navbar {
        order: 0;
    }
}

.navbar .link {
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media screen and (max-width: 1200px) {
    .navbar .link {
        margin: 0;
    }
}

.navbar .link a {
    display: block;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .navbar .link i {
        right: 0px;
        left: auto;
        position: absolute;
        top: 0px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        text-align: center;
        font-size: 18px;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        cursor: pointer;
        display: unset !important;
        color: #fff;
    }
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    position: fixed;
    inset: 0;
    height: 100vh;
}

.navbar label.link {
    padding: 10px 18px;
}

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

@media screen and (max-width: 1200px) {
    .navbar ul {
        display: block;
    }
}

.navbar ul .dropdown {
    position: relative;
    transition: all ease 0.3s;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown {
        border-bottom: 1px solid #666;
    }
}

.navbar ul .dropdown.open {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
}

.navbar ul .dropdown.open .link a {
    color: var(--primary);
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown.open .link a {
        display: block;
        padding: 15px 20px;
    }
}

.navbar ul .dropdown.open i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--primary);
    top: 0;
}

.navbar ul .dropdown.open>ul {
    display: block;
    position: unset;
    visibility: visible;
    opacity: 1;
}

.navbar ul .dropdown:first-child {
    margin-left: 0;
}

.navbar ul .dropdown:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown {
        margin: 0;
        position: inherit;
    }
}

.navbar ul .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    background: #fff;
}

.navbar ul .dropdown:hover .sub-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    left: 100%;
    top: 0;
}

.navbar ul .dropdown:hover .sub-menu a {
    color: #666;
}

.navbar ul .dropdown:hover .sub-menu a::before {
    display: none;
}

.navbar ul .dropdown a {
    font-size: 16px;
    text-transform: uppercase;
    color: #666;
    font-weight: 700;
    white-space: inherit;
    transition: 0.3s;
    line-height: 18.75px;
    transition: all ease 0.3s;
    position: relative;
}

@media screen and (max-width: 996px) {
    .navbar ul .dropdown a:hover::before {
        display: none;
    }
}

.navbar ul .dropdown a:hover {
    color: var(--primary);
}


/* .navbar ul .dropdown a:hover::before {
    transform: scale(1);
} */

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown a {
        padding-left: 30px;
        padding-right: 15px;
    }
}

.navbar ul .dropdown .sub-right {
    position: absolute;
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: all ease 0.2s;
    background: #fff;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    min-width: 180px;
}

.navbar ul .dropdown .sub-right li .link {
    margin: 0 !important;
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown .sub-right {
        width: 100%;
        box-shadow: unset;
        margin-bottom: 0;
        margin-top: 0;
        max-width: unset;
        display: none !important;
    }
    .navbar ul .dropdown .sub-right li:first-child {
        margin-top: 0;
    }
}

.navbar ul .dropdown .sub-right a {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: break-spaces;
    max-width: 200px;
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown .sub-right a {
        max-width: 330px;
    }
}

.navbar ul .dropdown>.sub-menu {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 10px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    min-width: 150px;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    transition: all ease 0.1s;
}

.navbar ul .dropdown>.sub-menu li .link {
    margin: 0 !important;
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown>.sub-menu {
        box-shadow: none;
    }
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown>.sub-menu li {
        display: block;
        padding: 0;
    }
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown>.sub-menu li:first-child {
        margin-top: 0;
    }
}

.navbar ul .dropdown>.sub-menu li:first-child a {
    margin: 0;
}

.navbar ul .dropdown>.sub-menu li:hover a {
    background: var(--primary);
    color: #fff;
}

.navbar ul .dropdown>.sub-menu li:hover .sub-right a {
    color: #666;
}

.navbar ul .dropdown>.sub-menu li:hover .sub-right li:hover a {
    color: var(--primary);
}

@media screen and (max-width: 1200px) {
    .navbar ul .dropdown>.sub-menu li {
        border-bottom: 1px solid #666;
    }
    .navbar ul .dropdown>.sub-menu li:first-child {
        border-top: 1px solid #666;
    }
}

.navbar ul .dropdown>.sub-menu a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 20px;
    display: block;
    margin: 0;
}

.navbar ul .dropdown>.sub-menu a:hover::before {
    display: none;
}

@media screen and (max-width: 1200px) {
    .navbar-toggler {
        padding: 0.25rem 0.75rem;
        font-size: 1.25rem;
        line-height: 1;
        margin-left: auto;
        border-radius: 0.25rem;
        display: block;
        background: #0914a6;
    }
    .navbar-dark .navbar-toggler {
        color: var(--primary);
        background: var(--primary);
        display: block;
        border: none;
    }
    .navbar-dark .navbar-toggler:focus {
        text-decoration: none;
        outline: none !important;
        border: none;
        box-shadow: none;
    }
    .navbar-dark .navbar-toggler:hover {
        text-decoration: none;
        outline: none;
    }
    .collapse:not(.show) {
        display: block;
    }
    #main-navigation {
        position: fixed;
        top: 0;
        left: -500px;
        min-width: 330px;
        box-shadow: 0 5px 5px rgba(129, 126, 126, 0.31);
        transition: all 0.3s;
        overflow: hidden;
        z-index: 999999999;
        height: 100vh;
        overflow-y: auto;
    }
}

@media screen and (max-width: 1200px) and (max-width: 1200px) {
    #main-navigation {
        background: #333;
    }
    #main-navigation #accordion {
        display: block;
    }
}

@media screen and (max-width: 1200px) {
    #main-navigation.show {
        left: 0;
    }
    .navbar .navbar-nav {
        text-align: left;
        display: block;
    }
    .navbar .navbar-nav li {
        padding: 15px 0;
    }
    .navbar .navbar-nav li a {
        text-align: left;
        border: none;
    }
    .header .logo {
        transition: 0.3s;
        order: 2;
        text-align: center;
        margin: auto;
    }
}


/* .header-top {
  padding: 5px 0;
  background: #f5f5f5;
} */

@media screen and (max-width: 1200px) {
    .header-top {
        display: none;
    }
}

.header-top-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left img {
    height: 15px;
    margin-right: 10px;
}

.header-top-left ul,
.header-top-right ul {
    display: flex;
    align-items: center;
}

.header-top-right ul li {
    margin-right: 10px;
}

.header-top-right ul li a {
    color: #252a2b;
    font-weight: 400;
}

.header-top-right ul li a i {
    margin-left: 5px;
    color: #666;
    font-size: 12px;
}

.header-top-right ul li.dropdown {
    position: relative;
    padding-left: 8px;
    padding-right: 8px;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}

.header-top-right ul li.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-top-right ul li.dropdown .sub-menu {
    display: table;
    position: absolute;
    left: 0;
    margin: 0;
    z-index: 99;
    opacity: 0;
    min-width: 150px;
    visibility: hidden;
    padding: 20px;
    min-width: 260px;
    max-height: 0;
    background: #fff;
    transition: 0.3s;
    transition: all ease 0.1s;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

.header-top-right ul li.dropdown .sub-menu li {
    margin: 0 10px;
    border-bottom: 1px solid #ececec;
    text-transform: uppercase;
}

.header-top-right ul li.dropdown .sub-menu li:last-child {
    border-bottom: 0;
}

.header-top-right ul li.dropdown .sub-menu li:last-child a {
    padding-bottom: 0;
}

.header-top-right ul li.dropdown .sub-menu li:first-child {
    padding-top: 0;
}

.header-top-right ul li.dropdown .sub-menu li a {
    padding: 10px 5px;
    display: block;
}

.header-top-right ul .tell-btn {
    color: #ff0000;
    font-size: 18px;
    font-weight: 700;
}

.header-top-right ul .tell-btn i {
    padding-right: 5px;
    color: #ff0000;
    font-size: 18px;
}

.header-main {
    background: #fff;
    border-bottom: 2px solid var(--primary);
    /* height: 50px; */
    display: flex;
    align-items: center;
}

.header-main.fixed-top {
    /* padding: 5px 0; */
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main-content .accordion {
    display: flex;
    align-items: center;
}

.header-main-content .accordion .dropdown {
    position: relative;
}

.header-main-content .accordion .dropdown i {
    display: none;
}

.header-main-content .accordion .dropdown.dropdown a {
    position: relative;
    padding-right: 40px;
}

@media (max-width:1200px) {
    .header-main-content .accordion .dropdown i {
        display: block;
    }
}

.header-main-content .accordion .dropdown.open .sub-menu {
    opacity: 1;
    position: inherit;
}

.header-main-content .accordion .dropdown:first-child:hover .sub-menu {
    left: 0;
    transform: translateX(0);
}

.header-main-content .accordion .dropdown img {
    width: 30px;
    margin-right: 7px;
}

.header-main-content .accordion .dropdown i {
    margin-left: 7px;
    font-size: 11px;
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown {
        position: inherit;
    }
}

.header-main-content .accordion .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition: all ease 0.4s;
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown:hover .sub-menu {
        transform: translateX(0);
    }
}

.header-main-content .accordion .dropdown .active a {
    color: var(--primary);
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown {
        margin: 0;
    }
}

.header-main-content .accordion .dropdown:first-child {
    margin-left: 0;
}

.header-main-content .accordion .dropdown:last-child {
    margin-right: 0;
}

.header-main-content .accordion .dropdown a {
    font-size: 16px;
    padding: 15px;
    color: #000;
    font-weight: 600;
    transition: all ease 0.4s;
    text-transform: capitalize;
    height: 45px;
    align-items: center;
    display: flex;
}

.header-main-content .accordion .dropdown.active a {
    /* background: #fff; */
    color: var(--primary);
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown a {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown a {
        padding: 10px 20px;
        background: #333;
    }
    .header-main-content .btn-show-cate {
        border-bottom: 1px solid #666;
    }
    .header-main-content .btn-show-cate .categories {
        position: unset;
    }
}

.header-main-content .accordion .dropdown:hover .link>a {
    color: var(--primary);
    /* background: #fff; */
}

.header-main-content .accordion .dropdown .sub-menu {
    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
    min-width: 200px;
    left: 0;
    z-index: 999;
    top: calc(100% + 30px);
    opacity: 0;
    margin: 0;
    transition: all ease 0.3s;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    color: #777;
    background-color: #fff;
    text-align: left;
}


/* .header-main-content .accordion .dropdown .sub-menu.sub-menu-2 {
    display: flex;
    align-items: baseline;
} */

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown .sub-menu.sub-menu-2 {
        display: block;
    }
}

.header-main-content .accordion .dropdown .sub-menu.sub-menu-2 li>a {
    font-weight: 500;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.header-main-content .accordion .dropdown .sub-menu.sub-menu-2 li:last-child a {
    border-bottom: 1px solid #ececec;
}

.header-main-content .accordion .dropdown .sub-menu.sub-menu-2 .sub-menu-min {
    background: #fff;
    display: block;
}

.header-main-content .accordion .dropdown .sub-menu.sub-menu-2 .sub-menu-min li a {
    font-weight: 500;
    border-bottom: 0;
    color: #222;
}

.header-main-content .accordion .dropdown .sub-menu.sub-menu-2 .sub-menu-min li a:hover {
    color: var(--primary);
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown .sub-menu {
        min-width: unset;
        width: 100%;
    }
}

.header-main-content .accordion .dropdown .sub-menu li:last-child a {
    border-bottom: 0;
}

.header-main-content .accordion .dropdown .sub-menu li a {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #ececec;
    display: block;
    text-transform: unset;
    padding: 10px 5px;
}

@media screen and (max-width: 1200px) {
    .header-main-content .accordion .dropdown .sub-menu li a {
        margin: 0;
    }
}

.header-main .logo img {
    width: 180px;
}

@media screen and (max-width: 1200px) {
    .header .right-menu {
        order: 2;
    }
}

.header .right-menu ul {
    display: flex;
    align-items: center;
}

.header .right-menu ul li {
    margin-right: 15px;
}

.header .right-menu ul li a {
    color: #000 !important;
}

.header .right-menu ul li a i {
    color: #000 !important;
    border: 1px solid #000;
}

.header .right-menu ul li:last-child {
    margin-right: 0;
}

.header-search .popup-search {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    transition: transform 0.7s ease;
    display: none;
}

.header-search.show {
    transform-origin: top center;
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.header-search.hide {
    display: none;
}

.header-search .close-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    font-weight: 700;
    padding: 0px 8px;
    border-radius: 50%;
    border: 2px #fff solid;
    top: 15px;
    font-size: 15px;
    cursor: pointer;
}

.header-search .popup-content {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}

.header-search .popup-content .form-search {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 600px;
}

.header-search .popup-content .form-search input {
    background: #fff;
    border: none;
    outline: none;
    height: 59px;
    line-height: 30px;
    font-size: 16px;
    color: #272727;
    padding: 15px 30px;
    width: 100%;
}

.header-search .popup-content .form-search button {
    position: absolute;
    background: #000;
    border: none;
    height: 60px;
    width: 60px;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all ease 0.4s;
}

.header-search .popup-content .form-search button i {
    color: #fff;
}

.header-search button {
    background: 0;
    border: 0;
    outline: none;
}

.header-search button:hover i {
    opacity: 0.8;
}

.header-search button i {
    color: #000;
    transition: all ease 0.4s;
}

.header-search button:focus {
    outline: none;
}

.header-search #search-btn {
    font-size: 16px;
    color: #fff;
    height: 32px;
    width: 32px;
    text-align: center;
    background: transparent;
    color: #000;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 50%;
    /* position: relative;
  left: 50%;
  top: 50%; */
    /* transform: translateX(-50%); */
    box-shadow: none;
    line-height: 16px;
    transition: all ease 0.4s;
}

.header-search #search-btn:hover {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.header-search #search-btn:hover i {
    color: #fff;
}

.header-user .user-form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}

.header-user .popup-user {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    transition: transform 0.7s ease;
    display: none;
}

.header-user.show {
    transform-origin: top center;
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.header-user.hide {
    display: none;
}

.header-user .close-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    font-weight: 700;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    border: 2px #fff solid;
    top: 15px;
    font-size: 15px;
    cursor: pointer;
    z-index: 9999;
}

@media screen and (max-width: 575px) {
    .header-user .close-btn {
        top: 40px;
        color: #000;
        border: 1px solid #000;
    }
}

.header-user .user-content {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: relative;
}

.header-user .main-form {
    background: #fff;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow-y: scroll;
}

@media screen and (max-width: 767px) {
    .header-user .main-form {
        height: 450px;
    }
}

@media screen and (max-width: 440px) {
    .header-user .main-form {
        height: 350px;
    }
}

.header-user .main-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.header-user .main-form .form-title {
    color: #252a2b;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-user .main-form .gr-input {
    margin-bottom: 1rem;
}

.header-user .main-form .gr-input input {
    width: 100%;
    border: solid 1px #ececec;
    padding: 8px 10px;
    box-shadow: inherit;
}

.header-user .main-form .gr-input input:focus {
    outline: none;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

.header-user .main-form .gr-radio {
    margin-bottom: 1rem;
}

.header-user button {
    display: inherit;
    font-size: 16px;
    color: #000;
    height: 32px;
    width: 32px;
    text-align: center;
    background: transparent;
    color: #272727;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    box-shadow: none;
    transition: all ease 0.4s;
}

.header-user button i {
    color: #000;
}

.header-user button:hover {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.header-user .login-btn,
.header-user .res-btn {
    border-radius: 0;
    height: auto;
    width: auto;
    position: inherit;
    padding: 8px 15px;
    transform: translateX(0) translateY(0);
    background-color: #272727;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.like-icon {
    position: relative;
}

.like-icon .count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 15px;
    font-size: 8px;
    background: var(--primary);
    color: #fff;
    z-index: 9;
    font-weight: 600;
    border-radius: 50%;
}

.like-icon i {
    font-size: 16px;
    color: #fff;
    height: 32px;
    z-index: 2;
    width: 32px;
    text-align: center;
    background: transparent;
    color: #272727;
    font-weight: 600;
    line-height: 30px;
    border: 1px solid #272727;
    border-radius: 50%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    box-shadow: none;
    transition: all ease 0.4s;
}

.like-icon:hover i {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.home-banner:hover .slick-next::before,
.home-banner:hover .slick-prev::before {
    opacity: 1;
}

.home-about {
    padding-top: 20px;
}

.home-about .main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.about-bottom .box-slogan {
    font-size: 18px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 1rem;
}

.about-bottom .box-slogan ul {
    padding-left: 30px;
}

.about-bottom .box-slogan ul li {
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}

.about-bottom .box-slogan ul li::before {
    position: absolute;
    left: -25px;
    top: 3px;
    content: "";
    background-image: url(/themes/VUTA/assets/images/orange-check2.png);
    background-size: cover;
    width: 18px;
    height: 18px;
}

.home-about .about-bottom .row .box-content {
    padding-top: 0;
}

.home-about .row .box-content h3 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
}

.home-about .about-bottom .row .box-content h3 {
    margin-bottom: 10px;
}

.home-about .box-content p {
    text-align: justify;
    color: #000;
    line-height: 24px;
}

.home-about .about-mini {
    display: flex;
}

.home-about .about-mini p {
    padding-left: 50px;
}

.home-about .about-mini [class^="col-"]:nth-child(2) p {
    padding-left: 82px;
}

.home-about .about-mini .col-6 {
    margin-bottom: 10px;
}

.home-about .about-mini .box-icon {
    display: flex;
    align-items: center;
}

.home-about .about-mini .box-icon img {
    height: 35px;
    margin-right: 15px;
}

.home-about .about-mini .box-icon span {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
}

.home-about-title {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #afafaf;
}

.home-about-title::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 1.5px;
    background-color: #afafaf;
    margin-right: 10px;
    margin-top: -2px;
}

.home-about .slogan-title {
    text-align: center;
    margin-bottom: 20px;
    line-height: 48px;
}

.home-about .slogan-title strong {
    text-transform: uppercase;
}

.home-about .mid {
    padding: 0 30px 30px;
}

.home-about .mid .box-img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.home-about .right {
    width: 35%;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 20px;
}

@media screen and (max-width: 996px) {
    .home-about .right {
        width: 100%;
        position: inherit;
        transform: translateY(0);
    }
}

.home-about .right .featured-item {
    display: -ms-flexbox;
    transition: 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    display: flex;
    cursor: pointer;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
}

.home-about .right .featured-item:hover {
    -webkit-transform: translateX(-110px);
    transform: translateX(-110px);
}

.home-about .right .featured-item .box-text {
    padding: 30px;
    background: #fff;
    width: 100%;
    border-radius: 18px;
    -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.16);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.16);
}

.home-about .right .featured-item .box-text p {
    font-size: 18px;
    color: #222;
    margin-bottom: 0;
}

@media screen and (max-width: 1400px) {
    .home-about .right .featured-item .box-text p {
        font-size: 14px;
    }
}

.home-about .right .featured-item .box-text h4 {
    color: #000000;
    font-size: 115%;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.home-about .right .box-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding: 35px;
}

.home-about .right .box-icon img {
    width: 43.2px;
}

.welcome {
    padding-top: 20px;
}

.welcome-title {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-title b {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    opacity: 0.1;
    background-color: currentColor;
}

.welcome-title span {
    color: var(--primary);
    margin: 0 15px;
    font-size: 24px;
    font-weight: 700;
}

.welcome-title span i {
    margin-right: 10px;
}

.welcome-slide {
    margin: 0 -15px;
}

.welcome-slide .item {
    margin: 0 15px;
}

.home-sv {
    padding-top: 70px;
}

.home-sv .row [class^="col-"]:first-child .box-img img {
    width: 85%;
}

.home-sv .box-item {
    margin-bottom: 40px;
}

.home-sv .home-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-sv .nav-tabs {
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 0;
}

.home-sv .nav-tabs li {
    position: relative;
    margin-right: 60px;
}

.home-sv .nav-tabs li.active a {
    color: var(--primary);
}

.home-sv .nav-tabs li:last-child {
    margin-right: 0;
}

.home-sv .nav-tabs li:first-child::before {
    display: none;
}

.home-sv .nav-tabs li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: transparent;
    border-bottom-color: #252a2b;
    top: 6px;
    left: -35px;
}

.home-sv .nav-tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #252a2b;
}

.home-products {
    padding-top: 70px;
}

.home-products .row [class^="col-"]:first-child .box-img img {
    width: 85%;
}

@media screen and (max-width: 996px) {
    .home-products .row [class^="col-"]:first-child .box-img {
        width: auto;
        margin-bottom: 10px;
    }
}

.home-products .box-btn {
    text-align: center;
    margin-top: 60px;
}

.home-products .box-btn .seemore {
    background: #252a2b;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 40px;
    padding-bottom: 12px;
    transition: all ease 0.4s;
}

.home-products .box-btn .seemore:hover {
    background: var(--primary);
}

.home-products .box-btn .seemore i {
    margin-left: 10px;
    font-size: 14px;
}

.home-products .box-item {
    margin-bottom: 20px;
}

.home-products .home-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-products .nav-tabs {
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 0;
}

.home-products .nav-tabs li {
    position: relative;
    margin-right: 60px;
}

.home-products .nav-tabs li.active a {
    color: var(--primary);
}

.home-products .nav-tabs li:last-child {
    margin-right: 0;
}

.home-products .nav-tabs li:first-child::before {
    display: none;
}

.home-products .nav-tabs li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: transparent;
    border-bottom-color: #252a2b;
    top: 6px;
    left: -35px;
}

.home-products .nav-tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #252a2b;
}

.service-slider {
    margin: 0 -15px;
}

.service-slider .item {
    margin: 0 15px;
    background: #fff;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width:575px) {
    .service-slider .item {
        margin: 5px 10px;
    }
    .service-slider {
        margin: 0 !important;
    }
}

.service-slider .item:hover {
    color: var(--primary);
}

.service-slider .item .category {
    font-size: 14px;
    text-transform: inherit;
    margin-top: 10px;
}

.service-slider .item .slide-title {
    font-weight: 500;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-left: 10px;
    padding-right: 10px;
}

.service-slider .item .slide-title a {
    color: #252a2b;
    transition: all ease 0.4s;
}

.service-slider .item .price {
    font-weight: 700;
    color: var(--primary);
}

.service-slider .item .box-btn {
    display: flex;
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-slider .item .detail-btn {
    background: #201e1e;
    width: 48%;
    color: #fff;
    font-weight: 600;
    padding: 5px;
    font-size: 14px;
    transition: all ease 0.4s;
    border-radius: 4px;
}

.service-slider .item .detail-btn:hover {
    background: red;
}

.service-slider .item .cart-btn {
    width: 48%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
    padding: 5px;
    transition: all ease 0.4s;
}

.service-slider .item .cart-btn:hover {
    background: red;
}

.blog {
    padding-top: 30px;
    padding-bottom: 20px;
}

.home-blog .wraper {
    padding: 30px 0 20px;
}

.home-blog .wraper:nth-child(2) {
    background: #f9f9f9;
}

.home-blog .wraper:nth-child(2) .home-blog-slide .item .box-content {
    background: #fff;
}

.home-service h2,
.flow h2,
.feedback h2,
.home-blog .home-title,
.blog .home-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 1rem;
    background: url(/themes/VUTA/assets/images/line.png) no-repeat center bottom;
}

.home-blog .nav-tabs,
.blog .nav-tabs {
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 0;
}

.home-blog .nav-tabs li,
.blog .nav-tabs li {
    position: relative;
    margin-right: 60px;
}

.home-blog .nav-tabs li.active a,
.blog .nav-tabs li.active a {
    color: var(--primary);
}

.home-blog .nav-tabs li:last-child,
.blog .nav-tabs li:last-child {
    margin-right: 0;
}

.home-blog .nav-tabs li:first-child::before,
.blog .nav-tabs li:first-child::before {
    display: none;
}

.home-blog .nav-tabs li::before,
.blog .nav-tabs li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: transparent;
    border-bottom-color: #252a2b;
    top: 6px;
    left: -35px;
}

.home-blog .nav-tabs li a,
.blog .nav-tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #252a2b;
}

.aside .aside-content-item {
    margin-bottom: 10px;
}

.home-blog-slide,
.blog-slide {
    margin: 0 -15px;
}

.home-blog-slide .item,
.blog-slide .item {
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.home-blog-slide .item .box-content,
.blog-slide .item .box-content {
    background-color: #f9f9f9;
    padding: 15px 20px;
}

.home-blog-slide .item .home-blog-title,
.blog-slide .item .home-blog-title {
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    font-weight: 700;
    transition: all ease 0.4s;
    color: #252a2b;
    line-height: 24px;
}

.home-blog-slide .item:hover .home-blog-title,
.blog-slide .item:hover .home-blog-title {
    color: var(--primary);
}

.home-blog-slide .item p,
.blog-slide .item p {
    font-weight: 400;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #252a2b;
}

.home-blog-slide .item span,
.blog-slide .item span {
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.blog {
    padding-bottom: 70px;
}

.blog .box-btn {
    margin-top: 40px;
    text-align: center;
}

.blog .box-btn .seemore {
    background: #252a2b;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 40px;
    padding-bottom: 8px;
    padding-bottom: 12px;
    transition: all ease 0.4s;
}

.blog .box-btn .seemore:hover {
    background: var(--primary);
}

.blog .box-btn .seemore i {
    font-size: 14px;
    margin-left: 10px;
}

.home-insta {
    padding-top: 30px;
    padding-bottom: 60px;
}

.home-insta .row {
    align-items: center;
}

.home-insta .main-title {
    font-weight: 700;
    color: #252a2b;
    font-size: 32px;
}

.home-insta .box-btn {
    margin-top: 30px;
}

@media screen and (max-width: 996px) {
    .home-insta .box-btn {
        padding-bottom: 30px;
    }
}

.home-insta .box-btn a {
    background: #252a2b;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 40px;
    padding-bottom: 12px;
    transition: all ease 0.4s;
}

@media screen and (max-width: 1400px) {
    .home-insta .box-btn a {
        font-size: 16px;
    }
}

.home-insta .box-btn a:hover {
    background: var(--primary);
}

.home-insta .box-btn a i {
    margin-left: 10px;
    font-size: 14px;
}

.home-insta-slider {
    margin: 0 -5px;
}

.home-insta-slider .item {
    margin: 0 5px;
    position: relative;
}

.home-insta-slider .item:hover .box-content {
    transform: translateY(0);
}

.home-insta-slider .item .box-content {
    position: absolute;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    max-height: 100% !important;
    overflow-y: auto;
    bottom: 0;
    padding: 4px 10px;
    font-size: 14px;
    color: #fff;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.about {
    padding: 40px 0;
}

.about-content {
    padding: 40px;
    background-color: #0047ab;
    position: relative;
    z-index: 0;
}

.about-content::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.85);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.about-content-item {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.about-content-item .cv {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    padding-left: 20px;
    font-style: italic;
    position: relative;
}

.about-content-item .cv::before {
    position: absolute;
    content: ".";
    top: -8px;
    font-size: 24px;
    left: 5px;
}

.about-content-item [class^="col-"] {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-content-item img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.22);
}

.about-content-item .box-btn {
    padding-top: 40px;
}

.about-content-item .box-btn a {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.22);
    background-color: var(--primary);
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px;
    display: inline-block;
}

.about-content-item .box-btn a:hover {
    box-shadow: none;
}

.about-content strong {
    text-transform: uppercase;
}

.about-title {
    font-weight: 700;
}

.about .row {
    align-items: center;
}

.about p {
    font-size: 18px;
}

.about p a {
    text-transform: uppercase;
}

.about .slogan {
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
}

.banner.banner-service .item .box-img {
    width: 100%;
}

.banner.banner-service .item .box-img img {
    width: 100% !important;
    max-width: unset;
}

.banner.banner-service .item .box-img::after {
    content: "";
}

.banner .item {
    position: relative;
}

.banner .box-title {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.banner .box-title h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

@media screen and (max-width: 996px) {
    .banner .box-title h2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 575px) {
    .banner .box-title h2 {
        font-size: 25px;
    }
    .banner.banner-service .box-title {
        top: 50% !important;
    }
    .banner.banner-service {
        min-height: 90px !important;
    }
}

.banner .box-title h2 span {
    color: #fff;
}


/* .service {
  padding-top: 70px;
} */

.service .main-title {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}

.service b {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    opacity: 0.1;
    background-color: currentColor;
}

.service span {
    margin: 0 15px;
    font-size: 24px;
    font-weight: 700;
}

.service .box-service-item {
    background-color: #f3f3f3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.22);
}

.service .box-service-content {
    padding: 20px 15px 20px 15px;
}

.service .box-service-content .service-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.para {
    background-color: #f0f0f0;
    padding-top: 40px;
    margin-top: 60px;
}

.para .main-title {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}

.para b {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    opacity: 0.1;
    background-color: currentColor;
}

.para span {
    margin: 0 15px;
    font-size: 24px;
    font-weight: 700;
}

.para .row {
    align-items: center;
}

.para .row [class^="col-"] {
    margin-bottom: 40px;
}

.price-page {
    padding-top: 70px;
}

.price-page .main-title {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}

.price-page b {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    opacity: 0.1;
    background-color: currentColor;
}

.price-page span {
    margin: 0 15px;
    font-size: 24px;
    font-weight: 700;
}

.commit {
    padding: 70px 0;
}

.commit .commit-content {
    background-color: blue;
    transform: translate3d(0px, 4.33px, 0px);
    backface-visibility: hidden;
    opacity: 0.93;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.22);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 15px 0;
    color: #fff;
}

.commit .commit-content h2 {
    text-transform: uppercase;
    text-decoration: underline;
    font-style: italic;
    font-weight: 700;
}

.commit .commit-content p {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center !important;
}

.more-sv {
    padding-top: 70px;
    padding-bottom: 40px;
}

.more-sv-title {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.related {
    padding-top: 40px;
    padding-bottom: 70px;
}

.related .more-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.products {
    padding: 40px 0;
}

.products-item {
    background-color: #fff;
    box-shadow: 0 0px 2px 0px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    /* border-radius: 10px; */
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    position: relative;
}

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

.products-item:hover .box-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

.products-item .box-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 0;
}

.description img {
    margin-bottom: 10px;
}

.products-item .box-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all ease 0.7s;
}

.aside {
    position: sticky;
    top: 75px;
    height: 100%;
}

.products-item .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.products-item:hover {
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.products-item .box-content {
    padding: 5px;
    padding-bottom: 10px;
    text-align: center;
}

.products-item .box-content .category-title {
    font-size: 14px;
    text-transform: inherit;
    color: var(--primary);
    margin-top: 10px;
    /* opacity: 0.5; */
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.products-item .box-content .name-products {
    font-weight: 600;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 24px;
    font-family: "Roboto", sans-serif !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-left: 10px;
    text-align: center;
    /* height: 48px; */
    padding-right: 10px;
    color: #3c3c3c;
    ;
}

.products-item .box-content .name-products a {
    color: #252a2b;
    transition: all ease 0.4s;
}

.products-item .box-content .name-products:hover {
    color: var(--primary);
}

.products-item .box-content .name-products:hover a {
    color: var(--primary);
}

.products-item .price {
    color: red;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.products-item .discounts_money {
    color: #666;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: 400;
}

.products-item .box-btn {
    display: flex;
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
}

.products-item .detail-btn {
    background: #201e1e;
    width: 48%;
    color: #fff;
    font-weight: 600;
    padding: 8px;
    font-size: 14px;
    transition: all ease 0.4s;
    line-height: 20px;
    border-radius: 6px;
}

.products-item .detail-btn:hover {
    background: red;
}

.products-item .add-to-cart {
    width: 48%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    transition: all ease 0.4s;
    border-radius: 6px;
}

.products-item .add-to-cart:hover {
    background: red;
}

.products-detail {
    padding: 35px 0;
}

.products-detail .lSSlideOuter .lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #c4c4c4;
    border-radius: 6px;
}

.products-detail .lSSlideOuter .lSGallery li {
    border: 1px solid #c4c4c4;
}

.products-detail .products-title {
    color: #2f22e6;
    font-size: 19px;
    font-weight: 700;
}

.products-detail .main-price {
    font-size: 24px;
    font-weight: 700;
    color: red;
}

.products-detail .price {
    margin-bottom: 10px;
}

.products-detail p {
    font-size: 16px;
    color: #201e1e;
    margin-bottom: 15px;
    font-style: italic;
}

.products-detail .gr-btn {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.products-detail .gr-btn .cart-btn {
    /* height: 35.2px; */
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 7px 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 15px;
    transition: all ease 0.4s;
    display: block;
}

.products-detail .gr-btn .cart-btn:hover {
    background: #252a2b;
}

.products-detail .privacy ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.products-detail .privacy ul li img {
    width: 40px;
    margin-right: 20px;
}

.products-detail .privacy ul li span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.products-detail .meta {
    border-top: 1px solid #ececec;
    padding: 10px 0;
}

.products-detail .meta span {
    color: #a3a5a7;
    font-size: 13px;
}

.products-detail .social {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.products-detail .social li {
    margin-right: 20px;
}

.products-detail .social li a {
    color: #a3a5a7;
    transition: all ease 0.4s;
}

.products-detail .col-lg-9 {
    border-right: 1px solid #ececec;
}

@media (max-width:992px) {
    .products-detail .col-lg-9 {
        border: none;
    }
}

.products-detail .social li a:hover {
    color: #fff;
}

.products-detail .social li a:hover i {
    background: var(--primary);
    border: 1px solid var(--primary);
}

.products-detail .social li i {
    height: 32px;
    width: 32px;
    text-align: center;
    transition: all ease 0.4s;
    border: 1px solid #a3a5a7;
    border-radius: 50%;
    font-size: 16px;
    line-height: 30px;
    background: transparent;
}

.products-footer .nav-tabs {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
}

.products-footer .nav-tabs li {
    margin-right: 5px;
    margin-bottom: 0;
    list-style: none;
}

.products-footer .nav-tabs li:hover a {
    color: #ed1c24;
}

.products-footer .nav-tabs li.active a {
    color: #ed1c24;
    font-weight: 600;
    border-top: 2px solid #201e1e;
    background: #fff;
    border-bottom: 1px solid #fff;
}

.products-footer .nav-tabs li a {
    border-top: 2px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 10px 20px;
    color: #5e5f63;
    position: relative;
    font-size: 14px;
    z-index: 99;
    font-weight: 600;
    display: block;
    transition: all ease 0.4s;
}

@media (max-width:575px) {
    .products-footer .nav-tabs li a {
        padding: 10px;
    }
}

.products-footer #content16,
.products-footer #content17,
.products-footer #content18 {
    border: 1px solid #ddd;
    padding: 40px;
}

.products-footer-title {
    text-align: center;
    font-weight: 700;
}

.products-footer .box-img {
    text-align: center;
}

.products-footer .box-img img {
    width: auto;
}

.products-footer h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

h2 strong {
    font-weight: 600 !important;
}

.image-center {
    margin-bottom: 10px;
}

figure .image-center {
    margin-bottom: 0;
}

.products-footer h3 strong {
    font-weight: 700 !important;
}

.products-footer table {
    margin-bottom: 15px;
}

.products-footer ul {
    padding-left: 15px;
    /* margin-left: 30px; */
}

.products-footer ul li:active a {
    background: var(--primary);
    color: #fff;
}

.products-footer ol {
    padding: 5px;
    margin-left: 30px;
}

.products-footer ul li {
    margin-bottom: 2px;
    list-style: disc;
}

.more-products {
    padding: 3px 0;
}

@media (min-width:992px) {
    /* .products-footer .row [class*="col-"]:first-child {
        border-right: 1px solid #ececec;
    } */
}

.more-products .main-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary);
}

.more-products .products-slide {
    margin: 0 -15px;
}

.more-products .products-slide .products-item {
    box-shadow: none;
}

.more-products .products-slide .item {
    margin: 0 10px;
    border-radius: 10px;
}

.blog .row {
    margin: 0;
    background-color: #f9f9f9 !important;
    align-items: center;
    margin-bottom: 40px;
}

.blog .row .left,
.blog .row .right {
    padding: 0;
}

.blog .row .left img {
    width: 100%;
}

.blog .row .right {
    height: 100%;
    padding: 20px;
}

.blog .row .right h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.blog .row .right h3 a {
    color: #222;
    font-weight: 700;
    font-size: 18px;
}

.blog .row .right p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.blog .row .right .detail-btn {
    color: #333;
    font-weight: 700;
    opacity: 0.5;
    transition: all ease 0.4s;
    text-transform: uppercase;
}

.blog .row .right .detail-btn:hover {
    opacity: 1;
}

.blog-detail {
    padding: 40px 0;
    margin-bottom: 20px;
}

.blog-detail-item {
    /* padding-top: 40px; */
}

.blog-detail-item h2 {
    font-size: 24px;
    font-weight: 700;
}

.blog-detail-item h5 {
    font-weight: 700;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.blog-detail-item .info {
    padding-left: 15px;
}

.blog-detail-item .info li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    list-style: disc;
    font-style: italic;
}

.blog-detail-main {
    padding-left: 80px;
    padding-right: 30px;
}

.blog-detail-main h1 {
    color: #252a2b;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-detail-main .post {
    margin-bottom: 20px;
}

.blog-detail-main .post span {
    margin-right: 4px;
    font-size: 13px;
}

.blog-detail-main .post span.author {
    color: var(--primary);
}

.blog-detail-main .ml {
    padding: 25px;
    background: #f3f3f3;
    border: 2px solid #000;
}

.blog-detail-main .ml-title i {
    margin-right: 10px;
}

.blog-detail-main .ml ul li {
    margin-bottom: 15px;
}

.blog-detail-main .ml ul li:last-child {
    margin-bottom: 0;
}

.blog-detail-main .ml .main-head {
    color: #252a2b;
    font-weight: 700;
}

.blog-detail-main .ml .min-head {
    color: #666;
    padding-left: 15px;
}

.blog-detail-main p {
    font-weight: 400;
    text-align: justify;
    font-size: 18px;
    color: #555;
}

.blog-detail .more {
    font-size: 24px;
    font-style: italic;
}

.blog-detail .more span {
    font-size: 24px;
}

.blog-detail .more a {
    font-size: 24px;
}

.blog-detail figcaption {
    text-align: center;
    font-style: italic;
}

.blog-detail .box-img {
    margin-bottom: 1rem;
}

.blog-detail .box-social {
    width: 65px;
    padding-top: 150px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100%;
    padding-bottom: 20px;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    float: left;
    text-align: left;
}

.blog-detail .box-social ul li {
    margin-bottom: 20px;
}

.blog-detail .box-social ul li a {
    color: #999;
    transition: all ease 0.4s;
}

.blog-detail .box-social ul li a:hover {
    color: #fff;
}

.blog-detail .box-social ul li a:hover i {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

.blog-detail .box-social ul li a i {
    font-size: 18px;
    height: 32px;
    width: 32px;
    color: #999;
    border: 1px solid #999;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all ease 0.4s;
}

.blog-detail .cmt {
    box-shadow: 0px 0px 10px #e2e6e7;
    border-radius: 10px;
    padding: 20px;
}

.blog-detail .related {
    padding: 40px 0;
}

.blog-detail .related-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20;
}

.blog-detail .related .title a {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
    color: #333;
    font-size: 16px;
}

.blog-detail .left {
    border-right: 1px solid #e2e6e7;
}

@media screen and (max-width: 996px) {
    .blog-detail .left {
        border-right: 0;
    }
}

.blog-detail .aside {
    position: sticky;
    top: 100px;
    height: 100%;
}

.blog-detail .aside-item {
    margin-bottom: 40px;
}

.blog-detail .aside-item:last-child {
    margin-bottom: 0;
}

.blog-detail .aside-item ul li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.blog-detail .aside-item ul li.active a,
.blog-detail .aside-item ul li:hover a {
    color: var(--primary);
}

.blog-detail .aside-item ul li a {
    color: #252a2b;
    transition: all ease 0.4s;
}

.blog-detail .aside-title {
    margin-bottom: 20px;
}

.blog-detail .aside-content-item {
    margin-bottom: 15px;
}

.blog-detail .aside-content-item .box-img {
    margin-bottom: 0;
}

.blog-detail .aside-content-item img {
    margin-bottom: 0;
}

.blog-detail .aside-content-item .row {
    align-items: center;
}

.blog-detail .aside-content-item h4 a {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
    color: #252a2b;
    font-size: 16px;
    transition: all ease 0.4s;
}

.blog-detail .aside-content-item h4 a:hover {
    color: var(--primary);
}

.cart {
    padding: 40px 0;
}

.cart [class^="col-"]:first-child {
    padding-right: 30px;
    border-right: 1px solid #c6c6c6;
}

@media screen and (max-width: 996px) {
    .cart [class^="col-"]:first-child {
        border-right: 0;
    }
}

.cart .gr-btn {
    margin-top: 40px;
    padding: 10px 0;
}

@media screen and (max-width: 996px) {
    .cart .gr-btn {
        text-align: center;
        padding: 0 15px;
    }
}

.cart .gr-btn a {
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #222;
    color: #222;
    background: #fff;
    transition: all ease 0.4s;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 575px) {
    .cart .gr-btn a {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

.cart .gr-btn a:hover {
    background: #222;
    color: #fff;
}

.cart .gr-btn a i {
    margin-right: 10px;
    transition: all ease 0.4s;
}

.cart .gr-btn .add-to-cart {
    padding: 10px 20px;
    border: 1px solid #222;
    background: #222;
    box-shadow: 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    transition: all ease 0.4s;
}

@media screen and (max-width: 575px) {
    .cart .gr-btn .add-to-cart {
        display: block;
        width: 100%;
    }
}

.cart .gr-btn .add-to-cart:hover {
    background: var(--primary);
}

.cart .cart-form {
    padding: 0 15px;
}

@media screen and (max-width: 996px) {
    .cart .cart-form {
        padding: 0;
    }
}

.cart .cart-form .cart-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    padding-top: 15px;
    border-bottom: 2px #c6c6c6 solid;
    margin-bottom: 15px;
}

.cart .cart-form ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 10px;
}

.cart .cart-form ul li:last-child {
    border-bottom: 2px solid #c6c6c6;
    margin-bottom: 30px;
}

.cart .cart-form .checkout-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    color: #fff;
    transition: all ease 0.4s;
    border: 1px solid var(--primary);
}

.cart .cart-form .checkout-btn:hover {
    background: #222;
}

.cart .cart-form .coupon {
    margin-top: 30px;
}

.cart .cart-form .coupon h3 {
    font-size: 16px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart .cart-form .coupon h3 i {
    margin-right: 10px;
    color: #c6c6c6;
}

.cart .cart-form .coupon input {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ececec;
    color: #333;
    margin-bottom: 20px;
}

.cart .cart-form .coupon input:focus {
    box-shadow: 0 0 5px #ccc;
    opacity: 1 !important;
    outline: 0;
    color: #333;
}

.cart .cart-form .coupon .coupon-btn {
    padding: 10px 20px;
    border: 0;
    display: block;
    width: 100%;
    border: 1px solid #ececec;
    text-transform: uppercase;
}

.checkout,
.success {
    padding: 40px 0;
}

.checkout h2,
.success h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.checkout p,
.success p {
    line-height: 28px;
}

.checkout .form-info,
.success .form-info {
    padding-bottom: 40px;
    border-bottom: 2px dashed #ddd;
}

.checkout .form-info label,
.success .form-info label {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.checkout .form-info input,
.success .form-info input,
.checkout .form-info textarea,
.success .form-info textarea {
    margin-bottom: 20px;
    width: 100%;
    padding: 8px 13px;
    border-radius: 4px;
    border: 1px solid #ececec;
    font-size: 14px;
}

.checkout .form-info input:focus,
.success .form-info input:focus,
.checkout .form-info textarea:focus,
.success .form-info textarea:focus {
    outline: none;
    box-shadow: 0 0 5px #ccc;
}

.checkout .form-info textarea,
.success .form-info textarea {
    margin-bottom: 0;
}

.checkout .payment,
.success .payment {
    margin-top: 40px;
}

.checkout .payment-group #paymentCod,
.success .payment-group #paymentCod,
.checkout .payment-group #paymentBank,
.success .payment-group #paymentBank,
.checkout .payment-group #paymentQR,
.success .payment-group #paymentQR {
    display: none;
}

.checkout .payment-group #cod:checked~#paymentCod,
.success .payment-group #cod:checked~#paymentCod {
    display: block;
}

.checkout .payment-group #bank:checked~#paymentBank,
.success .payment-group #bank:checked~#paymentBank {
    display: block;
}

.checkout .payment-group #QR:checked~#paymentQR,
.success .payment-group #QR:checked~#paymentQR {
    display: block;
}

.checkout .payment input[type="radio"],
.success .payment input[type="radio"] {
    display: none;
    cursor: pointer;
}

.checkout .payment input[type="radio"]+label[for]::before,
.success .payment input[type="radio"]+label[for]::before {
    content: "";
    border: 1px solid #000;
    width: 36px;
    height: 36px;
    position: absolute;
    left: -68.5px;
    top: 0;
    background: #fff;
    border-radius: 50%;
    line-height: 36px;
    cursor: pointer;
}

.checkout .payment input[type="radio"]+label[for],
.success .payment input[type="radio"]+label[for] {
    position: relative;
    line-height: 36px;
    margin-left: 68.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    /* Secondary/#333333 */
    color: #333333;
}

.checkout .payment input[type="radio"]+label[for]::after,
.success .payment input[type="radio"]+label[for]::after {
    height: 30.5px;
    width: 30.5px;
    top: 2.5px;
    left: -65.5px;
    border-radius: 50%;
    position: absolute;
    content: "";
    background: var(--primary);
    display: none;
    cursor: pointer;
}

.checkout .payment input[type="radio"]:checked+label[for]::after,
.success .payment input[type="radio"]:checked+label[for]::after {
    display: block;
}

.checkout .payment input[type="radio"]:checked+label[for]::before,
.success .payment input[type="radio"]:checked+label[for]::before {
    border: 1px solid var(--primary);
}

.checkout .payment-group,
.success .payment-group {
    margin-bottom: 33px;
}

.checkout .payment-desc,
.success .payment-desc {
    padding-left: 110px;
    margin-top: 10.67px;
}

.checkout .payment-desc h3,
.success .payment-desc h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 19px;
    padding-left: 25px;
    /* identical to box height */
    margin-bottom: 16.53px;
    margin-top: 15px;
    /* Primary/var(--primary) */
    color: var(--primary);
    position: relative;
}

.checkout .payment-desc h3::before,
.success .payment-desc h3::before {
    content: ".";
    position: absolute;
    left: 12px;
    top: -3px;
}

.checkout .payment-desc img,
.success .payment-desc img {
    margin-bottom: 24.47px;
    margin-top: 25px;
}

@media screen and (max-width: 767px) {
    .checkout .payment-desc,
    .success .payment-desc {
        padding-left: 0;
    }
}

.checkout .payment .table-responsive table,
.success .payment .table-responsive table {
    width: 100%;
}

.checkout .payment .table-responsive tr td,
.success .payment .table-responsive tr td {
    padding-bottom: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    /* identical to box height */
    /* Secondary/#333333 */
    color: #333333;
}

.checkout .payment .table-responsive tr button,
.success .payment .table-responsive tr button {
    color: #00b2ff;
    border: none;
    background: transparent;
}

.checkout .payment .table-responsive tr span,
.success .payment .table-responsive tr span {
    font-weight: 700;
    margin-right: 24px;
}

.checkout .payment .form-cart ul,
.success .payment .form-cart ul {
    margin-bottom: 0;
}

.checkout .payment .form-cart ul li,
.success .payment .form-cart ul li {
    padding: 16px 0 !important;
}

.checkout .payment .form-cart ul li:first-child,
.success .payment .form-cart ul li:first-child {
    border: 0;
}

.checkout .payment .form-cart ul li:last-child,
.success .payment .form-cart ul li:last-child {
    font-weight: 600;
}

.checkout .payment .form-cart ul.normal li:last-child,
.success .payment .form-cart ul.normal li:last-child {
    font-weight: 400;
    padding-top: 0;
    padding-bottom: 45px;
}

.checkout .payment .form-cart ul.list-info,
.success .payment .form-cart ul.list-info {
    padding-left: 15px;
}

.checkout .payment .form-cart ul.list-info li,
.success .payment .form-cart ul.list-info li {
    font-weight: 400;
    position: relative;
    display: block;
}

.checkout .payment .form-cart ul.list-info li::before,
.success .payment .form-cart ul.list-info li::before {
    content: ".";
    position: absolute;
    left: -15px;
    top: 12px;
}

.checkout .back,
.success .back {
    padding-top: 40px;
    padding-bottom: 20px;
}

.checkout .back a,
.success .back a {
    padding: 15px 20px;
    background: #333333;
    color: #fff;
    font-weight: 700;
    transition: all ease 0.4s;
}

.checkout .back a:hover,
.success .back a:hover {
    background: var(--primary);
}

.checkout .form-cart,
.success .form-cart {
    background: #ffffff;
    padding-left: 45px;
    padding-top: 44px;
    padding-right: 45px;
    padding-bottom: 52px;
    box-shadow: 0 0 5px #ccc;
}

@media screen and (max-width: 440px) {
    .checkout .form-cart,
    .success .form-cart {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.checkout .form-cart-item,
.success .form-cart-item {
    border-top: 2px solid var(--primary);
    padding-top: 24px;
}

.checkout .form-cart-title,
.success .form-cart-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 35px;
}

.checkout .form-cart .submit-btn,
.success .form-cart .submit-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    transition: all ease 0.4s;
    width: 100%;
    border: 1px solid var(--primary);
    text-transform: uppercase;
    font-weight: 14px;
    font-weight: 600;
    padding: 15px 0;
    margin-top: 26px;
}

.checkout .form-cart .submit-btn:hover,
.success .form-cart .submit-btn:hover {
    background: #333;
    border: 1px solid #333;
    color: var(--primary);
}

.checkout .form-cart .submit-btn:focus,
.success .form-cart .submit-btn:focus {
    outline: none;
}

.checkout .form-cart .gr-input input,
.success .form-cart .gr-input input {
    width: 100%;
    border: 0;
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    /* GRAY */
    color: #8f8f8f;
}

.checkout .form-cart .gr-input input:focus,
.success .form-cart .gr-input input:focus {
    outline: none;
}

.checkout .form-cart ul,
.success .form-cart ul {
    margin-bottom: 52px;
}

.checkout .form-cart ul li,
.success .form-cart ul li {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    padding: 16px 0;
}

.checkout .form-cart ul li:nth-child(2),
.success .form-cart ul li:nth-child(2) {
    padding-bottom: 0;
}

.checkout .form-cart ul li:last-child,
.success .form-cart ul li:last-child {
    padding: 0;
    font-weight: 400;
}

.success-item {
    background: #ffffff;
    box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.21);
    margin-bottom: 42px;
}

.success-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 45px;
    padding-top: 24px;
}

@media screen and (max-width: 1200px) {
    .success-content {
        padding-left: 32px;
        padding-bottom: 32px;
    }
}

.success-content .payment-desc {
    padding-left: 0;
}

.success-content .payment-desc button {
    color: #00b2ff;
    border: none;
    background: transparent;
}

.success-content .payment-desc table {
    margin-bottom: 10px;
}

.success-content .payment-desc span {
    font-weight: 700;
    margin-right: 24px;
}

.success-content h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    /* Secondary/#333333 */
    color: #333333;
}

.success-content .list-info {
    padding-left: 15px;
}

.success-content .list-info li {
    margin-bottom: 18px;
    line-height: 33px;
    list-style: disc;
}

.success-content .list-info .red {
    color: #ff0000;
    font-weight: 700;
}

.success-content p {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    /* Secondary/#333333 */
    color: #333333;
}

.success-head {
    text-align: center;
    background: var(--primary);
    padding: 32px 0;
}

.success-head h2 {
    display: inline-block;
    margin-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    margin-left: 21px;
    color: #fff;
}

.success .back {
    text-align: center;
}

.back-to-top {
    position: fixed !important;
    bottom: 50px;
    right: 15px;
    display: none;
    width: 50px;
    height: 50px;
    background: #fff;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    color: #333;
    font-size: 17px;
    border: 1px solid #ddd;
    z-index: 3;
    transition: all ease 0.5s;
}

.back-to-top.active {
    display: block;
}

.back-to-top:hover,
.back-to-top .active {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}


/* body.has-contact-footer .footer {
  padding-bottom: 10px;
} */

.footer .footer-top {
    background: #000;
}

.footer .footer-top .accordion {
    display: flex;
    gap: 25px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (max-width: 996px) {
    .footer {
        padding-bottom: 0;
    }
    .footer .footer-top .accordion {
        display: none;
    }
}

@media (max-width:575px) {
    .footer .footer-top .accordion {
        display: flex;
        gap: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.footer .footer-top .accordion li a {
    font-weight: 700;
}

.footer-top-main {
    position: relative;
}

.footer-logo {}


/* .footer-logo img {
  height: 90px;
} */

.footer-info {
    color: #fff;
    font-size: 12px;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-info i {
    margin-right: 5px;
}

.footer-info .address {
    text-align: left;
    padding-left: 0;
}

.footer-info .address li {
    list-style: disc;
}

.footer-main {
    padding-top: 15px;
    background-color: #252a2b;
    color: #fff;
    padding-bottom: 15px;
    position: relative;
    background-image: url(../images/GioiThieuBH_2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-main::before {
    background: linear-gradient(90deg, rgba(36, 28, 0, 1) 0%, rgba(57, 41, 10, 0.8211485277704832) 0%, rgba(232, 80, 10, 0.7063025893951331) 84%);
    inset: 0;
    z-index: 1;
    position: absolute;
    content: "";
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

.footer-main .list-iso {
    display: flex;
    gap: 15px;
    padding-left: 0;
}

.footer-main .list-iso img {
    width: 60px;
}

.footer-main .list-iso li {
    list-style: none;
}

@media (max-width:1200px) {
    .footer-main {
        background-color: #252a2b;
        color: #fff;
        position: relative;
        padding-bottom: 70px;
    }
}

@media (max-width:992px) {
    .footer-main {
        padding-bottom: 0;
    }
}

.footer-main .footer-logo {
    width: 120px;
    margin-bottom: 30px;
}

.footer-main .address ul {
    padding: 0 !important;
}

.footer-main .address li {
    margin-bottom: 10px;
    list-style: none !important;
}

.footer-main ul li {
    list-style: circle;
    font-size: 14px;
}

.footer-main ul {
    padding-left: 15px;
}

.footer-main .address li i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-main .gr-gov {
    display: flex;
    align-items: center;
}

.footer-main .gr-gov a img {
    width: 105px;
}

.footer-main .gr-gov .gov {
    width: 160px;
    margin-right: 8px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
    color: #fff;
    text-transform: inherit;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    font-weight: 500;
    transition: all ease 0.4s;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 5px 0;
    text-align: center;
    background: #333;
    border-top: 2px solid red;
    color: hsla(0, 0%, 100%, .5);
}

.footer-bottom-main {
    text-align: center;
}

.footer-bottom-main p {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
    display: contents;
}

.footer-bottom-main p a {
    color: #fff;
}

.footer-bottom-main .social {
    display: flex;
    align-items: center;
}

.footer-bottom-main .social li {
    margin-right: 12px;
    margin-bottom: 0;
}

.footer-bottom-main .social li a:hover {
    color: #fff;
}

.footer-bottom-main .social li a:hover i {
    background: var(--primary);
}

.footer-bottom-main .social li:last-child {
    margin-right: 0;
}

.footer-bottom-main .social li i {
    font-size: 14px;
    width: 32px;
    height: 32px;
    position: relative;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    background: #000;
    transition: all ease 0.4s;
}

.footer-fixed {
    animation: stuckMoveUp 0.6s;
    position: fixed;
    bottom: -300px;
    width: 100%;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: #f3f3f3;
    transition: all ease 0.5s;
}

@media screen and (max-width: 996px) {
    .footer-fixed {
        position: inherit;
    }
}

.footer-fixed.fixed {
    bottom: 0;
}

.footer-fixed .select-selected {
    padding: 8px 13px;
    border: solid 1px #ececec !important;
    box-shadow: none;
}

@media screen and (max-width: 1200px) {
    .footer-fixed .custom-select {
        margin-bottom: 15px;
    }
}

.footer-fixed .custom-select .select-items {
    top: unset !important;
    bottom: 50px !important;
}

.footer-fixed input {
    width: 100%;
    border: solid 1px #ececec;
    border-radius: 7px;
    padding: 8px 13px;
}

.footer-fixed input:focus {
    outline: none;
    box-shadow: 0 0 5px #ccc;
}

.footer-fixed .submit-btn {
    display: block;
    text-align: center;
    border: none;
    width: 100%;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all ease 0.4s;
}

@media screen and (max-width: 1400px) {
    .footer-fixed .submit-btn {
        font-size: 14px;
    }
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.footer-fixed .submit-btn:hover {
    background: #5b5b5b;
}

.home-banner-img {
    margin-top: 40px;
    overflow: hidden;
}

.home-banner-img .home-banner-item .box-img {
    position: relative;
}

.home-banner-img .home-banner-item .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.home-banner-img .home-banner-item:hover .box-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

.home-banner .item .box-img {
    position: relative;
}

.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.home-banner:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

@media (max-width:992px) {
    .box-scroll {
        overflow-x: scroll;
        width: 100%;
        white-space: nowrap;
    }
}

.box-title-underline {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.box-title-underline h2 a {
    color: var(--primary);
}


/* .box-title-underline .icon-title {
    background: var(--primary);
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    padding: 0 10px;
}

.box-title-underline .icon-title::before {
    position: absolute;
    background: url(/themes/VUTA/assets/images/right-icon.png);
    content: "";
    height: 47px;
    right: -50px;
    background-repeat: no-repeat;
    width: 51px;
}

.box-title-underline .icon-title a {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    display: flex;
    height: 47px;
    align-items: center;
    justify-content: center;
    padding-left: 14px;
}

.box-title-underline .icon-title a i {
    margin-right: 4px;
} */

.home-service {
    background: rgb(245, 245, 245);
    padding: 20px 0;
}

.home-service [class^="col-"] {
    margin-bottom: 20px;
}

.home-service-item {
    box-shadow: 0 1px 3px -2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    height: 100%;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.home-service .box-item {
    margin-bottom: 20px;
}

.home-service .box-item:last-child {
    margin-bottom: 0;
}

.home-service-item .box-img {
    position: relative;
    /* aspect-ratio: 270/190; */
    overflow: hidden;
    margin-bottom: 0;
    aspect-ratio: 1/1;
}

.home-service-item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    transition: all ease 0.7s;
}

.home-service-item .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.home-service-item .box-content {
    background: #fff;
    padding: 10px;
    text-align: center;
}

.home-service-item:hover .box-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

.home-service-item:hover .box-img img {
    transform: scale(1.1);
}

.home-service-item .box-content h3 a {
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.5;
}

.home-service-item:hover .box-content h3 a {
    color: var(--primary);
}


/* .home-service-item .box-content h3 {
    height: 48px;
} */

.home-service-item .box-content .price {
    color: red;
    font-size: 16px;
    font-weight: 700;
}

.home-service-item .box-content .discounts_money {
    color: #666;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: 400;
}

.banner-qc .box-img {
    position: relative;
}

.banner-qc .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.banner-qc .home-banner-item:hover .box-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

.banner-qc {
    overflow: hidden;
}

.home-video h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #b0241f;
    font-weight: 500;
    font-size: 18px;
}

.home-video h2::before {
    position: absolute;
    content: "";
    background: #444;
    height: 2px;
    width: 50px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.home-video {
    margin: 40px 0;
}

.header-logo img {
    width: 200px !important;
}

.btn-show-cate span {
    cursor: pointer;
    position: relative;
}

.btn-show-cate span,
.btn-show-cate a {
    color: #fff;
    height: 45px;
    display: flex !important;
    align-items: center;
    padding: 15px;
    background: #333;
    min-width: 330px;
    font-weight: 600;
    font-size: 18px;
}

.btn-show-cate a {
    border-top: 1px solid #ddd;
    font-size: 13px;
    padding-left: 15px;
    transition: all ease 0.3s;
    background: #fff;
    color: #444;
    text-transform: uppercase;
}

.btn-show-cate a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.btn-show-cate span i {
    margin-right: 8px;
}

.btn-show-cate .categories {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    width: 330px;
    min-height: 275px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.btn-show-cate.home-page .categories {
    max-height: 2000px !important;
}

.btn-show-cate #show-cate:checked~.categories {
    max-height: 2000px;
}

.btn-show-cate.home-page #show-cate:checked~.categories {
    max-height: 0 !important;
}

.header-main.fixed-top .btn-show-cate.home-page .categories {
    max-height: 0 !important;
    transition: all 0s ease-in-out;
    min-height: 0;
}

.header-main.fixed-top .btn-show-cate #show-cate:checked~.categories {
    max-height: 2000px !important;
}

.header-main.fixed-top .btn-show-cate:hover #show-cate~.categories {
    max-height: 2000px !important;
}

@media (max-width:1200px) {
    .header-main.fixed-top .btn-show-cate:hover #show-cate~.categories {
        max-height: 0;
    }
}

.btn-show-cate .categories ul {
    display: block;
}

.aside h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #272727;
}

.aside .aside-item h4 {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 10px;
}

.aside .aside-item h4 a {
    color: #252a2b;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.aside .price .money {
    font-size: 16px;
    color: red;
    font-weight: 600;
}

.aside .price .discounts_money {
    font-size: 12px;
    text-decoration: line-through;
    color: #666;
}

.aside .aside-item {
    /* padding-bottom: 10px; */
    border: 1px solid #ececec;
}


/* .aside .aside-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
} */

.pagination {
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pagination li a {
    height: 37px;
    width: 37px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #c4c4c4;
    display: block;
    border-radius: 4px;
    color: #272727;
    transition: all ease 0.3s;
}

.pagination li.active a,
.pagination li:hover a {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.blog-page {
    padding: 20px 0;
}

.blog-page .blog-item {
    display: flex;
    margin-bottom: 20px;
}

.blog-page .blog-item .box-img {
    aspect-ratio: 300/150;
    overflow: hidden;
    min-width: 300px;
    max-width: 300px;
    margin-right: 15px;
    /* width: 300px; */
    /* height: 150px; */
    position: relative;
}

.blog-page .blog-item .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0;
}

.blog-page .blog-item:hover .box-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    opacity: 1;
}

.blog-page .blog-item .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-page .blog-item .text-muted ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.blog-page .blog-item .text-muted ul li {
    font-size: 13px;
}

.blog-page .blog-item p {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 16px;
}

.blog-page .blog-item h3 a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    color: #272727;
    font-weight: 600;
    font-size: 16px;
    transition: all ease 0.4s;
}

.blog-page .blog-item h3 a:hover {
    color: var(--primary);
}

.blog-page .col-lg-9 {
    border-right: 1px solid #c4c4c4;
}

@media (max-width:992px) {
    .blog-page .col-lg-9 {
        border-right: none;
    }
}

@media (max-width:767px) {
    .blog-page .blog-item .text-muted ul {
        display: block;
    }
    .blog-page .blog-item .text-muted ul li {
        margin-bottom: 5px;
    }
}

@media (max-width:575px) {
    .blog-page .blog-item {
        display: block;
    }
    .blog-page .blog-item .box-img {
        max-width: unset;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .blog-page .blog-item .text-muted ul {
        display: flex;
    }
    .blog-page .blog-item .text-muted ul li {
        margin-bottom: 0px;
    }
}

.login-box,
.regis-form {
    width: 100% !important;
    margin: 40px 0;
    padding: 15px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.login-box,
.regis-form {
    width: 100% !important;
    margin: 40px 0;
    padding: 20px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

.login-box .gr-input label,
.regis-form .gr-input label {
    display: block;
    margin-bottom: 10px;
}

.login-box .gr-input input,
.regis-form .gr-input input {
    width: 100%;
    border-radius: 6px;
    padding: 5px 10px;
    border: 1px solid #c4c4c4;
}

.regis-form .gr-input,
.login-box .gr-input {
    margin-bottom: 10px;
}

.regis-form h3,
.login-box h3 {
    text-align: center;
}

.regis-form .res-btn,
.login-box .login-btn {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid var(--primary);
    color: #fff;
    background: var(--primary);
    border-radius: 6px;
    text-align: center;
    margin: 10px auto;
    display: block;
    transition: all ease 0.4s;
}

.regis-form .res-btn:hover,
.login-box .login-btn:hover {
    background: #fff;
    color: var(--primary);
}

.regis-form .other_form a em,
.login-box .other_form a em {
    margin-right: 3px !important;
}

.login-box .navbar-nav,
.regis-form .navbar-nav {
    flex-direction: unset;
    justify-content: space-between;
}

#rate_list {
    margin-top: 10px;
}

@media (max-width:1400px) {
    .footer-logo {
        max-width: 265px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:1200px) {
    .footer-logo {
        max-width: 220px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:992px) {
    .footer-logo {
        position: unset;
        max-width: 100%;
        margin-top: 15px;
    }
}

.percent {
    position: absolute;
    height: 36px;
    width: 36px;
    background: red;
    color: #fff;
    top: 0;
    left: 0;
    line-height: 34px;
    font-size: 13px;
    text-align: center;
}

@media (max-width:1400px) {
    .btn-show-cate span,
    .btn-show-cate a {
        min-width: 285px;
    }
    .btn-show-cate .categories {
        width: 285px;
    }
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

@media (max-width:1200px) {
    .btn-show-cate span,
    .btn-show-cate a {
        min-width: 330px;
    }
    .btn-show-cate .categories {
        width: 330px;
    }
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
    .header-main {
        /* background: #fff !important; */
        height: auto;
    }
    .header-main .logo img {
        width: auto !important;
        height: 70px;
    }
}

@media (max-width:575px) {
    .header-main .logo img {
        width: auto !important;
        height: 60px;
    }
    .home-banner-img {
        margin-top: 20px;
        overflow: hidden;
    }
    .welcome {
        padding-top: 0px;
    }
}

.products-detail .gr-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.products-detail .gr-contact a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    border-radius: 6px;
    transition: all ease 0.4s;
    max-width: 190px;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.products-detail .gr-contact a:hover {
    opacity: 0.8;
}

.products-detail .gr-contact a:first-child {
    background: var(--primary);
    color: #fff;
}

.products-detail .gr-contact a:last-child {
    background: #7a9c59;
    ;
    color: #fff;
}

.home-banner {
    cursor: grab;
}

.lSSlideOuter .lSPager.lSGallery img {
    object-fit: contain;
}

.products-footer .aside h3 {
    background: var(--primary);
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    height: 47px;
    padding: 14px;
    color: #fff;
    line-height: 15px;
    position: relative;
    width: 100%;
}

.products-footer .aside {
    position: sticky;
    top: 75px;
    height: 100%;
}

@media (max-width:992px) {
    .products-footer .aside {
        display: none !important;
    }
}

.products-footer-content {
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
}

.products-footer-content figure {
    width: 100% !important;
}

.products-footer-content figure img {
    width: 100% !important;
}

.products-footer-content #user-nav-tabs {
    margin-bottom: 15px;
}

.box-tag p {
    font-size: 14px;
    color: #a3a5a7;
    font-style: normal;
}

.box-tag p span a {
    color: #ed1c24;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
}

.more-products .slick-track {
    margin: 0 !important;
}

@media (max-width:1200px) {
    .header-logo {
        width: 100% !important;
        order: 1;
    }
    .header-logo img {
        height: 50px !important;
    }
}

@media (max-width:767px) {
    .more-products {
        padding: 40px 0;
    }
}

.home-video iframe {
    width: 100% !important;
    height: 220px !important;
}

.blog-page .aside section {
    border: 1px solid #e3e3e3;
    /* padding: 10px 0; */
}

.contact .aside section {
    border: 1px solid #e3e3e3;
    /* padding: 10px 0; */
}

.contact .aside .aside-item,
.blog-page .aside .aside-item {
    margin: 0;
    padding: 0;
}

.products .aside h3,
.contact .aside h3,
.blog-page .aside h3 {
    background: var(--primary);
    color: #fff;
    margin-bottom: 0;
    padding: 10px;
}

.blog-item .date {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    background: var(--primary);
    height: 48px;
    width: 48px;
    line-height: 20px;
    text-align: center;
}

.blog-item .date .day {
    font-size: 14px;
    font-weight: 700;
    display: block;
    padding-top: 3px;
}

.contact {
    margin: 40px 0;
}

.contact .contact-content {
    padding-left: 80px;
    max-width: 700px;
}

.contact .contact-content p {
    font-size: 18px;
}

.contact .contact-content ul li {
    margin-bottom: 10px;
    list-style: disc;
    font-style: italic;
    color: #444;
}

.contact .contact-content ul li a {
    color: #444;
}

.contact .contact-content ul {
    padding-left: 15px;
}

.contact .contact-content ul li i {
    margin-right: 5px;
}

@media (max-width:992px) {
    .contact .contact-content {
        padding-left: 0;
    }
    .home-service .box-item .box-btn {
        padding: 10px 0;
    }
    .home-blog .wraper {
        padding: 10px 0;
    }
}

@media (max-width:575px) {
    .products-detail .gr-btn .cart-btn {
        height: 35.2px;
        background: var(--primary);
        color: #fff;
        text-align: center;
        padding: 7px;
        font-weight: 700;
        text-transform: uppercase;
        margin-left: 10px;
        transition: all ease 0.4s;
        display: block;
        font-size: 13px;
    }
    .products-detail .gr-contact a {
        padding: 10px;
    }
}

.home-service .box-item ul {
    display: flex;
    gap: 30px;
    margin-right: auto;
    margin-left: 80px;
    margin-top: 20px;
}

.home-service .box-item ul li a {
    color: #444;
    font-size: 18px;
    font-weight: 600;
    transition: all ease 0.4s;
}

.home-service .box-item ul li a:hover {
    color: var(--primary);
}

@media (max-width:767px) {
    .home-service .box-title-underline .icon-title a {
        font-size: 20px;
        font-weight: 500;
    }
    .home-service .box-item ul li a {
        font-size: 14px;
    }
}

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

figure {
    margin-bottom: 1rem;
}

figcaption {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    font-style: italic;
    background: var(--primary);
    padding: 5px;
    color: #fff;
}

.products-footer p {
    margin-bottom: 0.5rem;
}

.form-contact {
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.form-contact h2 {
    text-align: center;
    margin-bottom: 10px;
}

.form-contact span {
    font-style: italic;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

.form-contact .gr-input {
    margin-bottom: 15px;
}

.form-contact .gr-input textarea {
    min-height: 100px;
}

.form-contact .submit {
    display: flex;
    width: 100px;
    height: 40px;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--third);
    transition: all ease 0.4s;
    border: 0;
    align-items: center;
}

.form-contact .submit:hover {
    background: var(--primary);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.home-blog-slide .item .box-img {
    margin-bottom: 0;
    aspect-ratio: 4/3;
}

.products-footer {
    margin-bottom: 30px;
}

.page img {
    margin-bottom: 10px;
}

.icon-title .icon img {
    height: 24px;
    filter: brightness(0) invert(1);
    margin-right: 5px;
}

.slick-slider .products-item {
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
}

.lSGallery li {
    aspect-ratio: 1/1;
}

.lSGallery li img {
    display: block;
    height: 100% !important;
    max-width: 100%;
    object-fit: cover !important;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 0 !important;
    border: 1px solid var(--primary);
}

.products-footer .aside .aside-item {
    margin-bottom: 0;
    padding-bottom: 0;
}

.products-footer .aside section {
    border: 1px solid #ececec;
}

.products-footer .aside .aside-item .box-img {
    margin-bottom: 0;
}

.map iframe {
    width: 100%;
}

.tab-item {
    display: none;
}

.tab-item.active {
    display: block;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1250px;
    }
}

.blog-item .box-img {
    overflow: hidden;
}

.blog-item .box-img img {
    transition: all ease 0.4s;
}

.blog-item:hover .box-img img {
    transform: scale(1.1);
}

.aside-item .box-img {
    margin-bottom: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.aside-item .box-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.short-desc ul {
    padding-left: 15px;
    margin-bottom: 10px;
}

.short-desc {
    margin-bottom: 15px;
}

.short-desc ul li {
    list-style: disc;
    margin-bottom: 10px;
}

@media (max-width:992px) {
    .products-detail .products-title {
        margin-top: 20px;
    }
    .products-detail .price {
        height: auto;
        margin-top: 5px;
    }
    .flow [class^="col-"] {
        margin-bottom: 20px;
    }
}

main {
    overflow: hidden;
}

@media (max-width:575px) {
    .products .container,
    .home-service .container {
        padding: 0;
    }
    .products .container .row,
    .home-service .container .row {
        margin: 0;
    }
    .products .container .row [class^="col-"],
    .home-service .container .row [class^="col-"] {
        padding: 0;
    }
    .products .products-item {
        margin-bottom: 0;
    }
    .home-service-item {
        margin: 0;
        border: 1px solid #ececec;
        box-shadow: none;
    }
    .home-service .box-title-underline {
        margin: 0;
    }
    .box-title-underline .box-btn {
        margin-top: 20px;
        margin-left: 50px;
        margin-right: 15px;
    }
    .home-about .mid {
        padding: 0;
    }
    .home-about {
        padding: 0;
    }
    .home-about .slogan-title {
        font-size: 19px !important;
        margin-bottom: 10px;
        line-height: 28px;
    }
    .home-about-title {
        position: relative;
        font-weight: 500;
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #afafaf;
    }
    .author-dealer {
        margin-bottom: 10px !important;
    }
    .home-about .right {
        padding-top: 0;
    }
    [class^="home-"] h2 {
        font-size: 20px !important;
    }
    .home-blog,
    .blog {
        padding-top: 20px;
    }
    .home-blog {
        overflow: hidden;
    }
    .home-blog .nav-tabs,
    .blog .nav-tabs {
        justify-content: center;
        padding-bottom: 15px;
        border-bottom: 0;
    }
    .home-service {
        padding: 0;
    }
    .header .right-menu ul li {
        margin-right: 8px;
    }
    .navbar-toggler {
        padding: 2px !important;
        background: var(--primary) !important;
    }
    .blog-page .blog-item {
        padding-bottom: 10px;
        border-bottom: 1px solid #ececec;
    }
    .blog-page {
        padding: 10px 0 !important;
    }
    .blog-detail-main {
        padding: 0;
    }
    .blog-detail .box-social {
        width: 100%;
        padding-top: 0;
        position: inherit;
        float: unset;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .blog-detail .box-social ul {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }
    .blog-detail .box-social ul li {
        margin-bottom: 0;
    }
    .blog-detail {
        padding-top: 20px;
        padding-bottom: 0;
    }
    .blog-detail-main .post {
        margin-bottom: 10px;
    }
    .blog-detail-main h1 {
        color: #252a2b;
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 10px;
    }
    .blog-detail .left {
        border-right: 0;
        border-bottom: 1px solid #ececec;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .blog-detail .aside-item {
        margin-bottom: 15px;
    }
    .blog-detail .aside-content-item .box-img {
        aspect-ratio: 1/1;
    }
    .blog-detail .aside-content-item .box-img img {
        object-fit: cover;
        height: 100%;
    }
    .blog-detail .aside-content-item {
        margin-bottom: 15px;
        border-bottom: 1px dashed #ccc;
        padding-bottom: 15px;
    }
    .products {
        padding: 0;
    }
    .products-item .box-content .name-products {
        height: auto;
    }
    .products-detail {
        padding: 15px 0;
    }
    .products .aside {
        margin-top: 20px;
    }
    .products .aside h3 {
        padding-left: 15px;
        margin-bottom: 10px;
    }
    .products .aside .aside-item .box-img {
        margin-right: 10px;
    }
    .products .aside .aside-item {
        padding-right: 10px;
    }
    .more-products {
        padding: 0;
    }
    .products-footer {
        margin-bottom: 15px;
    }
    .more-products .main-title {
        margin-bottom: 15px;
    }
    .contact {
        margin: 20px 0 10px;
    }
    .form-contact {
        padding: 15px;
    }
    .form-contact h2 {
        font-size: 22px;
    }
}

.header-main-content .accordion .hassub::before {
    position: absolute;
    content: "\f078";
    font-family: fontawesome;
    color: #000;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    width: 12px;
}

@media (max-width:1200px) {
    .header-main-content .accordion .hassub::before {
        display: none;
    }
    .fadeindown {
        animation: unset;
    }
}

.header-main-content .accordion .hassub:hover:before {
    color: var(--primary);
    transition: all ease 0.4s;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

.overlay .close {
    color: #fff;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.header-main.fixed-top {
    background: #fff;
}

#page-bodyhtml span {
    font-size: 16px !important;
}

.flow {
    background-image: url(/themes/VUTA/assets/images/banner-whyus.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 50px 0;
}

.flow::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    content: "";
}

.flow .container {
    position: relative;
    z-index: 1;
}

.flow h2 {
    color: #fff;
    margin-bottom: 30px;
}

.flow .flow-item {
    height: 100%;
    background: linear-gradient(90deg, rgba(36, 28, 0, 1) 0%, rgba(236, 166, 35, 0.8967787798713235) 0%, rgba(232, 62, 10, 0.9415967070421919) 100%);
    text-align: center;
    padding: 15px;
    color: #fff;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px 40px 4px 40px;
    transition: all ease 0.4s;
    cursor: pointer;
}

@media (max-width:996px) {
    .flow .flow-item .icon img {
        width: 100px;
    }
}

@media (min-width:992px) {
    .col-xl-20 {
        width: 20%;
    }
}

.flow .flow-item:hover {
    transform: translateY(-10px);
}

.flow .flow-item .icon {
    text-align: center;
    margin-bottom: 20px;
}

.flow .flow-item p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
}

.flow .flow-item .icon span {
    font-size: 60px;
    font-weight: 700;
}

.feedback {
    padding: 60px 0 30px;
    background: #f9f9f9;
}

.feedback .feedback-slider {
    margin: 0 -20px;
}

.feedback .feedback-slider .item {
    margin: 20px;
    margin-top: 100px;
}

.feedback .feedback-slider .item .feedback-item {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 70px 30px 20px;
    position: relative;
}

.feedback .feedback-slider .item .feedback-item::before {
    position: absolute;
    content: "\f10e";
    right: 20px;
    bottom: 10px;
    font-family: fontawesome;
    color: var(--primary);
    font-size: 40px;
}

.feedback .feedback-slider .item .feedback-item .fback-cuscompany {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.feedback .feedback-slider .item .feedback-item .fback-content {
    font-style: italic;
}

.feedback .feedback-slider .item .feedback-item .avatar {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: cover;
    top: -60px;
}

@media (max-width:575px) {
    .home-service [class^="col-"] {
        margin-bottom: 0;
    }
    .home-about .row .box-content {
        padding-top: 0px;
    }
    .home-about .row .box-content h3 {
        text-transform: uppercase;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .about-bottom h3 {
        font-size: 20px;
    }
    .home-about .about-mini p {
        font-size: 14px;
        text-align: left !important;
        margin-bottom: 0;
    }
    .about-bottom {
        margin-top: 0px;
        padding: 0 0 20px !important;
    }
    .home-about .about-mini .row {
        margin: 0;
    }
    .home-about .about-mini .row [class^="col-"] {
        padding: 0;
    }
    .home-about .about-mini .box-icon span {
        color: var(--primary);
        font-size: 24px;
        font-weight: 700;
    }
    .resize h3 {
        text-align: center;
    }
    .feedback {
        padding: 20px 0 20px;
        background: #f9f9f9;
    }
    .flow h2,
    .feedback h2,
    .home-blog .home-title,
    .blog .home-title {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    .flow {
        padding: 20px 0 10px;
    }
    .feedback .feedback-slider .item {
        margin-top: 70px;
    }
    .author-dealer {
        gap: 10px !important;
    }
    .author-dealer h4 {
        font-size: 18px;
    }
    .home-service-item .box-content h3 a {
        font-size: 12px;
    }
}


/* .home-about .box-content {
    padding-top: 25px;
} */

.home-about .box-content h4 {
    font-size: 20px;
}

@media (max-width:996px) {
    .home-about .box-content-item:nth-child(2) [class^="col-"]:first-child {
        order: 2;
    }
    .home-about .box-content-item:nth-child(2) [class^="col-"]:last-child {
        order: 1;
    }
    .home-about .box-content {
        padding-top: 10px;
    }
    .flow .flow-item .icon {
        margin-bottom: 0;
    }
    .flow [class^="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
    .flow .row {
        margin: 0 -5px;
    }
}

.primary-btn {
    display: inline-flex;
    justify-content: center;
    padding-left: 15px;
    align-items: center;
    padding-right: 15px;
    height: 40px;
    border-radius: 4px 20px 4px 20px;
    background: linear-gradient(90deg, rgba(36, 28, 0, 1) 0%, rgba(236, 166, 35, 0.8967787798713235) 0%, rgba(232, 62, 10, 0.9415967070421919) 100%);
    color: #fff;
}

.primary-btn:hover {
    background: linear-gradient(90deg, rgba(36, 28, 0, 1) 0%, rgba(232, 62, 10, 0.9415967070421919) 0%, rgba(236, 166, 35, 0.8967787798713235) 100%);
    color: #fff;
}

.home-about .box-content-item .box-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.home-about .box-content-item .box-content .box-icon {
    background: var(--primary);
    padding: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}