#page{}
.fixed_height{ }
.section-header{
    padding-bottom: 30px;
}
.section-header h2 {
    color: #FDFDE5;
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 75px;
    text-transform: uppercase;
}
.section-header p {
    margin: 0;
}
.section-header.swidth {
    width: 70%;
}
.title-page{
    color: #fe0000;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.btn-themes{
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 34px;
    background: #233D30;
    border-radius: 45px;
    width: fit-content;
    color: #EBEDEA;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
}
.btn-themes a{
    color: #fff;
}

@media screen and (max-width: 768px) {
    .section-header.swidth {
        width: 100%;
    }
    .section-header h2 {
        font-size: 28px;
        line-height: 42px;
    }
    .title-page{ font-size: 32px;}
}

#banner.banner-home{
    height: 1290px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

#banner.banner-home #description{
    color: #FDFDE5;
    text-align: center;
    width: 580px;
    margin: 0 auto;
}

#banner.banner-home #description h2{
    margin-top: 5px;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
}

#banner.banner-home #description h3{
    margin-top: 25px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
#banner.banner-home #description h4{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
#banner.banner-home #description div{
    margin-top: 80px;
}
#banner.banner-home #description img{
    max-width: 100%;
}

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

}

@media screen and (max-width: 768px) {
    #banner.banner-home{
        height: 500px;
    }
    #banner.banner-home #description{
        margin-top: -70px;
        width: 100%;
    }
    #banner.banner-home #description div{
        margin-top: 20px;
    }
    #banner.banner-home #description img{
        width: 80%;
        text-align: center;
    }

    #banner.banner-home #description h2{
        font-size: 28px;
        line-height: 30px;
        text-align: center;
    }
    #banner.banner-home #description h3{
        font-size: 18px;
    }
    #banner.banner-home #description h4{
        font-size: 18px;
    }
}
#header{
    background-color: #BF3B2B;
}
#header .container{
    height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}
#logo{
    margin-top: 120px;
}
#logo img{ max-height: 180px;}

.fixed-menu #header .container{ height: 80px;}
.fixed-menu #logo{ margin-top: 0; max-height: 100%;}
.fixed-menu #logo img{ max-height: 60px;}

#banner-page{
    background: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}
#banner-page h2{
     font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
}

#top-line{
    background: url("../images/bg-bottom-menu.jpg");
    height: 31px;
}
#bottom-line{
    background: url("../images/bg-bottom-line.jpg");
    height: 90px;
}

@media screen and (max-width: 768px) {
   #header .container{ height: 80px;}
   #logo{ margin-top: 0; max-height: 100%;}
    #logo img{ max-height: 60px;}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #D3D3D3;
        padding: 16px 18px;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #222322;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #FDFDE5;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 150%;
        opacity: 0;
        transition: 0.3s;
        z-index: 99;
        padding-top: 10px;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
        border-bottom: 1px solid #C3C3C3;
    }
    .navmenu .dropdown ul li:last-child {
        border-bottom: none;
    }

    .navmenu .dropdown ul a {
        padding: 12px 20px;
        color: #2F2F2F;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        text-transform: none;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: #1b1e21;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        box-shadow: 0px 0px 20px rgba(0,0,0, 0.1);
        display: block;
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: #fff;
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: #fff;
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(0,0,0, 0.15);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {

    #icon-menu{ position: absolute; top: 20px; right: 0px;}
    .mobile-nav-toggle {
        color: #fff;
        font-size: 36px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0,0,0, 0.1);
        padding-top: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #fff3cd;
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(0,0,0, 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        color: #fff3cd;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #fff3cd;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        color: #fff3cd;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 3px 0;
        margin: 3px 20px;
        background-color: #fff;
        transition: all 0.5s ease-in-out;
        margin-top: -10px;
    }

    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle.bi-x {
        color: #fff;
        position: absolute;
        font-size: 48px;
        top: -10px;
        right:0px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
    .mobile-nav-active .navmenu>ul>li a {
        color: #fff;
    }
}

/*--------------------------------------------------------------
# Coop Page
--------------------------------------------------------------*/
.banner-in1{
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 620px;
    color: #FDFDE5;
}
.banner-in1 h2{
    color: #FDFDE5;
    font-family: "Playfair Display SC", serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 84px;
    text-transform: uppercase;
}

#benefit{

}

#benefit h2.title{
    color: #FDFDE5;
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px;
}

#benefit .benefit-box {
    margin-bottom: 30px;
}

#benefit .benefit-box .title{
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.1px;
}


@media screen and (max-width: 768px) {
    #benefit .benefit-box {
        text-align: center;
        font-size: 14px;
    }
    #benefit .benefit-box .icon{

    }
    #benefit .benefit-box .title{
        font-size: 18px;
    }
}

#timeline{
    position: relative;
    padding: 80px 0;
}

