@charset "UTF-8";

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/inter/Inter_18pt-Light.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/inter/Inter_18pt-LightItalic.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/inter/Inter_18pt-Regular.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/inter/Inter_18pt-Medium.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/inter/Inter_18pt-MediumItalic.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/inter/Inter_18pt-SemiBold.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/inter/Inter_18pt-SemiBoldItalic.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/inter/Inter_18pt-Bold.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/inter/Inter_18pt-BlackItalic.ttf) format("truetype");
    font-display: swap;

}

:root {
    --bic-primary-font: "Inter", sans-serif;
    --bic-font-size: 16px;
    --bic-container-width: 1410px;
    --bic-gap: 80px;
    --bic-grid-gap: 15px;
    --bic-primary-color: #f58220;
    --bic-primary-hover-color: #d6721a;
    --bic-secondary-color: #000;
    --bic-text-color: #222;
    --bic-border-color: #ddd;
    --bic-border-radius: 8px;
    --bic-header-height: 100px;
    --bic-shadow-sm: 0 2px 6px 2px rgba(0, 0, 0, .08), 0 1px 2px 0 rgba(0, 0, 0, .15);
    --bic-transition: all .3s ease;
    --fancybox-accent-color: var(--bic-primary-color);
    --fancybox-thumbs-border-radius: var(--bic-border-radius);
}

body {
    margin: 0;
    padding: 0;
    color: var(--bic-text-color);
    background: #fff;
    font: 400 var(--bic-font-size)/1.5 var(--bic-primary-font);
    overflow-x: hidden;
    /* letter-spacing: .3px; */
    letter-spacing: 0.05em;
}

body.menu-open {
    overflow: hidden;
}

body.loading {
    overflow: hidden;
    pointer-events: none;
}

/* Define */

.show-mobile,
.show-tablet {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .show-tablet {
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    .show-mobile {
        display: block;
    }
}

/* Header.css */

.bic-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000;
    z-index: 100;
    transition: var(--bic-transition);
}

.bic-header--sticky {
    position: fixed !important;
    background-color: var(--bic-secondary-color);
    backdrop-filter: blur(5px);
}

.admin-bar .bic-header {
    top: 32px;
}

.bic-header__desktop,
.bic-header__mobile {
    flex: 0 0 100%;
    max-width: 100%;
}

.bic-header__col {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 var(--bic-grid-gap);
}

.bic-header__desktop {
    align-items: center;
    justify-content: space-between;
}

.bic-header__desktop .bic-header__col {
    max-width: fit-content;
}

.bic-header__col--left {
    flex: 1;
    justify-content: flex-start;
}

.bic-header__col--center {
    flex: 1 0 auto;
    justify-content: center;
}

.bic-header__col--right {
    flex: 1;
    transition: var(--bic-transition);
    justify-content: flex-end;
}

.bic-header__main {
    position: relative;
    z-index: 1;
}

.bic-header__main .bic-header__col>* {
    display: flex;
    align-items: center;
    height: var(--bic-header-height);
    transition: var(--bic-transition);
}

.bic-header--sticky .bic-header__col>* {
    height: calc(var(--bic-header-height)*.9);
}

.bic-header--sticky .bic-header__right-item {
    height: calc(var(--bic-header-height)*.9);
}

.bic-header__right-item {
    position: relative;
}

.bic-header__right-item:not(:last-child) {
    /* padding-right: 15px; */
    margin-right: 15px;
}

.bic-header__search .btn.btn--search {
    --background-color: transparent;
    --background-hover-color: transparent;
    --color-text: var(--bic-text-color);
    --color-hover-text: var(--bic-primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bic-header__search>.btn.btn--search {
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
}

/* .bic-header--sticky .bic-header__search > .btn.btn--search{
    border-color: var(--bic-text-color);
    color: var(--bic-text-color) !important;
} */

.bic-header__search>.btn.btn--search:hover {
    color: #fff !important;
    border-color: var(--bic-primary-hover-color);
}

/* .bic-header--sticky .bic-header__search > .btn.btn--search:hover{
    color: var(--bic-text-color) !important;
    border-color: var(--bic-text-color);
} */

.bic-header__search-form {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 100%;
    width: 0;
    pointer-events: none;
    border-radius: 30px;
    z-index: 5;
    display: block;
    transition: var(--bic-transition);
}

.bic-header__search:hover .bic-header__search-form {
    width: 360px;
    pointer-events: auto;
    opacity: 1;
}

.bic-header__search-form .search-field {
    height: 46px;
}

.header__cta .btn.btn--primary {
    --background-color: var(--bic-primary-color);
    --background-hover-color: var(--bic-secondary-color);
    --color-text: var(--bic-text-color);
    --color-hover-text: #fff;
}

/* .bic-header--sticky .header__cta .btn.btn--primary{
    --background-color: var(--bic-secondary-color);
    --background-hover-color: var(--bic-secondary-color);
    --color-text: #fff;
    --color-hover-text: #fff;
} */

/* Logo.css */

.bic-header__logo img {
    width: auto;
    height: 30px;
    transition: var(--bic-transition);
}

.bic-header:not(.bic-header--sticky) .bic-header__logo img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* Menu.css */

ul.menu-list,
ul.sub-menu {
    list-style: none;
    margin: 0;
}

.bic-header__nav,
.bic-header__nav>ul,
.bic-header__nav>ul>li {
    display: flex;
    align-items: center;
    height: 100%;
}

.bic-header__nav ul li {
    position: relative;
}

.bic-header__nav:not(.bic-header__nav-mobile)>ul>li+li {
    margin-left: 30px;
}

.bic-header__nav ul>li>a {
    position: relative;
    height: 100%;
    color: #fff;
    line-height: normal;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
}

/* 
.bic-header--sticky .bic-header__nav ul>li>a {
    color: var(--bic-text-color)
} */

.bic-header__nav ul>li>a svg {
    fill: currentColor;
}

.bic-header__nav>ul>li>a {
    text-transform: uppercase;
}

/* .bic-header__nav:not(.bic-header__nav-mobile)>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--bic-primary-color);
    transition: var(--bic-transition);
} */

.bic-header__nav ul>li:hover>a,
.bic-header__nav ul>li>a:focus,
.bic-header__nav ul>li[class*="current"]>a {
    color: var(--bic-primary-hover-color) !important;
}

/* .bic-header--sticky .bic-header__nav ul>li:hover>a,
.bic-header--sticky .bic-header__nav ul>li>a:focus,
.bic-header--sticky .bic-header__nav ul>li[class*="current"]>a {
    color: var(--bic-text-color) !important;
} */

/* .bic-header__nav:not(.bic-header__nav-mobile) ul>li:hover>a::before,
.bic-header__nav:not(.bic-header__nav-mobile) ul>li>a:focus::before,
.bic-header__nav:not(.bic-header__nav-mobile) ul>li[class*="current"]>a::before {
    width: 100%;
} */


.bic-header__nav:not(.bic-header__nav-mobile) ul>li[class*="has-children"]>a:after {
    content: '';
    position: relative;
    -webkit-mask-image: url(../images/icons/icon_chevron_down.svg);
    mask-image: url(../images/icons/icon_chevron_down.svg);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: auto;
    mask-size: auto;
    background-color: currentColor;
    width: 13px;
    height: 13px;
    display: block;
    margin-left: 4px;
    margin-bottom: 2px;
    transition: var(--bic-transition);
}

/* .bic-header__nav li[class*="has-children"].active>a:after,
.bic-header__nav li[class*="has-children"]:hover>a:after {
    transform: rotate(180deg);
} */

.bic-header__nav:not(.bic-header__nav-mobile) ul.sub-menu {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--bic-border-color);
    color: var(--bic-text-color);
    padding: 10px 0;
    min-width: 230px;
    left: -15px;
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 98;
    pointer-events: none;
    transition: var(--bic-transition);
    transform: translateY(15px);
}

.bic-header__nav:not(.bic-header__nav-mobile) li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: unset;
}

