/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
.entire-action-header {
    position: relative;
}

.entire-action-header .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.swiper-slider-main .swiper-slide-active img {
    animation-name: zoom;
    animation-duration: 30s;
    animation-fill-mode: forwards;
}

@keyframes zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.3)
    }
}

.side-in-bot {
    top: 200px;
    position: relative;
    transition: 2.2s all;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--description-short {
    transition: 2s all;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--tile {
    transition: 2.2s all;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--link {
    transition: 2.4s all;
}

.swiper-slider-main .swiper-slide-active .side-in-bot {
    top: 0;
}

.prd-cate-title {
    font-weight: bold;
    font-size: 1.7rem;
}

.banner-home a img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: all 0.5s ease;
}

.banner-home a:hover img {
    opacity: 0.9;
    transform: scale(1.1) rotate(5deg);
    transition: all 0.5s ease;
}

.section-fash-sale {
    background-color: #ff9d2e;
    padding: 3rem 0;
}

.dot {
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-right: 1rem;
}

.dot:after {
    content: "";
    border-radius: 100%;
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    background-color: transparent;
    animation: pulseSmall2 1.25s linear infinite;
}

@-webkit-keyframes pulseSmall {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.7)
    }

    70% {
        -webkit-box-shadow: 0 0 0 5px rgba(255,255,255,0.44)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.14)
    }
}

@-webkit-keyframes pulseSmall2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,0,0,0.3)
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,0,0,0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,0,0,0.3)
    }
}