#timeline #coop-bean1{
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60px;
}
#timeline #coop-bean2{
    position: absolute;
    right: 20%;
    bottom: 20%;
    width: 60px;
}
#timeline .timeline-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#timeline h2.title{
    position: absolute;
    top: 40%;
    left: 10%;
    width: 650px;
    color: #FDFDE5;
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px;
}

#timeline .fake-line {
    flex: 1;
    height: 2.5px;
    background-color: #fdfde5;
}

#timeline .svg-block {
    width: 1920px;
    flex: 0 0 auto;
    padding-top: 20px;
}

#timeline svg {
    display: block;
    width: 100%;
    height: auto;
}
#timeline svg h2{
    color: #FDFDE5;
    text-align: center;
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 0;
}
#timeline .point {
    fill: #ffde59;
    stroke: #fff;
    stroke-width: 3;
}

#timeline .point-label {
    fill: #ffffff;
    font-size: 24px;
    text-shadow: 1px 1px 3px black;
}

#coop-processing{
    background: #2F2F2F;
    color: #FDFDE5;
    position: relative;
    padding: 80px 0;
}
#coop-processing #coop-bean3{
    position: absolute;
    left: 10%;
    top: -50px;
    width: 60px;
}

#coop-processing .timeline-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#coop-processing .timeline-wrapper #coop-bean4{
    position: absolute;
    left: 10%;
    bottom:150px;
    width: 60px;
}
#coop-processing .timeline-wrapper h2.title{
    position: absolute;
    top: 10%;
    left: 10%;
    width: 450px;
    color: #FDFDE5;
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px;
}

#coop-processing .svg-block {
    max-width: 1196px;
    flex: 0 0 auto;
    padding-top: 20px;
}

#coop-processing svg {
    display: block;
    width: 100%;
    height: auto;
}
#coop-processing .point {
    fill: #ffde59;
    stroke: #fff;
    stroke-width: 3;
}

#coop-processing svg foreignObject{
    fill: #ffffff;
    font-size: 600;
    line-height: 20px;
    width: 200px;
}

#coop-policy{
    background: #FDFDE5;
    padding: 80px 0;
}

#coop-policy .section-header h2{
    color: #BF3B2B;
    text-align: center;
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 83px;
    text-transform: uppercase;
}

#coop-policy .news-box{
    background: #f5f0d5;
    padding: 15px;
}

#coop-policy #accordionNews{
}

#coop-policy .news-box .accordion-item{
    margin-bottom: 15px;
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #BF3B2B;
}
#coop-policy .news-box .accordion-item:last-child{
    border: none;
}
#coop-policy .news-box .accordion-header{

}
#coop-policy .news-box .accordion-header .accordion-button{
    background: none;
    color: #272D37;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}
#coop-policy .news-box .accordion-header .accordion-button:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 768px) {
    .banner-in1{
        background-size:  auto 100%;
        height: 620px;
    }
    .banner-in1 h2{
        font-size: 30px;
        line-height: 84px;
    }
    #timeline h2.title{
        position: relative;
        top: 0px;
        left: 20px;
        width: 100%;
        font-size: 40px;
        font-weight: 900;
        line-height: 40px;
    }

    #coop-policy .section-header h2{
        font-size: 40px;
        line-height: 48px;
    }

}

/*--------------------------------------------------------------
# About us Page
--------------------------------------------------------------*/

#history{
    padding: 80px 0;
}

#history .section-header h2{
    color: #FDFDE5;
    text-align: center;
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px;
    text-transform: none;
}

#achievement{
    padding: 80px 0;
}

#achievement .section-header h2{
    color: #FDFDE5;
    text-align: center;
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px;
    text-transform: none;
}

#achievement .timeline-container {
    display: flex;
    justify-content: center;
}

#achievement .timeline {
    position: relative;
    border-left: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    width: 100%;
}
#achievement .timeline::before {
    content: '';
    position: absolute;
    left: 112px; /* căn theo chấm tròn */
    top: 30px;
    bottom: 80px;
    width: 2px;
    background: #fff;
}

#achievement .timeline-item {
    position: relative;
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    gap: 20px;
    margin-bottom: 60px;
}

#achievement .timeline-item .year {
    width: 80px;
    color: #d94939;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

#achievement .timeline-item .circle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
}

#achievement .timeline-item .content {
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {

    #history .section-header h2{
        font-size: 40px;
        line-height: 46px;
    }

    #achievement .section-header h2{
        font-size: 48px;
        line-height: 52px;
    }

    #achievement .timeline {
        padding-left: 40px;
    }

    #achievement  .timeline-item .year {
        left: -60px;
        font-size: 22px;
    }

    #achievement  .timeline-item .content {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #achievement .timeline {
        padding-left: 30px;
    }

    #achievement  .timeline-item .year {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 5px;
        display: block;
        font-size: 20px;
    }

    #achievement  .timeline-item .circle {
        position: absolute;
        left: 70px;
        top: 5px;
    }

    #achievement  .timeline-item {
        padding-left: 10px;
    }

    #achievement  .timeline-item .content {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Vision Section