.bic-header__nav ul ul.sub-menu li a {
    display: block;
    color: var(--bic-text-color);
    padding: 6px 15px;
    white-space: nowrap;
}

.bic-header__nav:not(.bic-header__nav-mobile) ul ul.sub-menu li[class*="has-children"]>a:after {
    content: "\e92f";
    right: 15px;
}

.bic-header__nav:not(.bic-header__nav-mobile) ul.sub-menu>li ul.sub-menu {
    left: 100%;
    top: 0;
}

/* Menu-mobile.css */

.bic-header__menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: var(--bic-transition);
}

.bic-header__menu-mobile-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
}

.bic-header__btn-toggle-menu {
    --background-color: transparent;
    --background-hover-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.bic-header__btn-toggle-menu .bic-header__toggle-icon {
    position: relative;
    width: 32px;
    height: 20px;
}

.bic-header__btn-toggle-menu .bic-header__toggle-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--bic-text-color);
    transition: var(--bic-transition);
}

/* Vị trí 3 thanh ngang */
.bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(1) {
    top: 0;
}

.bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(2) {
    /* (20px - 1.5px) / 2 = 9.25px */
    top: 9.25px;
}

.bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(3) {
    width: 24px;
    /* 75% của 32px */
    bottom: 0;
}

/* Khi mở menu: tạo hình chữ X */
body.menu-open .bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(1) {
    transform: rotate(45deg);
    top: 9.25px;
}

body.menu-open .bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(2) {
    width: 0;
    left: 50%;
}

body.menu-open .bic-header__btn-toggle-menu .bic-header__toggle-icon i:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9.25px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {

    body:not(.menu-open) .bic-header__menu-mobile {
        visibility: hidden;
        opacity: 0;
    }

    body:not(.menu-open) .bic-header__menu-mobile-container {
        transform: translateX(-105%);
    }

    .bic-header__menu-mobile-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 2;
        width: 100%;
        max-width: 400px;
        background: #fff;
        padding-top: var(--bic-header-height);
        padding-bottom: 45px;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        transition: var(--bic-transition);
    }

    body.admin-bar .bic-header__menu-mobile-container {
        padding-top: calc(var(--bic-header-height) + 32px);
    }

    .bic-header__menu-mobile-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .bic-header__menu-mobile-inner {
        position: relative;
        height: 100%;
        padding: 20px var(--bic-grid-gap);
    }

    body.menu-open .bic-header__menu-mobile-inner {
        border-top: 1px solid var(--bic-border-color);
    }

    .bic-header__nav-mobile {
        width: 100%;
    }

    .bic-header__nav-mobile>ul,
    .bic-header__nav-mobile ul li {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .bic-header__nav-mobile ul li a {
        font-size: 18px;
        color: var(--bic-text-color);
        width: 100%;
    }

    .bic-header__nav-mobile ul>li>a svg {
        display: none !important;
    }

    .bic-header__nav-mobile ul li a i {
        font-size: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        padding: 5px;
        background: 0 0;
        transition: var(--bic-transition);
    }

    .bic-header__nav-mobile ul li[class*="submenu-open"] a i {
        transform: translateY(-50%) rotate(180deg);
    }

    .bic-header__nav-mobile ul>li+li {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(21, 68, 119, .15);
    }

    .bic-header__nav-mobile ul.sub-menu {
        position: relative;
        width: 100%;
        padding-left: var(--bic-grid-gap);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .bic-header__nav-mobile li[class*="submenu-open"] ul.sub-menu {
        max-height: 1000px;
    }

    .bic-header__nav-mobile ul.sub-menu>li:first-child {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(21, 68, 119, .05);
    }

    .bic-header__nav-mobile ul.sub-menu>li+li {
        border-top: 1px solid rgba(21, 68, 119, .05);
    }

    .bic-header__nav-mobile ul ul.sub-menu li a {
        padding: 0;
    }

    .menu-mobile-search {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(21, 68, 119, .15);
    }

    .content-sidebar {
        order: 2;
        margin-top: var(--bic-gap);
    }

}

@media only screen and (max-width: 480px) {
    .bic-header__menu-mobile-container {
        max-width: 100%;
    }
}

/* Section.css */

.wow {
    animation-duration: 700ms;
    animation-delay: 300ms;
}

.swiper-control-btn {
    color: var(--bic-text-color);
    background-color: var(--bic-primary-color);
    border-color: var(--bic-primary-color);
}

.swiper-control-btn:hover {
    background-color: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
}


.swiper-pagination-bullet {
    border-color: var(--bic-primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--bic-primary-color);
}

.bic-outernav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.bic-outernav__item {
    min-width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    line-height: 1.2;
    font-weight: 600;
    background: var(--bic-primary-color);
    border: 1px solid var(--bic-primary-color);
    font-size: 18px;
    font-weight: bold;
    color: var(--bic-text-color);
    text-transform: uppercase;
    border-radius: var(--bic-border-radius);
    transition: var(--bic-transition);
}

.bic-outernav__item.active,
.bic-outernav__item:hover {
    color: #fff;
    background: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
}

.bic-content {
    position: relative;
    z-index: 1;
}

.ps-relative {
    position: relative;
}

.ps-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.margin {
    margin: var(--bic-gap) 0;
}

.margin-bottom {
    margin-bottom: var(--bic-gap);
}

.margin-top {
    margin-top: var(--bic-gap);
}

.margin-0 {
    margin: 0 !important;
}

.padding {
    padding-bottom: var(--bic-gap);
}

.padding-bottom {
    padding-bottom: var(--bic-gap);
}

.padding-top {
    padding-top: var(--bic-gap);
}

.padding-0 {
    padding: 0 !important;
}

.t-transition {
    transition: var(--bic-transition);
}

.text-justify {
    text-align: justify;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.page-content {
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.sec-sticky {
    position: sticky;
    top: calc(var(--bic-header-height) + 30px);
}

.sec-background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sec-head {
    position: relative;
    margin-bottom: 46px;
}

.sec-head__title .title {
    position: relative;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.sec-head__title .title-color {
    color: var(--bic-primary-color) !important;
}

/* .sec-head__title .title::after{
    content: "";
    position: absolute;
    left: 0;
    transform: translateX(0);
    bottom: 0;
    height: 2px;
    width: 120px;
    background: currentColor;
}

.sec-head__title.text-center .title::after {
    left: 50%;
    transform: translateX(-50%);
} */

.sec-head__title .title .char {
    position: relative;
    opacity: 0
}

.sec-head__title .title .char,
.sec-head__title .title .word {
    display: inline-block
}

.bic-sec-ani.show .sec-head__title .title .char {
    animation-duration: .5s;
    animation-timing-function: cubic-bezier(.3, 0, .7, 1);
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-delay: calc(30ms* var(--char-index))
}

.sec-head__title .sub-title {
    font-size: 24px;
    font-weight: 400;
}

.sec-head .sec-descript {
    font-size: 24px;
    margin-top: 20px;
}

.btn.btn--primary {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn.btn--primary:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: var(--bic-text-color);
}

.sec-btn {
    display: flex;
    margin-top: 40px;
}

.slide-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.slide-wrap .swiper {
    padding: 2px 1px;
}

/* ContentBody.css */

.ContentBody ol li,
.ContentBody ul li {
    padding: 0 0 12px 6px;
}

.ContentBody p {
    display: block;
}

.ContentBody ol,
.ContentBody ul {
    margin: 0 0 12px 16px;
    padding-left: 10px;
}

._tab_cat_prod ._list_cat a:hover,
._tab_cat_prod ._list_cat li .nav-item.active {
    color: var(--bic-primary-hover-color);
}

.ContentBody ul {
    list-style: disc;
}

.ContentBody ol {
    list-style-type: decimal;
}

.ContentBody ol ol {
    list-style: upper-alpha;
}

.ContentBody ol ol ol {
    list-style: lower-roman;
}

.ContentBody ol ol ol ol {
    list-style: lower-alpha;
}

.ContentBody ol ol,
.ContentBody ol ul,
.ContentBody ul ol,
.ContentBody ul ul {
    margin-bottom: 0;
}

.ContentBody strong {
    font-weight: 600;
}

.ContentBody cite,
.ContentBody em {
    font-style: italic;
}

.ContentBody cite {
    border: none;
}

.ContentBody big {
    font-size: 20px;
}

.ContentBody blockquote,
.ContentBody blockquote p {
    font-weight: 600;
}

.ContentBody blockquote cite,
.ContentBody blockquote em,
.ContentBody blockquote i {
    font-style: normal;
}

.ContentBody blockquote cite {
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #555;
}

.ContentBody pre {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: #f4f4f4;
}

.ContentBody figure {
    margin: 0 auto 16px;
    text-align: center;
}

.ContentBody figure figcaption {
    font-size: 14px;
    padding: 4px;
}

.ContentBody code,
.ContentBody kbd,
.ContentBody samp,
.ContentBody var {
    font-size: 16px;
}

.ContentBody abbr,
.ContentBody acronym,
.ContentBody dfn {
    cursor: help;
    border-bottom: 1px dotted var(--bic-border-color);
}

.ContentBody address {
    display: block;
    margin: 0 0 20px;
}

.ContentBody del,
.ContentBody ins {
    color: #555;
}

.ContentBody ins {
    text-decoration: none;
    border: none;
}

.ContentBody sub,
.ContentBody sup {
    font-size: 10px;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}

.ContentBody sup {
    bottom: 12px;
}

.ContentBody sub {
    top: 6px;
}

.ContentBody table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    text-align: left;
}

.ContentBody tr td,
.ContentBody tr th {
    padding: 10px;
    vertical-align: top;
    border: 1px solid var(--bic-border-color);
}

.ContentBody img {
    display: block;
    margin: 0 auto;
    border-radius: var(--bic-border-radius);
    max-width: 100%;
    height: 100%;
}

.ContentBody img.wp-smiley {
    margin: 0;
    padding: 0;
    border: none;
}

.ContentBody img.aligncenter {
    margin: 0 auto 6px;
    display: block;
}

.ContentBody .wp-caption {
    max-width: 100%;
    margin: 0 auto 16px;
}

.ContentBody .wp-caption a {
    cursor: pointer;
}

.ContentBody .wp-caption img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--bic-border-radius);
}

.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
    font-size: 16px;
    padding: 8px 8px 8px 30px;
    text-align: left;
    color: #555;
    position: relative;
}

