@media screen and (min-width: 720px) {
    .owl-carousel .owl-item img{
        border-radius: 12px;
    }
    
}

.owl-carousel .owl-dots, .owl-carousel .owl-nav{
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}


.owl-carousel .owl-nav {
    margin-top: -22px;
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav button {
    background-color: #323232 !important;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 32px;
    margin: 0;
    position: absolute;
    top: -16px;
    width: 32px;
    z-index: 2;
}


.owl-carousel .owl-nav button.owl-prev:after, .owl-carousel .owl-nav button.owl-prev:before,
.owl-carousel .owl-nav button.owl-next:after, .owl-carousel .owl-nav button.owl-next:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 1px;
    left: 11px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 12px;
}

.owl-carousel .owl-nav button.owl-prev:after, .owl-carousel .owl-nav button.owl-next:after{
    margin-top: 4px;
    transform: rotate(-45deg);
}

@media (max-width: 720px) {
    .owl-carousel .owl-nav {
        display: none;
    }
}

.owl-carousel .owl-nav button.owl-prev {
    -webkit-transform: rotate(180deg);
}

@media (min-width: 720px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: 10%;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 10%;
    }
}

@media (min-width: 1097px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: 20%;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 20%;
    }
}

.owl-carousel .owl-nav button {
    position: absolute;
    z-index: 2;
    display: block;
    top: -16px;
    width: 32px;
    height: 32px;
    background-color: rgba(50, 50, 50, .3);
    border-radius: 50%;
    cursor: pointer;
}


.owl-dots .button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.25rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: #008CBA;
    border-color: #007095;
    color: #fff;
    transition: background-color 300ms ease-out;
}

.owl-dots{
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background: red;
}

.main-body {
    margin: 0 auto;
    max-width: 1200px;
}

@media screen and (max-width: 1200px) {
    .main-body {
        margin: 0 auto;
        max-width: 94%;
    }
}


@media screen and (max-width: 720px) {
    .main-body {
        margin: 0 auto;
        max-width: 92%;
    }
}

.section-title {
    margin-bottom: 14px;
    margin-top: 30px;
}
@media screen and (max-width: 900px) {
    .section-title {
        margin-bottom: 2px;
        margin-top: 24px;
    }
}

.top h4:before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--primary);
    top: 50%;
    margin-top: -5px;
    left: 0;
}

.top h4 {
    color: #222;
    font-size: 30px;
    font-weight: 600;
    line-height: 48px;
    position: relative;
    padding-left: 23px;
}
@media screen and (max-width: 720px) {
    .top h4 {
        font-size: 18px;
        line-height: 38px;
    }
}

.see-more{
    -ms-flex-item-align: center !important;
    align-self: center !important;
    text-align: right;
}

.see-more .see-all-btn{
    font-size: 18px;
    color: #292929;
    position: relative;
    font-weight: 700;
}

.section-title .see-all-btn:hover {
    color: var(--primary);
  }
  .section-title .see-all-btn:hover:after {
    background: var(--primary);
  }

.see-all-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #292929;
    left: 0;
    bottom: 0;
    transition: 0.4s;
}

