
/*SECTION1*/
.section1 {
    background-image: url(../imgs/background_img1.jpg);
    background-repeat: repeat-y;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 0 5%;
}

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.logo {
    width: 300px;
    height: auto;
}

.main_menu {
    color: var(--color-default);
    font-family: var(--font-oswald_m);
    font-weight: normal;
    z-index: 2;
}

.main_menu li {
    display: inline-block;
    transition: 0.3s;
}

.main_menu li a {
    padding: 1.5em 1.7em;
    font-size: 1em;
    font-family: var(--font-oswald_m);
    font-weight: 200;
    text-transform: uppercase;
}

.main_menu li a:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
}

.main_menu li.language_icon:hover {
    background: transparent;
    border: none;
}

.main_menu .language_icon {
    position: relative;
}

.main_menu .language_icon img {
    width: 23px;
    height: 23px;
    vertical-align: bottom;
}

.main_menu .language_icon:hover .menu_language {
    display: block;
}

.menu_language {
    display: none;
    position: absolute;
    left: -25px;
}

.menu_language button {
    padding: 11px 30px;
    font-size: 1.1em;
    color: #fff;
    font-family: var(--font-oswald_m);
    font-weight: 200;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px solid #fff;
    border: 1px solid transparent;
    transition: 0.3s;
    background-color: transparent;
}

.menu_language button:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid #fff;
}

.ben_slogan {
    position: absolute;
    min-width: 65%;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    padding: 3% 0 0;
    z-index: 2;
}

.ben_slogan hr {
    background: #fff;
    border: 1px solid;
}

.ben_slogan h1 {
    color: var(--ben-color2);
    padding: 4% 0 0;
}

.ben_slogan h1::first-letter {
    font-size: 1.3em;
}

.ben_slogan h4 {
    padding-top: 1rem;
    font-weight: 400;
    font-family: var(--font-jetbrain_m);
}

.hand_icon {
    position: absolute;
    content: "";
    width: 44%;
    bottom: -132px;
    right: -68px;
    z-index: 1;
}


/* button down */
.arrow-container {
    width: 100px;
    height: 50px;
    margin: 0 auto;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
}

.arrow-container a {
    padding-top: 60px;
}