.ContentBody .wp-caption .wp-caption-text:before {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    top: 7px;
    left: 10px;
    content: "\2014";
    color: #555;
}

.ContentBody br {
    float: none;
    clear: both;
}

.ContentBody hr {
    height: 0;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--bic-border-color);
    background: none;
}

.ContentBody h1,
.ContentBody h2,
.ContentBody h3,
.ContentBody h4,
.ContentBody h5,
.ContentBody h6 {
    color: var(--bic-text-color);
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.ContentBody h1 {
    font-size: 30px;
    line-height: 1.2;
    /* letter-spacing: -1.05px; */
}

.ContentBody h2 {
    font-size: 26px;
    line-height: 1.16;
    /* letter-spacing: -0.52px; */
}

.ContentBody h3 {
    font-size: 24px;
    line-height: 1.35;
    /* letter-spacing: -0.84px; */
}

.ContentBody h4 {
    font-size: 20px;
    /* letter-spacing: -0.2px; */
}

.ContentBody h5,
.ContentBody h6 {
    font-size: 18px;
}

.ContentBody h6 {
    line-height: 1.3;
    /* letter-spacing: -0.54px; */
}

.ContentBody ul:not(:last-child) {
    margin-bottom: 20px;
}

.ContentBody ul>li {
    padding: 0;
    position: relative;
}

.ContentBody ol>li {
    padding: 0;
}

.ContentBody ol>li:not(:last-child),
.ContentBody ul>li:not(:last-child) {
    margin-bottom: 10px;
}

.ContentBody tr {
    border-top: 1px solid var(--bic-border-color);
    border-bottom: 1px solid var(--bic-border-color);
}

.ContentBody tr:first-child {
    border-top: none;
}

.ContentBody tr:last-child {
    border-bottom: none;
}

.ContentBody tr:nth-child(even) {
    background: var(--bic-border-color);
}

/* Breadcrumb */

.bic-breadcrumb {
    position: relative;
}

.bic-breadcrumb>span {
    display: flex;
    align-items: center;
    display: -webkit-box;
    max-width: 100%;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bic-breadcrumb span.sep {
    margin: 0 10px;
}

.blog-detail__header .bic-breadcrumb {
    margin-bottom: 10px;
}

/* page-banner.css */

.page-banner {
    position: relative;
}

.page-title {
    display: block;
    color: var(--bic-text-color);
    font-size: 46px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-banner--background .page-title {
    margin-bottom: 4px;
}

.page-banner__image {
    position: relative;
    box-shadow: var(--bic-shadow-sm);
    min-height: 30vh;
}

.page-banner__image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .85;
    z-index: 1;
}

.page-banner--background .page-banner__info {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 var(--bic-grid-gap);
    margin: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
    text-align: center;
}

.page-banner--background .bic-breadcrumb {
    max-width: 800px;
    margin: 0 auto;
}

.page-banner--background .bic-breadcrumb>span {
    font-size: 18px;
    justify-content: center;
}

.page-banner--background .page-title,
.page-banner--background .bic-breadcrumb span,
.page-banner--background .bic-breadcrumb span a {
    color: #fff;
}

.page-banner__info {
    position: relative;
    margin-bottom: 20px;
}

.blog-detail__header .page-banner__info {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bic-border-color);
}

@media only screen and (min-width: 1701px) {

    .blog-detail__header .page-title {
        font-size: 36px;
        text-transform: none;
        font-weight: 600;
    }

}

/* Search-form.css */

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form .search-field {
    border-radius: 99px !important;
    padding: 10px 15px 10px 40px;
    flex: 1;
}

.search-form .btn.btn--search {
    --background-color: 0 0;
    --background-hover-color: 0 0;
    --color-text: #757575;
    --color-hover-text: #757575;
    position: absolute;
    left: 15px;
    padding: 0;
    top: 53%;
    transform: translateY(-50%);
}

/* Socials.css */

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

.social-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid transparent;
    font-size: 18px;
    background: #f2f2f2;
    border-radius: 100%;
    margin-right: 10px;
    transition: var(--bic-transition);
}