.body{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.deals-item{
    padding: 10px;
    position: relative;
    width: calc(25% - 8px);
    border-radius: 12px;
}

@media screen and (max-width: 720px) {
    .deals-item{
        /* padding: 10px 10px 0;
        width: 50%; */
        width: calc(50% - 5px);
    }
}

.deals-item .picture {
    background: #f6f6f6;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    height: 285px;
    padding: 40px;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 720px) {
    .deals-item .picture{
        border-radius: 8px;
        height: 165px;
        padding: 22px;
    }
}

img {
    border: none;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.deals-item .picture img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}
.deals-item .name {
    color: #999;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 6px;
    margin-top: 16px;
}

.deals-item .title {
    color: #222;
    display: -webkit-box;
    font-size: 16px;
    line-height: 21px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
    margin: 0 0 4px;
}

@media screen and (max-width: 720px) {
    .deals-item .title {
        font-size: 12px;
        margin: 8px 0 4px;
    }
}

.deals-item .price {
    align-items: center;
    display: flex;
}

.deals-item .price .four-newprice {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-right: 4px;
}

@media screen and (max-width: 720px) {
    .deals-item .price .four-newprice {
        font-size: 18px;
    }
}

.deals-item .price .old-price {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
}

@media screen and (max-width: 720px) {
    .deals-item .price .old-price {
        font-size: 12px;
    }
}


.coupons-list {
    display: inline-block;
}


.coupons-list .coupons-item {
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 12px;
    display: flex;
    float: left;
    margin-bottom: 20px;
    padding: 16px;
    width: calc(50% - 10px);
}

@media screen and (max-width: 900px) {
    .coupons-list .coupons-item {
        float: none;
        width: 100%;
    }
}
@media screen and (max-width: 720px) {
    .coupons-list .coupons-item {
        float: none;
        margin-bottom: 12px;
        padding: 12px;
        position: relative;
        width: 100%;
    }
}
.coupons-list .coupons-item:nth-child(2n) {
    margin-right: 20px;
}
@media screen and (max-width: 900px) {
    .coupons-list .coupons-item:nth-child(2n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 720px) {
    .coupons-list .coupons-item:nth-child(2n) {
        margin-right: 0;
    }
}

.coupons-list .item-left {
    align-items: center;
    display: flex;
    flex: 0 0 74px;
    font-size: 14px;
    height: 74px;
    margin-right: 16px;
    text-align: center;
}
@media screen and (max-width: 720px) {
    .coupons-list .item-left {
        flex: 0 0 60px;
        font-size: 12px;
        height: 60px;
    }
}

.coupons-list .item-left img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.coupons-list .item-center {
    flex-grow: 1;
}

.coupons-list .item-center .name{
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
}
.coupons-list .item-center .csg-title, .coupons-list .item-center .name {
    color: #222;
    display: -webkit-box;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coupons-list .item-center .csg-title {
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
}
@media screen and (max-width: 720px) {
    .coupons-list .item-center .csg-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

.coupons-list .item-center .expire-time {
    color: #999;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
}
@media screen and (max-width: 720px) {
    .coupons-list .item-center .expire-time {
        font-size: 12px;
    }
}

.coupons-list .item-right {
    align-items: center;
    display: flex;
}
@media screen and (max-width: 720px) {
    .coupons-list .item-right {
        display: none;
    }
}

.coupons-list .item-code {
    display: none;
}
@media screen and (max-width: 720px) {
    .coupons-list .item-code {
        background: var(--primary);
        border-radius: 0 12px 0 12px;
        color: #fff;
        display: block;
        font-size: 12px;
        font-weight: 500;
        height: 24px;
        line-height: 24px;
        padding: 0 6px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 0;
    }
}

.categories-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
    column-gap: 1rem;
}

.categories-item .categories-left{
    position: relative;
    margin: 0;
}

.categories-item img{
    width: 100%;
}

.categories-item .f-collection-btn a {
    color: var(--primary);
    font-weight: 600;
}
.categories-item .f-collection-btn a {
    display: inline-block;
    padding: 8px 32px;
    background-color: white;
    color: var(--primary);
    border-radius: 50px;
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (min-width: 576px) {
    .categories-item .img {
        width: 250px;
    }
}
@media (min-width: 768px) {
    .categories-item .img {
        width: 330px;
    }
}
@media (min-width: 992px) {
    .categories-item .img {
        width: 300px;
    }
}
@media (min-width: 1200px) {
    .categories-item .img {
        width: 350px;
    }
}


.categories-item .categories-center{
    position: relative;
    margin: 0;
    flex-direction: column;
    column-gap: 0;
    row-gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}

.categories-item .categories-right{
    position: relative;
    order: 0;
    margin: 0;
}

.categories-item .categories-center>div{
    position: relative;
    order: 0;
    margin: 0;
}

.stores-list .stores-content{
    transition: transform .5s ease-in-out;
    white-space: nowrap;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
}

.stores-content .site-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 12px;
    cursor: pointer;
    display: inline-block;
    height: 227px;
    margin-bottom: 12px;
    margin-right: 16px;
    padding: 32px 24px 24px;
    text-align: center;
    width: 224px;
}

@media screen and (max-width: 720px) {
    .stores-content .site-item {
        cursor: pointer;
        height: auto;
        margin-bottom: 13px;
        margin-right: 12px;
        overflow: hidden;
        padding: 0 0 16px;
        text-align: center;
        width: calc(50% - 6px);
    }
    .stores-content .site-item:nth-child(2n) {
        margin-right: 0;
    }
}

.stores-content .site-item .logo {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 98px;
    justify-content: center;
    margin: 0 auto;
    width: 98px;
}

@media screen and (max-width: 720px) {
    .stores-content .site-item .logo {
        border-bottom: 1px solid #eaeaea;
        border-radius: 0;
        width: 100%;
    }
}

@media screen and (max-width: 720px) {
    .stores-content .site-item .logo img {
        max-height: 66px;
        max-width: 100px;
    }
}
.stores-content .site-item .logo img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.stores-content .site-item .name {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 10px 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 720px) {
    .stores-content .site-item .name {
        color: #333;
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
        margin: 12px 0 4px;
    }
}

.stores-content .site-item .num{
    color: var(--blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

@media screen and (max-width: 720px) {
    .stores-content .site-item .num {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }
}

.project-row-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    width: 100%;
}

@media (max-width: 575px), (max-width: 450px) {
    .project-row-custom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.col-custom {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    height: 500px;
    background-size: cover;
    margin-top: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.project-item {
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}
.project-thumb {
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}
.project-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}
.project-title {
    font-size: 36px;
    color: white;
    font-weight: bold;
    line-height: 46px;
    width: 100%;
    z-index: 5;
    position: absolute;
    bottom: 45px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.col-custom.active .project-title {
    opacity: 1;
    visibility: visible;
    text-align: center;
}
.col-custom.active {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

.col-custom.active::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 61, 0, 0.1)), to(#FF3D00));
    background: linear-gradient(180deg, rgba(255, 61, 0, 0.1) 0%, #FF3D00 100%);
    z-index: 1;
    opacity: 0.9;
}

.top-news-tab-content .top-news-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}