--------------------------------------------------------------*/

#vision{
    padding: 80px 0;
    background: #fdfde5;
    color: #2F2F2F;
    text-align: justify;
}

#vision .warp{
    width: 70%;
}
#vision .warp .section-header{
    padding-bottom: 0;
}
#vision .warp .section-header h2{
    color: #CE503E;
    font-family: "Playfair Display SC", serif;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
}

@media screen and (max-width: 768px) {
    #vision{
        padding: 0;
    }
    #vision .warp{
        width: 100%;
    }
    #vision .warp .section-header h2{
        font-size: 34px;
    }
}

#aboutus-page #about-us-2{
    background-image: url(../images/bg-about-land.jpg);
    background-position: center top;
    background-size: 100% auto;
    color: #000000;
    height: auto;
    padding: 100px;
}
#aboutus-page #about-us-2 #box-land h2{
    font-size: 36px;
}
#aboutus-page #about-us-2 #box-land {
    position: relative;
    top: 0px;
    right: 0px;
    margin: 0 auto;
}

#aboutus-page  #about-us-2 #box-land .text-warp {
   margin-top: 0px;
    padding-top: 100px;
    width: 100%;
}
#aboutus-page  #about-us-2 #box-land .text-warp .content{
    width: 68%;
    margin: 0 auto;
    height: 380px; overflow: auto;
}

#brand-story{
    padding: 80px 0;
}

#brand-story .title{
    color: #FDFDE5;
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 83px; /* 138.333% */
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    #aboutus-page #about-us-2{
        padding: 10px;
        background-size:  auto 100%;
    }
    #aboutus-page #about-us-2 #box-land{
        height: 530px;
    }
    #aboutus-page #about-us-2 #box-land .text-warp {
        padding-top: 80px;
    }
    #aboutus-page #about-us-2 #box-land h2{
        font-size: 28px;
    }
    #aboutus-page  #about-us-2 #box-land .text-warp .content{
        height: 280px;
    }
    #brand-story .title{
        font-size: 50px;
        line-height: 55px;
    }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.pro-list{ }

.pro-list .pro-item{
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}
.pro-list .pro-item:hover{
    background: #F5F0D5;
}
.pro-list .pro-item  .pc_sales{ display: inline-block;  position: absolute; top: 10px; right: 10px; background: #ff0000; color: #fff; border-radius: 8px; z-index: 101; text-align: center; font-size: 14px; padding: 2px 5px;}

.pro-list .pro-item .info{
    margin-top: 30px;
}
.pro-list .pro-item .info h4 a{
    color: #2F2F2F;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; /* 125% */
    text-transform: uppercase;
}
.pro-list .pro-item .price{
    color: #D2271B;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px; /* 175% */
    text-transform: uppercase;
}

.pro-list .pro-item .price .sale-price{
    margin-left: 30px;
    color: #8a8a8a;
    font-size: 15px;
    color: #707070;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through ;
}
.pro-list .pro-item .weight{
    border-radius: 20px;
    padding: 3px 22px;
    border: 0.7px solid #000;
}

.pro-item .imgbox{ height: 300px;}

@media screen and (max-width: 768px) {
    .pro-item .imgbox{ height: 200px;}
}

@media (max-width: 575px) {
    .homepro h4 {
        font-size: 16px;
    }
}

.related-pro .section-header h2 {
    color: #000;
}

.col-droplang{}
#droplang{
 width: auto;
}
#droplang button{
    background: none; border: none; font-size: 15px;
    color: #fff;
}
#droplang .flagimg { width: 22px; margin-left: 10px;}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.teams{
    padding-top: 100px;
    padding-bottom: 120px;
}

.teams .section-header h2 {
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 83px;
    text-transform: uppercase;
}

.teams .inner {
    width: 80%;
    margin: 0 auto;
}

.teams .info{
    padding: 20px;
    padding-right: 0;
}

.teams .info .description{
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 62px;
    margin-bottom: 30px;
}

.teams .info .name{
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.teams .info .position{
    color: #BF3B2B;
    font-size: 18px;
    font-weight: 500;
    line-height:28px;
}

.teams .swiper-button-next::after,.teams .swiper-button-prev::after {
    content: '';
}

.teams .swiper-button-next,.teams .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: 22px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #474747;
    border-radius: 50%;
    border: 1px solid #474747;
    background: #fff;
    width: 60px;
    height: 60px;
}

.teams .swiper-button-next, .teams .swiper-button-prev i{
    font-size: 20px;
}

.teams .swiper-button-next {
    right: 10px;
    left: auto;
}

.teams .swiper-button-prev-01{
    left: 10px;
    right: auto;
}

