@charset "utf-8";
html {
  scroll-behavior: smooth;
}
::-moz-selection {
    background: #007293;
    color: #fff;
}

::selection {
    background: #007293;
    color: #fff;
}
html {
  scroll-behavior: smooth;
}
/* header */
.header {
    /* position: fixed; oanh locked 31Jul2025 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

/* new Design */
.header .headTop {
    display: flex;
    /* height: 65px; oanh change 31Jul2025*/
    height: 100px;
    padding: 0 5%;
    justify-content: space-between;
    align-items: center;
}

.header .headTop h1 {
    /* width: 223px;
    height: 56px; */
    justify-content: center;
}

.header .headTop h1 .logo {
    display: block;
    width: 223px;
    height: 56px;
    background: url(../img/logo-biovesta.png) no-repeat;
    margin: 0 auto;
}

.header .headTop .hdMenu {
    /* display: flex;
    justify-content: flex-end;
    width: calc(100% - 180px); */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    width: calc(100%);
}

.header .headTop .hdMenu .gnb ul {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100px;
}

.header .headTop .hdMenu .gnb ul li {
    height: 100%;
    position: relative;
    padding: 0 20px;
}

.header .headTop .hdMenu .gnb ul li a {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    display: flex;
    height: 100%;
    align-items: center;
    line-height: 1.1;
}

.header .headTop .hdMenu .gnb ul li a:hover {
    color: #007293;
}

.header .headTop .hdMenu .gnb ul li ul {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: 100px;
    background: #fff;
    justify-content: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transition: all 0.3s;
}

.header .headTop .hdMenu .gnb ul li:hover ul {
    display: flex;
    top: 160px;
    opacity: 1;
}

.header .headTop .hdMenu .userMenu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
    text-align: end;
    justify-content: end;
}

