/* Ultra Light (100) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Ultralight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}
.submenu-content.sub-none .row .col-7{
    display: none;
}
.submenu-content.sub-none .row .col-4 {
width: 40%
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-UltralightItalic.otf") format("opentype");
    font-weight: 100;
    font-style: italic;
}

/* Thin (200) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Thin.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-ThinItalic.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}

/* Light (300) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

/* Regular (400) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-RegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

/* Medium (500) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

/* SemiBold (600) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-SemiboldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
}

/* Bold (700) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

/* Heavy (800) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-HeavyItalic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
}

/* Black (900) */
@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/fonts/sf-pro-display/SF-Pro-Display-BlackItalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

* {
    font-family: "SF Pro Display";
}

:root,
:host {
    margin-left: 0;
}

:root {
    --primary-color: #286670;
    --primary-light-color: #25a4b9;
    --text-color: #252525;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1250px;
    }
}

body {
    background-color: #ffffff;
    font-feature-settings: "cv03", "cv04", "cv11";
    letter-spacing: 0.0375em;
    color: var(--text-color);
    overflow-x: hidden;
}

.page {
    overflow: hidden;
}

.btn {
    font-size: 16px;
    padding: 8px 16px;
}

.btn-primary {
    background: linear-gradient(60deg, var(--primary-color) 50%, #22c1db) var(--x, 0) / 200%;
    /* background: linear-gradient(90deg, var(--c1, #f6d365), var(--c2, #fda085) 51%, var(--c1, #f6d365)) var(--x, 0)/ 200%; */
    transition: 0.5s;
    border: none;
}

.btn-primary:hover {
    --x: 70%;
}

.btn-dark {
    background-color: var(--text-color);
    color: #fff;
}

.btn-dark:hover {
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline-dark {
    color: var(--text-color);
    border-color: var(--text-color);
    background: #fff;
    /* background: linear-gradient(60deg, #FFF var(--y, 50%), #000) var(--x, 0) / 200%; */
    transition: 0.5s;
}

.btn-outline-dark:hover {
    /* --y: 10%;
    --x: 95%; */
    background: #000;
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    border-radius: 4px;
    background: linear-gradient(91deg, #146e7e 0.45%, #222325 99.55%);
}

.btn-white {
    color: var(--primary-color);
    background-color: #fff;
}

.btn-white:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.btn-fix-width {
    width: 150px;
}

.hover-arrow i {
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.hover-arrow:hover i {
    padding-left: 3px;
    visibility: visible;
    opacity: 1;
}

.sec-title {
    width: 100%;
    color: var(--text-color);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.sec-dark .sec-title {
    color: #fff;
}

.sec-light .sec-title {
    color: var(--text-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-color {
    color: var(--text-color);
}

.text-gray {
    color: rgba(141, 141, 141, 1);
}

.lh-normal {
    line-height: 28px;
}

.lh-normal-1 {
    line-height: 30px;
}

.lh-normal-2 {
    line-height: 32px;
}

.fs-xs {
    font-size: 12px;
}

.fs-sm {
    font-size: 14px;
}

.fs-normal {
    font-size: 16px;
    line-height: 24px;
}

.fs-normal-1 {
    font-size: 18px;
    line-height: 26px;
}

.fs-xl {
    font-size: 20px;
    line-height: 28px;
}

.fs-xxl {
    font-size: 24px;
    line-height: 28px;
}

.fs-xxxl {
    font-size: 26px;
    line-height: 28px;
}

.fs-large {
    font-size: 28px;
    line-height: 32px;
}

.fs-larger-s {
    font-size: 30px;
    line-height: 32px;
}

.fs-larger-m {
    font-size: 32px;
    line-height: 32px;
}

.fs-larger-l {
    font-size: 32px;
    line-height: 32px;
}

.fs-larger-xl {
    font-size: 34px;
    line-height: 32px;
}

.my-large-xl {
    margin-block: 80px;
}

.mt-xxxxl {
    margin-top: 60px;
}

.mt-xxxl {
    margin-top: 50px;
}

.mt-xxl {
    margin-top: 40px;
}

.mt-xl {
    margin-top: 30px;
}

.mb-xxl {
    margin-bottom: 40px;
}

.zoom-hover {
    transition: scale 0.5s;
}

.zoom-hover:hover {
    scale: 1.1;
}

.form-control {
    font-size: 16px;
    /* border-color: var(--primary-color); */
    border-radius: 6px;
    color: #263238;
    height: 40px;
}

.form-control-rounded {
    border-radius: 10rem;
}

.form-control.form-c-xl {
    font-size: 18px;
    height: 50px;
}

.form-label {
    font-size: 16px;
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

span.select2-selection.select2-selection--single {
    min-height: 40px;
}

.toggle-password {
    cursor: pointer;
    pointer-events: auto;
}

.toggle-password.show .ti-eye-off {
    display: none;
}

.toggle-password:not(.show) .ti-eye {
    display: none;
}

.bg-gray {
    background-color: #edeeee;
}

.bg-primary {
    background-color: var(--primary-color);
}

.container-store .select2-container--bootstrap-5 .select2-selection {
    background-color: #edeeee;
    border: 1px solid var(--primary-color);
}

.container-store .select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection {
    box-shadow: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

.pretty-line-bottom {
    position: relative;
}

.pretty-line-bottom::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    background: var(--primary-color) linear-gradient(87.87deg, #286670 -2.79%, #b6f5ff 126.34%) no-repeat;
    border-radius: 35px;
    height: 2px;
    transition: background-position-x 0.3s ease;
    width: 70px;
}

.banner-video {
    height: 350px;
}

.banner-video .banner-box-text {
    justify-content: center;
    align-items: center;
    left: auto;
    right: 0;
}

.banner-video .banner-box-text>div {
    text-align: center;
}

.image-ck {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

@media screen and(min-width: 768px) {
    .mt-md-xxxxl {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .banner-video {
        height: 250px;
    }

    .banner-video .banner-box-text>div {
        width: 100%;
    }

    .banner-video .banner-box-text {
        left: 50%;
        right: auto;
    }

    .btn {
        font-size: 14px;
        padding: 6px 13px;
    }

    .sec-title {
        font-size: 24px;
        line-height: 32px;
    }

    .my-large-xl {
        margin-block: 40px;
    }

    .mt-xxxxl {
        margin-top: 20px;
    }

    .mt-xs-xxxxl {
        margin-top: 20px;
    }

    .mt-xl {
        margin-top: 15px;
    }

    .mt-xxl {
        margin-top: 20px;
    }

    .mt-xxxl {
        margin-top: 25px;
    }

    .fs-xxl {
        font-size: 16px;
    }

    .fs-xl {
        line-height: 18px;
        font-size: 14px;
    }

    .fs-larger-s {
        font-size: 24px;
    }

    .fs-normal {
        line-height: 20px;
        font-size: 12px;
    }

    .fs-normal-1 {
        line-height: 24px;
        font-size: 14px;
    }

    .border-sm-0 {
        border: 0;
    }

    .w-sm-100 {
        width: 100%;
    }

    .form-control.form-c-xl {
        font-size: 14px;
        height: 40px;
    }

    p {
        line-height: 24px;
        margin-bottom: 0.5rem !important;
    }

    .hover-arrow i {
        padding-left: 3px;
        visibility: visible;
        opacity: 1;
    }

    .ck-template-c {
        flex-direction: column !important;
    }

    .ck-template-c>div {
        width: 100% !important;
    }

    .ck-template-c>div:first-child {
        margin-bottom: 20px;
    }
}

/* breadcrumb */

.breadcrumb a,
.breadcrumb span {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.breadcrumb .breadcrumb-item.active span {
    font-weight: 600;
}

/* box */
.box {
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.css-img-dm img:first-child{
    height: max-content !important;
}
.box .image-cover {
    display: block;
    padding-top: 100%;
}

.image-cover img {
    bottom: 0;
    font-family: "object-fit: cover;";
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* icon box */

.icon-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.box-image {
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.icon-box .box-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

@media screen and(min-width: 768px) {}

@media screen and (max-width: 767px) {
    .icon-box .box-text {
        font-size: 14px;
        line-height: 24px;
    }
}

/* header */

#mainHeader>header {
    height: 100px;
    background: #333;
    box-shadow: 0px 4px 13.4px 0px rgba(0, 0, 0, 0.04);
}

#mainHeader>header .logo {
    width: 230px;
    /* height: 80px; */
}

.navbar-expand-md .nav-item.active .nav-link {
    color: var(--primary-color);
}

.navbar-expand-md .nav-item .nav-link {
    color: var(--text-color);
    font-size: 18px;
}

#mainHeader .navbar-expand-md .nav-item.active:after {
    display: none;
}

#mainHeader .nav-link:focus,
#mainHeader .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

#mainHeader .header-left {
    flex: 1;
}

#mainHeader .menu-wrap {
    display: flex;
    justify-content: space-between;
}

#mainHeader .menu-wrap #mainMenu {
    flex: 1;
    display: flex;
    justify-content: center;
}

#mainMenu .menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex: 1 1 auto;
}

.navbar .navbar-nav .nav-link {
    align-items: center;
}

.header-topbar {
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #000;
}

.top-language {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.top-language span {
    width: 1px;
    height: 13px;
    background-color: #fff;
}

.top-language a {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.submenu-dropdown {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #0000005e;
    top: 138px;
    left: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: 0.3s linear;
}

.submenu-content {
    background-color: white;
    padding-block: 60px;
}

.has-dropdown i {
    transition: 0.2s linear;
}

.has-dropdown.open>a>i {
    transform: rotate(-180deg);
}

.has-dropdown.open .submenu-dropdown {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-content .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.submenu-content .desc {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.submenu-content .viewmore {
    color: var(--primary-color);
    font-size: 16px;
}

.sub-cat li {
    padding-block: 4px;
}

.sub-cat a:hover {
    color: var(--primary-color);
}

@media screen and (min-width: 900px) {
    #mainHeader>header {
        background-color: #333;
    }

    .nav-item-search button {
        background-color: transparent;
    }

    .nav-item-search button:hover {
        background-color: transparent;
    }

    .nav-item-search button img {
        filter: invert(1);
    }

    .navbar-expand-md .nav-item .nav-link {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .overlay-mobile {
        display: none;
    }

    #closeMainMenu {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #mainHeader>header {
        height: auto;
    }

    #closeMainMenu {
        text-align: right;
        font-size: 26px;
        color: var(--text-color);
    }

    #mainHeader>header .logo {
        width: 100px;
        height: 50px;
    }

    #mainHeader .header-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    #mainHeader .header-left:not(.show) {
        visibility: hidden;
    }

    #mainHeader .menu-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: fit-content;
        z-index: 999;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 15px;
        border-radius: 20px;
        transform: translateX(0);
        transition: transform 0.2s;
    }

    #mainHeader .header-left:not(.show) .menu-wrap {
        transform: translateX(100%);
    }

    #mainHeader .menu-wrap #mainMenu {
        justify-content: flex-start;
    }

    #mainMenu .menu-center {
        justify-content: flex-start;
    }

    .navbar-nav.header-menu {
        width: 100%;
    }

    .navbar .navbar-nav .nav-link {
        justify-content: flex-start;
    }

    #mainHeader .nav-item-search {
        display: none;
    }

    #mainHeader .menu-left {
        margin-top: 20px;
    }

    #mainHeader .menu-left a.btn {
        width: 100%;
    }

    .overlay-mobile {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        background-color: #000000b8;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .overlay-mobile.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .search-mobile input {
        background-color: transparent;
    }

    .search-mobile .input-icon-addon svg {
        filter: invert(1);
    }

    .navbar-toggler svg path {
        fill: #fff;
    }
}

/* swiper */

.swiper-button-next,
.swiper-button-prev {
    box-shadow: 0px 0px 3.08px 0px #00000040;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    color: #00000099;
    transition: background-color 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    opacity: 1;
    width: 12px;
    height: 12px;
    background-color: rgba(219, 250, 255, 1);
}

.swiper-pagination-bullet-active {
    width: 39px;
    border-radius: 30px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.fade-up .slider-item {
    opacity: 0;
    transition: all 1s ease;
}

.fade-up .swiper-slide-prev .slider-item {
    transform: translateY(-300px);
}

.fade-up .swiper-slide-next .slider-item {
    transform: translateY(300px);
}

.fade-up .swiper-slide-active .slider-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.swiper .banner-box-text .sec-title,
.swiper .banner-box-text .banner-desc,
.swiper .banner-box-text .banner-button {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.swiper .swiper-slide-active .sec-title,
.swiper .swiper-slide-active .banner-desc,
.swiper .swiper-slide-active .banner-button {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0.3s;
    transition: all 0.4s ease-in-out;
}

.swiper .swiper-slide-active .banner-desc {
    transition-delay: 0.4s;
}

.swiper .swiper-slide-active .banner-button {
    transition-delay: 0.5s;
}

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

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* banner */

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

.banner .bg-image {
    width: 100%;
    height: 100%;
}

.banner .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* product loop */

.product-small .box-image img {
    transition: scale 0.2s;
}

.product-small .box-image img:hover {
    scale: 1.1;
}

.product-small .box-image {
    border-radius: 8px;
}

.product-small .box-text {
    margin-top: 16px;
}

.product-small .box-text .title-wrapper a.product-title {
    display: -webkit-box;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: var(--text-color);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 2;
    transition: all 0.2s;
}

.product-small .box-text .title-wrapper a.product-title:hover {
    color: var(--primary-color);
}

.product-small .price-wrapper {
    text-align: center;
    margin-top: 16px;
}

.product-small .price-current {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.product-small .has-discount del {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

@media screen and (max-width: 767px) {
    .product-small .box-text .title-wrapper a.product-title {
        font-size: 14x;
        line-height: 20px;
    }

    .product-small .price-wrapper {
        margin-top: 8px;
    }

    .product-small .price-current {
        font-size: 16px;
    }

    .product-small .has-discount del {
        font-size: 14px;
    }
    .swiper .swiper-slide-active .banner-button {
      transition-delay: 0.5s;
        justify-content: left !important;
    }
}

/* banner home */

.slider-banner-home {
    width: 100%;
    height: calc(100vh - 38px);
}

.banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.banner-box-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 555px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
}

.banner-item .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.79) 0%,
            rgba(0, 0, 0, 0) 100%);
}

@media screen and (min-width: 900px) {
    .slider-banner-home .banner-box-text {
        left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .slider-banner-home {
        height: 650px;
    }

    .banner-box-text {
        left: 50%;
        transform: translate(-50%, -70%);
        width: 95%;
        justify-content: center;
        gap: 15px;
    }

    .slider-banner-home .sec-title {
        text-align: left;
        font-size: 24px;
    }

        .slider-banner-home .banner-desc {
        display: block;
        width: 100%;
        text-align: justify;
        font-size: 15px !important;
    }
}

/* pcat */

.box-pcat .box-image {
    border-radius: 30px;
}

.box-pcat .image-cover {
    padding-top: 100%;
}

.box-pcat .image-cover img {
    object-position: 50% 100%;
}

.box-pcat .btn-viewmore {
    width: 220px;
    background: linear-gradient(60deg, #000 50%, #ffffff) var(--x, 0) / 200%;
    transition: 0.5s;
}

.box-pcat .btn-viewmore:hover {
    --x: 90%;
    color: #fff;
    border-color: transparent;
}

.box-pcat .loop-title {
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    cursor: pointer;
}

.box-pcat .loop-title:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 767px) {
    .box-pcat .btn-viewmore {
        width: 140px;
    }

    .box-pcat .loop-title {
        font-size: 16px;
        line-height: 24px;
    }
}

/* sec intro home */

.sec-intro .icon-box {
    padding: 15px 10px 10px;
    transition: all 0.2s;
    border-radius: 10px;
}

.sec-intro .icon-box:hover {
    box-shadow: 0px 0px 1px 2px #28667066;
}

.banner-tech {
    width: 100%;
    height: 783px;
}

.banner-tech .sec-title {
    font-size: 54px;
    line-height: 72px;
    font-weight: 700;
}

.banner-tech.banner .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-lens {
    display: flex;
    align-items: end;
}

.wrap-lens .lens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.wrap-lens .lens img {
    transition: all 0.2s;
}

.wrap-lens .lens .lens-text {
    width: 75%;
    height: 150px;
    text-align: center;
}

.wrap-lens .lens .lens-text span {
    color: var(--text-color);
}

.sec-particles {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(#050e10,
            #0a1f23,
            #0e2a30,
            var(--primary-color));
}

#particles-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: -1;
}

.particles canvas {
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    .banner-tech {
        height: 510px;
    }

    .banner-tech .sec-title {
        font-size: 32px;
        line-height: 42px;
    }

    .wrap-lens .lens .lens-text {
        width: 85%;
        height: 120px;
    }

    .sec-intro .icon-box .box-image img {
        width: 40px;
    }

    .sec-intro .col-6:nth-child(4) .icon-box .box-image img {
        width: 35px;
    }

    .certificate img {
        width: 55px;
    }
}

.wrap-lens .lens:hover img,
.wrap-lens .lens:hover .lens-text {
    /* filter: drop-shadow(0 0 .75rem #FFF); */
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #fff);
}

@media screen and (max-width: 767px) {
    .sec-intro .sec-title {
        text-align: center;
    }
}

/* blog */

.slider-blog-post {
    height: 450px;
}

.box.box-post {
    border-radius: 10px;
    transition: box-shadow 0.2s;
}

.box.box-post:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.box-post .box-text {
    padding-inline: 12px;
    padding-bottom: 12px;
}

.box-post .loop-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: var(--text-color);
    text-decoration: none;
}