@media screen and (max-width: 768px) {
    .teams .info {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .teams .info img{
        width: 30px;
    }
    .teams .info .description{
        font-size: 40px;
        line-height: 46px;
    }

    .teams .section-header h2 {
        font-size: 35px;
        line-height: 40px;
    }
    #teams-panel{
        position: relative;
    }
    #teams-panel .swiper-button-next, .teams .swiper-button-prev{
        width: 30px;
        height: 30px;
    }
    #teams-panel .swiper-button-next i, .teams .swiper-button-prev i{
        font-size: 15px;
    }
    #teams-panel .swiper-button-next{
        right: -10px;
    }
    #teams-panel .swiper-button-prev{
        left: -10px;
    }
}

/*--------------------------------------------------------------
# Prize Section
--------------------------------------------------------------*/

.prize{
    padding: 80px 0;
}

.prize .swiper-button-next::after,.teams .swiper-button-prev::after {
    content: '';
}

.prize .swiper-button-next, .prize .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: 22px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #474747;
    border-radius: 50%;
    border: 1px solid #474747;
    background: #fff;
    width: 60px;
    height: 60px;
}

.prize .swiper-button-next, .teams .swiper-button-prev i{
    font-size: 20px;
}

.prize .swiper-button-next {
    right: 10px;
    left: auto;
}

.prize .swiper-button-prev-01{
    left: 10px;
    right: auto;
}
/*--------------------------------------------------------------
# Partner Section
--------------------------------------------------------------*/
.partner{
    background: #233D30;
    color: #fff;
    padding: 20px 0;
}

.partner .partner-item {
    padding: 10px;
    margin:  0 10px;
    height: 120px;
}

.partner .partner-item .img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .partner .swiper-slide-active+.swiper-slide {
        z-index: 1;
    }
}

@media (max-width: 575px) {
    .partner .partner-item {
        padding: 0;
        margin:  0;
        height: 100px;
        overflow: hidden;
    }

    .partner .section-header {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .partner .partner-item .info {
        display: block;
    }

}
.partner .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.partner .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background-color: #d1d1d7;
    opacity: 1;
    border-radius: 10px;
}
.partner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: yellow;
}

/*--------------------------------------------------------------
# About us Section
--------------------------------------------------------------*/

#about-us{
    position: relative;
    padding-bottom: 80px;
}
#about-us h2.title{
    color: #BF3B2B;
    font-family: "Playfair", serif;
    font-size: 71px;
    font-weight: 800;
    line-height: 75px; /* 100% */
}
#about-us .desc{
    color: #000;
    text-align: justify;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

#about-us .figure-caption{
    color: #BF3B2B;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

#about-us .warp{
    position: relative;
    width: 107px;
    margin: 0 auto;
    z-index: 999;
    padding-top: 100px;
}
#about-us .box-line{
    position: absolute;
    left: auto;
    right: auto;
    top: 0;
    width: 100%;
    z-index: 999;
}

#about-us .box-line #coffee-beans{
    position: absolute;
    left: 23px;
    top:-24px
}

#about-us .box-line .svg-container svg {
    width: 107px;
    height: 796px;
}

#area-line-2 .warp{
    position: relative;
    width: 1320px;
    margin: 0 auto;
}
#area-line-2 .box-line{
    position: absolute;
    left: auto;
    right: auto;
    top: 0;
    width: 100%;
    z-index: 999;
}
#about-us-2{
    position: relative;
    background-image: url(../images/bg-about2.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    height: 1150px;
}


#area-line-2 .box-line .svg-container{
    text-align: center;
}
#area-line-2 .box-line .svg-container svg {
    width: 1194px;
    height: auto;
}

#about-us-2 #box-land{
    background: url("../images/bg-landarea.png") no-repeat;
    width: 520px;
    height: 651px;
    position: absolute;
    top: 380px;
    right: 180px;
    z-index: 1000;
}
#about-us-2 #box-land .text-warp{
    margin: 0 auto;
    margin-top: 70px;
    width: 80%;
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
}
#about-us-2 #box-land .text-warp h2{
    color: #BF3B2B;
    text-align: center;
    font-size: 54px;
    font-family: "Playfair Display SC", serif;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
}

#about-us-2 .btn-themes{
    background: #2C4A60;
    margin: 0 auto;
    font-size: 14px;
}

#processing{
    background: #2F2F2F;
    padding: 90px 0;
    color: #FDFDE5;
}

#processing h2{
    color: #FDFDE5;
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 80px; /* 133.333% */
    text-transform: uppercase;
}
#processing h3{
    margin-top: 50px;
    margin-bottom: 20px;
    color: #FDFDE5;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px; /* 125% */
}