.header .headTop .hdMenu .userMenu a {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.header .headTop .slide-menu-open {
    display: none;
}

.header .headTop .slide-menu-open span {
    display: block;
    width: 33px;
    height: 2px;
    margin-bottom: 8px;
    position: relative;
    background: #000000;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.header .headTop .slide-menu-open span:first-child {
    transform-origin: 0% 0%;
}

.header .headTop .slide-menu-open span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.header.fix {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.main.fix {
    padding-top: 60px;
}

.header.fix h1 .logo {
    background: url(../img/logo-biovesta.png) no-repeat;
}

.header.fix .headTop .hdMenu .gnb ul li a {
    color: #000;
}

.header .headTop .hdMenu .gnb ul li a:hover {
    color: #007293;
}

.header.fix .userMenu a {
    color: rgb(0, 0, 1) !important;
}

.header.fix .slide-menu-open span {
    background: #000;
}

/* main visual */
.mainVisual {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.mainVisual iframe {
    position: absolute;
    top: -60px;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
}

.mainVisual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mainTit {
    color: #000;
    font-size: 50px;
    line-height: 70px;
    font-weight: 600;
    margin-bottom: 40px;
}

.mainTit p {
    color: #007293;
    font-weight: 200;
    font-size: 20px;
}

/* main product */
.mainContWrap .mainProd {
    width: 100%;
    height: 100vh;
    max-height: 920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.mainProd {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mainProd .mainProdSlide {
    width: 1400px;
    margin: 0 auto;
}

.mainProd .mainProdSlide a {
    display: block;
    width: 320px;
    background: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mainProd .mainProdSlide a .imgWrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.mainProd .mainProdSlide a .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.mainProd .mainProdSlide a .imgWrap .on {
    display: none;
    opacity: 0;
}

.mainProd .mainProdSlide a:hover .off {
    display: none;
    opacity: 0;
}

.mainProd .mainProdSlide a:hover .on {
    display: block;
    opacity: 1;
}

.mainProd .mainProdSlide a dl {
    width: 100%;
    height: 100px;
    text-align: center;
    left: 0;
    color: #000;
    background: #fafafa;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.mainProd .mainProdSlide a dl dt {
    z-index: 1;
    color: #ccc;
    font-size: 18px;
    font-weight: 500;
}

.mainProd .mainProdSlide a dl dd {
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
}

/* mainBrand */
.mainBrand {
    background: #f5f5f5;
    position: relative;
    padding: 150px 0;
    height: 1150px;
}

.mainBrand .mainBrandSlide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mainBrand h2.mainTit {
    z-index: 90;
    position: relative;
    mix-blend-mode: difference;
    color: #fff;
}

.mainBrand h2.mainTit i {
    display: block;
}

.mainBrandSlide .swiper-container {
    height: 100%; /* hoặc giá trị cố định */
    overflow: hidden;
}

.mainBrand .swiper-pagination {
    left: 50%;
    bottom: 150px;
    margin-left: -750px;
    display: flex;
    flex-direction: column;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet {
    width: 50%;
    height: 150px;
    background: none;
    position: relative;
    text-align: left;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet span {
    width: 100px;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 150px);
}

.mainBrand .swiper-pagination .swiper-pagination-bullet h2 {
    font-size: 32px;
    font-weight: 700;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet p {
    font-size: 18px;
    margin-top: 10px;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet a {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    z-index: 999;
    opacity: 0;
}

.mainBrand .swiper-pagination .swiper-pagination-bullet a svg {
    width: 50px;
    height: 50px;
    margin-right: -10px;
}

.mainBrand .swiper-pagination .page01.swiper-pagination-bullet-active {
    color: #ffc000;
}

.mainBrand .swiper-pagination .page01.swiper-pagination-bullet-active::after {
    content: "";
    background: #231f16;
    width: calc(100% + 200px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    z-index: -1;
}

.mainBrand .swiper-pagination .page01.swiper-pagination-bullet-active a {
    opacity: 1;
}

.mainBrand .swiper-pagination .page01.swiper-pagination-bullet-active span img {
    filter: invert(1) brightness(2);
}

.mainBrand .swiper-pagination .page02.swiper-pagination-bullet-active {
    color: #ffff66;
}

.mainBrand .swiper-pagination .page02.swiper-pagination-bullet-active::after {
    content: "";
    background: #275317;
    width: calc(100% + 200px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    z-index: -1;
}

.mainBrand .swiper-pagination .page02.swiper-pagination-bullet-active a {
    opacity: 1;
}

.mainBrand .swiper-pagination .page02.swiper-pagination-bullet-active span img {
    filter: invert(1) brightness(2);
}

.mainBrand .swiper-pagination .page03.swiper-pagination-bullet-active {
    color: #fff;
}

.mainBrand .swiper-pagination .page03.swiper-pagination-bullet-active::after {
    content: "";
    background: #002060;
    width: calc(100% + 200px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    z-index: -1;
}

.mainBrand .swiper-pagination .page03.swiper-pagination-bullet-active a {
    opacity: 1;
}

.mainBrand .swiper-pagination .page03.swiper-pagination-bullet-active span img {
    filter: invert(1) brightness(2);
}

.mainBrand .swiper-pagination .page04.swiper-pagination-bullet-active {
    color: #002060;
}

.mainBrand .swiper-pagination .page04.swiper-pagination-bullet-active::after {
    content: "";
    background: #ededed;
    width: calc(100% + 200px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    z-index: -1;
}

.mainBrand .swiper-pagination .page04.swiper-pagination-bullet-active a {
    opacity: 1;
}

.mainBrand .swiper-slide {
    height: 1150px;
}
.mainBrand .swiper-slide img{
    display: none;
}

.mainBrand .mainBrand01::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: url(../img/mainBrand01.jpg) no-repeat 50%;
    background-size: cover;
}

.mainBrand .mainBrand02::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: url(../img/mainBrand02.jpg) no-repeat 50%;
    background-size: cover;
}

.mainBrand .mainBrand03::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: url(../img/mainBrand03.jpg) no-repeat 50%;
    background-size: cover;
}

.mainBrand .mainBrand04::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: url(../img/mainBrand04.jpg) no-repeat 50%;
    background-size: cover;
}

/* mainMidMovie */
.mainMidMovie {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.mainMidMovie iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 0px);
    border: none;
}

.mainMidMovie::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}

.mainMidMovie dl {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.mainMidMovie dl dt {
    font-weight: 800;
    font-size: 50px;
    line-height: 80px;
    text-align: center;
    color: #fff;
}

.mainMidMovie dl dd {
    font-size: 24px;
    color: #fff;
    margin-top: 30px;
}

/* mainSystem */
.mainSystem {
    width: 100%;
    height: 100vh;
    max-height: 920px;
    color: #000;
    text-align: center;
}

.mainSystem .contain {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainSystem .mainSysTop p {
    font-size: 20px;
    margin-bottom: 5px;
}

.mainSystem .mainSysTop h2 {
    font-size: 48px;
    font-weight: 700;
}

.mainSystem .mainSysTop h3 {
    margin-top: 40px;
    font-size: 32px;
    font-weight: 500;
}

.mainSystem .mainSysTop h3 span {
    color: #fff;
    background: #007293;
    padding: 5px;
}

.mainSystem ul {
    display: flex;
    margin: 100px 0 60px;
    width: 100%;
}

.mainSystem ul li {
    width: 20%;
    border-right: 1px solid #e5e5e5;
    padding: 20px 0;
}

.mainSystem ul li:last-child {
    border-right: 0;
}

.mainSystem ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    margin: 0 auto 15px;
}

.mainSystem ul li p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}

.mainSystem ul li p i {
    display: block;
}

.mainSystem .mainSysBtm h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.mainSystem .mainSysBtm h3 {
    font-size: 50px;
    font-weight: 700;
}

.mainSystem .mainSysBtm h3 span {
    background: -webkit-linear-gradient(45deg, #ffe5a8, #d8ad55 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* mainSeven */
.mainSeven {
    background: url(../img/mainSeven.jpg) no-repeat 50% 50%;
    height: 100vh;
    max-height: 920px;
}

.mainSeven .contain {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainSeven h2.mainTit {
    color: #fff;
    text-align: center;
}

.mainSeven h2.mainTit i {
    display: block;
}
.big-title-page {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.mainSeven ul {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 300px;
}

.mainSeven ul li {
    width: calc((100% - 300px) / 6);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 50px 20px;
    height: 210px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainSeven ul li:nth-child(even) {
    background: rgba(255, 255, 255, 0.15);
}

.mainSeven ul li h2 {
    font-weight: 700;
    font-size: 24px;
    margin: 25px 0 10px;
}

.mainSeven ul li p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
    opacity: 0;
    display: none;
    margin-bottom: -80px;
}

.mainSeven ul li p i {
    display: block;
}

.mainSeven ul li.on {
    width: 300px;
    height: 300px;
}

.mainSeven ul li.on p {
    display: block;
    opacity: 1;
    margin-bottom: 0;
    transition: all 3s;
}

.mainSeven a {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    width: 230px;
    height: 50px;
    color: #fff;
    border: 1px solid #fff;
}

/* mainTen */
.mainTen {
    background: #fbfaf9 url(../img/mainTen.jpg) no-repeat 50% bottom;
    height: 100vh;
    max-height: 920px;
}

.mainTen .contain {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    align-content: space-between;
    padding: 100px 0;
}

.mainTen h2.mainTit {
    width: 50%;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.mainTen h2.mainTit span {
    color: #007293;
    background: -webkit-linear-gradient(45deg, #ffe5a8, #d8ad55 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mainTen h2.mainTit i {
    display: block;
}

.mainTen dl {
    width: 25%;
    padding-left: 50px;
    padding-right: 30px;
    border-right: 1px solid rgba(200, 175, 129, 0.5);
    max-height: 200px;
}

.mainTen dl:nth-child(3),
.mainTen dl:nth-child(7),
.mainTen dl:nth-child(11) {
    border-right: 0;
}

.mainTen dl dt {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 6px;
    background: #007293;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.mainTen dl dd h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 34px;
}

.mainTen dl dd h2 i {
    display: block;
}

.mainTen dl dd p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 26px;
}

.mainTen dl dd p i {
    display: block;
}

/* mainDirector */
.mainDirector {
    height: 100vh;
    max-height: 920px;
    background: url(../img/mainDirector.jpg) no-repeat center bottom;
}

.mainDirector .contain {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mainDirector h2.mainTit {
    text-align: center;
    height: 50%;
    padding-top: 80px;
    box-sizing: border-box;
}

.mainDirector h2.mainTit i {
    display: block;
}

.mainDirector ul {
    display: flex;
    gap: 30px;
    height: 50%;
}

.mainDirector ul li {
    width: calc(33.33% - 20px);
}

.mainDirector ul li iframe {
    width: 100%;
    height: 260px;
}

/* mainStore */
.mainStore {
    background: #f9f7f2;
    height: 100vh;
    max-height: 920px;
}

.mainStore .contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mainStore h2.mainTit {
    text-align: center;
}

.mainStore .mainStoreCont {
    width: 100%;
    height: 400px;
    background: #fff;
}

/* mainSeminar */
.mainSeminar {
    height: 100vh;
    max-height: 920px;
    background: url(../img/mainSeminar.jpg) no-repeat 50% 50%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainSeminar h2.mainTit {
    text-align: center;
    color: #fff;
}

.mainSeminar h2.mainTit i {
    display: block;
}

.mainSeminar h2.mainTit p {
    color: #007293;
    font-weight: 200;
    font-size: 20px;
}

.mainSeminar p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-align: center;
}

.mainSeminar p i {
    display: block;
}

.mainSeminar .btns {
    display: flex;
    margin-top: 150px;
    gap: 10px;
}

.mainSeminar .btns a {
    display: flex;
    align-items: center;
    color: #fff;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 0 20px;
}

.footer {
    background: #000;
    padding: 60px 0 50px;
}

.footer .ftCont {
    display: flex;
    width: 100%;
    padding: 0 100px;
}

.footer h1 {
    width: 180px;
}

.footer .btmInfo {
    padding-left: 190px;
    width: calc(100% - 360px);
    box-sizing: border-box;
}

.footer .btmInfo .btmMenu a {
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    margin-right: 40px;
    display: inline-block;
}

.footer .btmInfo .compInfo {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer .btmInfo .compInfo p {
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
}

.footer .btmInfo .compInfo span {
    position: relative;
    width: 180px;
    padding-right: 10px;
    display: inline-block;
    flex: none;
}

.footer .btmInfo .compInfo span::after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
}

.footer .btmInfo .btmCopy {
    color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.footer .snsWrap {
    display: flex;
    justify-content: flex-end;
    width: 180px;
    margin-bottom: 30px;
}

.footer .snsWrap a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
}

.footer .snsWrap a svg {
    width: 18px;
}

.footer .snsWrap a:first-child {
    margin-left: 0;
}

.mobi-left-slide {
    display: none;
}





@media all and (max-width: 767px) {
    /*.header .headTop {
        padding: 0 15px;
    }*/

    .header .headTop h1 {
        height: 30px;
    }

    .header .headTop h1 .logo {
        background-size: contain;
    }

    .header .headTop .slide-menu-open {
        padding-top: 7px;
    }

    .mainTit {
        font-size: 26px;
        line-height: 35px;
    }

    .mainTit p {
        font-size: 14px;
        font-weight: 300;
    }

    .mainVisual iframe {
        width: 120%;
        left: 50%;
        margin-left: -60%;
    }

    .mainContWrap .mainProd {
        height: auto;
        padding: 50px 0;
    }

    .mainProd .mainProdSlide {
        margin: 0;
        padding: 0 15px;
    }

    .mainProd .mainProdSlide a dl {
        padding: 15px 10px;
    }

    .mainProd .mainProdSlide a dl dt {
        font-size: 14px;
    }

    .mainProd .mainProdSlide a dl dd {
        font-size: 14px;
    }

    .mainBrand {
        padding: 50px 0;
        height: auto;
        width: 100%;
        overflow-x: hidden;
    }

    .mainBrand h2.mainTit i {
        display: inline;
    }

    .mainBrand .mainBrandSlide {
        position: unset;
        padding: 0 15px;
        height: unset;
    }

    .mainBrand .swiper-slide,
    .mainBrand .swiper-container {
        height: fit-content;
    }

    .mainBrand .swiper-slide::after {
        width: 100%;
        left: 0;
    }

    .mainBrand .swiper-pagination {
        position: unset;
    }

    .mainBrand .swiper-pagination.contain {
        padding: 0;
        margin-top: 15px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet {
        width: 100%;
        height: auto;
        padding: 15px;
        margin: 0;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet span {
        width: 80px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet span img {
        width: 50px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet div {
        width: calc(100% - 120px);
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet h2 {
        font-size: 20px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet p {
        font-size: 14px;
        line-height: 1.3;
        margin-top: 5px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet a {
        width: 40px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet a svg {
        width: 40px;
        height: 40px;
    }

    .mainBrand .swiper-pagination .swiper-pagination-bullet-active::after {
        width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
    }
    .mainBrand .swiper-slide::after{
        display: none;
    }
    .mainBrand .swiper-slide img{
        display: block;
        width: 100%;
    }

    .mainMidMovie {
        min-height: 350px;
    }

    .mainMidMovie iframe {
        width: 200%;
        left: 50%;
        margin-left: -100%;
    }

    .mainMidMovie dl dt {
        font-size: 26px;
        line-height: 33px;
    }

    .mainMidMovie dl dd {
        font-size: 16px;
    }

    .mainSystem {
        height: auto;
        padding: 30px 0;
        background-size: auto 100%;
        background-attachment: unset;
    }

    .mainSystem .contain {
        height: auto;
    }

    .mainSystem .mainSysTop p {
        font-size: 16px;
    }

    .mainSystem .mainSysTop h2 {
        font-size: 26px;
    }

    .mainSystem .mainSysTop h3 {
        margin-top: 20px;
        font-size: 22px;
    }

    .mainSystem .mainSysTop h3 span {
        display: inline-block;
        margin-top: 5px;
    }

    .mainSystem ul {
        margin: 30px 0 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mainSystem ul li {
        width: 33.33%;
        padding: 0 5px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    .mainSystem ul li:nth-child(3) {
        border-right: 0;
    }

    .mainSystem ul li span {
        width: 25px;
        height: 25px;
        font-size: 13px;
    }

    .mainSystem ul li p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -1px;
    }

    .mainSystem .mainSysBtm h2 {
        font-size: 22px;
    }

    .mainSystem .mainSysBtm h3 {
        font-size: 26px;
    }

    .mainSystem .mainSysBtm h3 span {
        display: block;
        margin-top: 5px;
    }

    .mainSeven {
        height: auto;
        max-height: unset;
        padding: 30px 0;
        background-size: cover;
    }

    .mainSeven .contain {
        height: auto;
    }

    .mainSeven ul {
        flex-wrap: wrap;
        align-items: stretch;
        height: initial;
    }

    .mainSeven ul li {
        width: 50%;
        height: initial;
        padding: 20px 7px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        justify-content: flex-start;
    }

    .mainSeven ul li h2 {
        font-size: 16px;
        margin: 15px 0 10px;
    }

    .mainSeven ul li p {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 0 !important;
        font-size: 13px;
    }

    .mainSeven ul li.on {
        width: 50% !important;
        height: initial !important;
    }

    .mainSeven ul li:last-child {
        border-bottom: 0;
    }

    .mainSeven ul li:nth-child(even) {
        border-right: 0;
    }

    .mainSeven a {
        margin-top: 30px;
        height: 44px;
        font-size: 14px;
    }

    .mainTen {
        height: auto;
        max-height: unset;
        padding: 30px 15px;
        background: #fbfaf9 url(../img/mainTen.jpg) no-repeat 90% bottom;
        background-size: 400%;
    }

    .mainTen .contain {
        padding: 0;
        height: auto;
    }

    .mainTen h2.mainTit {
        width: 100%;
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 20px;
    }

    .mainTen dl {
        width: 50%;
        border-right: 1px solid rgba(200, 175, 129, 0.5) !important;
        border-bottom: 1px solid rgba(200, 175, 129, 0.5);
        max-height: initial;
        padding: 15px 15px 15px 0;
    }

    .mainTen dl dt {
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 5px;
    }

    .mainTen dl dd h2 {
        font-size: 16px;
        line-height: 21px;
    }

    .mainTen dl dd p {
        font-size: 14px;
        line-height: 19px;
    }

    .mainTen dl:nth-child(odd) {
        border-right: 0 !important;
        padding-left: 15px;
    }

    .mainTen dl:nth-child(10),
    .mainTen dl:nth-child(11) {
        border-bottom: 0;
    }

    .mainDirector {
        height: auto;
        max-height: unset;
        padding: 30px 0;
        background-size: auto 710px;
        background-position: 50% 100%;
    }

    .mainDirector .contain {
        height: auto;
    }

    .mainDirector h2.mainTit {
        padding-top: 0;
    }

    .mainDirector ul {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .mainDirector ul li {
        width: 100%;
    }

    .mainDirector ul li iframe {
        height: 200px;
    }

    .mainStore {
        height: auto;
        padding: 30px 0;
    }

    .mainStore .contain {
        height: auto;
    }

    .mainSeminar {
        height: auto;
        padding: 30px 0;
    }

    .mainSeminar h2.mainTit p {
        font-size: 14px;
        font-weight: 300;
    }

    .mainSeminar p {
        font-size: 16px;
        padding: 0 10px;
        line-height: 26px;
    }

    .mainSeminar .btns {
        margin-top: 30px;
        flex-direction: column;
    }

    .mainSeminar .btns a {
        justify-content: center;
        height: 45px;
        font-size: 13px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer .ftCont {
        flex-direction: column;
        padding: 0;
    }

    .footer h1 {
        height: 30px;
    }

    .footer h1 img {
        height: 100%;
    }

    .footer .btmInfo {
        width: 100%;
        padding: 0 !important;
        margin-top: 20px;
    }

    .footer .btmInfo .btmMenu a {
        font-size: 14px;
        margin-right: 20px;
    }

    .footer .btmInfo .compInfo {
        margin-top: 10px;
    }

    .footer .btmInfo .compInfo p {
        line-height: 1.3;
        margin: 5px 0;
        font-size: 13px;
    }

    .footer .btmInfo .compInfo p span {
        width: 40%;
    }

    .footer .btmInfo .btmCopy {
        font-size: 12px;
        margin-top: 10px;
    }

    .footer .snsWrap {
        width: 100%;
    }

    .footer .snsWrap {
        margin: 20px 0 0;
        justify-content: flex-start;
    }

    .footer .snsWrap a {
        width: 32px;
        height: 32px;
        margin-left: 10px;
    }

    .footer .snsWrap a svg {
        width: 14px;
    }

    .mobi-left-slide {
        padding: 0 15px;
    }

    .mobi-left-slide .slideTop {
        margin-bottom: 0;
    }

    .mobi-left-slide .slideMenu>ul>li {
        /* margin-bottom: 20px; */
    }

    .mobi-left-slide .slideMenu>ul>li a {
        font-size: 18px;
    }

    .mobi-left-slide .slideMenu>ul>li>ul a {
        font-size: 14px;
        margin-top: 5px;
    }

    .mobi-left-slide .slideTop .close {
        margin-right: -10px;
    }
}

/* end new Design */



.headerWrap .gnb li {
    margin: 0 35px;
}

.headerWrap .gnb a {
    color: #0C449B;
    font-size: 12px;
}

.headerWrap .topAccount {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.headerWrap .topAccount li {
    margin-left: 10px;
}

.headerWrap .topAccount li:not(:last-child) {
    height: 40px;
    width: 40px;
}


.headerWrap .topAccount li:first-child {
    margin-left: 0;
}

.headerWrap .topAccount a {
    font-size: 14px;
    color: #333;
}

.headerWrap .topAccount .topLang {
    position: relative;
    display: none;
}

.headerWrap .topAccount .topLang>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 0px 15px;
    line-height: 21px;
    border-radius: 12.5px;
    width: 90px;
    padding: 0 10px;
    background: #fff;
}

.headerWrap .topAccount .topLang>a svg {
    width: 16px;
    height: 16px;
}

.headerWrap .topAccount .topLangList {
    display: none;
    position: absolute;
    /* border: 2px solid #333; */
    border-bottom-left-radius: 12.5px;
    width: 90px;
    border-bottom-right-radius: 12.5px;
    border-top: 0;
    padding: 16px 10px 10px;
    top: 16px;
    background: #fff;
    z-index: -1;
}

.headerWrap .topAccount li:not(:nth-last-child()) {
    width: 40px;
    height: 40px;
}

.headerWrap .topAccount .topLangList a {
    display: block;
    line-height: 2.6;
    margin: 0px 0px 0px 15px;
}

.hdTopBanner {
    background: #cacaca;
}

.hdTopBanner a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    font-size: 14px;
    gap: 10px;
}

.hdTopBanner a p:first-child {
    color: #fff;
}

.hdTopBanner a p:last-child {
    color: #6a6a6a;
}

.top-right-menu {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    height: 40px;
}

.mobiTggBtn,
.mobiTggMenu {
    display: none;
}

.main-header .fix {
    top: 0;
    left: 0;
    position: fixed;
}

.header.fix {
    position: fixed;
    top: 0;
    /*box-shadow: 0 3px 7px 3px #00000012;*/
    max-width: 100%;
    padding: 0;
    transition: all ease-in-out .3s;
}

.header.fix .headerWrap {
    /* height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease; */
}

/* main visual */
.mainVisual {
    position: relative;
    overflow: hidden;
}

.mainVisual .swiper-button-next,
.mainVisual .swiper-button-prev {
    color: #007293;
}

.mainVisual .swiper-button-next:after,
.mainVisual .swiper-button-prev:after {
    font-size: 28px;
    font-weight: 600;
}

.main-menu ul li {
    max-width: 200px;
    height: 100%;
    margin: 0px 25px;
    vertical-align: middle;
    align-items: center;
    color: #3E3A39;
    display: flex;
}

.main-menu ul li:hover {
    color: #007293;
}

.main-menu ul li.active {
    color: #007293;
}

.main-menu {
    /* border-top: 1px solid #F5F5F5; */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.main-menu.text-center.d-flex {
    border-bottom: 1px solid #F5F5F5;
    background: #fcfcfc;
    position: relative;
    box-shadow: -2px 2px 2px rgba(45, 53, 78, 0.1), -2px -2px 2px rgba(238, 242, 255, 0.1), 2px 2px 2px rgba(45, 53, 78, 0.1);
}

.gnbClone {
    display: none;
}

.mainVisual .swiper-wrapper {
    /* height: 800px; */
    height: auto;
}

.tit-w3h1 {
    display: none;
}

.mainVisual .mainVisTxt {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ul-main-menu {
    display: inline-flex;
    height: 50px;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto;
}

.mainVisual .mainVisTxt h2 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.mainVisual .mainVisTxt p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 36px;
    margin: 50px 0;
}

.mainVisual .mainVisTxt a {
    display: inline-block;
    width: 245px;
    line-height: 55px;
    background: #fff;
    border-radius: 27.5px;
    color: #D5A286;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
}

.mainVisual .swiper-slide img {
    /* width: inherit; */
    width: 100%;
}

.mainVisual .swiper-pagination {
    position: absolute;
    margin-bottom: 80px;
}

.mainVisual .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    margin: 2px;
    background-color: transparent;
    border: 1px solid transparent;
    opacity: 1;
}

.mainVisual .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 10px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: #3E3A39;
}

/* .mainVisual .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    margin: 5px;
    background-color: #aeaeae;
    opacity: 1;
}
.mainVisual .swiper-pagination .swiper-pagination-bullet span{
    width: 6px;
    height: 6px;
    margin: 5px;
    background-color: #aeaeae;
    opacity: 1;
} */

.mainVisual .swiper-pagination .swiper-pagination-bullet-active {
    /* background-color: #000; */
    border: 1px solid #3E3A39;
}

/* .mainVisual .swiper-pagination .swiper-pagination-bullet-active span{
    background-color: #000;
}
.mainVisual .swiper-pagination .swiper-pagination-bullet-active{
    border: 1px solid #000;
} */
.dropdown {
    position: relative;
    display: inline-block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 2px 2px 0px rgba(230, 230, 230, 0.2);
    padding: 35px 16px 25px;
    z-index: 2;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    left: 50%;
    top: 40px;
    margin-left: -80px;
}

.dropdown-content h2 {
    color: #3E3A39;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dropdown-content a {
    display: flex;
    font-size: 12px;
    flex-direction: column;
    color: #3E3A39;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .dropdown-content a:hover {
    color: #007293 !important;
}

.depth2>li {
    display: block;
}

.visMobi {
    display: none;
}

body {
    color: #3E3A39;
}

/* main contents */
.mainWrap {
    width: 100%;
}

.name-whoiam {
    background-color: #FCF6FA;
    position: relative;
}

.how-img-map {
    border-radius: 30px;
    width: 100%;
}

.img-how-circle {
    margin: 70px 5% 100px 5%;
}

.img-how-circle {
    margin: 50px 0 150px;
}

.img-how-circle img {
    margin: 0 auto;
    max-width: 100%;
    width: initial;
}

.contain-3w1h .text-top {
    font-size: 18px;
}

.contain-3w1h .text-top i {
    display: block;
}

.bg-second {
    background-color: #007293 !important;
}

.bg-white {
    color: #ffffff !important;
}

.bg-gray {
    background-color: #F5F5F5 !important;
}

.w-g-10 {
    gap: 20px;
}

.what-btns {
    margin: 160px auto 200px;
}

.what-btn {
    width: 320px;
    height: 56px !important;
    font-weight: 600 !important;
}

.w3h1-col-right {
    padding-left: 20px;
}

.sTit {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #D5A286;
}

.bTit {
    font-size: 32px;
    color: #007293;
    margin: 0px 0 40px;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #007293;
    padding-bottom: 10px;
}

.whatAwrad {
    display: flex;
    gap: 10px;
    margin-bottom: 160px;
}

.whatAwrad>div {
    background: #fff;
    border-radius: 24px;
    flex: 1;
    padding: 50px 0;
}

.whatAwrad h2 {
    margin-bottom: 20px;
}

.whatAwrad .imgWrap {
    height: 240px;
}

.whatAwrad p {
    padding: 0 15px;
    margin-top: 15px;
}

.whatCert {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 120px;
}

.whatCert>div {
    width: calc(25% - 15px);
}

.whyTop {
    margin: 160px auto 140px !important;
    padding-bottom: 140px;
}

.whyTop .row {
    margin-bottom: 100px;
}

.whyTop p {
    font-size: 20px;
    line-height: 35px;
}

.why-philo {
    padding: 160px 0 140px;
    background: #FCF6FA;
}

.why-philo .imgWrap {
    position: relative;
}

.why-philo .imgWrap::after {
    content: "";
    position: absolute;
    bottom: 150px;
    left: 50%;
    width: 200vw;
    height: 1px;
    background: #007293;
    margin-left: -100vw;

}

.why-philo img {
    display: block;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.why-philo .history-700 {
    display: none;
}

.why-philo p {
    text-align: center;
    margin-top: 90px;
    font-size: 20px;
    line-height: 35px;
}

.why-gfcos {
    background: url('../img/why-gfcos-1400.jpg')no-repeat center;
    background-size: cover;
    padding: 240px 0 200px;
    text-align: center;
}

.why-gfcos h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.why-gfcos img {
    width: initial;
}

.why-gfcos p {
    margin-top: 60px;
    font-size: 24px;
    line-height: 42px;
    color: #fff;
}

.why-gfcos p i {
    display: block;
}

.why-gfList {
    padding: 150px 0;

}

.why-gfList dl {
    display: flex;
    position: relative;
    width: 1200px;
    margin: 0 auto 150px;
    justify-content: space-between;
    align-items: center;
}

.why-gfList dl::after {
    content: "";
    display: block;
    width: calc(50% + 900px);
    height: 2px;
    background: #007293;
    position: absolute;
    left: 0;
    bottom: 2px;
    margin-left: -50%;
    z-index: -1;
}

.why-gfList dl:nth-child(even):after {
    left: unset;
    margin-left: 0;
    right: 0;
    margin-right: -50%;
}

.why-gfList dt {
    width: calc(100% - 590px);
}

.why-gfList dd {
    width: 500px;
}

.why-gfList dd img {
    width: 100%;
    z-index: 2;
}

.why-gfList h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.why-gfList p {
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    word-break: keep-all;
    letter-spacing: -1.2px;
}

.why-gfList p i {
    display: block;
}

.why-gfTech {
    padding: 140px 0;
    text-align: center;
}

.gfTech01,
.gfTech03 {
    background: #f5f5f5;
}

.why-gfTech h2 {
    color: #95459A;
    font-size: 26px;
    font-weight: 500;
    width: 266px;
    height: 68px;
    border: 1px solid #95459A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 40px;
}

.why-gfTech h2::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: #f5f5f5;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: -1px;
}

.why-gfTech.gfTech02 h2::before {
    background: #fff;
}

.why-gfTech.gfTech01 h2::after {
    content: "1";
    color: #95459A;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    width: 80px;
    position: absolute;
    top: -28px;
    left: 50%;
    margin-left: -40px;
}

.why-gfTech.gfTech02 h2::after {
    content: "2";
    color: #95459A;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    width: 80px;
    position: absolute;
    top: -28px;
    left: 50%;
    margin-left: -40px;
}

.why-gfTech.gfTech03 h2::after {
    content: "3";
    color: #95459A;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    width: 80px;
    position: absolute;
    top: -28px;
    left: 50%;
    margin-left: -40px;
}

.why-gfTech h3 {
    font-size: 37px;
}

.why-gfTech h3 b {
    color: #95459A;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.why-gfTech .imgWrap {
    margin: 40px auto 70px;
}

.why-gfTech h5 {
    font-size: 28px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 20px;
}

.why-gfTech h5 i,
.why-gfTech p i {
    display: block;
}

.why-gfTech p {
    font-size: 20px;
    line-height: 42px;
}

.why-gfTech span {
    display: block;
    font-size: 16px;
    opacity: 0.5;
}

.mainBtn {
    display: inline-block;
    width: 244px;
    line-height: 55px;
    background: #D5A286;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 40px;
    text-align: center;
    border-radius: 27.5px;
}

.banner-text-large {
    color: #007293;
}

.mainTop {
    margin: 120px 0 120px;
}

.mainTop .contain {
    display: flex;
    gap: 20px;
}

.mainTop dl {
    width: 33.33%;
}

.mainTop dt img {
    width: 100%;
}

.mainTop dd h2 {
    font-size: 22px;
    color: #222;
    margin: 10px 0 5px;
}

.mainTop dd p {
    font-size: 16px;
    line-height: 26px;
    color: #3E3A39;
}

.h1-founder {
    color: #3E3A39;
    font-size: 32px;
    line-height: 54px;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 20px;
}

.wrap-founder {
    position: relative;
    max-width: 1200PX;
    margin: 210px auto 0;
}

.wrap-founder .contain .infor-founder {
    display: flex;
    align-items: flex-end;
    padding-top: 30px;
}

.infor-founder>div:first-child {
    padding-left: 100px;
}

.wrap-founder::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 0px;
    z-index: -1;
    background-color: #F5F5F5;
    border-radius: 24px;
}

.p-founder {
    line-height: 42px;
}

.p-founder i {
    display: block;
}

.bd-radius-24 {
    border-radius: 24px;
}

.wrap-history {
    background-image: url("../img/bg-history.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 100px;
    margin-top: 110px;
}

.wrap-iam-group {
    padding-bottom: 100px;
}

.img-history {
    max-width: 990px;
    width: 100%;
}

.img-group {
    max-width: 1180px;
    width: 100%;
}

.text-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.price-left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.history-1400 {
    display: block;
}

.history-700 {
    display: none;
}

.sub-category {
    width: fit-content !important;
    padding: 0px 20px;
    color: #999CA6;
    height: 40px;
    background: #F5F5F5;
    border-radius: 20px;
    vertical-align: middle;
    align-items: center;
    display: flex;
}

.mainProd ul li.sub-category {
    margin-bottom: 10px;
    justify-content: center;
    vertical-align: middle;
    display: flex;
    height: 32px;
    font-size: 14px;
    cursor: pointer;
}

.font-middle {
    font-size: 20px;
}

.mainProd .category-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mainProd .mainProd {
    margin-top: 10px;
}

.sub-category.active {
    border: 1px solid #3E3A39;
    background: #fff;
    color: #3E3A39;
    font-weight: 600;
}

.item-3w1h {
    border: 1px solid #EEEEEE;
    height: 50px;
    align-items: center;
    display: flex;
    cursor: pointer;
    margin: 40px auto 0;
    text-align: center;
    justify-content: center;
}

.item-3w1h.active {
    border: 1px solid #007293;
    color: #007293;
}

.img-logo-who-iam {
    margin-left: 50px;
    display: block;
}

.name-whoiam {
    background-color: #FCF6FA;
    position: relative;
}

.who-iam {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.who-iam>div {
    width: 350px;
}

.who-iam>div.row {
    width: calc(100% - 350px);
}

.who-iam p {
    line-height: 48px;
    font-size: 24px;
}

.who-iam p i {
    display: block;
}

/* .name-whoiam::after {
    background-image: url(../img/who-iam-right.svg);
    content: '';
    display: inline-block;
    width: 305px;
    height: 200px;
    right: 0px;
    z-index: 2;
    bottom: -107px;
    position: absolute;
    border-radius: 0px 24px 24px 0px;
    background-repeat: no-repeat;
    overflow: hidden;
}
.name-whoiam::before {
    content: '';
    display: inline-block;
    width: 150px;
    height: 135px;
    left: 0;
    background-image: url(../img/who-iam-left.svg);
    z-index: 4;
    position: absolute;
    background-repeat: no-repeat;
} */

.who-item-radius {
    border-radius: 24px;
}

.whoIcon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.whoIcon>div {
    width: calc(33.33% - 10px);
    border-radius: 24px;
    padding: 30px 0 50px;
}

.title-who-business {
    font-size: 24px;
    font-weight: 600;
}

.who-iam {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #FCF6FA;
    position: relative;
}

.who-iam::after {
    padding-top: 175px;
    padding-bottom: 175px;
    background-color: #FCF6FA;
    position: relative;
}

.color-iam {
    color: #007293;
}

.founderSign {
    margin-top: 100px;
    font-size: 20px;
}

.signature {
    padding-bottom: 20px;
}

.contain-3w1h {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    background: #fff;
}

.h1-who,
.h1-how {
    font-size: 40px;
    line-height: 54px;
    font-weight: 600;
    color: #95459A;
    margin-top: 140px;
    margin-bottom: 20px;
}

.h1-who2 {
    font-size: 36px;
    margin-top: 130px;
    font-weight: 600;
    color: #95459A;
    margin-bottom: 20px;
}

.h1-who3 {
    font-size: 36px;
    margin-top: 130px;
    font-weight: 600;
    color: #95459A;
    margin-bottom: 60px;
}

.h1-how2 {
    font-size: 40px;
    line-height: 54px;
    font-weight: 600;
    color: #95459A;
    margin-bottom: 70px;
}

.h1-what {
    font-size: 40px;
    line-height: 54px;
    font-weight: 600;
    color: #95459A;
    margin-top: 140px;
    margin-bottom: 70px;
}

.what-h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 30px;
}

.border-2 {
    height: 2px;
    width: 100%;
    background: #007293;
}

.whatBrand {
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}

.brandGuideL {
    width: 320px;
    text-align: left;
}

.brandGuideL p {
    padding-right: 20px;
    word-break: keep-all;
}

.brandGuideR {
    width: calc(100% - 340px);
}

.brandGuideR .d-flex {
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
}

.brandGuideR .d-flex img {
    max-width: 100%;
}

.brandGuideR .d-flex p {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 0;
}

.color-second-p {
    color: #007293;
}

.contain-3w1h .text-top {
    margin-bottom: 128px;
    font-size: 24px;
    line-height: 38px;
}

.item-3w1h:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.item-3w1h:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.item-3w1h:active {
    border: 1px solid #007293;
}

.tit-big {
    font-size: 42px;
    color: #007293;
    margin: 48px 0 48px;
    text-align: left;
    line-height: 3.5rem;
    font-weight: 600;
}

.txtWrap .row {
    /* margin: 30% 0px; */
}

.mainRnd {
    padding: 40px 0;
    background-image: url('../img/bg-unrival.jpg');
    background-repeat: no-repeat;
    object-fit: cover;
    border-top: 1px solid #ddd;
}

.mainRnd .tit-big {
    margin: 0 0 30px;
}

.mainRnd .contain {
    display: flex;
    align-items: center;
    gap: 0;
}

.dt-tit {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 10px;
    color: #007293 !important;
}

.mainRnd .imgWrap {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.mainRnd .imgCont {
    position: relative;
    padding-top: 40px;
    width: 540px;
    max-width: 90%;
    height: 600px;
}

.mainRnd .imgCont img {
    width: 100%;
    height: 100%;
    z-index: 9;
    position: relative;
    border-radius: 24px;
}

.mainRnd .imgCont::after {
    content: "";
    display: block;
    width: 400px;
    height: 380px;
    border-radius: 24px;
    background: #007293;
    position: absolute;
    top: 0px;
    right: -40px;
    z-index: 1;
}

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

.mainRnd .txtWrap {
    width: 50%;
    padding-right: 50px;
}

.mainRnd .txtWrap p {
    font-size: 18px;
    line-height: 36px;
    color: #3E3A39;
}

.mainRnd .txtWrap p i {
    display: block;
}

.mainRnd .bTit {
    line-height: 59px;
}

.pdList .mainProd {
    padding: 40px 0 20px;
    text-align: center;
}

#hp-features.mainProd {
    padding-bottom: 20px;
}

.pdList .mainProd.prodList {
    margin-top: 0px;
    padding-top: 20px;
}

.price-wrap.d-flex {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.price-next.w-auto.mx-2 {
    margin: 0 !important;
}

.mainProd ul li p.price-left.w-auto {
    margin-bottom: 0;
}

.pdList .mainProd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pdList .mainProd ul li {
    width: calc(25% - 15px);
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.5s;
}

.pdList .mainProd>ul li:hover,
.pdList .mainProd .slider-wrapper li:hover {
    box-shadow: -4px 4px 4px rgba(45, 53, 78, 0.1), -4px -4px 4px rgba(238, 242, 255, 0.1), 4px 4px 4px rgba(45, 53, 78, 0.1);
    border: 1px solid #007293;
}

.pdList .mainProd .imgWrap {
    width: 100%;
    height: 0;
    padding: calc(100% + 0px) 20px 0;
    position: relative;
    margin-bottom: 20px;
}

.pdList .mainProd .imgWrap img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 30px;
    left: 0px;
}

.mainRoad {
    margin: 40px 0;
}

.mainRoad .d-flex {
    width: 100%;
}

.mainRoad .d-flex dl {
    flex: 1;
}

.mainRoad .d-flex dt {
    margin-bottom: 10px;
}

.mainRoad .d-flex dd i {
    display: block;
}

.wdCate .mainProd {
    padding-top: 10px;
    padding-bottom: 0;
}

.shopTop {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    height: auto !important;
}

.pdList {
    /* max-width: 1400px; */
    margin: 0 auto;
    position: relative;
    width: 100%;
    ;
}

.pdList::after {
    /* content: "";
    display: block;
    background: #f2f2f2;
    width: 200vw;
    height: calc(100% + 245px);
    position: absolute;
    left: 50%;
    margin-left: -100vw;
    top: -245px;
    z-index: -1; */
}

.bg-gray-product-category {
    background: #f9f9f9;
}

div.mark {
    position: absolute;
    display: inline-flex;
    flex-wrap: wrap;
    top: 0;
    height: 30px;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background: transparent;
    left: 0;
    border-radius: 7px;
    width: auto;
    border: none;
    line-height: 30px;
    padding: 0px;
    z-index: 99;
}

span.mark-new {
    display: block;
    height: 30px;
    margin-right: 2px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: #007293;
    border-radius: 7px;
    width: 60px;
    border: none;
    line-height: 30px;
}

span.mark-best {
    display: block;
    height: 30px;
    margin-right: 2px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: #3e3a39;
    border-radius: 7px;
    width: 60px;
    border: none;
    line-height: 30px;
}

span.mark-sale {
    display: block;
    height: 30px;
    color: #ffffff;
    margin-right: 2px;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: #e55754;
    border-radius: 7px;
    width: 60px;
    border: none;
    line-height: 30px;
}

span.mark-4 {
    display: block;
    height: 30px;
    margin-right: 2px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: #888;
    border-radius: 7px;
    width: 60px;
    border: none;
    line-height: 30px;
}

span.mark-right {
    position: absolute;
    display: block;
    top: 0;
    height: 30px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    right: 0px;
    border-radius: 7px;
    width: 24px;
    border: none;
}

span.mark-right img {
    width: 100% !important;
    height: 100%;
    object-fit: fill !important;
    right: 1px;
    left: unset !important;
}

.sub-top-url {
    gap: 7px;
    line-height: 15px;
    font-size: 16px;
    padding: 20px 0px;
    height: 60px;
    vertical-align: middle;
    justify-content: stretch;
    border-bottom: 1px solid #F5F5F5;
    color: #B0B0B0;
}

.sub-top-url .active {
    color: #3E3A39;
}

.mainProd ul li p {
    font-size: 18px;
    color: #3E3A39;
    margin-bottom: 20px;
    font-weight: 500;
}

.mainProd ul li p.price-next {
    color: #B6B8C4;
    line-height: 1;
}

.mainProd ul li .pv-wrap p {
    font-size: 14px;
}

.heart-img {
    border-radius: 24px;
}

.btn-add-card {
    border: 1px solid #007293;
    color: #007293;
    border-radius: 8px;
    height: 48px;
    font-weight: 500;
}

.btn-add-card:hover {
    border: 1px solid #007293;
    color: #ffffff;
    background: #007293;
}

.mainProd .mainBtn {
    margin-top: 0;
}

.btn-heart {
    padding: 16px 40px;
    color: #fff;
    background: #007293;
    border-radius: 8px;
    min-width: 250px;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    margin-top: 80px;
}

.mainAgent {
    background: #F5F5F1;
    padding: 140px 0 160px;
}

.mainAgent .contain {
    display: flex;
}

.mainAgent .imgWrap {
    width: 50%;
    overflow: hidden;
}

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

.mainAgent .txtWrap {
    width: 50%;
    padding-left: 50px;
}

.mainAgent .txtWrap p {
    font-size: 18px;
    line-height: 36px;
    color: #3f3f3f;
}

.mainBanner {
    background: url(../img/mainBanner.jpg)no-repeat center;
    background-size: cover;
    padding: 250px 0 270px;
    text-align: center;
}

.mainBanner .bTit {
    color: #fff;
}

.mainBanner .mainBtn {
    background: #fff;
    color: #D5A286;
}

/* footer */
/* .footer {
    position: relative;
    background: #F5F5F5;
} */

.ftbanner {
    background: #007293;
    margin-bottom: 40px;
}

.ftbanner .contain {
    display: flex;
    align-items: center;
    height: 70px;
}

.ftbanner img {
    filter: brightness(0) invert(1);
}

.add {
    vertical-align: middle;
    padding-left: 5px;
}

.footer .ftCont {
    justify-content: space-between
}

.footer .ftCont>div {
    flex: 1;
}

.footer .footerInfo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
    align-content: space-between
}

.footer .footerInfo .btmLogo {
    display: flex;
    margin-bottom: 40px;
}

.footer .footerInfo .btmLogo h1 {
    margin-right: 10px;
}

.footer .footerInfo .btmLogo p {
    font-size: 12px;
}

.footer .footerInfo dl {
    margin-bottom: 20px;
}

.footer .footerInfo dt {
    color: #6E7584;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.footer .footerInfo dd {
    color: #6E7584;
    font-size: 15px;
    line-height: 30px;
}

.footer .footerInfo .infoLink {
    margin-top: 50px;
}

.footer .footerInfo .infoLink a {
    color: #222;
    font-size: 13px;
    display: inline-block;
    margin-right: 30px;
}

.footer .footerInfo .infoLink a:last-child {
    margin-right: 0;
}

.footer .footerMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footerMenu dl {
    width: 30%;
}

.footer .footerMenu dl:last-child {
    width: 40%;
}

.footer .footerMenu dt {
    color: #6E7584;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.footer .footerMenu dd {
    color: #6E7584;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: -1px;
}

.footer .ftCopy {
    margin-top: 40px;
    padding: 30px 0;
    font-size: 15px;
    color: #6E7584;
    line-height: 1;
}

/* landing page */
.landing .headerWrap {
    height: 115px;
}

.landing .mainVisual .swiper-wrapper {
    height: 966px;
}

.landing .mainVisual .mainVisTxt h2 {
    font-size: 128px;
    color: #fff;
    margin-bottom: 100px;
}

.landing .mainVisual .mainVisTxt a {
    background: #0C449B;
    color: #fff;
    border-radius: 0;
    width: 530px;
    line-height: 78px;
    font-size: 32px;
    text-transform: none;
}

.landing .mainBtn {
    background: #0C449B;
    color: #fff;
    width: 530px;
    line-height: 78px;
    font-size: 32px;
    text-transform: none;
    border-radius: 0;
}

.landing .mainBanner {
    background: url(../img/mainBanner02.jpg)no-repeat center;
    background-size: cover;
}

.landing .mainBanner .bTit {
    padding: 0 150px;
    font-size: 48px;
    font-weight: 700;
    line-height: 77px;
}

.landing .footer .footerInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.landing .footer .footerInfo .btmLogo {
    align-self: flex-start;
}

.landing .footer .footerInfo .btmLogo+dl {
    margin-top: -90px;
}

/* sign up */
.signUpTop {
    background: url(../img/signUp.jpg) no-repeat center;
    background-size: cover;
    padding: 130px 0;
    text-align: center;
}

.signUpTop h2 {
    color: #0C449B;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 50px;
}

.signUpTop p {
    color: #0C449B;
    font-size: 24px;
    line-height: 44px;
}

.signUpTop p i {
    display: block;
}

.subSignUp {
    display: flex;
}

.subSignUp dl {
    width: 50%;
}

.subSignUp dl:last-child {
    padding-left: 50px;
    border-left: 1px solid #222;
    box-sizing: border-box;
}

.subSignUp dl:first-child {
    padding-right: 50px;
}

.subSignUp dt {
    color: #0C449B;
    font-size: 45px;
    font-weight: 700;
}

.subSignUp ul {
    padding-left: 30px;
    margin: 20px 0 30px;
}

.subSignUp li {
    list-style: num;
    color: #0C449B;
    font-size: 23px;
    line-height: 44px;
    letter-spacing: -0.5px;
}

.subSignUp a {
    display: flex;
    border: 2px solid #12459917;
    margin-top: 10px;
    height: 85px;
    width: 100%;
    max-width: 500px;
    align-items: center;
    justify-content: center;
    border-radius: 43px;
}

.subSignUp a img {
    width: 35px;
}

.subSignUp a p {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    width: 240px;
    margin-left: 15px;
}

/* subContent*/
.subVisual {
    height: 270px;
    background: url(../img/subVis.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.subVisual h2 {
    color: #0C449B;
    font-size: 45px;
    font-weight: 700;
}


.mbShopMenu {
    display: none;
}

.product-category .main-heading {
    display: flex;
}

.subMenu {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.subMenu .snb {
    display: flex;
}

.subMenu .snb li {
    margin-right: 40px;
}

.subMenu .snb li:last-child {
    margin-right: 0;
}

.subMenu .snb a {
    color: #0C449B;
    font-size: 20px;
    position: relative;
}

.subMenu .snb a.active {
    font-weight: 700;
}

.subMenu .snb a.active::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #0C449B;
}

.subMenu .shopMenu {
    display: flex;
}

.subMenu .shopMenu li {
    margin-left: 30px;
}

.subMenu .shopMenu li:first-child {
    margin-left: 0;
}

.subMenu .shopMenu a {
    font-size: 20px;
    color: #0C449B;
}

.subMenu .shopMenu a.cartBtn span {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: #0C449B;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.subCont {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    margin: 80px auto 120px;
}

.subCont .subTit {
    color: #0C449B;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

/* brand story */
.subStory .imgWrap img {
    width: 100%;
    margin-bottom: 60px;
}

.subStory p {
    font-size: 19px;
    color: #3f3f3f;
    line-height: 2;
}

.subStoryRnD .imgWrap img {
    width: 100%;
    margin-bottom: 60px;
}

.subStoryRnD dl {
    margin-bottom: 50px;
}

.subStoryRnD dt {
    color: #3f3f3f;
    font-size: 19px;
    font-weight: 700;
}

.subStoryRnD dd {
    color: #3f3f3f;
    font-size: 19px;
    line-height: 2;
}

.subStoryRnD dd:nth-child(3) {
    margin-top: 90px;
}

/* Business */
.subOur .imgWrap img {
    width: 100%;
    margin-bottom: 60px;
}

.subOur p {
    font-size: 19px;
    color: #3f3f3f;
    line-height: 2;
    margin-bottom: 50px;
}

/* Become An agent */
.subAgentJoin .topImg {
    background: url(../img/subAgentJoin.jpg) no-repeat center;
    background-size: cover;
    height: 410px;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 60px;
}

.subAgentJoin .topImg h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
}

.mobile-brand-img {
    display: none;
}

.subAgentJoin .topImg p {
    color: #fff;
    font-size: 19px;
    line-height: 2;
    padding-right: 42%;
    margin-bottom: 0;
}

.subAgentJoin p {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 33px;
    color: #000;
}

.subAgentJoin dl {
    margin-top: 100px;
}

.subAgentJoin dt {
    color: #3f3f3f;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subAgentJoin dd {
    color: #3f3f3f;
    font-size: 19px;
    line-height: 2;
}

.subAgentJoin dd ul {
    margin-top: 50px;
}

.subAgentJoin dd li {
    display: flex;
    margin-bottom: 100px;
}

.subAgentJoin dd li:last-child {
    margin-bottom: 0;
}

.subAgentJoin dd li div {
    width: 50%;
}

.subAgentJoin dd li div img {
    width: 100%;
}

.subAgentJoin dd li .txtWrap {
    padding-left: 60px;
    padding-top: 40px;
}

.subAgentJoin dd li:nth-child(2) .txtWrap {
    padding-left: 20px;
    padding-right: 60px;
}

.subAgentJoin dd li .txtWrap h3 {
    color: #0C449B;
    font-size: 42px;
    line-height: 55px;
}

.subAgentJoin dd li .txtWrap p {
    color: #000;
    font-size: 20px;
    line-height: 33px;
    margin-top: 20px;
    margin-bottom: 0;
}

.subAgentJoin dd li .txtWrap a {
    display: block;
    background: #0C449B;
    color: #fff;
    border-radius: 10px;
    margin: 90px auto 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 65px;
    width: 350px;
    text-align: center;
}

/* rank guide */
.subAgentRank dl {
    display: flex;
    width: 75%;
    margin: 0 auto 90px;
}

.subAgentRank dt {
    width: 440px;
}

.subAgentRank dt img {
    width: 100%;
}

.subAgentRank dd {
    padding-left: 20px;
    width: calc(100% - 440px);
    box-sizing: border-box;
}

.subAgentRank dd p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin-top: 20px;
}

.subAgentRank dd p:first-child {
    margin-top: 0;
}

.subAgentRank h3 {
    font-size: 32px;
    font-weight: 700;
    color: #3f3f3f;
    margin-bottom: 20px;
}

.subAgentRank h3+p {
    font-size: 19px;
    color: #000;
}

.subAgentRank ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 70px 0 40px;
}

.subAgentRank li {
    background: #727272;
    border-radius: 10px;
    line-height: 65px;
    text-align: center;
    width: calc(37% - 7px);
    margin-left: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.subAgentRank li:nth-child(3n + 1) {
    background: #0C449B;
    width: 23%;
    margin-left: 0;
}

.subAgentRank li:nth-child(1),
.subAgentRank li:nth-child(2),
.subAgentRank li:nth-child(3) {
    background: #d4d4d4;
    color: #000;
}

.subAgentRank p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin-top: 30px;
}

/* COMPENSATION PLAN */
.subAgentPlan p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.subAgentPlan h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 180px 0 50px;
}

.subAgentPlan a {
    display: block;
    margin: 0 auto;
    background: #0C449B;
    width: 718px;
    line-height: 65px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
}

.subAgentPlan ul {
    display: flex;
    background: #0C449B;
    color: #fff;
    flex-wrap: wrap;
    margin-top: 250px;
    position: relative;
    padding: 70px 0;
}

.subAgentPlan ul::after {
    content: "";
    display: block;
    width: 200vw;
    height: 100%;
    background: #0C449B;
    position: absolute;
    left: 50%;
    margin-left: -100vw;
    top: 0;
    z-index: -1;
}

.subAgentPlan ul li {
    width: 50%;
    text-align: center;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subAgentPlan ul li h5 {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
}

.subAgentPlan ul li span {
    font-size: 16px;
}

.subAgentPlan ul li:nth-child(odd) {
    padding-right: 30px;
}

.subAgentPlan ul li:nth-child(even) {
    padding-left: 30px;
}

/* rewards */
.rewardsTop {
    background: url(../img/subRewards01.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 130px 0;
    margin-bottom: 150px;
}

.rewardsTop h2 {
    color: #0C449B;
    font-size: 45px;
    font-weight: 700;
}

.rewardsTop p {
    color: #0C449B;
    font-size: 36px;
    line-height: 59px;
    margin: 100px 0 80px;
}

.rewardsTop p i {
    display: block;
}

.rewardsTop a {
    display: inline-block;
    background: #d9d9d9;
    width: 260px;
    line-height: 65px;
    color: #0C449B;
    font-size: 24px;
    margin: 0 15px;
}

.subRewards .imgWrap img {
    width: 100%;
}

.subRewards p {
    font-size: 19px;
    line-height: 2;
    color: #3f3f3f;
    margin-top: 30px;
}

.subRewards h2 {
    margin-top: 60px;
    font-size: 19px;
    line-height: 2;
    color: #000;
    font-weight: 700;
}

.subRewards ul {
    padding-left: 30px;
}

.subRewards ul li {
    list-style: disc;
    font-size: 19px;
    line-height: 2;
    color: #000;
}

.subRewards ul+p {
    margin-top: 0;
}

.subRewards a {
    margin: 50px auto 160px;
    display: block;
    background: #0C449B;
    border-radius: 10px;
    width: 200px;
    line-height: 65px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.subRewards2 ul {
    display: flex;
    flex-wrap: wrap;
}

.subRewards2 li {
    width: 50%;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.subRewards2 li:nth-child(1),
.subRewards2 li:nth-child(2) {
    margin-top: 0;
}

.subRewards2 li div {
    width: 97px;
    height: 97px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subRewards2 li p {
    padding-left: 20px;
    color: #0C449B;
    font-size: 28px;
    font-weight: 700;
    width: calc(100% - 97px);
    box-sizing: border-box;
}

.subRewards2 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3f3f3f;
    margin: 150px 0 60px;
}

.subRewards2 dl {
    margin-top: 90px;
    padding-left: 60px;
}

.subRewards2 h2+dl {
    margin-top: 0;
}

.subRewards2 dt {
    font-size: 32px;
    font-weight: 700;
    color: #3f3f3f;
    margin-bottom: 10px;
}

.subRewards2 dd {
    font-size: 19px;
    line-height: 2;
    color: #3f3f3f;
}

.top-search {
    top: 40px;
    border: 0;
    border-bottom: 1px solid #fff;
    display: flex;
    margin-right: 20px;
}

.top-search a {
    width: 40px;
    height: 40px;
    margin-left: -45px;
}

.top-search input[type="text"] {
    height: 40px;
    width: 290px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    color: #4c5365;
    padding-left: 10px;
    box-sizing: border-box;
    transition: all 0.3s;
    border-radius: 20px;
    background: #F5F4F5;
    padding: 0px 10px;
}

/* .top-search input {
    width: 360px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    background: 0 0;
    border: 0;
    border: 0;
    box-sizing: border-box;
    text-align: center;
} */
.bg-after-direction {
    height: 480px;
}

.bg-after-direction img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prodDetailWrap {
    margin-top: 10px;
    padding-bottom: 40px;
}

.prodDetailWrap .prodDeTop {
    padding-bottom: 50px;
    margin: 0;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.prodDetailWrap .prodDeTop .prodImg {
    overflow: hidden;
}

.prodDetailWrap .prodDeTop .prodImg .prodSlide {
    height: fit-content;
    width: 100%;
}

.prodDetailWrap .prodDeTop .prodImg .prodSlide .swiper-slide {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.prodDetailWrap .prodDeTop .prodImg .prodThumb {
    height: fit-content;
    box-sizing: border-box;
    padding: 20px 0;
}

.prodDetailWrap .prodDeTop .prodImg .prodThumb .swiper-slide {
    width: 80px;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.prodDetailWrap .prodDeTop .prodImg .prodThumb .swiper-slide-thumb-active {
    border: 1px solid #6e1452;
}

.prodDetailWrap .prodDeTop .prodImg .swiper-slide img {
    display: block;
    width: 100%;
}

.prodDetailWrap .prodDeTop .prodRight {
    padding: 0 0 0 40px;
}

.prodDetailWrap .prodDeTop .prodTit {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.prodDetailWrap .prodDeTop .prodTit .prodCate {
    color: #555;
    font-size: 15px;
    font-weight: 600;
}

.prodDetailWrap .prodDeTop .prodTit>h2 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    padding-right: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.prodDetailWrap .prodDeTop .prodTit .prodTxt {
    color: #888;
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
}

.prodTag span {
    display: inline-block !important;
    margin-right: 5px;
}

.prodDetailWrap .prodDeTop .prodInfo {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 20px;
}

.prodDetailWrap .prodDeTop .prodInfo dl {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.prodDetailWrap .prodDeTop .prodInfo dl:last-child {
    margin-bottom: 0;
}

.prodDetailWrap .prodDeTop .prodInfo dl dt {
    width: 170px;
    color: #888;
    font-size: 16px;
    font-weight: 400;
}

.prodDetailWrap .prodDeTop .prodInfo dl.consuPrice dd {
    text-decoration: line-through;
    color: #aaa;
}

.prodDetailWrap .prodDeTop .prodInfo dl.memberPrice dd {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.prodDetailWrap .prodDeTop .prodInfo dl.memberPrice dd span {
    color: #fd0000;
}

.prodDetailWrap .prodDeTop .prodInfo dl.prodPoint dd {
    color: #fdb538;
}

.prodDetailWrap .prodDeTop .prodInfo dl.prodPoint dd span {
    display: inline-block;
    width: 18px;
    line-height: 18px;
    text-align: center;
    background: #fdb538;
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    border-radius: 3px;
    vertical-align: text-bottom;
    margin-left: 3px;
}

.prodDetailWrap .prodDeTop .prodInfo dl.prodDeli dd {
    color: #888;
}

.prodDetailWrap .prodDeTop .prodInfo dl.prodDeli dd p {
    font-size: 13px;
}

.prodDetailWrap .prodDeTop .prodOption {
    border: 1px solid #f9f9f9;
    background: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    position: relative;
}

.prodDetailWrap .prodDeTop .prodOption .optionChoice {
    border: 1px solid #ddd;
    display: block;
    color: #888;
    font-size: 13px;
    border-radius: 5px;
    background: #fff;
    line-height: 34px;
    position: relative;
    padding-left: 10px;
}

.prodDetailWrap .prodDeTop .prodOption .optionChoice svg {
    position: absolute;
    right: 10px;
    margin-top: 9px;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont {
    position: relative;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont h2 {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont>.row {
    margin-top: 10px;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont>.row .price {
    text-align: right;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont .optionNum {
    font-size: 0;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont .optionNum a {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    vertical-align: bottom;
    text-align: center;
    color: #000;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont .optionNum a:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont .optionNum a:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.prodDetailWrap .prodDeTop .prodOption .optionCont .optionNum input {
    height: 24px;
    width: 40px;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    text-align: center;
    padding: 0 5px;
    border-radius: 0;
    color: #333;
    font-size: 12px;
    vertical-align: middle;
}

.prodDetailWrap .prodDeTop .prodTotal {
    margin: 30px 0;
    color: #000;
    font-size: 18px;
    font-weight: 800;
    align-items: center;
}

.prodDetailWrap .prodDeTop .prodTotal .price {
    text-align: right;
    font-size: 34px;
}

.prodDetailWrap .prodDeTop .prodBtns {
    font-size: 0;
}

.prodDetailWrap .prodDeTop .prodBtns .addWish {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 1px solid #007293;
    border-radius: 3px;
    text-align: center;
    vertical-align: bottom;
}

.prodDetailWrap .prodDeTop .prodBtns .addWish svg {
    width: 36px;
    margin-top: 13px;
}

.prodDetailWrap .prodDeTop .prodBtns .addWish svg .cls-1 {
    stroke: #007293;
}

.prodDetailWrap .prodDeTop .prodBtns .addWish svg .cls-t {
    fill: #007293;
}

.prodDetailWrap .prodDeTop .prodBtns ul {
    display: inline-block;
    width: calc(100% - 70px);
    margin-left: 10px;
    border: 1px solid #007293;
    border-radius: 3px;
}

.prodDetailWrap .prodDeTop .prodBtns ul li {
    display: inline-block;
    width: 50%;
}

.prodDetailWrap .prodDeTop .prodBtns ul li a {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 58px;
    color: #007293;
}

.prodDetailWrap .prodDeTop .prodBtns ul li:last-child a {
    color: #fff;
    background: #007293;
}

.prodDetailWrap .prodDeBtm {
    padding-top: 50px;
    position: relative;
    height: max-content;
    box-sizing: border-box;
    padding: 15px;
    background: #fff;
    margin-top: 20px;
    border-radius: 8px;
}

.prodDetailWrap .prodDeBtm .prodDetail {
    width: calc(100% - 350px);
}

.prodDetailWrap .prodDeBtm .prodDetail .prodMenu {
    text-align: center;
    font-size: 0;
    background: #fff;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodMenu a {
    display: inline-block;
    width: 50%;
    line-height: 50px;
    border-bottom: 1px solid #f2f2f2;
    color: #666;
    font-size: 18px;
    background: #fff;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodMenu a.on {
    border: 1px solid #f2f2f2;
    border-bottom: 1px solid #fff;
    background: #f2f2f2;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodMenu.fix {
    position: fixed;
    top: 0;
    width: calc(100% - 350px);
    max-width: calc(1400px - 350px);
    padding: 100px 0 20px;
    z-index: 1;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg {
    padding: 40px 0 40px;
    border-bottom: 1px solid #F5F4F5;
    position: relative;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg .imgWrap {
    /* height: 1000px; */
    height: auto;
    overflow-y: hidden;
    position: relative;
    margin-bottom: 100px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg .imgWrap img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg .imgWrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg .imgWrap.on {
    height: auto;
    overflow-y: visible;
    margin-bottom: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg .imgWrap.on:after {
    content: "";
    display: none;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeImg a {
    position: absolute;
    bottom: 100px;
    display: block;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    border-radius: 25px;
    text-align: center;
    background: #007293;
    color: #fff;
    line-height: 50px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview {
    padding: 100px 0;
    border-bottom: 1px solid #f4f5f4;
    text-align: center;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate {
    background: #FCF6FA;
    border-radius: 5px;
    padding: 20px;
    margin: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate>div:first-child {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate>div:last-child {
    font-size: 12px;
    border-left: 1px solid #e2e2e2;
    color: #888;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate>div:last-child div {
    margin: 2.5px 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate .rateGraph {
    display: inline-block;
    width: 150px;
    height: 8px;
    border-radius: 4px;
    background-color: #ddd;
    margin-left: 5px;
    overflow: hidden;
    position: relative;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .prodRate .rateGraph:after {
    content: "";
    display: block;
    width: 70%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #007293;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption {
    padding: 10px 0;
    font-size: 14px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:first-child {
    text-align: left;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:first-child span {
    display: inline-block;
    padding-left: 10px;
    font-weight: 800;
    color: #000;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child {
    text-align: right;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child a {
    display: inline-block;
    position: relative;
    color: #888;
    padding-right: 10px;
    margin-right: 10px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child a:after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child a:last-child {
    padding-right: 0;
    margin-right: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child a:last-child:after {
    content: "";
    display: none;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewOption>div:last-child a.on {
    color: #007293;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont {
    border-bottom: 1px dashed #eee;
    padding: 15px 0;
    font-size: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: inline-block;
    vertical-align: top;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap .bgBlack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    z-index: 991;
    display: none;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap .bgBlack.on {
    display: table;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap .reviewImg {
    display: table-cell;
    width: 100vw;
    height: 100vh;
    vertical-align: middle;
    z-index: 992;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .imgWrap .reviewImg img {
    width: initial;
    height: initial;
    max-width: 80%;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .reviewTxt {
    display: inline-block;
    width: calc(100% - 100px);
    font-size: 14px;
    padding-left: 15px;
    text-align: left;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .reviewTxt .row {
    margin-bottom: 10px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .reviewTxt .row .reviewDate {
    text-align: right;
    color: #aaa;
    font-weight: 300;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont .reviewTxt h3 {
    margin-bottom: 10px;
    color: #888;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .reviewContWrap .reviewCont:last-child {
    border-bottom: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .pagerWrap {
    margin-top: 10px;
    font-size: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .pagerWrap a {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 3px;
    background: #f2f2f2;
    color: #aaa;
    font-size: 13px;
    margin: 0 2.5px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodReview .pagerWrap a.on {
    background: #007293;
    color: #fff;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli {
    padding: 40px 0 0 20px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli h3 {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    margin-top: 50px;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli h3:first-child {
    margin-top: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli dl {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli dl dt {
    display: inline-block;
    width: 150px;
    font-size: 13px;
    color: #888;
    font-weight: 400;
    vertical-align: top;
}

.prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli dl dd {
    display: inline-block;
    width: calc(100% - 150px);
    font-size: 13px;
    color: #000;
}

.prodDetailWrap .prodDeBtm .prodSide {
    width: 300px;
    position: absolute;
    right: 15px;
    top: -20px;
}

/* .prodDetailWrap .prodDeBtm .prodSide .posR {
    height: 100vh;
  } */
.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionChoice {
    border: 1px solid #ddd;
    display: block;
    color: #888;
    font-size: 16px;
    border-radius: 5px;
    background: #fff;
    line-height: 50px;
    position: relative;
    padding-left: 15px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionChoice svg {
    position: absolute;
    right: 10px;
    margin-top: 12px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont {
    position: relative;
    padding: 20px 0;
    margin-top: 70px;
    background: #f2f2f2;
    border-radius: 5px;
    padding: 15px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont h2 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont>.row {
    margin-top: 10px;
    align-items: center;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont>.row .price {
    text-align: right;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont .optionNum {
    font-size: 0;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont .optionNum a {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    vertical-align: bottom;
    text-align: center;
    color: #000;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont .optionNum a:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont .optionNum a:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodOption .optionCont .optionNum input {
    height: 24px;
    width: 30px;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    text-align: center;
    padding: 0 5px;
    border-radius: 0;
    color: #333;
    font-size: 12px;
    vertical-align: middle;
}

.prodDetailWrap .prodDeBtm .prodSide .prodTotal {
    border-top: 1px solid #ddd;
    margin: 20px 0 0 0;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    align-items: center;
    padding: 10px 0;
}

.prodDetailWrap .prodDeBtm .prodSide .prodTotal .price {
    text-align: right;
    font-size: 20px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodTotal>div {
    padding: 0;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns {
    font-size: 0;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns .addWish {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid #007293;
    border-radius: 3px;
    text-align: center;
    vertical-align: bottom;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns .addWish svg {
    width: 26px;
    margin-top: 13px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns .addWish svg .cls-1 {
    stroke: #007293;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns .addWish svg .cls-t {
    fill: #007293;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns ul {
    display: inline-block;
    width: calc(100% - 60px);
    margin-left: 10px;
    border: 1px solid #007293;
    border-radius: 3px;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns ul li {
    display: inline-block;
    width: 50%;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns ul li a {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    color: #007293;
}

.prodDetailWrap .prodDeBtm .prodSide .prodBtns ul li:last-child a {
    color: #fff;
    background: #007293;
}

.prodDetailWrap .prodDeBtm .prodSide.fix {
    position: fixed;
    top: 75px;
    right: 50%;
    margin-right: -685px;
    padding-top: 30px;
    z-index: 1;
    background: #fff;
}

.prodDetailWrap .prodDeBtm .prodSide.fix .sideBtm {
    position: fixed;
    width: 300px;
}

.prodDetailWrap .prodDeBtm .prodSide.fix.fixBtm {
    position: absolute;
    bottom: 0;
    top: inherit;
    right: 0;
    margin-right: 0;
}

.prodDetailWrap .prodDeBtm .prodSide.fix.fixBtm .posR .prodOption {
    position: fixed;
    top: 30px;
    width: 300px;
    max-height: 350px;
    overflow-y: auto;
}

.prodDetailWrap .prodDeBtm .prodSide.fix.fixBtm .sideBtm {
    position: absolute;
}

.subPlusSys {
    padding: 100px 0;

}

.subTit {
    font-size: 34px;
    color: #000;
    font-weight: 700;
    margin-bottom: 50px;
}

.subPlusSys h2 {
    text-align: center;
}

.subPlusSys .plusCont {
    max-width: 1300px;
    margin: 0 auto;
}

.subPlusSys .plusCont dl {
    display: flex;
}

.subPlusSys .plusCont dt {
    width: 50%;
}

.subPlusSys .plusCont dt img {
    width: 100%;
}

.subPlusSys .plusCont dd {
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 50px;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
}

.subPlusSys .plusCont dd i {
    display: block;
}

.subPlusSys .plusCont dl:nth-child(even) dt {
    order: 2;
}

.subPlusSys .plusCont dl:nth-child(even) dd {
    order: 1;
    padding-left: 0;
    padding-right: 50px;
}

.subPlusBonus {
    max-width: 1300px;
    margin: 0 auto;
}

@media all and (max-width: 1500px) {
    .prodDetailWrap .prodDeBtm .prodSide.fix {
        right: 70px;
        margin-right: 0;
    }

    .mainBrand .swiper-pagination {
        left: 0;
        margin-left: 0;
    }
}
@media all and (max-width: 1400px) {
    .header .headTop {
        padding: 0 50px;
    }

    .header .headTop .hdMenu .gnb ul li {
        padding: 0 10px;
    }

    .header .headTop .hdMenu .gnb ul li a {
        font-size: 14px;
    }

    .header .headTop .hdMenu .gnb ul li ul {
        height: 80px;
    }

    .mainProd .mainProdSlide {
        width: 100%;
        padding: 0 50px;
    }

    .mainProd .mainProdSlide a {
        width: 100%;
    }

    .mainTen .contain {
        padding: 100px 50px;
    }

    .mainTen h2.mainTit i {
        display: inline;
    }

    .mainTen dl dt {
        margin-bottom: 10px;
    }

    .mainTen dl dd h2 i {
        display: inline;
    }

    .mainTen dl dd p i {
        display: inline;
    }

    .footer .ftCont {
        padding: 0 50px;
    }
}


@media all and (max-width: 1300px) {
    .header {
        max-width: 100%;
        padding: 0 5%;
    }

    .header.fix {
        padding: 0 5%;
    }

    .wrap-direction {
        /* max-width: 100%;
        padding: 0 40px; */
    }

    .topHead h1 {
        margin-right: 15px;
        width: 100px;
    }

    .headerWrap .gnb li {
        margin: 0 15px;
    }

    .contain {
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 40px;
    }

    .office-result.container {
        padding: 40px 0px;
    }

    .who-iam {
        padding-top: 130px;
        padding-bottom: 130px;
    }

    .headerWrap .topAccount li {
        margin-left: 12px;
    }

    .prodDetailWrap .prodDeBtm .prodDetail {
        width: 100%;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodMenu.fix {
        width: calc(100% - 100px);
        max-width: 100%;
    }

    .prodDetailWrap .prodDeBtm .prodSide {
        display: none;
    }

    .subPlusSys {
        padding-right: 50px;
    }
}
@media all and (max-width: 1200px) {
    .header .headTop {
        padding: 0 0px;
    }

    .header .headTop .hdMenu {
        padding: 0 20px;
    }

    .header .headTop .hdMenu .gnb ul li {
        padding: 0 5px;
    }

    .header .headTop .hdMenu .gnb ul li a {
        font-size: 12px;
    }

    .header .headTop .hdMenu .gnb ul li ul {
        height: auto;
    }

    .header .headTop .hdMenu .userMenu {
        margin-left: 10px;
}
    .header .headTop .hdMenu .userMenu {
        margin-left: 20px;
    }

    .header .headTop .hdMenu .gnb ul li a {
        font-size: 13px;
        letter-spacing: -1px;
    }

    .header .headTop .hdMenu .userMenu a {
        font-size: 12px;
        letter-spacing: -1px;
    }

    .footer .ftCont {
        padding: 0 40px;
    }
    .office-search {
        padding: 0px 40px;
    }
        .office-result.container {
        padding: 40px;
    }
}
/* tablet */
@media all and (max-width: 992px) {

    /* .headerWrap {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: stretch;
    } */
    body {
        font-size: 14px;
    }

    .headerWrap {
        /* flex-wrap: unset; */
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: stretch;
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        align-items: center;
    }

    .headerWrap .topAccount {
        align-self: flex-end;
    }

    .topHead {
        justify-content: space-between;
    }

    .topHead h1 {
        margin-right: 0;
    }

    .top-search input[type="text"] {
        width: 200px;
    }

    /* .header.fix .headerWrap {
        height: 100px;
    } */

    .headerWrap .topAccount .topLangList {
        padding: 10px 10px;
        top: 25px;
        z-index: 0;
    }

    .headerWrap .topAccount .topLangList::before {
        content: "";
        display: block;
        width: 2px;
        height: 10px;
        background: #333;
        position: absolute;
        top: -10;
        left: -2px;
    }
    .header {
        padding: 0 2%;
    }
    .headerWrap .topAccount .topLangList:after {
        content: "";
        display: block;
        width: 2px;
        height: 10px;
        background: #333;
        position: absolute;
        top: -10px;
        right: -2px;
    }

    /* main contents */
    .mainVisual .swiper-wrapper {
        /* height: 100vw; */
    }

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

    .mainVisual .swiper-pagination {
        margin-top: 25px;
    }

    .name-whoiam,
    .how-map {
        /* padding: 0% 2%; */
        background-color: #FCF6FA;
        position: relative;
    }

    .mainVisual .swiper-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
    }

    .wrap-founder .contain .infor-founder {
        vertical-align: middle;
        margin: 0 auto;
    }

    .wrap-founder .img-founder img {
        height: 400px;
    }

    .wrap-founder::before {
        height: 100%;
        width: 100%;
        bottom: 0px;
        z-index: -1;
        background-color: #F5F5F5;
        border-radius: 0px;
    }

    .mainTop .contain {
        flex-direction: column;
    }

    .mainTop dl {
        width: 100%;
        display: flex;
    }

    .mainTop dt {
        width: 180px;
    }

    .mainTop dd {
        width: calc(100% - 180px);
        padding-left: 20px;
        box-sizing: border-box;
    }

    /* .mainRnd .contain {
        flex-direction: column;
    } */
    .mainRnd.bg-unrival .contain {
        flex-direction: row-reverse;
    }

    .mainRnd .imgWrap {
        width: 100%;
        height: 50vw;
    }

    .mainRnd .txtWrap {
        width: 100%;
        padding-left: 0;
        padding-top: 50px;

        gap: 20px;
        display: inline-grid;
    }

    .mainProd ul li {
        width: calc(33.33% - 13.5px);
        margin-bottom: 50px;
    }

    .mainProd .imgWrap {
        /* height: calc((100vw / 3) - 100px); */
    }

    .mainAgent .contain {
        flex-direction: column;
    }

    .mainAgent .imgWrap {
        width: 100%;
        height: 50vw;
    }

    .mainAgent .txtWrap {
        width: 100%;
        padding-left: 0;
        padding-top: 50px;
    }

    .mainBanner {
        padding: 150px 50px 170px;
    }

    .mainBanner .bTit {
        line-height: 59px;
        margin-top: 0;
    }

    /* footer */
    .footer .contain {
        flex-direction: column;
    }

    .footer .footerInfo {
        width: 100%;
    }

    .footer .footerMenu {
        width: 100%;
        margin-top: 30px;
    }

    /* landing page */
    .landing .headerWrap .topAccount {
        align-self: unset;
    }

    .landing .headerWrap {
        flex-direction: unset;
        justify-content: space-between;
        align-items: center;
        height: 100px;
    }

    .landing .mainVisual .mainVisTxt h2 {
        font-size: 80px;
    }

    .landing .mainVisual .mainVisTxt a,
    .landing .mainBtn {
        font-size: 24px;
        width: 400px;
        line-height: 60px;
    }

    .landing .mainVisual .swiper-wrapper {
        height: 800px;
    }

    .landing .mainBanner .bTit {
        padding: 0;
        font-size: 38px;
        line-height: 60px;
    }

    .landing .footer .footerInfo .btmLogo+dl {
        margin-top: 0;
    }

    .landing .footer .footerInfo {
        align-items: normal;
    }

    .landing .header.fix .headerWrap {
        height: 80px;
    }

    /* sign up */
    .subSignUp {
        flex-direction: column;
    }

    .subSignUp dl {
        width: 100%;
        border-top: 1px solid #000;
        padding-top: 50px;
    }

    .subSignUp dl:first-child {
        padding: 50px 0;
    }

    .subSignUp dl:last-child {
        border-left: 0;
        padding-left: 0;
    }

    /* subContent*/
    .subVisual {
        height: 200px;
    }

    .subVisual h2 {
        font-size: 36px;
    }

    .subMenu {
        margin-top: 40px;
    }

    .subMenu .snb a {
        font-size: 16px;
        padding-bottom: 5px;
    }

    .subMenu .shopMenu a {
        font-size: 16px;
    }

    .subMenu .shopMenu a.cartBtn span {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    .subCont .subTit {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .subCont {
        margin: 60px auto 80px;
    }

    /* brand story */
    .subStory .imgWrap img {
        margin-bottom: 40px;
    }

    .subStory p {
        font-size: 16px;
    }

    .subStoryRnD .imgWrap img {
        margin-bottom: 40px;
    }

    .subStoryRnD dl {
        margin-bottom: 40px;
    }

    .subStoryRnD dt,
    .subStoryRnD dd {
        font-size: 16px;
    }

    .who-iam p i {
        display: inline;
    }

    /* Business */
    .subOur .imgWrap img {
        margin-bottom: 40px;
    }

    .subOur p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Become An agent */
    .subAgentJoin .topImg {
        padding: 100px 40px;
        margin-bottom: 40px;
        height: auto;
    }

    .subAgentJoin .topImg p {
        padding-right: 0;
        font-size: 16px;
    }

    .subAgentJoin .topImg h2 {
        font-size: 46px;
        margin-bottom: 30px;
    }

    .subAgentJoin p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .subAgentJoin dl {
        margin-top: 60px;
    }

    .subAgentJoin dt {
        font-size: 24px;
    }

    .subAgentJoin dd {
        font-size: 16px;
    }

    .subAgentJoin dd li div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .subAgentJoin dd li .txtWrap {
        padding-left: 40px;
        padding-top: 20px;
    }

    .subAgentJoin dd li .txtWrap h3 {
        font-size: 32px;
        line-height: 45px;
    }

    .subAgentJoin dd li .txtWrap p {
        font-size: 16px;
        line-height: 26px;
    }

    .prodDetailWrap .prodDeTop .prodTotal .price {
        font-size: 25px;
    }

    .prodDetailWrap .prodDeTop .prodInfo dl.memberPrice dd {
        font-size: 25px;
    }

    .subAgentJoin dd li .txtWrap a {
        margin: 50px auto 0;
        line-height: 50px;
        width: 250px;
        font-size: 18px;
    }

    .subAgentJoin dd li:nth-child(2) .txtWrap {
        padding-left: 10px;
        padding-right: 20px;
    }

    /* rank guide */
    .subAgentRank dl {
        flex-direction: column;
        width: 100%;
    }

    .subAgentRank dt {
        margin: 0 auto 30px;
    }

    .subAgentRank dd {
        width: 100%;
        padding-left: 0;
    }

    .subAgentRank li {
        line-height: 1.2;
        font-size: 18px;
        width: calc(36% - 7px);
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
    }

    /* COMPENSATION PLAN */
    .subAgentPlan h3 {
        margin: 80px 0 40px;
    }

    .subAgentPlan a {
        width: 100%;
        line-height: 50px;
        font-size: 18px;
    }

    .subAgentPlan ul {
        margin-top: 150px;
        padding: 50px 0;
    }

    .subAgentPlan ul li h5 {
        font-size: 20px;
    }

    /* rewards */
    .rewardsTop {
        padding: 100px 30px;
        margin-bottom: 100px;
    }

    .rewardsTop h2 {
        font-size: 38px;
    }

    .rewardsTop p {
        font-size: 28px;
        line-height: 48px;
        margin: 80px 0 60px;
    }

    .rewardsTop p i {
        display: inline;
    }

    .rewardsTop a {
        font-size: 20px;
        width: 220px;
        line-height: 50px;
        margin: 0 10px;
    }

    .footer .ftCont {
        flex-direction: column;
    }

    .footer .footerInfo {
        align-items: flex-start;
        text-align: left;
    }

    .prodDetailWrap .prodDeBtm .prodDetail {
        width: 100%;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodMenu.fix {
        width: calc(100% - 30px);
        max-width: 100%;
        padding: 20px 0;
    }

    .subPlusSys {
        padding: 50px 50px;
        border-bottom: 1px solid #262626;
        height: auto;
    }

    .subPlusSys .plusCont dd {
        padding-left: 30px;
    }

    .subPlusSys .plusCont dl:nth-child(even) dd {
        padding-right: 30px;
    }
    .header.fix {
        padding: 0 4%;
    }
    .header .headTop .hdMenu {
        display: none;
    }
   .header .headTop {
        height: 60px;
   }
    .header .headTop .slide-menu-open {
        display: block;
    }

    .mobi-left-slide {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0px;
        left: -100%;
        bottom: 0;
        overflow: auto;
        overflow-x: hidden;
        min-width: 225px;
        width: 100%;
        font-size: 11px;
        background-color: #007293;
        transition: all 0.4s;
        padding: 0 40px;
    }
    .main.fix{
     padding: 60px 0px 0px;
    }
    .big-title-page {
        padding-top: 60px;
        padding-bottom: 0px;
    }
    .mobi-left-slide .slideTop {
        position: relative;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: end;
        /* margin-bottom: 30px; */
    }
    .slideBottom ul li{
        display: flex;
        justify-content: end;
        align-items: end;
        width: 100%;
        gap: 30px;
        height: 40px;
        flex-direction: row-reverse;
    }
    .slideBottom ul li a img{
        filter: brightness(0) invert(1);
    }
    .mobi-left-slide .slideTop ul {
        display: flex;
        gap: 30px;
    }

    .mobi-left-slide .slideTop ul a {
        color: #fff;
        font-size: 16px;
    }

    .mobi-left-slide .slideMenu>ul>li {
        /* margin-bottom: 30px; */
    }

    .mobi-left-slide .slideMenu>ul>li>a {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 16px 0px;
    }

    .mobi-left-slide .slideMenu>ul>li>ul a {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 10px;
        display: block;
    }

    .mainProd .mainProdSlide {
        width: 100%;
        padding: 0 40px;
    }

    .mainProd .mainProdSlide a {
        width: 100%;
    }

    .mainMidMovie dl dt {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -1px;
    }

    .mainSystem {
        height: 800px;
    }

    .mainSeven {
        height: 800px;
    }

    .mainSeven ul li h2 {
        font-size: 18px;
    }

    .mainTen {
        height: 900px;
    }

    .mainTen h2.mainTit {
        width: 66.66%;
        font-size: 40px;
        line-height: 50px;
    }

    .mainTen dl {
        width: 33.33%;
        padding: 0 20px;
    }

    .mainTen dl:nth-child(3),
    .mainTen dl:nth-child(7) {
        border-right: 1px solid rgba(200, 175, 129, 0.5);
    }

    .mainTen dl:nth-child(2),
    .mainTen dl:nth-child(5),
    .mainTen dl:nth-child(8),
    .mainTen dl:nth-child(11) {
        border-right: 0;
    }

    .mainTen dl dd h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .mainTen dl dd p {
        line-height: 21px;
    }

    .mainDirector {
        height: 800px;
        background-position: 50% 150%;
    }

    .mainStore {
        height: 800px;
    }

    .mainSeminar {
        height: 800px;
    }
    #page-heading ul.row.bg-headtitle {
        list-style: none;
        height: auto;
        justify-content: center;
        align-self: center;
        vertical-align: middle;
        align-items: center;
    }
    .office-search {
        padding: 0px 4%;
    }
}
/* mobile */
@media all and (max-width: 768px) {

    .top-right-menu .top-search,
    .top-right-menu .topLang {
        display: none;
    }

    .header {
        padding: 0 15px;
        border-bottom: 0;
    }

    .topHead {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }

    .headerWrap {
        height: 60px;


    }

    .header.fix {
        padding: 0 15px;
    }

    .topHead h1 {
        width: 120px;
        position: absolute;
        left: 50%;
        margin-left: -60px;
        top: 10px;
    }

    .topHead h1 img {
        width: 100%;
    }

    .headerWrap .gnb {
        display: none;
    }

    .mobiTggBtn {
        display: block;
        position: absolute;
        left: -4px;
        top: 10px;
    }

    .toggleBtn {
        top: 14px;
        transition: all 0s;
    }

    .toggleBtn.nav-opened {
        top: 17px;
    }

    .headerWrap .topAccount {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .headerWrap .topAccount li {
        margin-left: 0;
    }

    .headerWrap .topAccount li:not(:last-child) {
        width: 30px;
        overflow: hidden;
    }

    .headerWrap .topAccount li.topCart {
        width: 30px;
    }

    .headerWrap .topAccount li a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .headerWrap .topAccount li.topCart a {
        display: block;
    }

    .headerWrap .topAccount li svg {
        margin-left: -5px;
    }

    .items-mumber {
        display: flex;
        top: 3px !important;
        right: 0 !important;
        font-size: 10px;
        height: 18px !important;
        width: 18px !important;
        align-items: center;
        justify-content: center;
    }

    .header.fix .headerWrap {
        height: 60px;
        padding: 0;
    }

    .mobiTggMenu {
        display: block;
        position: fixed;
        top: 60px;
        left: -100%;
        width: calc(100%);
        background: #fff;
        height: 100vh;
        z-index: 999;
        text-align: right;
        box-sizing: border-box;
        overflow-y: auto;
        transition: all 0.4s;
        /* box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.2); */
    }

    .main-menu .ul-main-menu {
        display: none;
    }

    .ul-main-menu {
        display: block;
        align-items: center;
        text-align: center;
        height: fit-content;
        margin: 0 auto;
    }

    .mobiTggMenu .mobiTggClo {
        position: absolute;
        top: 15px;
        right: 5px;
        display: block;
        width: 40px;
        height: 40px;
        text-align: center;
    }

    .mobiTggMenu .gnbClone {
        border-top: 1px solid #eaeaea;
    }

    .mobiTggMenu li a {
        font-size: 13px;
    }

    .mobiTggMenu .topLang {
        border-bottom: 1px solid #eaeaea;
        position: relative;
    }

    .mobi-sub-item li.topLang:last-child {
        border-bottom: 0;
    }

    .mobiTggMenu .topLang>a {
        justify-content: space-between;
        align-items: center;
        line-height: 32px;
        padding: 0 10px;
    }

    .mobiTggMenu .topLang>a svg {
        width: 16px;
        height: 16px;
    }

    .mobiTggMenu .btn-open-sub {
        right: 0 !important;
    }

    .mobiTggMenu .btn-open-sub svg {
        width: 16px;
    }

    .mobiTggMenu .mobi-menu-item:not(.active) .mobi-sub-item {
        display: none;
    }

    .mobi-sub-item {
        background: #f6f6f6;
    }

    .mobi-sub-item li {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    .mobiTggMenu .mobi-menu-item .btn-open-sub.opened {
        transform: rotate(-135deg);
    }

    .mobiTggMenu .mobi-menu-item .btn-open-sub {
        transition: all ease-in-out .3s;
        transform: rotate(0deg);
    }

    .mobiTggMenu .topLang .topLangList {
        display: none;
        position: absolute;
        border: 1.5px solid #ddd;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        border-top: 0;
        padding: 28px 10px 10px;
        top: 32px;
        background: #fff;
        z-index: -1;
        width: 100%;
        border-radius: 5px;
    }

    .mobiTggMenu .topLang .topLangList a {
        display: block;
        line-height: 1.6;
    }

    .mobiTggMenu .accountClone {
        margin-top: 10px;
    }

    .mobiTggMenu .accountClone .topLang {
        border-bottom: 0;
    }

    .mobiTggMenu .accountClone svg {
        width: 20px;
    }

    .mobiTggMenu .accountClone .open-dropdown-select {
        padding: 0;
        right: 20px;
    }

    .mobiTggMenu .accountClone .open-dropdown-select a {
        margin-bottom: 5px;
    }

    .hdTopBanner a {
        flex-direction: column;
        height: auto;
        padding: 5px;
        font-size: 12px;
        line-height: 15px;
        gap: 0;
    }

    .mainVisual .mainVisTxt h2 {
        font-size: 24px;
    }

    .mainVisual .mainVisTxt p {
        font-size: 14px;
        line-height: 24px;
        margin: 30px 0;
    }

    .mainVisual .mainVisTxt a {
        font-size: 13px;
        width: 180px;
        line-height: 45px;
        border-radius: 22.5px;
    }

    .mainVisual .swiper-pagination {
        margin-top: 15px;
    }

    .mainVisual .swiper-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
    }

    .mainVisual .swiper-pagination {
        margin-bottom: 20px;
    }

    .mainProd .contain .bTit {
        text-align: left;
        font-size: 22px;
        margin-top: 0;
    }

    /* main contents */
    .contain {
        /* padding: 0 20px; */
        padding: 0 15px;
    }

    .mainRnd.bg-unrival .contain {
        flex-direction: column-reverse;
    }

    .bg-unrival {
        background-repeat: no-repeat;
        background-image: none;
        object-fit: cover;
        /* background-color: #f5f5f5; 
        background-image: url('../img/bg-unrival.jpg');
        background-size: cover; */
    }

    .wrap-happiness {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
    }

    .wrap-happiness dt {
        width: 80px !important;
    }

    .wrap-happiness dt img {
        width: 100% !important;
    }

    .wrap-happiness dd {
        width: calc(100% - 80px);
        padding-left: 15px;
        box-sizing: border-box;
    }

    .wrap-happiness .dt-tit {
        font-size: 20px;
    }

    .mainRnd .imgWrap img {
        width: 100%;
    }

    .tit-big {
        font-size: 24px;
        line-height: normal;
    }

    .txtWrap .row {
        margin: 0%;
        gap: 16px;
    }

    .sTit {
        font-size: 12px;
    }

    .bTit {
        font-size: 40px;
        font-weight: 600;
        margin: 15px 0 20px;
    }

    .mainBtn {
        font-size: 13px;
        width: 180px;
        line-height: 45px;
        border-radius: 22.5px;
        margin-top: 20px;
    }

    .sub-wrap-happy {
        width: 72%;
    }

    .mainTop {
        margin: 70px 0 100px;
    }

    .mainTop dl {
        flex-direction: column;
        margin-top: 30px;
    }

    .mainTop dl:first-child {
        margin-top: 0;
    }

    .mainTop dt {
        width: 100%;
    }

    .mainTop dd {
        width: 100%;
        padding-left: 0;
    }

    .mainRnd {
        padding: 40px 0 0;
    }

    .mainRnd .contain {
        flex-direction: column;
    }

    .mainRnd .imgWrap {
        height: calc(100vw - 40px);
        margin-top: 40px;
    }

    .mainRnd .txtWrap {
        padding-top: 0;
        padding-right: 0;
        display: block;
    }

    .mainRnd .tit-big {
        margin-bottom: 15px;
    }

    .mainRnd .txtWrap p {
        font-size: 13px;
        line-height: 20px;
        /* white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; */
        height: 80px;
    }

    .mainRnd .txtWrap p i {
        display: inline;
    }

    .mainRnd .btn-heart {
        margin-top: 0;
        min-width: initial;
        padding: 10px 30px;
        font-size: 14px;
    }

    .mainRnd .imgCont {
        width: 100%;
        max-width: 100%;
        padding-top: 100%;
        height: 0;
        position: relative;
    }

    .mainRnd .imgWrap img {
        width: calc(100% - 20px);
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 20px;
        left: 0;
    }

    .mainRnd .imgCont::after {
        width: 80%;
        height: 90%;
        right: 0;
        top: 0px;
    }

    .mainProd .category-list {
        margin-bottom: 10px;
    }

    .mainProd ul li.sub-category {
        margin-bottom: 0;
        font-size: 12px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .mainProd ul {
        gap: 10px;
    }

    .pdList .mainProd ul {
        gap: 10px;
    }

    .price-wrap.d-flex {
        flex-direction: column-reverse;
    }

    .pv-wrap.d-flex {
        justify-content: center;
    }

    .text-start.text-name {
        text-align: center !important;
    }

    .mainProd ul li {
        width: calc(50% - 5px);
        margin-bottom: 0px;
        box-sizing: border-box;
        padding: 10px;
    }

    .pdList .mainProd ul li {
        width: calc(50% - 5px);
        margin-bottom: 0px;
        box-sizing: border-box;
        padding: 10px;
    }

    .mainProd .imgWrap {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    span.mark-best,
    span.mark-new,
    span.mark-sale {
        font-size: 10px;
        height: 20px;
        line-height: 20px;
        border-radius: 3px;
        width: 40px;
    }

    span.mark-right {
        width: 18px;
        height: 19px;
    }

    .pdList {
        width: 100%;
        box-sizing: border-box;
    }

    .pdList::after {
        width: 100vw;
        left: 0;
        margin-left: 0;
    }

    /*.pdList .mainProd.prodList {
        padding: 0 15px;
    }*/

    .pdList .prodDetailWrap.contain {
        padding: 0;
    }

    .prodImg .prodThumb {
        padding: 15px 0 !important;
    }

    .mainProd ul li p {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .quantity-input {
        height: 34px !important;
        margin-top: 5px !important;
    }

    .quantity-input .cal-btn {
        height: 34px !important;
        padding: 0px;
        align-items: center;
        justify-content: center;
    }

    .quantity-input .value span {
        font-size: 12px !important;
    }

    .btn-add-card {
        height: 40px;
        font-weight: 14px;
    }

    .mainAgent {
        padding: 70px 0 80px;
    }

    .mainAgent .imgWrap {
        height: calc(100vw - 40px);
    }

    .mainAgent .txtWrap {
        padding-top: 30px;
    }

    .mainAgent .txtWrap p {
        font-size: 13px;
        line-height: 20px;
        /* white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; */
    }

    .mainBanner {
        padding: 80px 50px;
    }

    .mainBanner .bTit {
        line-height: 39px;
        margin: 0;
    }

    .mainRoad {
        margin: 60px 0;
    }

    .mainRoad .bTit {
        font-size: 22px;
    }

    .mainRoad .d-flex {
        margin-top: 20px;
        flex-direction: column;
        padding: 0 30px;
    }

    .mainRoad .d-flex dd {
        text-align: left;
    }

    .mainRoad .d-flex dd i {
        display: inline;
    }

    /* footer */
    .ftbanner .contain {
        justify-content: center
    }

    .footer .ftCont {
        flex-direction: column;
    }

    .footer h1 {
        margin-bottom: 0;
    }

    .footer .footerMenu dl {
        width: 50%;
    }

    .footer .footerMenu dl:last-child {
        width: 100%;
        margin-top: 10px;
    }

    .footer .footerMenu dt {
        margin-bottom: 10px;
    }

    .footer .footerMenu dd {
        font-size: 13px;
        line-height: 23px;
        letter-spacing: 0;
    }

    .footer .footerInfo .btmLogo {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .footer .footerInfo dt {
        margin-bottom: 10px;
    }

    .footer .footerInfo .btmLogo h1 {
        width: 80px;
        margin-bottom: 10px;
    }

    .footer .footerInfo .btmLogo h1 img {
        width: 100%;
    }

    .footer .footerInfo .infoLink {
        margin-top: 20px;
    }

    .footer .footerMenu {
        margin-top: 20px;
    }

    .footer .ftCopy {
        margin-top: 10px;
        padding: 20px 0;
        font-size: 12px;
    }

    .footer .footerInfo dd {
        font-size: 13px;
        line-height: 23px;
    }

    /* landing page */
    .landing .topHead {
        width: 100%;
    }

    .landing .mainVisual .swiper-wrapper {
        height: 500px;
    }

    .landing .mainVisual .mainVisTxt h2 {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .landing .mainVisual .mainVisTxt a,
    .landing .mainBtn {
        font-size: 16px;
        width: 250px;
        line-height: 50px;
    }

    .landing .mainBanner {
        padding: 80px 20px;
    }

    .landing .mainBanner .bTit {
        font-size: 22px;
        line-height: 30px;
    }

    .landing .gnbClone {
        display: none;
    }

    .landing .accountClone .topLang {
        border-top: 0;
    }

    .gnbClone {
        display: block;
    }

    /* sign up */
    .signUpTop {
        padding: 50px 0;
    }

    .signUpTop h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .signUpTop p {
        font-size: 16px;
        line-height: 26px;
    }

    .subSignUp dl,
    .subSignUp dl:first-child {
        padding: 30px 0;
    }

    .subSignUp dt {
        font-size: 28px;
    }

    .subSignUp ul {
        padding-left: 20px;
        margin: 0px 0 20px;
    }

    .subSignUp li {
        font-size: 16px;
        line-height: 26px;
    }

    .subSignUp a {
        height: 50px;
        border-radius: 25px;
    }

    .subSignUp a img {
        width: 20px;
    }

    .subSignUp a p {
        font-size: 16px;
        width: 157px;
        margin-left: 10px;
    }

    /* subContent*/
    .sub-top-url {
        display: none !important;
    }

    .bg-after-direction {
        height: 140px;
    }

    .subVisual {
        height: 120px;
    }

    .subVisual h2 {
        font-size: 28px;
    }

    .subMenu {
        margin-top: 20px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .subMenu .snb {
        width: 100%;
        order: 2;
        flex-wrap: wrap;
    }

    .subMenu .snb li {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .subMenu .snb a {
        font-size: 14px;
    }

    .subMenu .snb a.active::after {
        height: 3px;
    }

    .subMenu .shopMenu {
        width: 100%;
        order: 1;
        justify-content: flex-end
    }

    .subMenu .shopMenu li {
        margin-left: 20px;
    }

    .subMenu .shopMenu a {
        font-size: 14px;
    }

    .subMenu .shopMenu a.cartBtn span {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 10px;
    }

    .subCont {
        padding: 0 20px;
        margin: 30px auto 60px;
    }

    .subCont .subTit {
        font-size: 28px;
        margin-bottom: 20px;
    }

    /* brand story */
    .subStory .imgWrap img {
        margin-bottom: 20px;
    }

    .subStory p {
        font-size: 14px;
    }

    .subStoryRnD .imgWrap img {
        margin-bottom: 20px;
    }

    .subStoryRnD dl {
        margin-bottom: 20px;
    }

    .subStoryRnD dt,
    .subStoryRnD dd {
        font-size: 14px;
    }

    .subStoryRnD dd:nth-child(3) {
        margin-top: 30px;
    }

    /* Business */
    .subOur .imgWrap img {
        margin-bottom: 20px;
    }

    .subOur p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Become An agent */
    .subAgentJoin .topImg {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    .subAgentJoin .topImg h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .subAgentJoin .topImg p {
        font-size: 14px;
    }

    .subAgentJoin p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .subAgentJoin dl {
        margin-top: 40px;
    }

    .subAgentJoin dt {
        font-size: 22px;
    }

    .subAgentJoin dd {
        font-size: 14px;
    }

    .subAgentJoin dd li {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .subAgentJoin dd li div {
        width: 100%;
    }

    .subAgentJoin dd li .txtWrap {
        padding: 20px 0 0;
    }

    .subAgentJoin dd li .txtWrap h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .subAgentJoin dd li .txtWrap p {
        font-size: 14px;
        margin-top: 10px;
    }

    .subAgentJoin dd li .txtWrap a {
        margin: 30px auto 0;
        font-size: 14px;
        border-radius: 5px;
    }

    .subAgentJoin dd li:nth-child(2) .txtWrap {
        order: 2;
        padding-left: 0;
        padding-right: 0;
    }

    .subAgentJoin dd li:nth-child(2) .imgWrap {
        order: 1;
    }

    /* rank guide */
    .subAgentRank dl {
        margin-bottom: 50px;
    }

    .subAgentRank dt {
        width: 100%;
        margin-bottom: 10px;
    }

    .subAgentRank dd p {
        font-size: 14px;
        margin-top: 10px;
    }

    .subAgentRank h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .subAgentRank h3+p {
        font-size: 14px;
    }

    .subAgentRank p {
        font-size: 14px;
        margin-top: 10px;
    }

    .subAgentRank ul {
        margin: 40px 0 20px;
        gap: 5px;
    }

    .subAgentRank li {
        font-size: 14px;
        width: calc(37% - 7px);
        margin-left: 5px;
        font-weight: 600;
    }

    /* COMPENSATION PLAN */
    .subAgentPlan p {
        font-size: 14px;
    }

    .subAgentPlan h3 {
        font-size: 24px;
        margin: 50px 0 30px;
    }

    .subAgentPlan a {
        font-size: 15px;
        font-weight: 600;
        height: 50px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .subAgentPlan ul {
        margin-top: 50px;
        padding: 30px 0;
    }

    .subAgentPlan ul li {
        padding: 20px 0;
        width: 100%;
        justify-content: normal;
    }

    .subAgentPlan ul li h5 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .subAgentPlan ul li span {
        font-size: 14px;
    }

    .subAgentPlan ul li:nth-child(odd) {
        padding-right: 0px;
    }

    .subAgentPlan ul li:nth-child(even) {
        padding-left: 0px;
    }

    /* rewards */
    .rewardsTop {
        padding: 50px 20px;
        margin-bottom: 50px;
    }

    .rewardsTop h2 {
        font-size: 24px;
    }

    .rewardsTop p {
        font-size: 18px;
        margin: 30px 0 20px;
        line-height: 1.5;
    }

    .rewardsTop div {
        display: flex;
    }

    .rewardsTop a {
        width: 50%;
        line-height: 40px;
        font-size: 16px;
    }

    .subRewards p {
        margin-top: 10px;
        font-size: 14px;
    }

    .subRewards h2 {
        margin-top: 30px;
        font-size: 16px;
    }

    .subRewards ul {
        padding-left: 20px;
    }

    .subRewards ul li {
        font-size: 16px;
    }

    .subRewards a {
        margin: 30px auto 60px;
        line-height: 40px;
        font-size: 16px;
        font-weight: 600;
    }

    .subRewards2 li {
        width: 100%;
        margin-top: 30px;
    }

    .subRewards2 li:nth-child(2) {
        margin-top: 30px;
    }

    .subRewards2 li p {
        font-size: 20px;
    }

    .subRewards2 h2 {
        margin: 50px 0 30px;
        font-size: 24px;
    }

    .subRewards2 dl {
        padding-left: 30px;
        margin-top: 30px;
    }

    .subRewards2 dt {
        font-size: 18px;
    }

    .subRewards2 dd {
        font-size: 14px;
    }

    .drec-w3h1 {
        display: none !important;
    }

    .tit-w3h1 {
        display: block;
        height: 50px;
        align-content: center;
        border-bottom: 1px solid #EAEAEA;
    }

    .tit-w3h1 h2 {
        font-size: 20px;
        color: #007293;
        font-weight: 600;
        margin-left: 15px !important;

    }

    .wrap-history {
        padding: 1px 15px;
        margin-top: 50px;
        background-size: auto 100%;
        background-position: 60% 50%;

    }

    .wrap-history .contain {
        padding: 0px;
    }

    .wrap-iam-group {
        padding-bottom: 20px;
    }

    .h1-who3 {
        margin-top: 50px;
        font-size: 23px;
        margin-bottom: 15px;
    }

    .h1-who,
    .h1-how,
    .h1-what {
        font-size: 23px;
        line-height: 28px;
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .h1-who i {
        display: block;
    }

    .history-1400 {
        display: none;
    }

    .history-700 {
        display: block;
        width: initial;
        max-width: 100%;
    }

    .contain-3w1h {
        padding: 0 15px;
    }

    .contain-3w1h .text-top {
        margin-bottom: 50px;
        font-size: 14px;
        line-height: 24px;
        word-break: keep-all;
        padding: 0 30px;
    }

    .contain-3w1h .text-top i {
        display: inline;
    }

    .who-iam {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        background-color: #FCF6FA;
        position: relative;
        flex-direction: column;
    }

    .img-logo-who-iam {
        height: 60px;
        width: auto;
        margin: 0 auto 20px;
    }

    .who-iam>div.row {
        width: 100%;
    }

    .who-iam p {
        line-height: 24px;
        font-size: 14px;
        text-align: center;
        padding: 0 30px;
        word-break: keep-all;
    }

    .h1-who2 {
        font-size: 23px;
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .font-middle {
        font-size: 14px;
        word-break: keep-all;
        padding: 0 30px;
    }

    .whoIcon {
        margin-top: 20px;
        gap: 20px;
    }

    .whoIcon>div {
        width: calc(50% - 10px);
        border-radius: 12px;
        padding: 20px 10px;
    }

    .whoIcon>div img {
        width: 60px;
        margin-top: 0 !important;
    }

    .img-how-circle {
        margin: 20px 0 50px;
    }

    .howCore dt img {
        width: 50%;
        margin: 0 auto;
    }

    .howCore dd {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .howCore dd>div {
        width: calc(50% - 10px);
    }

    .howCore dd img {
        width: 60%;
        margin: 0 auto;
    }

    .howCore dd h2 {
        color: #007293;
        font-weight: 600;
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .howCore dd p {
        font-size: 14px;
        word-break: keep-all;
    }

    .h1-how2 {
        font-size: 23px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .whatBrand {
        flex-direction: column;
        border-bottom: 1px solid #007293;
        padding-bottom: 50px;
        margin-top: 50px;
    }

    .whatBrand.bb-0 {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .brandGuideR.mbWide {
        display: flex;
    }

    .brandGuideR.mbWide .d-flex {
        display: block !important;
    }

    .brandGuideR.mbWide>div:nth-child(2) {
        width: 70%;
    }

    .brandGuideR.mbWide>div:nth-child(2) img {
        margin-top: 15px;
    }

    .brandGuideR.mbWide>div:nth-child(4) {
        width: 30%;
    }

    .brandGuideR.mbWide img {
        width: 100%;
    }

    .brandGuideR .d-flex p {
        position: unset;
        font-size: 12px;
        text-align: left;
    }

    .brandGuideR.mbWide>div:nth-child(4) p {
        text-align: center;
    }

    .brandGuideR {
        width: 100%;
        order: 1;
    }

    .brandGuideL {
        width: 100%;
        order: 2;
        text-align: center;
    }

    .border-2 {
        display: none;
    }

    .brandGuideR .d-flex {
        min-height: auto;
    }

    .brandGuideR .logo01 {
        width: 60%;
    }

    .what-h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .brandGuideL p {
        padding-left: 20px;
    }

    .what-btns {
        margin-top: 30px;
        margin-bottom: 50px;
        gap: 10px;
    }

    .what-btn {
        width: calc(50% - 5px);
        height: 40px !important;
        font-size: 12px;
        letter-spacing: -0.5px;
        border-radius: 5px;
    }

    .whatAwrad {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 50px;
    }

    .whatAwrad>div {
        width: calc(50% - 5px);
        flex: none;
        padding: 20px 0;
        border-radius: 12px;
    }

    .whatAwrad .imgWrap {
        height: 120px;
    }

    .whatAwrad .imgWrap img {
        height: 100%;
    }

    .h1-what {
        margin-bottom: 15px !important;
    }

    .whatCert {
        gap: 10px;
        margin-bottom: 50px;
    }

    .whatCert>div {
        width: calc(50% - 5px);
    }

    .whyTop {
        margin: 50px auto !important;
    }

    .whyTop .row {
        margin-bottom: 20px;
    }

    .whyTop p {
        font-size: 14px;
        line-height: 24px;
    }

    .why-philo {
        padding: 50px 15px;
    }

    .why-philo .imgWrap::after {
        display: none;
    }

    .why-philo .history-700 {
        display: block;
    }

    .why-philo .history-1400 {
        display: none;
    }

    .why-philo p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 24px;
    }

    .why-gfcos {
        padding: 100px 15px 80px;
        background-position: 15% 0%;
    }

    .why-gfcos h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .why-gfcos img {
        width: 150px;
    }

    .why-gfcos p {
        margin-top: 30px;
        font-size: 14px;
        line-height: 24px;
        word-break: keep-all;
    }

    .why-gfcos p i {
        display: inline;
    }

    .why-gfList {
        padding: 50px 15px;
    }

    .why-gfList dl {
        flex-direction: column;
        width: 100%;
        margin-bottom: 50px;
    }

    .why-gfList dl::after {
        display: none;
    }

    .why-gfList dd {
        width: 100%;
        order: 1;
        position: relative;
    }

    .why-gfList dl:nth-child(odd) dd {
        padding-left: 80px;
    }

    .why-gfList dl:nth-child(odd) dd::after {
        content: "";
        display: block;
        width: 50%;
        height: 2px;
        background: #007293;
        position: absolute;
        left: 0;
        bottom: 0;
        margin-left: -15px;
        z-index: -1;
    }

    .why-gfList dl:nth-child(even) dd {
        padding-right: 80px;
    }

    .why-gfList dl:nth-child(even) dd::after {
        content: "";
        display: block;
        width: 50%;
        height: 2px;
        background: #007293;
        position: absolute;
        right: 0;
        bottom: 0;
        margin-right: -15px;
        z-index: -1;
    }

    .why-gfList dt {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .why-gfList h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .why-gfList p {
        font-size: 14px;
        line-height: 24px;
    }

    .why-gfList p i {
        display: inline;
    }

    .why-gfTech {
        padding: 50px 0;
    }

    .why-gfTech h2 {
        display: none;
    }

    .why-gfTech h3 {
        font-size: 16px;
    }

    .why-gfTech h3 b {
        font-size: 23px;
    }

    .why-gfTech .imgWrap {
        margin: 15px auto 20px;
    }

    .why-gfTech .imgWrap img {
        width: 100%;
    }

    .why-gfTech h5 {
        font-size: 15px;
        line-height: 25px;
    }

    .why-gfTech p {
        font-size: 14px;
        line-height: 24px;
    }

    .why-gfTech span {
        font-size: 12px;
        margin-top: 5px;
        line-height: 1.2;
    }

    .why-gfTech h5 i,
    .why-gfTech p i {
        display: inline;
    }

    .title-who-business {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

    .wrap-founder {
        margin-top: 50px;
    }

    .infor-founder>div:first-child {
        padding-left: 0;
    }

    .wrap-founder .contain .infor-founder {
        display: table;
        padding-top: 0px !important;
        position: relative;
    }

    .h1-founder {
        color: #3E3A39;
        font-size: 18px;
        line-height: 36px;
        font-weight: 500;
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .p-founder {
        padding: 0;
        line-height: 24px;
        padding-right: 30px;
    }

    .p-founder i {
        display: inline;
        word-break: keep-all;
    }

    .founderSign {
        margin-top: 0;
        font-size: 14px;
        position: absolute;
        bottom: 50px;
        left: 0;
    }

    .founderSign b,
    .founderSign i {
        display: block;
    }

    .signature {
        position: absolute;
        bottom: 130px;
        left: 0;
        height: 40px;
        padding: 0;
    }

    .signature img {
        height: 100%;
        margin: 0 !important;
    }

    .img-founder {
        height: 270px;
        overflow: hidden;
    }

    .wrap-founder .img-founder img {
        margin-right: -30%;
    }

    .business-who {
        border-radius: 24px;
        height: 290px;
        padding: 5%;
        justify-content: center;
    }

    .big-title-page {
        padding: 26px 2% 24px;
        display: flex;
        font-size: 20px;
        height: 50px;
        border-bottom: 1px solid #EAEAEA;
        align-items: center;
        justify-content: center;
    }

    #main-nav .row.main-menu {
        flex-direction: column;
        position: absolute;
        top: 90px;
        width: 100%;
        z-index: 109;
        background: #fff;
        display: none;
    }

    #main-nav .row.main-menu li {
        height: 40px;
        width: 100%;
        border-bottom: 1px solid #b4b4b4;
        justify-content: center;
    }

    #main-nav .row.main-menu li a {
        font-size: 14px !important;
        color: #666 !important;
    }

    .mbShopMenu {
        display: flex;
        background: #eee;
        position: relative;
        border-top: 1px solid #b4b4b4;
        border-bottom: 1px solid #b4b4b4;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .mbShopMenu svg {
        position: absolute;
        top: 50%;
        width: 12px;
        margin-top: -6px;
        right: 10px;
    }

    .pagination .per-page .label span {
        font-size: 14px !important;
    }

    .pdList>* {
        display: flex;
        flex-direction: column;
    }

    .mainProd.prodList {
        order: 1;
    }

    .pdList>*>*:first-child {
        order: 2;
    }

    .mainProd.prodList+* {
        order: 3;
    }

    .product-category .pagination:not(.only-page) {
        margin-bottom: 0;
    }

    /* #page-heading {
        display: none;
    } */

    /* #page-heading ul {
        padding: 10px 0px 0;
    } */

    #page-heading ul li {
        text-align: center;
        margin: 5px 5px;
        height: 30px;
    }

    .prodDetailWrap {
        margin-top: 0px;
    }

    .prodDetailWrap .prodDeTop {
        padding-bottom: 20px;
    }

    .prodDetailWrap .prodDeTop .prodImg .prodThumb {
        padding: 15px 0;
    }

    .prodDetailWrap .prodDeTop .prodRate {
        display: none;
    }

    .prodDetailWrap .prodDeTop .prodRight {
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }

    .prodDetailWrap .prodDeTop .prodTit h2 {
        font-size: 22px;
    }

    .prodDetailWrap .prodDeTop .prodTit .prodCate {
        font-size: 13px;
    }

    .prodDetailWrap .prodDeTop .prodTit .prodTxt {
        font-size: 14px;
    }

    .prodDetailWrap .prodDeTop .prodInfo {
        margin-top: 5px;
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .prodDetailWrap .prodDeTop .prodInfo .discount,
    .prodDetailWrap .prodDeTop .prodInfo .price {
        font-size: 20px !important;
    }

    .prodDetailWrap .prodDeTop .prodInfo dl {
        margin-bottom: 10px;
    }

    .prodDetailWrap .prodDeTop .prodInfo dl dt {
        width: 120px;
    }

    .prodDetailWrap .prodDeTop .prodInfo dl.memberPrice dd {
        font-size: 24px;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli {
        padding: 40px 0 0;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli dl dt {
        width: 100px;
        word-break: keep-all;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodDeDeli dl dd {
        width: calc(100% - 100px);
    }

    .prodDetailWrap .prodDeTop .prodOption {
        padding: 15px;
        max-height: 220px;
        overflow-y: auto;
    }

    .prodDetailWrap .prodDeTop .prodOption .optionCont {
        padding: 15px 0;
    }

    .prodDetailWrap .prodDeTop .prodTotal {
        margin: 8px 0px 20px;
        font-size: 16px;
    }

    .prodDetailWrap .prodDeTop .prodTotal .price {
        font-size: 18px;
    }

    .prodDetailWrap .prodDeTop .mobiWrap {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0px;
        padding: 15px;
        z-index: 990;
        background: #fff;
        border-top: 1px solid #ddd;
        transition: all 0.3s;
    }

    .prodDetailWrap .prodDeTop .mobiWrap a.mobiProdHide {
        display: block;
        position: absolute;
        top: -20px;
        width: 40px;
        height: 40px;
        left: 50%;
        margin-left: -20px;
        background: #fff;
        border-radius: 50%;
        text-align: center;
    }

    .prodDetailWrap .prodDeTop .mobiWrap a.mobiProdHide svg {
        margin-top: 5px;
    }

    .prodDetailWrap .prodDeTop .mobiWrap a.mobiProdHide:after {
        content: "";
        width: 42px;
        height: 20px;
        border-radius: 20px 20px 0 0;
        background: #ddd;
        position: absolute;
        top: -1px;
        left: 50%;
        margin-left: -21px;
        z-index: -1;
    }

    .prodDetailWrap .prodDeTop .ProdBtns .addWish {
        width: 50px;
        height: 50px;
    }

    .prodDetailWrap .prodDeTop .ProdBtns .addWish svg {
        width: 26px;
    }

    .prodDetailWrap .prodDeTop .ProdBtns ul {
        width: calc(100% - 55px);
        margin-left: 5px;
    }

    .prodDetailWrap .prodDeTop .ProdBtns ul li a {
        line-height: 48px;
        font-size: 16px;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 91;
        background: #fff;
        width: 100%;
        padding: 10px 15px 15px;
        font-size: 0;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns .addWish {
        display: inline-block;
        width: 50px;
        height: 50px;
        border: 1px solid #007293;
        border-radius: 3px;
        text-align: center;
        vertical-align: bottom;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns .addWish svg {
        width: 26px;
        margin-top: 13px;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns .addWish svg .cls-1 {
        stroke: #007293;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns .addWish svg .cls-t {
        fill: #007293;
    }

    .prodDetailWrap .prodDeTop .mobiProdBtns .optionOpen {
        display: inline-block;
        width: calc(100% - 55px);
        margin-left: 5px;
        border: 1px solid #007293;
        border-radius: 3px;
        text-align: center;
        line-height: 48px;
        font-size: 16px;
        color: #fff;
        background: #007293;
    }

    .prodDetailWrap .prodDeBtm {
        padding-top: 20px;
    }

    .prodDetailWrap .prodDeBtm .prodDetail .prodMenu a {
        line-height: 40px;
        font-size: 14px;
    }

    .subTit {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .subPlusSys {
        padding: 30px 0;
    }

    .subPlusSys .subTit {
        padding: 0 50px;
        word-break: keep-all;
        line-height: 1.3;
    }

    .subPlusSys .plusCont dl {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .subPlusSys .plusCont dt {
        width: 100%;
    }

    .subPlusSys .plusCont dd {
        width: 100%;
        font-size: 14px;
        padding-left: 0;
        padding-top: 20px;
    }

    .subPlusSys .plusCont dd i {
        display: inline;
    }

    .subPlusSys .plusCont dl:nth-child(even) dt {
        order: 1;
    }

    .subPlusSys .plusCont dl:nth-child(even) dd {
        order: 2;
    }

    .subPlusSys .plusCont dl:last-child {
        margin-bottom: 0;
    }
    .office-search {
        padding: 0px 15px;
    }

}

@media all and (max-width: 700) {
    .sub-wrap-happy {
        width: 90%;
    }

    .mobile-who-future {
        padding: 0% 10%;
    }
}

@media all and (max-width: 576px) {
    .prodDetailWrap .prodDeTop .prodTotal {
        margin: 0px 0px 8px 0px !important;
        font-size: 16px;
    }

    .prodDetailWrap .prodDeTop .prodBtns .addWish {
        width: 40px;
        height: 40px;
    }

    .prodDetailWrap .prodDeTop .prodBtns .addWish svg {
        width: 30px;
        margin: 6px 0px;
    }

    .prodDetailWrap .prodDeTop .prodBtns ul li a {
        line-height: 38px;
    }

    .prodDetailWrap .prodDeTop .prodBtns ul {
        width: calc(100% - 50px);
    }

    .tit-w3h1 h2 {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media all and (max-width: 425px) {
    .mainRnd .txtWrap p {
        height: 120px;
    }

    .footer .footerMenu dl {
        width: 50%;
    }

    .tit-big {
        font-size: 24px;
        line-height: normal;
    }

    .bTit {
        font-size: 22px;
    }

    .sub-wrap-happy {
        width: 100%;
    }

    .mobile-who-future {
        padding: 0% 5%;
    }
}

/************************************ 
    tech 2024.11.12
*************************************/
.techContWrap {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding-top: 65px; */
    overflow: scroll;
    scrollbar-width: none;
}

.techContWrap::-webkit-scrollbar {
    display: none;
}

.techContWrap .swiper-container-h {
    width: 100%;
    height: 100%;
}

.techContWrap .techTop {
    display: flex;
    width: 100%;
    height: 100%;
}

.techContWrap .techTop dt {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 10%;
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.6s;
    will-change: transform;
}

.techContWrap .techTop dt h3 {
    font-size: 60px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.techContWrap .techTop dt h3 span {
    color: aaa;
    font-size: 24px;
    font-weight: 400;
    padding-left: 20px;
}

.techContWrap .techTop dt p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.techContWrap .techTop dt p i {
    display: block;
}

.techContWrap .techTop dd {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    opacity: 0;
    transform: translateX(40px);
    transition: 0.7s 0.7s;
    will-change: transform;
}

.techContWrap .techTop dd img {
    max-width: 100%;
    max-height: 100%;
}

.techContWrap .txtBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    color: #fff;
}

.techContWrap .txtBox p {
    font-size: 40px;
    line-height: 1.5;
    text-align: center;
    opacity: 0;
    transform: translateY(-100px);
    transition: 1.3s;
    will-change: transform;
    word-break: keep-all;
}

.techContWrap .txtBox p .big {
    display: block;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 60px;
}

.techContWrap .tech_auto05 .txtBox {
    height: calc(100% - 100px);
}

.techContWrap .txtBox p i {
    display: block;
}

.techContWrap .techBtn {
    display: block;
    margin: 0 auto;
    line-height: 50px;
    border: 1px solid #fff;
    color: #fff;
    width: 130px;
    text-align: center;
    padding: 0 30px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(100px);
    transition: 1.3s;
    will-change: transform;
}

.techContWrap .swiper-slide-active dt,
.techContWrap .swiper-slide-active dd,
.techContWrap .swiper-slide-active .txtBox p,
.techContWrap .swiper-slide-active .techBtn {
    opacity: 1;
    transform: translateY(0);
}

.techContWrap .tech_auto01 {
    background: url(../img/tech_auto01.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_auto02 {
    background: url(../img/tech_auto02.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_auto03 {
    background: url(../img/tech_auto03.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_auto04 {
    background: url(../img/tech_auto04.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_auto05 {
    padding-bottom: 200px;
    background: #000 url(../img/tech_logo.png) no-repeat 50%;
    background-attachment: fixed;
}

.techContWrap .tech_auto05 b {
    background: -webkit-linear-gradient(45deg, #d8ad55, #f9e7bd, #d8ad55 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.techContWrap .tech_nano01 {
    background: url(../img/tech_nano01.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_nano02 {
    background: url(../img/tech_nano02.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_nano03 {
    background: url(../img/tech_nano03.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_nano04 {
    background: url(../img/tech_nano04.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_ai01 {
    background: url(../img/tech_ai01.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_ai02 {
    background: url(../img/tech_ai02.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_ai03 {
    background: url(../img/tech_ai03.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_ai04 {
    background: url(../img/tech_ai04.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_bio01 {
    background: url(../img/tech_bio01.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_bio02 {
    background: url(../img/tech_bio02.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_bio03 {
    background: url(../img/tech_bio03.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_bio04 {
    background: url(../img/tech_bio04.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_edu01 {
    background: url(../img/tech_edu01.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_edu02 {
    background: url(../img/tech_edu02.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_edu03 {
    background: url(../img/tech_edu03.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .tech_edu04 {
    background: url(../img/tech_edu04.jpg) no-repeat 50%;
    background-size: cover;
}

.techContWrap .swiper-slide.footer {
    height: 480px;
    position: relative;
    border-top: 1px solid #333;
}

.techContWrap .swiper-slide.footer {
    height: 480px;
    position: relative;
    border-top: 1px solid #333;
}

.techContWrap .goTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
    text-align: center;
}

.techContWrap .goTop svg {
    margin-top: 10px;
}
/* .hp-biovesta{
    display: block;
} */

@media all and (max-width: 767px) {
    .techContWrap{
        overflow-x: hidden;
    }
    .techContWrap .techTop {
        flex-direction: column;
    }

    .techContWrap .techTop dt {
        width: 100%;
        order: 2;
    }

    .techContWrap .techTop dt h3 {
        font-size: 32px;
    }

    .techContWrap .techTop dt h3 span {
        font-size: 18px;
        padding-left: 10px;
    }

    .techContWrap .techTop dt p {
        font-size: 14px;
        line-height: 1.5;
    }

    .techContWrap .techTop dt p i {
        display: inline;
    }

    .techContWrap .techTop dd {
        width: 100%;
        order: 1;
        max-height: 60%;
        padding: 0;
    }

    .techContWrap .techTop dd img {
        max-height: calc(100% - 60px);
    }

    .techContWrap .txtBox {
        padding: 0 30px;
    }

    .techContWrap .txtBox p {
        font-size: 20px;
    }

    .techContWrap .txtBox p i {
        display: inline;
    }

    .techContWrap .txtBox p .big {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .techContWrap .techBtn {
        line-height: 40px;
        font-size: 14px;
        width: 120px;
    }

    .techContWrap .swiper-slide.footer {
        height: 460px;
    }

    .techContWrap .tech_auto05 {
        background-size: 100px;
        background-position-y: 55%;
    }

    .techContWrap .goTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .techContWrap .goTop svg {
        width: 24px;
        margin-top: 4px;
    }
    .office-result.container {
        padding: 40px 15px;
    }
}