.box-post .loop-title:hover {
    color: var(--primary-color);
}

.box-post .btn-viewmore {
    font-size: 16px;
    color: var(--text-color);
}

.box-post .btn-viewmore:hover {
    color: var(--primary-color);
}

.box-post .image-cover {
    padding-top: 83%;
}

.box-post .image-cover img {
    border-radius: 30px;
}

.flip-hover {
    transform: perspective(500px) rotateY(6deg);
    transform-origin: left center;
    transition: transform 0.3s;
}

.flip-hover:hover {
    transform: rotateY(0);
}

.box-post-activty {
    border-radius: 8px;
    overflow: hidden;
}

.box-post-activty .image-cover img {
    border-radius: 0;
}

.box-post-activty .image-cover {
    padding-top: 60%;
}

.box-post-activty .loop-title {
    font-size: 20px;
    color: #fff;
}

.box-post-activty .box-text {
    color: #fff;
    padding: 10px;
    background-color: #171a1a;
}

.box-post-activty .btn-viewmore {
    padding: 6px 8px;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    color: #fff;
}

.box-post-activty .btn-viewmore:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.count-number {
    color: #f6a630;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .box.box-post .short-desc {
        display: none;
    }

    .box-post .loop-title {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
    }

    .box-post .btn-viewmore {
        font-size: 14px;
    }

    .slider-blog-post {
        height: 260px;
    }
}