.arrow-container a p {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

.arrow-container a p::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.arrow-2:hover {
    cursor: pointer;
    opacity: 0.3;
}

/*SECTION 2*/
.section2 {
    background-image: url(../imgs/background_img1.jpg);
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-color: #EE8BCD;
    position: relative;
    overflow: hidden;
}

.ben_about {
    display: grid;
    grid-template-columns: 43% 52%;
    gap: 5%;
    position: relative;
    align-items:stretch;
}
.ben_about-left {padding: 6% 5% 5% 10%}
.ben_about-left img {width: 100%}
.ben_about-right { padding: 3% 10% 3% 10%;
    background: #EB85C9;
    display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    justify-self: center;
    align-items: center;}

.ben_about-right-des {
    font-family: var(--font-oswald_m);
    font-size: 1.6em;
    font-weight: 600;
    position: relative;
    padding: 1rem 0 1rem 0;
}

.ben_about-right-des:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background-image: url(../imgs/border-icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.ben_about-right-title {
    text-transform: uppercase;
    color: var(--ben-color4);
    padding: 1rem 0 0;
}


/* SECTION 5 Footer*/
.section5 {
    background-image: url(../imgs/background_img1.jpg);
    background-repeat: repeat-y;
    background-attachment: fixed;
    padding: 5% 5% 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.ben-contact {
    border-top: 1px solid var(--color-default);
    padding: 2% 0;
    display: grid;
    grid-template-columns: 50% 50%;
}

.ben-contact p {
    font-size: 0.9em;
    padding-top: 15px;
}

.ben-contact p>span {
    text-transform: uppercase;
    font-size: 1em
}

h5.footer_logo {
    font-size: 23vw;
    text-transform: uppercase;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
/* h5.footer_logo:after {
    position: absolute;
    content: "Benstory";
    top: 0;
    left: 0;
    transform-origin: bottom;
    transform: rotateX(180deg);
    line-height: 1.1em;
    background:linear-gradient(0deg, #fff 0, transparent 80%);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.5;
} */

.ben_product-book-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

.ben_product-book-view.active {
    opacity: 1;
    pointer-events: all;
}

.ben_product-book-view .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 45px;
    font-weight: 600;
    color: #FFF;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1000;
}


.mobile_menu {
    display: none;
}

/* Screen Responsive */
@media screen and (max-width: 1200px) {
    .main_menu li {
        padding: 1.3em 1.2em;
    }

    .menu_language button {
        padding: .5em 1.2em;
    }

    .logo {
        width: calc(300px - 15%);
    }

    .hand_icon {
        width: 56%;
        height: auto;
        bottom: -5px;
    }

    .arrow-container {
        height: 50px;
    }
}

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

    .main_menu li {
        padding: 1em 0.9em;
        font-size: 0.95em;
    }

    .menu_language button {
        padding: .5em 0.9em;
    }

    .hand_icon {
        width: 65%;
        height: auto;
    }

    .ben_slogan {
        padding: 2% 0 0;
    }

    .ben_slogan h1::first-letter {
        font-size: 1.1em;
    }

    .ben_about {
        display: block;
    }

    footer h1 {
        font-size: 20vw;
    }
}

@media screen and (max-width: 768px) {
    .section2{
        height: auto;
    }
    .section5 {
        padding: 12% 5% 0;
        height: auto;
    }
    .main_menu li {
        padding: 0.9em 0.9em;
        font-size: 0.8em;
    }

    .menu_language button {
        padding: 0.5em 0.9em;
    }

    footer h1 {
        font-size: 18vw;
    }
}

/* iphone, mobile portrait */
@media screen and (max-width: 460px) {

    /* header */
    .section1 {
        height: 70vh
    }

    .ben_slogan {
        top: 20%;
        transform: translateY(0);
    }

    .main_header.pc {
        display: none
    }

    .main_header.mobile {
        height: 80px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    /* .main_header.mobile .logo {
        width: 60%
    } */

    .main_header.mobile .menu_language {
        width: 40%;
        display: block;
        position: inherit;
        text-align: right;
    }

    .main_header.mobile .menu_language button {
        padding: 11px 5px;
        display: inline-block;
        font-size: 1em;
        font-weight: 400;
    }

    .ben_slogan h1 {
        padding: 10% 0 0;
    }

    .main_header.mobile .arrow-container {
        display: none;
    }

    /* About */
    .ben_about,
    .ben_product .ben_product-detl {
        display: block !important
    }

    .ben_about .ben_about-left,
    .ben_about .ben_about-right {
        width: 100%;
        padding: 20% 5%;
    }

    .ben_about .ben_about-right-des {
        margin: 1em 0 0;
        padding: 2rem 0 1rem 0;
    }
    .ourservice_mobile-img {padding: 5% 5% 15%}

    /* footer */

    .section5 {
        height: 450px
    }
    .ben-contact p{font-size: 0.8em;padding-top:5px;}
    .ben-contact {
        display: block;
        padding: 15px 0;
    }

    .mobile_menu {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 3000;
    }

    .navigation {
        position: relative;
        width: 100%;
        height: 60px;
        background: #fffdfd;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
    }

    .navigation ul {
        display: flex;
        width: 100%;
    }

    .navigation ul li {
        position: relative;
        list-style: none;
        width: 70px;
        height: 70px;
        z-index: 1;
    }

    .navigation ul li a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .navigation ul li a .icon {
        position: relative;
        display: block;
        line-height: 75px;
        font-size: 1.5em;
        text-align: center;
        transition: 0.5s;
        color: #112596;
    }

    .navigation ul li.active a .icon {
        transform: translateY(-25px);
    }

    .navigation ul li a .text {
        position: absolute;
        color: #000000;
        font-weight: 600;
        font-size: 0.9em;
        letter-spacing: 0.05em;
        opacity: 0;
        transition: 0.7s;
    }

    .navigation ul li.active a .text {
        opacity: 1;
        transform: translateY(15px);
    }

    .navigation ul li a .circle {
        position: absolute;
        display: block;
        width: 50px;
        height: 50px;
        text-align: center;
        z-index: -1;
        opacity: 1;
        border-radius: 50%;
        border: 2px solid #fcfcfc;
        transform: translateY(-25px) scale(0);
    }

    .navigation ul li.active a .circle {
        background: #112596;
    }

    .navigation ul li.active a .icon {
        color: #fff;
        font-size: 1.2em;
    }

    .navigation ul li.active a .circle {
        transition: 0.2s;
        transition-delay: 0.2s;
        transform: translateY(-25px) scale(1);
    }

    .navigation ul li:nth-child(1).active~ {
        transform: translateX(calc(70px*0));
    }

    .navigation ul li:nth-child(2).active~ {
        transform: translateX(calc(70px*1));
    }

    .navigation ul li:nth-child(3).active~ {
        transform: translateX(calc(70px*2));
    }

    .navigation ul li:nth-child(4).active~ {
        transform: translateX(calc(70px*3));
    }

    .navigation ul li:nth-child(5).active~ {
        transform: translateX(calc(70px*4));
    }

    .navigation ul li:nth-child(5).active~ {
        transform: translateX(calc(70px*5));
    }
}


.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ben_product-bottom.mobile .swiper-slide {
    background-position: center;
    background-size: cover;
    width:230px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }
  .ben_product-bottom.mobile .swiper-slide-active {transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) scale(1.2);}
  .ben_product-bottom.mobile .swiper-3d .swiper-slide-shadow-left, .ben_product-bottom.mobile .swiper-3d .swiper-slide-shadow-right {background-image: inherit;}