.social-item:last-child {
    margin: 0;
}

.social-item:hover {
    color: #fff;
    background: var(--bic-primary-hover-color);
    border-color: var(--bic-primary-hover-color)
}

.social-item__label {
    font-size: 14px;
    font-weight: 600;
}

/* Post.css */

.image-ratio {
    display: block;
    position: relative;
    background-color: #f2f2f2;
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    padding-top: 60%;
}

.image-ratio>a,
.image-ratio>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-item {
    position: relative;
    height: initial;
}

.blog-list .row {
    row-gap: calc(var(--bic-grid-gap)*2);
}

.blog-list .post-group:not(:last-child) {
    margin-bottom: calc(var(--bic-grid-gap)*2);
}

.blog-item__inner {
    position: relative;
    border: 1px solid var(--bic-border-color);
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    height: 100%;
}

.blog-item__thumbnail {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-item__thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000040;
    opacity: 0;
    transition: var(--bic-transition);
    pointer-events: none;
}

.blog-item:hover .blog-item__thumbnail::after {
    opacity: 1;
}

.blog-item--hover img {
    transform: scale(1.03);
}

.blog-item--hover:hover img {
    transform: scale(1.03) translateY(-3px);
}

.blog-item__info {
    position: relative;
    padding: 15px;
}

.blog-item__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

@media only screen and (min-width: 1921px) {
    .blog-item__title {
        font-size: 20px;
    }
}

.blog-item__title a {
    color: currentColor;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    min-height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item:hover .blog-item__title {
    color: var(--bic-primary-color);
}

.blog-item__meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 5px;
}

.blog-item__meta-item {
    color: #444;
    font-size: 16px;
    line-height: 1;
}

.blog-item__excerpt {
    display: block;
    display: -webkit-box;
    margin-top: 10px;
    max-width: 100%;
    min-height: 43px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item__link {
    margin-top: 20px;
}

.blog-item__link a {
    font-size: 16px;
    font-weight: 600;
    color: var(--bic-primary-color);
    text-transform: uppercase;
}

.blog-item.gallery .blog-item__thumbnail,
.blog-item.video .blog-item__thumbnail {
    padding-top: 100%;
}

.blog-item .blog-item__thumbnail::before {
    content: '';
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    border: 2px solid rgba(255, 255, 255, .5);
    background-color: #fff;
    transition: var(--bic-transition);
    pointer-events: none;
}

.blog-item:not(.video, .gallery) .blog-item__thumbnail::before {
    opacity: 0;
    border-color: transparent;
}

.blog-item:not(.video, .gallery) .blog-item__thumbnail::before {
    background: rgba(0, 0, 0, 0.3) url(../images/icons/icon_zoom.svg) no-repeat 50% / 80%;
}

.blog-item.video .blog-item__thumbnail::before {
    transform: translate(-50%, -50%) rotate(120deg);
    background: url(../images/icons/icon_player.svg) 50% center / 66% no-repeat;
}

.blog-item.gallery .blog-item__thumbnail::before {
    background: url(../images/icons/icon_album.svg) 50% center / 66% no-repeat;
}

.blog-item:hover .blog-item__thumbnail::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.blog-item.gallery:hover .blog-item__thumbnail::before,
.blog-item.video:hover .blog-item__thumbnail::before {
    background-color: var(--bic-secondary-color);
}

.blog-list[data-view="list"] .blog-item {
    flex: 0 0 auto;
    width: 100%;
}

.blog-list[data-view="list"] .blog-item__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-list[data-view="list"] .blog-item__thumbnail {
    flex: 0 0 auto;
    width: 30%;
    padding-top: 20%;
    margin: 0;
}

.blog-list[data-view="list"] .blog-item__info {
    flex: 1;
    padding-left: 30px;
}

/* Blog-single.css */

.blog-detail__foo {
    position: relative;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--bic-border-color);
}

.bic-tags,
.bic-share {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.bic-tags__label,
.bic-share__label {
    text-transform: uppercase;
    font-weight: 600;
    margin-right: auto;
}

.bic-tags__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
    margin-left: auto;
}

.bic-tags__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 16px;
    background-color: #f2f2f2;
    border-radius: var(--bic-border-radius);
}

.bic-share__list .social-item {
    width: 40px;
    height: 40px;
    color: var(--bic-text-color);
    background: var(--bic-primary-color);
    border-color: var(--bic-primary-color);
}

.bic-share__list .social-item:hover {
    color: #fff;
    background: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
}

/* Popup */

/* Pagination.css */

.bic-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

.bic-pagination .bic-page {
    color: var(--bic-text-color);
    font-weight: 600;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bic-border-color);
    border-radius: 100%;
    margin: 0 5px;
    transition: var(--bic-transition);
}

.bic-ajax-pagination .bic-page {
    cursor: pointer
}

.bic-pagination .bic-page.prev {
    margin: 0;
    margin-right: auto
}

.bic-pagination .bic-page.next {
    margin: 0;
    margin-left: auto
}

.bic-pagination .bic-page svg {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.bic-pagination .bic-page.current,
.bic-pagination .bic-page:hover {
    color: var(--bic-text-color);
    background: var(--bic-primary-color);
    border-color: var(--bic-primary-color)
}

.bic-pagination .bic-page.disabled {
    opacity: .7;
    cursor: no-drop
}

/* Comments.css */

.comment-title,
.comment-reply-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

ol.comment-list {
    margin: 0;
}

ol.comment-list,
ol.children {
    list-style: none;
    padding: 0;
}

.comment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--bic-border-color);
}

.comment-item-avatar {
    flex: 0 0 auto;
    width: 46px;
    overflow: hidden;
    border-radius: 100%;
}

.comment-item-content {
    padding-left: 16px;
    flex: 1 0 auto;
}

.comment-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.comment-author.vcard .fn {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
}

.comment-metadata {
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 600;
}

.comment-item-content .reply {
    margin-top: 10px;
}

.comment-form {
    --bic-grid-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--bic-grid-gap) * -1);
}

.comment-form>p {
    position: relative;
    padding: 0 var(--bic-grid-gap);
}

.comment-form-author,
.comment-form-email {
    order: 1;
    flex: 0 0 auto;
    width: 50%;
}

.comment-form-comment,
.comment-form-cookies-consent,
.comment-form-captcha,
.form-submit {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
}

.logged-in-as a,
.must-log-in a {
    color: var(--bic-primary-color)
}

#cancel-comment-reply-link {
    margin-left: 10px;
}

.comment-form>p.form-submit {
    margin: 0;
}

/* Contact.css */

.bic-contact-form {
    position: relative;
}

.bic-contact-form .row {
    --bic-grid-gap: 10px;
    row-gap: calc(var(--bic-grid-gap) * 2);
}

.bic-form-input:focus {
    border-color: var(--bic-primary-color);
    outline: none;
}

textarea.bic-form-input {
    min-height: 120px;
    resize: vertical;
}

.bic-contact-form .bic-form-input.wpcf7-not-valid {
    border-color: #ff0000 !important;
}

.bic-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 14px;
    color: #ff0000;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;
    border-left: 5px solid !important;
    border-radius: var(--bic-border-radius);
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #ff0000 !important;
    color: #ff0000 !important;
    background: #fff5f5;
}

.bic-contact-form .wpcf7-spinner {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
}

.bic-contact-form .button-none {
    display: none !important;
}

.bic-contact-form .wpcf7-form-control-wrap {
    display: flex;
    flex-wrap: wrap;
}