.bg-feedback {
    padding: 3rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feedback-item {
    border: 1px solid var(--color-highlight);
    border-radius: 1rem;
    padding: 1rem;
    background: whitesmoke;
}

.feedback-item .inner-name {
    font-size: 1.8rem;
    font-weight: bold;
}

.feedback-item .inner-content {
    font-size: 1.8rem;
    min-height: 8.1rem;
}

.feedback-item .inner-image img {
    width: 7rem;
    aspect-ratio: 1/1;
    border-radius: 1rem;
    margin-right: 1rem;
}

.btn-filter-mobile {
    display: block;
    color: var(--color-main);
}

.btn-filter-mobile, .content-filter-head {
    display: block;
}

.content-filter-product {
    position: fixed;
    width: 32rem;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(-32rem, 0, 0);
    -moz-transform: translate3d(-32rem, 0, 0);
    -ms-transform: translate3d(-32rem, 0, 0);
    -o-transform: translate3d(-32rem, 0, 0);
    transform: translate3d(-32rem, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    -webkit-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
}

.content-filter-product.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.filter-url .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.filter-url .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.content-filter-head {
    background: #faf9f8;
    padding: 2rem 3rem;
}

.title-seo {
    margin: -0.1em 0 -0.2em 0;
    line-height: 1.1;
    font-size: 6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.item-policy {
    font-size: 1.6rem;
    color: var(--color-highlight);
    padding: .5rem 0;
}

.item-policy i {
    margin-right: .5rem;
}

.product-content-detail .product-description img {
    height: auto;
    max-width: 100%;
}

.swiper-cate {
    width: 60%;
}

/* chi nhanh */
.branch-box {
    background: whitesmoke;
    padding: 1rem;
    max-height: 43rem;
    overflow-y: scroll;
}

.branch-box::-webkit-scrollbar {
    width: .5em;
}

.branch-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.branch-box::-webkit-scrollbar-thumb {
    background-color: var(--color-highlight);
}

.branch-box .nav-item .nav-link.active {
    background: var(--color-highlight);
    color: white !important;
}

.branch-box .item {
    border: 1px solid var(--color-highlight);
    padding: 1rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.branch-box .item.active, .branch-box .item:hover {
    background: var(--color-highlight);
    color: white;
}

.branch-section {
    background: var(--color-highlight);
    padding: 1rem;
    font-size: 2rem;
    font-weight: bold;
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
footer {
    background: #303030;
    position: relative;
    overflow: hidden;
}

footer::before {
    position: absolute;
    width: 1200px;
    height: 1200px;
    top: -280px;
    left: 50%;
    margin-left: -600px;
    content: "";
    /*background: transparent url(/templates/fashion03/assets/img/bg-footer.png) no-repeat center center;*/
    background-size: 100% auto;
    opacity: .3;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 60s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 60s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}
/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/

.is-mobile .swiper-slide--tile {
    font-size: 7rem;
}

/*cursor follow************/
.cursor {
  position: fixed;
  background-color: var(--color-highlight);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
}
.cursor.active {
  opacity: 1;
  transform: scale(0);
}

.cursor-follower {
  position: fixed;
  border: 0.5px solid var(--color-highlight);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor-follower.active {
  opacity: 1;
  transform: scale(3);
}


.header-top {
    display: flex;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    gap: 2rem;
}

.header-top .header-top-left .text {
    color: var(--title-color);
    align-items: center;
    font-size: 1.6rem;
}
.header-top .header-top-left .text.hover:hover {
    color: var(--color-highlight);
}

.gap-2rem {
    gap: 2rem;
}

.tag-footer .tag--item:before {
    content: "";
    position: relative;
    height: 6px;
    width: 6px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid white;
    top: -1px;
    margin-right: 10px;
    transition: 0.4s;
}

.border-color-footer {
    border-color: #414547 !important;
}


.cau-noi-wrapper .quote::after {
    content: "";
    position: absolute;
    left: 70%;
    top: 0;
    border: 1px solid var(--color-highlight);
    width: 215px;
    height: 113px;
    border-radius: 50%;
    transform: rotate(-14deg) translate(-50%, -60%);
}

.cau-noi-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 5rem;
}

.cau-noi-wrapper .name {
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--color-title);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.cau-noi-wrapper .quote {
    position: relative;
    margin-bottom: 3rem;
}

.cau-noi-wrapper .short-description {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-highlight);
    text-transform: uppercase;
    margin-bottom: -0.3em;
}


.cau-noi-wrapper .quote-wrapper:after {
    content: "";
    position: absolute;
    left: 70%;
    top: 0;
    border: 1px solid var(--color-highlight);
    width: 215px;
    height: 113px;
    border-radius: 50%;
    transform: rotate(-14deg) translate(-50%, -60%);
}

.cau-noi-wrapper .quote-wrapper {
    position: relative;
    margin-top: 5rem;
}

.banner-wrapper .name {
    color: white;
    text-align: center;
    font-size: 4.4rem;
}

.banner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.btn-hover {
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-align: center;
    background-color: var(--color-highlight);
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    padding: 1.5rem 2rem;
    border-radius: 0;
    overflow: hidden;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-hover:hover {
    color: white;
    box-shadow: none;
    text-decoration: none;
    outline: 0;
}

.btn-hover:before {
    content: "";
    position: absolute;
    height: calc(100% + 2px);
    width: calc(100% + 30px);
    top: -1px;
    right: 100%;
    background-color: var(--color-title);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
    clip-path: polygon(calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 0 0);
}

.btn-hover:hover:before {
    right: -30px;
}

.bg-title {
    background-color: var(--color-title) !important;
}

.cau-chuyen-wrapper .name {
    font-size: 3rem;
    color: white;
    margin: 3rem 0;
    display: block;
}

.cau-chuyen-wrapper .name:hover {
    color: var(--color-highlight);
}

.img-hover:hover {
    filter: brightness(0.5);
    transition: 0.4s all;
}

.cau-chuyen-wrapper .img-wrapper {
    position: relative;
}

.cau-chuyen-wrapper .img-wrapper .eye-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    background-color: white;
    height: 6rem;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0;
    z-index: 2;
}

.cau-chuyen-wrapper .img-wrapper:hover .eye-icon {
    opacity: 1;
    transition: 0.4s all;
}

.cau-chuyen-wrapper .img-wrapper:hover img {
    filter: brightness(0.5);
    transition: 0.4s all;
}

.btn-hover-custom {
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50px;
}

.btn-hover-custom:hover:before {
    background-color: var(--color-highlight);
}

.effect-brightness:hover img {
    filter: brightness(0.5);
    transition: 0.4s;
}

.product-item .inner-content {
    padding: 3rem;
}

.product-item {
    border: 1px solid #EDEDED;
}

.sec-title {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2916em;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.title-section-2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-title);
}

.xu-huong-slider img {
    border-radius: 260px 260px 0 0;
    width: 100%;
}

.xu-huong-slider .swiper-wrapper > div:nth-child(2) {
    padding-top: 13rem !important;
}

.card-img:before {
    content: "";
    position: absolute;
    inset: 0 30px 0 -30px;
    border: 1px solid var(--color-highlight);
    border-radius: 260px 260px 0 0;
    z-index: -1;
}

.card-img {
    position: relative;
}

.xu-huong-slider .card .name {
    color: white;
    font-weight: 500;
    font-size: 3.6rem;
    display: block;
    margin-bottom: 1rem;
}

.xu-huong-slider .card .description-short {
    color: #DDDDDC;
    font-size: 1.4rem;
    display: block;
    margin: 1rem 0;
}

.article-item.item-ngang .article-title a {
    color: var(--color-title);
    font-size: 2.4rem;
    font-weight: 600;
}

.article-item.item-ngang .article-description {
    font-size: 1.8rem;
    color: var(--color-highlight);
}

.article-item.item-ngang .date-wrapper {
    /* width: 15rem; */
    background: var(--color-highlight);
    text-align: center;
    color: #DDDDDC;
    padding: 2.2rem;
    font-size: 2rem;
    font-weight: 500;
    /* margin-right: 6rem; */
    flex: none;
    position: relative;
}

.article-item.item-ngang .date {
    display: block;
    font-size: 4rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    line-height: 1;
}

.article-item.item-ngang .date-wrapper:after {
    content: "";
    /* position: absolute; */
    left: calc(100% + 4vw);
    top: 0;
    height: 100%;
    width: 1px;
    background: #DDDDDC;
}

.countdown-section .text_1 {
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: white; 
    font-size: 4.8rem;
}

.countdown-section .text_2 {
    font-size: 1.6rem;
    margin-top: 30px;
    line-height: 1.667;
    margin-bottom: 3rem;
    color: #7B7E86;
}   

.countdown-section .countdown .countdown--item {
    border: 1px solid rgba(132, 132, 132, 0.4);
    border-right: none;
    display: block;
    text-align: center;
    padding: 2.6rem 3rem;
    width: 25%;
}

.countdown-section .countdown > div.countdown--item:last-child {
    border-right: 1px solid rgba(132, 132, 132, 0.4);
}

.countdown-section .countdown .countdown--item .countdown--number {
    color: var(--color-highlight);
    font-size: calc(2.5rem + 0.5vw);
    font-weight: 600;
    margin-bottom: 2rem;
}

.countdown-section .countdown .countdown--item .countdown--label {
    color: white;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: -0.3em;
    display: block;
}

.nhan-tin-section .text_1 {
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: white; 
    font-size: 4.8rem;
}

.nhan-tin-section .text_2 {
    font-size: 1.6rem;
    margin-top: 30px;
    line-height: 1.667;
    margin-bottom: 3rem;
    color: #7B7E86;
}  

.js-text {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.js-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.js-img {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.js-img.visible {
    opacity: 1;
}

.element-first .article-item .article-title a {
    font-size: 3.6rem;
    color: var(--color-title);
    font-weight: 500;
}

.post-btn a {
    color: var(--color-highlight);
    display: inline-flex;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
}

.post-btn a:before {
    transition: all 0.4s;
    background-color: var(--color-highlight);
    bottom: -3px;
    left: 0px;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
}

.post-btn:hover a:before {
    background-color: var(--color-highlight);
    width: calc(100% - 55px);
}


.view-small .inner-content .article-title a {
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.view-small .post-date {
    font-size: 1.4rem;
}

.thu-vien-anh .img-wrapper {
    position: relative;
}

.thu-vien-anh .swiper-slide .ig-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    opacity: 0;
    transition: all 0.4s;
    color: white;
}

.thu-vien-anh .swiper-slide:hover .ig-icon {
    opacity: 1;
    color: white;
}

.thu-vien-anh .swiper-slide:hover:before {
    background-color: var(--color-highlight);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.4;
    transition: all 0.4s;
}

.thu-vien-anh .swiper-slide:hover {
    position: relative;
}

.thu-vien-anh .swiper-slide:before {
    opacity: 0;
    position: absolute;
    content: "";
}

.title-section-3 {
    font-size: 2.4rem;
    color: black;
    font-weight: 500;
}

.box-list-article {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid #E3E5DE;
}

.thu-vien-anh .swiper-slide .ig-icon i {
    font-size: 2.3rem;
}

.search-custom input {
    border: 1px solid #E3E5DE;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0 60px 0 30px;
    height: 55px;
}

.search-custom button {
    font-size: 14px;
    background-color: var(--color-highlight);
    color: white;
    display: inline-block;
    height: 55px;
    width: 55px;
    transition: 0.4s all;
}

.search-custom button:hover {
    background-color: var(--color-title);
    color: white;
}

.get-in-touch-section {
    background: #303030;
    padding: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.get-in-touch-section .text-1 {
    margin-top: -0.4em;
    margin-bottom: 30px;
    color: white;
}

.get-in-touch-section .text-2 {
    font-size: 6rem;
    font-weight: 600;
    margin-top: -0.25em;
    margin-bottom: 32px;
    color: white;
    text-transform: uppercase;
}

.get-in-touch-section .btn-get-in-touch {
    height: 16rem;
    width: 16rem;
    line-height: 16rem;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 2.4rem;
    font-weight: 500;
    color: white;
}

.get-in-touch-section .btn-get-in-touch:hover {
    color: black;
    transition: all 0.4s;
    background: white;
}

.mb-each-col > .container > .row > div {
    margin-bottom: 2rem;
}

.product-detail-footer .nav .nav-item {
    margin-bottom: 1rem;
}

@media (max-width: 960px) {
    .xu-huong-slider .swiper-wrapper > div:nth-child(2) {
        padding-top: 0rem !important;
    }
}
@media  (min-width: 1440px) {
    
}

@media (max-width: 480px) {
   
}
@media (max-width: 768px) {
   
}

@media (max-width: 1000px) {
    .setting-menu > .container > .row > div:nth-child(2) {
        order: -1;
        max-width: 40%;
        flex-basis: 40%;
    }
    
    .setting-menu > .container > .row > div:nth-child(1) {
        max-width: 30%;
        flex-basis: 30%;
    }
    
    .setting-menu > .container > .row > div:nth-child(3) {
        max-width: 30%;
        flex-basis: 30%;
    }
    .entire-action-header .acc-show {
        display: none;
    }
    
    .search-section.entire-action-header {
        display: none;
    }
}

.setting-menu > .container > .row > div:last-child {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