#about-us-3{
    position: relative;
}
#about-us-3 #box-cafe-phin{
    position: absolute;
    top: 180px;
    right: 150px;
    width: 400px;
    color: #FDFDE5;
}
#about-us-3 #box-cafe-phin h2{
    font-family: "Playfair", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 59px; /* 98.333% */
}
#about-us-3 #box-cafe-phin p{
    text-align: justify;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    #home-page #about-us-2{
        background-color: #2F2F2F;
    }
    #about-us .warp, #area-line-2 .warp{
        display: none;
    }
    #about-us h2.title{
        font-size: 36px;
        line-height: 40px;
    }
    #about-us .desc{
        line-height: 28px;
    }
    #about-us-2{
        height: auto;
    }
    #about-us-2 #box-land{
        background: url("../images/bg-landarea.png") no-repeat;
        background-position: center top;
        background-size: 100% auto;
        width: 100%;
        position: relative;
        top: 100px;
        right: 0px;
        z-index: 1000;
    }
    #about-us-2 #box-land .text-warp{
        margin-top: 20px;
        width: 80%;
        padding-top: 70px;
        font-size: 13px;
    }
    #about-us-2 #box-land .text-warp h2{
        font-size: 30px;
        line-height: 40px;
    }
    #about-us-2 .btn-themes{
        padding: 6px 10px;
    }
    #processing h2{
        font-size: 32px;
        line-height: 65px;
    }
    #processing h3 {
        margin-top: 20px;
    }
    #about-us-3{

    }
    #about-us-3 #box-cafe-phin{
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: auto;
        right: auto;
        margin: 0 auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
    }
    #about-us-3 #box-cafe-phin h2 {
        margin-top: 10px;
        font-size: 32px;
        line-height: normal;
    }
    #about-us-3 #box-cafe-phin p {
        margin: 0px;
    }
}

/*--------------------------------------------------------------
# Spacing Section
--------------------------------------------------------------*/
#spacing{
    position: relative;
    background: #2F2F2F;
    padding: 80px 0;
    color: #FDFDE5;
    text-align: center;
}
#spacing h2{
    color: #FDFDE5;
    text-align: center;
    font-family: "Playfair Display SC", serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 74px; /* 123.333% */
    text-transform: uppercase;
}
#spacing p{
    margin: 0;
}
@media screen and (max-width: 768px) {
    #spacing h2 {
        font-size: 45px;
        line-height: 55px;
    }
}

/*--------------------------------------------------------------
# Home Products Section
--------------------------------------------------------------*/

#home-pro{
    position: relative;
    background: #2F2F2F;
    padding: 80px 0;
    color: #FDFDE5;
}

#panelProducts{
    margin-top: 80px;
    position: relative;
}
#home-pro .swiper {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

#home-pro .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 33%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home-pro .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-pro .swiper-slide:not(.swiper-slide-active) img{
    filter: blur(4px);
    opacity: .5;
    transition: transform 0.4s ease;
    transform: scale(0.8); /* Slide phụ nhỏ 60% */
}
/*--------------------------------------------------------------
# About us Page
--------------------------------------------------------------*/

#panel-aboutus{
    background: #EBEDEA;
    padding-top: 60px;
    padding-bottom: 60px;
}

#panel-aboutus .content{
    font-family: 'Jazmin-Reg';
    margin-left: 30px;
    color: #233D30;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

#panel-aboutus .content h3{
    color: #233D30;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 156.25% */
    text-transform: uppercase;
}
#panel-aboutus .content h4{
    color: #233D30;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 183.333% */
    letter-spacing: -0.25px;
    text-transform: uppercase;
}

#panel-aboutus .content ul{
    margin: 0;
    padding: 0;
}
#panel-aboutus .content ul li:before {
    content: "+";
    margin-right: 6px;
    font-weight: 600;
}

#panel-sub-aboutus{
    background: #DCE3DA;
    padding-top: 60px;
    padding-bottom: 60px;
}
#panel-sub-aboutus h2{
    color: #233D30;
    font-size: 47px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 156.25% */
    text-transform: uppercase;
    text-align: center;
}
#panel-sub-aboutus .content{
    font-family: 'Jazmin-Reg';
    margin-right: 60px;
    color: #233D30;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

@media screen and (max-width: 768px) {
    #panel-aboutus{ padding-top:30px;}
    #panel-sub-aboutus{ margin-top: 30px;}
    #panel-sub-aboutus .title-page{ text-align: center;}
    #panel-aboutus .content{
        margin-left: 0px;

    }
    #panel-aboutus .content h3{
        font-size: 32px;
        line-height: 42px;
    }
    #panel-aboutus .content h4{
        font-size: 22px;
        line-height: 36px; /* 183.333% */
    }
    #panel-sub-aboutus h2{
        font-size: 28px;
        line-height: 32px;
    }
    #panel-sub-aboutus .content{
        margin-right: 0px;
    }
}

/*--------------------------------------------------------------
# News Type Page
--------------------------------------------------------------*/

#news-type{}