.bic-contact-form label {
    font-size: 16px;
    font-weight: 400;
}

.bic-contact-form .wpcf7-list-item:first-child {
    margin-left: 0;
}

.bic-contact-form .wpcf7-list-item label {
    color: var(--bic-secondary-color);
    margin: 0;
}

/* Widgets.css */

.widget-area {
    position: sticky;
    top: var(--bic-header-height);
}

.admin-bar .widget-area {
    top: calc(var(--bic-header-height) + 52px);
}

.widget {
    position: relative;
}

.widget:not(:last-child) {
    margin-bottom: 46px;
}

.widget-title {
    font-size: 20px;
    color: var(--bic-text-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.widget:not(.widget-footer) .widget-title {
    color: var(--bic-text-color);
    border-left: 5px solid;
    padding-left: 15px;
}

.widget ul li {
    position: relative;
}

.widget ul li:not(:last-child) {
    margin-bottom: 10px;
}

.widget_media_image img {
    border-radius: var(--bic-border-radius);
}

.widget-blog-item:not(:last-child) {
    margin-bottom: 20px;
}

.widget-blog-item:not(:first-child) .blog-item__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.widget-blog-item .blog-item__inner {
    border: none;
}

.widget-blog-item .blog-item__thumbnail {
    padding-top: 50%;
    border-radius: var(--bic-border-radius);
    margin-bottom: 20px;
}

.widget-blog-item:not(:first-child) .blog-item__thumbnail {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    padding: 0;
    margin-bottom: 0;
    margin-right: 15px;
}

.widget-blog-item .blog-item__info {
    padding: 0;
    background: transparent;
    flex: 1;
}

.widget-blog-item:not(:first-child) .blog-item__thumbnail .date,
.widget-blog-item:not(:first-child) .blog-item__excerpt {
    display: none !important;
}


.widget-blog-item:first-child .blog-item__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.widget-blog-item .blog-item__title {
    font-size: var(--bic-font-size);
    margin-bottom: 0;
}

.widget-blog-item .blog-item__title a {
    min-height: auto;
}

.widget-blog-item .blog-item__excerpt {
    -webkit-line-clamp: 2;
}

.widget-blog-item .blog-item__link {
    display: none;
}

.widget_text p img {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
}

.widget_text ul {
    margin-bottom: 0;
}

/* Partner */

.home-partners {}

.home-partners .swiper-wrapper {
    animation: loop 20s infinite linear;
}

.home-partners .swiper-wrapper:hover {
    animation-play-state: paused;
}

.partner-item__image {
    position: relative;
    overflow: hidden;
    margin: 1px;
    padding: 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item__image img {
    max-height: 100%;
    width: auto;
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Footer.css */

.bic-footer {
    position: relative;
    padding: 60px 0 20px;
    background-color: var(--bic-primary-color);
    color: var(--bic-text-color);
    z-index: 20;
}

/* .bic-footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bic-primary-color);
    opacity: 0.85;
    pointer-events: none;
} */

.bic-footer__main {
    position: relative;
    font-size: 18px;
    padding: 0 0 40px;
    margin-bottom: 20px;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: var(--bic-text-color);
}

.bic-footer__logo img {
    width: auto;
    height: 50px !important;
}

.widget-footer .widget-title {
    color: var(--bic-text-color);
    text-transform: uppercase;
}

.widget-footer.widget_text a {
    color: var(--bic-text-color);
}

.widget-footer.widget_text a:hover {
    color: var(--bic-primary-color);
}

.widget-footer ul.menu li {
    color: var(--bic-text-color);
}

.widget-footer ul.menu li:hover {
    color: var(--bic-text-color);
}

.widget-footer ul.menu {
    padding: 0;
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 0;
}

.widget-footer ul.menu li a {
    white-space: nowrap;
    color: currentColor;
}

.widget-footer .textwidget {
    text-align: left;
    padding: 0;
}

@media only screen and (min-width: 1025px) {

    .bic-footer__col--right .bic-footer__col:last-child .widget {
        padding-left: 40px;
    }

}

.bic-footer__col--right .bic-footer__col-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bic-footer__foo {
    position: relative;
}

.bic-footer__foo-copyright,
.bic-footer__foo-copyright a {
    color: var(--bic-text-color);
}

.bic-footer__foo-copyright a:hover {
    color: var(--bic-primary-color);
}

/* .bic-footer .social-items {
    justify-content: flex-end;
} */

.bic-footer .social-item:not(:hover) {
    border-color: var(--bic-text-color);
    background: transparent;
    color: var(--bic-text-color);
}

.bic-footer .social-item:hover {
    background: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
    color: #fff;
}

.gallery-columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: var(--bic-border-radius);
}

.bic-go-top {
    --btn-width: 46px;
    --btn-height: 46px;
    position: fixed;
    cursor: pointer;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--btn-width);
    height: var(--btn-height);
    border-radius: 100%;
    box-shadow: var(--bic-shadow-sm);
    transform: translateX(2vw);
    opacity: 0;
    visibility: hidden;
    transition: var(--bic-transition);
}

.bic-go-top.show {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.bic-go-top .bic-go-top__progress {
    color: #fff;
    border-radius: 50%;
    background: var(--bic-text-color);
}

.bic-go-top svg path {
    fill: var(--bic-text-color);
    stroke: #fff;
    stroke-width: 6px;
    box-sizing: border-box;
    transition: var(--bic-transition);
}

.bic-go-top .bic-go-top__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 28px;
    height: 28px;
}

.bic-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff40;
    opacity: 0;
    visibility: hidden;
    transition: var(--bic-transition);
}

body.loading .bic-loading {
    opacity: 1;
    visibility: visible;
}

.bic-loading__logo {
    width: 60px;
    height: 60px;
    color: var(--bic-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px solid #ddd;
    border-top-color: var(--bic-primary-color);
    background: transparent;
    animation: spin 1s linear infinite;
}

.bic-loading__logo svg {
    width: 20px;
    fill: currentColor;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

@keyframes ping {
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive.css */

@media only screen and (min-width: 1701px) {
    :root {
        --bic-font-size: 16px;
    }
}

@media only screen and (min-width: 1537px) and (max-width: 1700px) {

    .bic-header__nav:not(.bic-header__nav-mobile) {
        height: 64px;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 36px;
    }

}

@media only screen and (min-width: 1441px) and (max-width: 1536px) {

    :root {
        --bic-container-width: 1330px;
        --bic-header-height: 80px;
    }

    .bic-header__col--right {
        padding-left: 30px !important;
    }

    .bic-header__nav:not(.bic-header__nav-mobile) {
        height: 60px;
    }

    .bic-header__nav ul>li>a span {
        display: none;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 1440px) {

    input[type="color"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="datetime"],
    input[type="email"],
    input[type="month"],
    input[type="number"],
    input[type="password"],
    input[type="range"],
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="time"],
    input[type="url"],
    input[type="week"],
    textarea {
        height: 40px;
    }

    .swiper-control-btn {
        --btn-width: 40px;
        --btn-height: 40px;
    }

    .bic-header__search>.btn.btn--search {
        width: 40px;
        height: 40px;
    }

    .bic-header__search>.btn.btn--search svg {
        width: 24px;
        height: 24px;
    }

    .sec-head {
        margin-bottom: 32px;
    }

    .blog-item .blog-item__thumbnail::before {
        width: 40px;
        height: 40px;
    }

    .bic-pagination .bic-page {
        width: 40px;
        height: 40px;
    }

    .bic-footer__main {
        font-size: 16px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .search-form .search-field {
        height: 40px;
    }

    .bic-go-top {
        --btn-width: 40px;
        --btn-height: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {

    :root {
        --bic-container-width: 1230px;
        --bic-header-height: 60px;
    }

    .bic-header__logo img {
        height: 30px;
    }

    .bic-header__col--right {
        padding-left: 30px !important;
    }

    .bic-header__nav:not(.bic-header__nav-mobile)>ul>li+li {
        margin-left: 20px;
    }

    .bic-header__nav ul>li>a {
        font-size: 15px;
    }

    .bic-header__nav ul>li>a span {
        display: none;
    }

    .bic-outernav__item {
        padding: 12px 20px;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 28px;
    }

    .sec-head__title .title::after {
        width: 80px;
    }
}

@media only screen and (max-width: 1280px) {

    :root {
        --bic-header-height: 60px;
    }

    .blog-item__info {
        padding: 10px 15px;
    }

    .bic-outernav__item {
        font-size: 16px;
    }

}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {

    :root {
        --bic-container-width: 1030px;
        --bic-gap: 46px;
    }

    .bic-header__logo img {
        height: 28px;
    }

    .bic-header__nav:not(.bic-header__nav-mobile)>ul>li+li {
        margin-left: 20px;
    }

    .bic-header__nav:not(.bic-header__nav-mobile) ul.sub-menu {
        min-width: 180px;
    }

    .bic-header__nav ul>li>a {
        font-size: 14px;
    }

    .bic-header__nav>ul>li>a span {
        display: none;
    }

    .bic-header__search:hover .bic-header__search-form {
        width: 270px;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 28px;
    }

    .blog-item__title {
        font-size: 18px;
    }

    .widget-title {
        font-size: 20px;
    }

    .bic-footer {
        padding: 60px 0 20px;
    }

    .bic-footer__main {
        margin-bottom: 15px;
    }

}

@media only screen and (max-width: 1024px) {

    :root {
        --bic-grid-gap: 8px;
    }

    body.menu-open .bic-header,
    body.menu-open .bic-header__main {
        background-color: #fff;
    }

    .bic-header__logo img {
        height: 30px;
        filter: none !important;
    }

    .bic-header__search>.btn.btn--search {
        border-color: var(--bic-text-color);
        color: var(--bic-text-color);
    }

    .bic-header__search>.btn.btn--search:hover {
        color: var(--bic-text-color) !important;
        border-color: var(--bic-text-color);
    }

    .bic-footer__main>.row {
        row-gap: var(--bic-gap);
    }

    /* Custom */

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

    :root {
        --bic-gap: 40px;
    }

    .bic-header__search:hover .bic-header__search-form {
        width: 240px;
    }

    .bic-outernav__item {
        padding: 12px 20px;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 28px;
    }

    .widget-title {
        font-size: 20px;
    }

    .bic-footer__main {
        padding: 40px 0 40px;
        margin-top: 40px;
    }

    .bic-footer-inner {
        padding: 60px 0 15px;
    }

    /* Custom */

    .btn,
    .button,
    button,
    input[type="button"],
    input[type="submit"] {
        padding: 12px 20px 12px;
    }

}

@media only screen and (max-width: 767px) {

    :root {
        --bic-header-height: 62px;
        --bic-gap: 40px;
        --bic-grid-gap: 15px;
    }

    .bic-header__search:hover .bic-header__search-form {
        width: 240px;
    }

    .bic-outernav {
        gap: 15px;
        margin-bottom: 32px;
    }

    .bic-outernav__item {
        min-width: 110px;
        padding: 8px 14px;
    }

    .sec-head {
        margin-bottom: 20px;
        align-items: end;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 28px;
    }

    .sec-head .subtitle {
        margin-bottom: 4px;
    }

    .page-banner--background .bic-breadcrumb>span {
        font-size: 16px;
    }

    .bic-breadcrumb span.sep {
        margin: 0 5px;
    }

    .blog-list .row {
        --bic-grid-gap: 10px;
    }

    .blog-item__title {
        font-size: 18px;
    }

    .blog-related .slide-wrap {
        margin-left: var(--bic-grid-gap);
    }

    .widget-title {
        font-size: 20px !important;
    }

    .bic-footer {
        padding: 60px 0 15px;
    }

    .bic-footer__main {
        padding: 0;
    }

    .bic-footer__foo .social-items {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .social-item__label {
        font-size: 12px;
    }

    .bic-go-top {
        right: 15px;
    }

    /* Custom */

    .btn,
    .button,
    button,
    input[type="button"],
    input[type="submit"] {
        padding: 11px 18px 11px;
    }

    .swiper-pagination {
        margin-top: 16px;
    }

    .home-partners .sec-head__title .title::after {
        width: 60px;
    }

}

@media only screen and (min-width: 481px) and (max-width: 767px) {}

@media only screen and (max-width: 480px) {

    :root {
        --bic-grid-gap: 10px;
    }

    .sec-head__title .title,
    .page-title {
        font-size: 24px;
    }

    .sec-head__title .title {
        padding-bottom: 16px;
    }

    .bic-pagination .bic-page {
        width: 36px;
        height: 36px;
    }

    .bic-footer {
        padding: 40px 0 15px;
    }

    .bic-go-top {
        right: 10px;
    }

    .social-item {
        width: 36px;
        height: 36px;
    }

    /* Custom */

    .widget:not(:last-child) {
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 18px !important;
    }

}



/* menu-new */
.header-top .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top .header-left .header-language .list-language {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
}

.header-top .header-left .header-language .list-language li a,
.header-top .header-left .header-store-notice {
    color: #fff;
    font-size: 14px;
}



/* shop-category */
.banner {
    padding-top: var(--bic-gap);
}

.banner ._name_shop_cat {
    font-size: var(--bic-font-size);
    font-weight: 600;
    border-bottom: 1px solid var(--bic-border-color);
    padding: var(--bic-grid-gap);
}

.banner ._box_category {
    border: 1px solid var(--bic-border-color);
    border-radius: var(--bic-border-radius);

}

.banner ._category_products {
    list-style: none;
    margin: 0;
    padding: var(--bic-grid-gap);
    padding: 0;
    
}
  ._category_products .menu-item:not(:last-child) {
        border-bottom: 1px solid var(--bic-border-color);

    }

    ._category_products .menu-item {
        position: relative;
        padding: 12px 15px;
    }

    ._category_products .sub-menu .menu-item:first-child {
        margin-top: 0;
    }

    ._category_products>li {
        position: relative;
        list-style: none;
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--bic-border-color);
    }

    ._category_products>li>a {
        display: block;
        padding: 12px 16px;
        font-weight: 600;
        color: var(--bic-text-color);
        text-decoration: none;
    }

    ._category_products>li>a:hover {
        background: #f5f5f5;
        color: var(--bic-text-color);
    }


    ._category_products li ul.sub-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 100%;
        background: #fff;
        border: 1px solid #ddd;
        z-index: 999;
        border-radius: var(--bic-border-radius);
    }

    ._category_products li:hover>ul.sub-menu {
        display: block;
    }

    ._category_products li ul.sub-menu li {
        list-style: none;
        border-bottom: 1px solid #eee;
        padding: 2px 12px;
    }

    ._category_products li ul.sub-menu li a {
        display: block;
        padding: 10px 14px;
        color: var(--bic-text-color);
        text-decoration: none;
    }

    ._category_products li ul.sub-menu li a:hover {
        color: var(--bic-primary-hover-color);
        cursor: pointer;
    }

.banner ._category_products>li {
    padding: 12px 0;
    position: relative;
    border-bottom: 1px solid var(--bic-border-color);
}

.banner ._category_products>li:last-child {
    border-bottom: none;
}

.banner ._category_products>li>a {
    font-size: var(--bic-font-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.banner ._category_products>li>a.has-sub::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    margin-left: 4px;
    margin-bottom: 2px;
    background-color: currentColor;
    -webkit-mask-image: url(../images/icons/icon_chevron_down.svg);
    mask-image: url(../images/icons/icon_chevron_down.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform var(--bic-transition);
}


.banner ._category_products li a:hover,
.banner ._category_products .current-menu-item>a,
.banner ._category_products .current-child-menu-item>a {
    color: var(--bic-primary-hover-color);
}

.banner ._category_products>li:hover>a.has-sub::after {
    transform: rotate(180deg);
}

.banner ._category_products>li .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid var(--bic-border-color);
    border-left: none;
    border-radius: var(--bic-border-radius);
    transition: all var(--bic-transition);
}

.banner ._category_products>li:hover .sub-menu {
    transform: translateX(6%);
    opacity: 1;
    visibility: visible;
}

.banner ._category_products>li .sub-menu>li {
    padding: 12px 15px;
    border-bottom: 1px solid var(--bic-border-color);
}

.banner ._category_products>li .sub-menu>li:last-child {
    border-bottom: none;
}


/* box-banner */
._item-slide {
    position: relative;
    width: 100%;
    padding-top: 52.56%;
    overflow: hidden;
    border-radius: var(--bic-border-radius);
}

._item-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--bic-border-radius);

}

._box_banner_big .swiper-slide {
    border-radius: var(--bic-border-radius);

}

/* Banner-grid2 */
.bannerGrid2 ._box_wrapper {
    position: relative;
    height: 450px;
    justify-content: center;
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
}

._banner_Left ._box_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 100%);
    transform: skewX(-25deg);
    animation: shine 1.2s;
}

._banner_Left ._box_wrapper ._background_image {
    background-size: cover;
    background-position: center right;
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    transition: all 0.3s;
    z-index: -1;
}

.bannerGrid2 ._banner_Left:hover ._box_wrapper::after {
    animation-duration: 2000ms;
}

.bannerGrid2 ._box_content {
    max-width: 60%;
    padding: 0px 75px 0px 75px;
}

.bannerGrid2 ._description {
    margin-bottom: 3px;
    font-size: var(--bic-font-size);
    font-weight: 400;
    color: #DD2831;
}

.bannerGrid2 h2 {
    margin-bottom: 14px;
    font-size: 40px;
    font-weight: 900;
    color: var(--bic-text-color);
}

.bannerGrid2 ._description-bottom {

    color: var(--bic-text-color);
    margin-bottom: 55px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.bannerGrid2 ._ts-banner-button {
    display: inline-block;
}

/* banner-Right */
._banner_Right ._box_wrapper {
    position: relative;
    height: 450px;
    justify-content: center;
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
}

._banner_Right ._box_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 100%);

}

._banner_Right ._box_wrapper ._background_image {
    background-size: cover;
    background-position: center right;
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    transition: all 0.3s;
    z-index: -1;
}

.bannerGrid2 ._banner_Right ._box_content {
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
}

.bannerGrid2 ._banner_Right ._box_content ._description {
    background-color: #dd2831;
    display: inline-block;
    color: #fff;
    border-radius: var(--bic-border-radius);
    padding: 5px 12px;
}

.bannerGrid2 ._banner_Right ._description-bottom {

    color: #0068C8;
    font-weight: 700;
}

/* shine */
@-moz-keyframes shine {
    100% {
        left: 125%
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

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




/* sale-product */
._sale_top {
    border-bottom: 1px solid var(--bic-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* tab_cat_prod */
._tab_cat_prod ._list_cat {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

._tab_cat_prod ._list_cat a {
    font-weight: 700;
}


/* product */
.product5 {
    margin-top: 50px;
}

._content_product {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
}

._item_product {
    transition: all .4s ease-in-out;
    border: 1px solid var(--bic-border-color);
    padding: 10px;
    border-radius: var(--bic-border-radius);
}

._image_product a {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

._item_product:hover ._name_product a {
    color: var(--bic-primary-color);
}

._image_product figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

._image_product img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

._content_product ._cat_product a {
    color: rgba(132, 132, 132, 1);
    text-align: left;
}

._content_product ._name_product a {
    color: var(--bic-text-color);
    text-align: left;
    font-size: var(--bic-font-size);
    font-weight: 600;
}

._price_product ._new_price {
    color: rgba(221, 40, 49, 1);
    font-size: var(--bic-font-size);
    font-weight: 600;
}

._price_product ._old_price {
    color: var(--bic-text-color);
    text-decoration: line-through;

}

._add_to_cart {
    display: flex;
    justify-content: center;
}

._add_to_cart a {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-color: var(--background-hover-color);
    background-color: var(--background-color);
    border: 1px solid var(--bic-border-color);

}


._item_product:hover ._add_to_cart a {
    background-color: var(--bic-primary-color);
    color: var(--bic-text-color);
    border-color: var(--bic-primary-hover-color);
    border: none;
}



/* box category product */
.cat_products ._item_cat_prod {
    height: 100%;
    padding: 10% 5%;
    border: 2px solid var(--bic-border-color);
    border-radius: var(--bic-border-radius);
    transition: all .1s;

}

.cat_products ._item_cat_prod a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cat_products ._item_cat_prod ._image_cat img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.cat_products ._item_cat_prod:hover {
    border-color: var(--bic-primary-hover-color);

}

.cat_products ._item_cat_prod:hover ._name_cat {
    color: var(--bic-primary-hover-color);
}


/* banner1 */
.banner1 .box-wrapper {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transition: all 0.3s;
    z-index: -1;
    height: 350px;
    justify-content: center;
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
}

.banner1 .box-wrapper ._box_content {
    padding: 0px 75px 0px 75px;
    max-width: 51%;
}

.banner1 .box-wrapper ._box_content a {
    display: inline-block;
}


/* box-form */
.form {
    padding-bottom: 0;
}

.form .box-wrapper {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    /* z-index: -11; */
}

.form .box-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.form ._box_content {
    background: #fff;
    border-radius: var(--bic-border-radius);
    padding: 36px;
}

.group-input {
    display: flex;
    justify-content: end;
    gap: 10px;
}

/* footer */
.box_wrapper_info {
    margin-top: 20px;
    display: flex;
    row-gap: 15px;
    flex-direction: column;
}

#footer .menu-footer-ct .menu-footer {
    list-style: none;
    margin: 0;
}

.box_tel a {
    font-weight: 700;
}


.tiktok svg,
.instagram svg,
.messenger svg {
    width: 20px;
    transition: color 0.3s ease;
}

.tiktok:hover svg,
.instagram:hover svg path,
.messenger:hover svg {
    fill: #fff;
}


/* page -contact */
.page-template-page-contact .input-ct {
    margin-bottom: 15px;
}

.page-template-page-contact .contact {
    padding-top: var(--bic-gap);
    padding-bottom: 0;
}

.page-template-page-contact .form-input-grid2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-template-page-contact .form-input-grid2 .input-ct {
    width: 49%;
}



/* about us */
.pd {
    padding: var(--bic-gap);
}

.page-template-page-about .slide4 .item-team .sec-head__title .title {
    font-size: 22px;
    padding: 20px 0 10px;
}

.page-template-page-about .slide4 .item-team .box_avatar {

    position: relative;
    overflow: hidden;
    border-radius: var(--bic-border-radius);
    padding-top: 133.33%;

}

.page-template-page-about .slide4 .item-team .box_avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    height: 100%;
    width: 100%;
}



.store .box_ct_left {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    row-gap: 15px;
}

.store .box_images {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.store .box_images img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
}





.page-header-background .page-header-info {
    position: absolute;
    z-index: 2;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 var(--adt-grid-gap);
    margin: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
    text-align: center;
}

.bic-breadcrumb span,
.page-header-background .adt-breadcrumb span,
.page-header-background .adt-breadcrumb span a,
.page-header-background .page-title {
    color: #fff;
}

.adt-breadcrumb {
    position: relative;
}

.page-header-image {
    position: relative;
    min-height: 30vh;
}

.page-header-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.padding-default {
    padding: var(--bic-gap);
}


.form-home .group-input p {
    margin-bottom: 0;
}

.form .sec-head__title .title {
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-tin-tuc .content-archive {
    padding-top: var(--bic-gap);
}

@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon/icomoon.eot);
    src: url(../fonts/icomoon/icomoon.eot?#iefix) format("embedded-opentype"),
        url(../fonts/icomoon/icomoon.ttf) format("truetype"),
        url(../fonts/icomoon/icomoon.woff) format("woff"),
        url(../fonts/icomoon/icomoon.svg?#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

[class*=" icon-"],
[class^="icon-"] {
    font-family: icomoon, fantasy !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.icon-writing:before {
    content: "\e91c";
}

.icon-warranty:before {
    content: "\e91a";
}

.icon-cutlery:before {
    content: "\e913";
}

.icon-crown:before {
    content: "\e915";
}

.icon-facebook:before {
    content: "\e900";
}

.icon-instagram:before {
    content: "\e904";
}

.icon-youtube:before {
    content: "\e905";
}

.icon-linkedin:before {
    content: "\e906";
}

.icon-pinterest:before {
    content: "\e908";
}

.icon-twitter:before {
    content: "\e90b";
}

.icon-vimeo:before {
    content: "\e950";
}

.icon-link:before {
    content: "\e951";
}

.icon-zalo:before {
    content: "\e919";
}

.icon-home:before {
    content: "\e90d";
}

.icon-marker:before {
    content: "\e90e";
}

.icon-heart:before {
    content: "\e910";
}

.icon-heart-filled:before {
    content: "\e911";
}

.icon-user:before {
    content: "\e912";
}

.icon-email:before {
    content: "\e914";
}

.icon-printer:before {
    content: "\e916";
}

.icon-phone:before {
    content: "\e917";
}

.icon-phone-ring:before {
    content: "\e90f";
}

.icon-fax-machine:before {
    content: "\e91b";
}

.icon-store:before {
    content: "\e949";
}

.icon-gift:before {
    content: "\e91d";
}

.icon-eye:before {
    content: "\e91e";
}

.icon-clock:before {
    content: "\e91f";
}

.icon-search:before {
    content: "\e920";
}

.icon-shopping-bag:before {
    content: "\e921";
}

.icon-cart:before {
    content: "\e922";
}

.icon-sale:before {
    content: "\e94b";
}

.icon-tachometer:before {
    content: "\e924";
}

.icon-shipping:before {
    content: "\e94d";
}

.icon-icon-subtract:before {
    content: "\e918";
}

.icon-arrow-left:before {
    content: "\e926";
}

.icon-arrow-right:before {
    content: "\e927";
}

.icon-arrow-up:before {
    content: "\e928";
}

.icon-arrow-down:before {
    content: "\e929";
}

.icon-arrow-right-rounded:before {
    content: "\e902";
}

.icon-caret-left:before {
    content: "\e92a";
}

.icon-caret-right:before {
    content: "\e92b";
}

.icon-caret-up:before {
    content: "\e92c";
}

.icon-caret-down:before {
    content: "\e92d";
}

.icon-chevron-left:before {
    content: "\e92e";
}

.icon-chevron-right:before {
    content: "\e92f";
}

.icon-chevron-up:before {
    content: "\e930";
}

.icon-chevron-down:before {
    content: "\e931";
}

.icon-checked:before {
    content: "\e932";
}

.icon-calendar:before {
    content: "\e933";
}

.icon-filter:before {
    content: "\e94f";
}

.icon-sort:before {
    content: "\e947";
}

.icon-grid:before {
    content: "\e948";
}

.icon-list:before {
    content: "\e94e";
}

.icon-processing:before {
    content: "\e901";
}

.icon-info:before {
    content: "\e935";
}

.icon-alert:before {
    content: "\e942";
}

.icon-error:before {
    content: "\e943";
}

.icon-refresh:before {
    content: "\e944";
}

.icon-edit:before {
    content: "\e945";
}

.icon-delete:before {
    content: "\e946";
}

.icon-expand:before {
    content: "\e936";
}

.icon-play-solid:before {
    content: "\e937";
}

.icon-pause:before {
    content: "\e938";
}

.icon-circle:before {
    content: "\e939";
}

.icon-close:before {
    content: "\e93a";
}

.icon-plus:before {
    content: "\e93b";
}

.icon-minus:before {
    content: "\e93c";
}

.icon-send:before {
    content: "\e93d";
}

.icon-sign-in:before {
    content: "\e93e";
}

.icon-sign-out:before {
    content: "\e93f";
}

.icon-download:before {
    content: "\e940";
}

.icon-upload:before {
    content: "\e941";
}

.icon-payment:before {
    content: "\e907";
}

.icon-shop-fail:before {
    content: "\e909";
}

.icon-save:before {
    content: "\e90a";
}

.icon-product:before {
    content: "\e903";
}

.icon-setting:before {
    content: "\e90c";
}

.icon-star-full:before {
    content: "\e9d9";
}



.custom-stars i::before {
    content: "\f155";
    /* sao đặc */
    font-family: dashicons;
    color: #f0c420;
    font-size: 20px;
    margin-right: 2px;
    display: inline-block;
}

._rating {
    min-height: 33px;
}

.comment-form-rating {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-left: 10px;
    width: 100%;
}

.comment-form-rating label,
.comment-form-rating .stars {
    margin-bottom: 0;
}

.product-item-price {
    margin-top: 10px;
}



.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::after {
  content: '\276F';
  position: absolute;
  right: 15px;
  display: inline-block;
  transition: transform 0.3s ease; 
  font-size: var(--bic-font-size);
  color: var(--bic-text-color); 
}


.menu-item-has-children:hover::after {
  transform: rotate(90deg);
}





/* button show-hidden password */
.show-password-input {
  position: absolute; 
  top: 50%;
  right: 10px; 
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.woocommerce-account .password-input{
    position: relative;
}
.show-password-input::before {
  content: '';
  display: none;
}


.show-password-input::after {
  content: '👁️';
  font-size: var(--bic-font-size);
  color: var(--bic-text-color); 
  transition: transform 0.3s ease;
}



.show-password-input.display-password::after {
  content: '🙈';
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid var(--bic-border-color) !important;
    border-radius: var(--bic-border-radius) !important;
    height: auto !important;
    padding: 10px 15px !important;
}


#menu-menu-chinh .menu-item-has-children::after{
    display: none;
}


._name_product {
    min-height: 54px;
}


 .page-template-front-page ._add_to_cart{
  display: none;
}