/* banner project */

.banner-project {
    width: 100%;
    height: 605px;
    position: relative;
    overflow: hidden;
}

.banner-project .viewmore {
    position: absolute;
    left: 0;
    bottom: 100px;
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    gap: 6px;
    border-radius: 100px;
    border: 3px solid #000;
    background: rgba(255, 255, 255, 0.35);
}

.banner-project .btn-icon {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    background-color: #fff;
}

.banner-project .viewmore a:first-child {
    border: none;
    width: 170px;
    height: 45px;
    box-shadow: none;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.56) 0%,
            rgba(255, 255, 255, 0) 60%);
}

.banner .bg-banner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner .bg-banner img {
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 767px) {
    .banner-project {
        height: 164px;
    }

    .banner-project .viewmore {
        bottom: 10px;
        padding: 4px 8px;
    }
}

/* footer */

.footer {
    background-color: rgba(0, 0, 0, 1);
    border: none;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

ul.menu-footer {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

ul.menu-footer li {
    padding-block: 8px;
}

.menu-footer a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.2s;
}

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

/* aboutus */

.slider-banner-aboutus {
    height: 520px;
}

.slider-banner-aboutus .banner-box-text {
    width: 720px;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.slider-banner-aboutus .overlay {
    display: none;
}

.slider-banner-story {
    height: 431px;
}

.slider-banner-story .slider-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.slider-banner-story .box-image {
    width: 540px;
    height: 431px;
    flex-shrink: 0;
}

.slider-banner-story .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-banner-story .box-content {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-right: 60px;
}

.slider-banner-story .icon-box {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.slider-banner-story .icon-box .icon-image {
    width: 50px;
    height: 50px;
}

.slider-banner-story .icon-box .icon-image img {
    max-width: 50px;
}

.slider-banner-story .swiper-pagination {
    border-radius: 100px;
    padding: 6px;
    background: #fff;
    box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.07);
}

.slider-banner-story .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
}

.banner-pq {
    width: 100%;
    height: 500px;
}

.banner-pq .bg-image {
    padding-left: 55px;
}

.banner-pq .banner-box-text {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    border-radius: 8px;
    background: #d9d9d9;
    width: 590px;
    padding: 40px 20px;
}

@media screen and (max-width: 767px) {
    .slider-banner-aboutus {
        height: 200px;
    }

    .slider-banner-aboutus .banner-box-text {
        width: 90%;
    }

    .slider-banner-aboutus .banner-desc {
        display: none;
    }

    .slider-banner-story .box-image {
        width: 100%;
        height: 320px;
    }

    .slider-banner-story .slider-item {
        flex-direction: column;
    }

    .slider-banner-story {
        /* height: calc(100vh - 154px ); */
        height: 550px;
    }

    .slider-banner-story .slider-item {
        gap: 30px;
    }

    .slider-banner-story .box-content {
        gap: 25px;
        padding-right: 0;
    }

    .slider-banner-story .swiper-pagination {
        bottom: 0;
        top: auto;
        left: 50%;
        right: auto;
        display: flex;
        gap: 2px;
        transform: translateX(-50%);
    }

    .slider-banner-story .swiper-pagination-bullet {
        margin-block: 0 !important;
    }

    .banner-pq {
        height: 600px;
    }

    .banner-pq .bg-image {
        padding-left: 0;
    }

    .banner-pq .banner-box-text {
        width: 80%;
        padding: 20px;
        top: 60%;
    }
}

/* smsl */

.banner-smsl {
    height: 543px;
}

.rm-img {
    width: 100%;
    height: 193px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

.icon-box.activity {
    gap: 30px;
}

.sec-smsl-story {
    background-image: url(../assets/images/smsl-story.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block: 80px;
}

.post-story {
    padding: 20px;
    border-radius: 20px;
}

.post-story:hover {
    backdrop-filter: blur(3px);
    background-color: rgb(255 255 255 / 15%);
}

.post-story .loop-title {
    font-size: 24px;
}

.post-story .btn-viewmore {
    color: #50d7da;
    font-weight: 600;
}

.sec-smsl-story .swiper-button-prev {
    left: auto;
    right: 0;
    top: 0;
    transform: translate(calc(-100% - 60px), 100%);
}

.sec-smsl-story .swiper-button-next {
    left: auto;
    right: 0;
    top: 0;
    transform: translate(-45px, 100%);
}

.roadmap {
    padding-block: 80px;
    background: #e2e2e2;
}

@media screen and (max-width: 767px) {
    .banner-smsl {
        height: 200px;
    }

    .roadmap {
        padding-block: 40px;
    }

    .roadmap .sec-title {
        text-align: center;
    }

    .sec-smsl-story {
        padding-block: 60px;
    }

    .sec-smsl-story .swiper-button-prev,
    .sec-smsl-story .swiper-button-next {
        display: none;
    }

    .post-story .loop-title {
        font-size: 16px;
    }

    .icon-box.activity {
        gap: 15px;
    }

    .icon-box.activity img {
        width: 40px;
    }

    .count-number {
        font-size: 32px;
    }
}

/* float btn */

.contact-button {
    position: fixed;
    bottom: 150px;
    left: 20px;
    z-index: 99;
}

.btn-contact-list {
    height: 50px;
    width: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-contact-list i {
    font-size: 32px;
}

.btn-contact-lists {
    position: absolute;
    width: 100%;
    bottom: 150%;
    text-align: center;
}

.btn-contact-lists a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    margin: 20px auto 0;
    line-height: 1.15;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    position: relative;
    box-shadow: 0 0 5px 1px rgba(51, 51, 51, 0.3);
    background-color: var(--primary-color);
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

@keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.contact-circle-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom-shadow 1.3s infinite;
    animation: zoom-shadow 1.3s infinite;
}

.btn-contact-lists a:nth-child(1) .contact-circle-fill {
    box-shadow: 0 0 0 0 #fd3f1d;
    /* background-color: rgba(243, 86, 33, 0.7); */
    background-color: transparent;
}

.btn-contact-lists a:nth-child(2) .contact-circle-fill {
    box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
    background-color: rgb(24 119 242 / 70%);
}

.btn-contact-lists a:nth-child(3) .contact-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

@keyframes zoom-shadow {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

.btn-contact-lists a:hover {
    transform: scale(1.05);
}

.btn-contact-lists a:nth-child(1) {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
    /* background-color: #fd3f1d; */
    transition: opacity 0.2s ease-in-out 0.35s, transform 0.15s ease-in-out;
}

.btn-contact-lists a:nth-child(2) {
    background-color: #1877f2;
    transition: opacity 0.2s ease-in-out 0.3s, transform 0.15s ease-in-out;
}

.btn-contact-lists a:nth-child(3) {
    background-color: #2196f3;
    transition: opacity 0.2s ease-in-out 0.25s, transform 0.15s ease-in-out;
}

.btn-contact-lists a:nth-child(4) {
    background-color: #e60808;
    transition: opacity 0.2s ease-in-out 0.2s, transform 0.15s ease-in-out;
}

.contact-button a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.float-btn-toggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

.float-btn-toggle:hover {
    box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
}

.float-btn-toggle:checked~.btn-contact-lists a {
    opacity: 1;
    visibility: visible;
}

.btn-circle-fill {
    width: 66px;
    height: 66px;
    top: -8px;
    left: -8px;
    position: absolute;
    box-shadow: 0 0 0 0 var(--primary-color);
    background-color: #286670c2;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

@media screen and (max-width: 767px) {
    .contact-button {
        bottom: 20px;
    }
}

/* popup */

#popup .modal-content {
    width: 475px;
    height: 600px;
}

#popup .modal-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#popup .modal-content .btn-contact {
    position: absolute;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%);
}

/* notification push */

.notify-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 358px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
    z-index: 999999;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notify-content {
    display: flex;
    padding: 8px;
    align-items: center;
}

.notify-img {
    flex: 0 0 75px;
    height: 75px;
    border-radius: 2px;
    overflow: hidden;
    margin-right: 10px;
}

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

.notify-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.notify-text .store-name {
    margin: 0;
    font-size: 12px;
    color: var(--text-color);
}

.notify-text .product-name {
    font-weight: bold;
    font-size: 15px;
    margin: 3px 0;
    color: var(--text-color);
}

.notify-text .time {
    color: var(--primary-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.notify-text .buy-now {
    font-size: 12px;
    padding: 4px;
}

.notify-text .buy-now:hover {
    color: #fff !important;
}

.notify-close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 16px;
    color: #888;
    cursor: pointer;
}

@keyframes zoom {
    0% {}

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* Mobile phones */
@media (max-width: 767.98px) {
    .notify-box {
        width: calc(100% - 40px);
    }

    .notify-img {
        flex: 0 0 75px;
        height: 75px;
    }

    .notify-text .product-name {
        font-size: 15px;
    }

    .notify-text {
        gap: 4px;
        padding-top: 4px;
    }

    #notificationPush {
        display: none !important;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023.99px) {}

/* iPad Air và tablets lớn */
@media (min-width: 820px) and (max-width: 1023.99px) {}

/* Desktop nhỏ */
@media (min-width: 1024px) and (max-width: 1366px) {}