#news-type .section-header h2{
    color: #BF3B2B;
    font-family: "Playfair", serif;
    font-size: 96px;
    font-weight: 900;
    line-height: 75px;
    text-transform: uppercase;
}
#news-type .news-box .grid-item{
    aspect-ratio: 1.5 / 1;
}
#news-type .news-box .date{
    margin-top: 15px;
    color: #727272;
    font-size: 13px;
    font-weight: 500;
}
#news-type .news-box .title{
    margin-top: 10px;
    color: #2F2F2F;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}
#news-type .news-box .more{
    margin-top: 10px;
}
#news-type .news-box .more a{
    color: #210000;
    font-size: 14px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Promotion Section
--------------------------------------------------------------*/
.promotion{
    padding: 80px 0;
}
.promotion-box{
    background: #F5F0D5;
    padding: 80px;
}
.promotion-box .inner{
    width: 82%;
    margin: 0 auto;
    text-align: center;
}
.promotion-box .inner h4{
    color: #210000;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px; /* 100% */
    text-transform: uppercase;
}
.promotion-box .inner h3{
    margin-top: 15px;
    color: #2F2F2F;
    font-family: "Playfair", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}
.promotion-box .inner .btnorder{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: #BF3B2B;
    color: #FDFDE5;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .promotion-box{
        padding: 80px 20px;
    }
    .promotion-box .inner{
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Other news Section
--------------------------------------------------------------*/

#other_news{}
#other_news .section-header h2{
    color: #2F2F2F;
    text-align: center;
    font-family: "Playfair", serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 40px;
    text-transform: uppercase;
}
#other_news .news-box .grid-item{
    aspect-ratio: 1.5 / 1;
}
#other_news .news-box .date{
    margin-top: 15px;
    color: #727272;
    font-size: 13px;
    font-weight: 500;
}
#other_news .news-box .title{
    margin-top: 10px;
    color: #2F2F2F;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}
#other_news .news-box .more{
    margin-top: 10px;
}
#other_news .news-box .more a{
    color: #210000;
    font-size: 14px;
    font-weight: 600;
}

.carousel-panel{ position: relative;}
.carousel-panel .owl-nav button.owl-prev{  position: absolute;  top: 10px;  left: -30px; z-index: 9999; border: none;}
.carousel-panel .owl-nav button.owl-prev span{ font-size: 80px;}

.carousel-panel .owl-nav button.owl-next{ position: absolute; top: 10px; right: -30px; z-index: 9999; border: none;}
.carousel-panel .owl-nav button.owl-next span{ font-size: 80px;}

@media screen and (max-width: 768px) {
    .carousel-panel .owl-nav button.owl-prev{  left: 0px;}
    .carousel-panel .owl-nav button.owl-next{ right: 0px;}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact{
    padding: 80px 0;
}
#contact .warp{ width: 60%; margin: 0 auto;}

#contact .section-header h2{
    color: #FDFDE5;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

#contact #btnContact{
    border-radius: 0;
    background: #2C4A60;
    border: none;
    padding: 10px 60px;
    color: #FDFDE5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

#contact-us{
    padding: 80px 0;
}
#contact-us a{
    color: #FDFDE5;
}

#contact-us .section-header h2{
    color: #FDFDE5;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
#contact-us .contact_text{
    margin-right: 80px;
}

#contact-us .contact_text h2{
    margin-top: 80px;
    margin-bottom: 30px;
    color: #FDFDE5;
    font-size: 34px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
}

#contact-us #btnContact{
    border-radius: 0;
    background: #2C4A60;
    border: none;
    padding: 10px 60px;
    color: #FDFDE5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

#contact  #frmContact input, #contact  #frmContact select, #contact  #frmContact textarea, #contact-us  #frmContact input, #contact-us  #frmContact select, #contact-us  #frmContact textarea{
    background: none;
    color: #FDFDE5;
}

@media screen and (max-width: 768px) {
    #contact{ padding-top: 10px; height: auto;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center top;
    }
    #contact .section-header h2{
        font-size: 28px;
        line-height: 42px;
    }
    #contact .warp{ width: 96%;}
    #frmContact{ padding-bottom: 20px;}
    #contact .title-page{ margin-top: 20px;}
}
/*--------------------------------------------------------------
# Recruiment Section
--------------------------------------------------------------*/

#recruiment{
    padding: 80px 0;
}
#recruiment .box-recruiment{
    margin-bottom: 60px;
}
#recruiment .box-recruiment h2{
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}
#recruiment .box-recruiment .quantity{
    font-size: 24px;
    font-weight: 700;
}
#recruiment .box-recruiment .content{ margin-top: 20px;}
#recruiment .box-recruiment .content ul{
    list-style: disc;
}

#recruiment .box-recruiment .download-btn{
    border-radius: 0;
    background: #2C4A60;
    border: none;
    padding: 10px 60px;
    color: #FDFDE5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

#news{
    padding: 60px 0;
}
.news .item_news{ margin-bottom: 20px;}

.news .img img{border-radius: 8px 8px 0px 0px;
}
.news .date{ margin-top: 12px;}
.news .title{ margin-top: 12px;}
.news .title a{
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.news .desc{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

#panel-news-main .item_news .more a{

}

.pnhome_pro{ background: #fff; padding: 5px 15px; margin-bottom: 15px; }
.pnhome_pro .title{
    text-align: center;
    margin-bottom: 22px;
}
.pnhome_pro .title a{
    color: #B48B24;
    font-family: 'Lora', serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#pncatehome{
    background: #fff;
    padding: 50px 20px;
}
.cate_home{
    margin-bottom: 15px;
}
.cate_home .home_list_pro{
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
}
.row_home_pro{
    margin: 0 -8px;
}
.row_home_pro:after{
    clear:both;
    content:'';
    display:block;
}
.row_home_pro .home_pro{
    display: inline-block;
    width: 25%;
}
.home_pro .in{
    margin:10px 8px;
    min-height:258px;
    overflow: hidden;
    text-align:center;
}
.home_pro .in h2{
    margin:0;
    font-size:16px;
    overflow: hidden;
    line-height: 22px;
}
.home_pro .in h2 a{
    color: #000;
}
.home_pro .img{
    height:160px;
    position: relative;
    text-align: center;
    position: relative;
}
.home_pro .img img{
    max-width:100%;
    max-height:160px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.home_pro .in .price{
    margin:12px 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff5c00;
}
.home_pro .in .price a{
    background:#29455b;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    display: inline-block;
    padding: 10px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-transform: uppercase;
}

.home_pro .in .info_pro{
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .row_home_pro .home_pro{
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Products Page
--------------------------------------------------------------*/

#categories{
    background: #F5F0D5;
}

#line-cate{

}

#line-cate a{
    display: block;
    padding: 12px 0;
    color: #2F2F2F;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
#line-cate a.active:after, #line-cate a:hover:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 80%;
    background: #CB5432;
}

#panel-products{}
#panel-products .description{
    color: #2F2F2F;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px; /* 166.667% */
}

/*--------------------------------------------------------------
# Shop Page
--------------------------------------------------------------*/
#panel-products .title{
    color: #CE503E;
    text-align: center;
    font-family: "Playfair Display SC", serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 80px;
    text-transform: uppercase;
}
#panel-products .pro-list .pro-item:hover{
    background: none;
}
#panel-products .pro-list .pro-item .info h4 a{
    color: #210000;
    font-size: 24px;
    font-weight: 600;
    line-height: 31px; /* 129.167% */
}
#panel-products .pro-list .pro-item .price{
    color: #2C4A60;
    text-align: right;
    font-family: "Playfair", serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}

#spacing-exp{
    background: #2f2f2f;
    color:#FDFDE5 ;
    padding: 80px 0;
}
#spacing-exp h2.title{
    font-family: "Playfair Display SC", serif;
    font-size: 50px;
    font-weight: 900;
    line-height: 74px; /* 123.333% */
    text-transform: uppercase;
}

#spacing-exp .section-header h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 31px; /* 77.5% */
}

#location{
    background: #2f2f2f;
    color:#FDFDE5 ;
}
    /*--------------------------------------------------------------
    # Products Detail Page
    --------------------------------------------------------------*/

#panel-products-details{}
#panel-products-details .tilte_producst{
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#panel-products-details .price{
    font-size: 28px;
    font-weight: 500;
    color: #29455b;
}

#panel-products-details .price{ font-weight: bold;}
#panel-products-details .price .sale-price{
    margin-left: 30px;
    color: #707070;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through ;
    flex-shrink: 0;
}

#panel-products-details .item-color{ border-radius: 50%; height: 50px; width: 50px; margin: 0 8px;}

#panel-products-details .desc ul{ list-style: unset;}

#hotline a{ font-size: 18px; font-size: 600; }

.title_cate_home{ font-size: 20px; color:#02305c; font-weight: bold; text-transform: uppercase; }

#panel_search {
    position: absolute;
    width: 100%;
    padding: 16px 5px;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    left: 0;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    background: #fff;
}
#panel_search.showpn {
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

#panel_search .close {
    cursor: pointer;
    font-size: 30px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border: none;
    color: #333;
    right: 0px;
}
#panel_search .close::before {
    content: "+";
    font-size: 70px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: block;
    position: relative;
    left: 1px;
}

#pnsearch{ position: relative; margin-left: 120px;}
#pnsearch span {
    border: 1px solid #848c92;
    cursor: pointer;
    font-size: 30px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#pmlistsearch{position: absolute; top: 38px; left: 0; z-index: 9999;}
#pmlistsearch .in{ border: 1px solid #eee; padding: 10px;  background: #fff;}
#pmlistsearch .in .item_sct{ padding: 3px 0;}
#ftmsearch .form-control{ border: 1px solid #032c43;}

#panel_search select{ padding-top: 11px; padding-bottom: 11px;}

.title_home{ color: #02305c; text-transform: uppercase;}

#footer {
    background: #2C4A60;
    position: relative;
    color: #FDFDE5;
    padding-top: 80px;
    padding-bottom: 60px;
}
#footer a{
    color: #FDFDE5;
}
#footer #footer_text{
    padding: 50px 0;
}

#footer #footer_text h3{
    color: #FDFDE5;
    text-align: left;
    font-size: 24px;
    font-weight: 900;
    line-height: 49px; /* 204.167% */
    text-transform: uppercase;
}

#footer #footer_text h4{
    font-size: 22px;
    font-weight: 600;
    line-height: 36px; /* 150% */
    text-transform: uppercase;
}

#footer #bcate{
    padding: 0;
    margin: 0 auto;
    margin-top: 30px;
    width: 100%;
}

#footer #bcate li{
    display: inline-block;
    margin-top: 32px;
}
#footer #bcate li:nth-child(odd){
    width: 60%;
}
#footer #bcate li:nth-child(even){
    width: 36%;
}

#footer #bcate li a{
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

#footer #footer_text #bottom_intro {
  text-align: center;
}

#footer #footer_text #bottom_intro .title{
    font-size: 20px;
    font-weight: 500;
    margin: 8px 0;
}

#footer .location-list{
    margin: 0;
    padding: 0;
}
#footer .location-list li{
    margin-bottom: 10px;
}

#footer #footer_text #bottom_intro .location-list a:hover{
    color: #fff;
}

#footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 25px;
    margin: 20px;
    background: #233D30;
    color: #EBEDEA;
    transition: 0.3s;
    margin-bottom: 0;
}
#footer .social-links a i{
    color: #EBEDEA;
}
#footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

#footer #copyright{
    text-align: left;
    padding: 10px 0;
    color: #75A7CC;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: 29px; /* 145% */
    letter-spacing: -0.1px;
}

#footer #frmnewsletter input{
    background: none;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid #FFF4D5;
    margin-right: 20px;
}
#footer #frmnewsletter button{
    background: none;
    border-radius: 100px;
    padding: 10px 30px;
    border: 2px solid #FFF4D5;
    color: #FDFDE5;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    #footer .blogo{
        text-align: center;
    }
    #footer #footer_text h3{
        font-size: 18px;
    }

    #footer #footer_text{ padding-top: 15px; padding-bottom: 5px;}
    #footer #footer_text #bottom_intro h3{ font-size: 16px;}

    #footer #bcate li:nth-child(even){
        text-align: right;
    }
    #footer #bcate li a{

    }

}

.pagination > li > a{ background: #29455b; color: #fff;}
.pagination .page-item.active .page-link{ background: #0056AA; color: #fff; border: 1px solid #29455b;}
.pagination .page-item .page-link:hover{color: #0056AA;}

#canvasCart{}
#canvasCart .offcanvas-footer{ border-top: 1px solid #ccc;}
#canvasCart .offcanvas-footer #shipping { color: #707070; font-weight: 400;}
#canvasCart #clean-cart{ cursor: pointer;}
#canvasCart .trash-item-cart{ cursor: pointer;}
#canvasCart .list-cart{
    background: #F8F8F8;
    padding: 10px 0;
}
#canvasCart .list-cart h3{
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

#canvasCart .list-cart .price {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

#canvasCart .list-cart .price .price-sales{
    margin-left: 20px;
    color: #707070;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through ;
    flex-shrink: 0;
}

:root {
    --swiper-navigation-size: 44;

}

.swiper-button-next-01, .swiper-button-prev-01 {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #474747;
    border-radius: 50%;
    border: 1px solid #474747;
    background: #fff;
    width: 60px;
    height: 60px;
}

.swiper-button-next-01, .swiper-button-prev-01 i{
    font-size: 20px;
}

.swiper-button-next-01 {
    right: 10px;
    left: auto;
}

.swiper-button-prev-01{
    left: 10px;
    right: auto;
}
.img-post{ height: 220px; overflow: hidden; position: relative;}
.img-post img{object-fit: cover; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; }

.fa-star{ color: #fcd53f;}

.slides-3 .swiper-pagination{
    margin-top: 20px;
    position: relative;
}

.list-group-item.active{ border: none; background: none; color: #f8961f; }

#product-right{}
#product-right .list-group-item > a{ text-transform: uppercase; font-weight: bold;}
#product-right .list-group-item  ul{ margin-top: 15px;}
#product-right .list-group-item  ul li a{ display: block; margin-bottom: 5px;}
#product-right .list-group-item  ul li a:hover, #product-right .list-group-item  ul li a.active{ font-weight: bold; color: #f8961f; }

.fixed-bottom a{
    width: 50%;
    text-align: center;
    background: linear-gradient(270deg, #B8B8B8 -7.73%, #E8E8E8 49.84%, #C5C5C5 109.67%);
    padding: 8px 0;
    color: #233D30;
    text-transform: uppercase;
}
.fixed-bottom a:first-child{
}