/*--------------copyright by vicky start-------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 10px;
    line-height: 1.8;
}

body {
    line-height: 1.8;
    letter-spacing: 2px;
    font-size: 1.6rem;
    font-family: 'Noto Sans TC', 'Inter', sans-serif;
    color: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all .3s;
    box-sizing: border-box;
    display: block;
}

a:hover,
a:focus {
    text-decoration: none;
    transition: .2s ease all;
    color: #deae12;
}

img {
    max-width: 100%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

::selection {
    background: rgba(204, 204, 204, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

header {
    position: relative;
}

body.open {
    overflow-y: hidden;
}
/************************************************************************************************************************************************
************************************************************************************************************************************************
************************************************************************************************************************************************/


/*---dex-------------------------------------------------------------------------------------------------------------------------------------*/

.dex {
    height: 827px;
    width: 100%;
    background-size: cover;
    position: relative;
    z-index: 0;
    background: url(../../images/dex.jpg) top center no-repeat fixed;

}

.dex:after {
    content: '';
    background: url(../../images/dex_mask.png) bottom center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 185px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.logo {
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    margin: auto;
    background: #ffffff;
    width: 358px;
    max-width: 100%;
    min-height: 179px;
    text-align: center;
    padding: 2.3rem 0 0 0;
    border-radius: 0 0 180px 180px;
    -webkit-filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.25));
    filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.25));
}

.logo img {
    width: 55%;
}

.logo_mob {
    display: none;
}

/*scroller*/
.scroller {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    gap: 0.8vw;
    justify-content: center;
    padding-top: 5rem;
    -webkit-animation: fadein 5s forwards;
    animation: fadein 5s forwards;
    color: #94abc5;
    font-family: 'Inter';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.scroller a:hover {
    color: #000;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroller:after,
.scroller:before {
    content: "";
    display: block;
    flex: 0 0 auto;
    height: 43px;
}

.scroller:before {
    -webkit-animation: scrolldown 2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: scrolldown 2s cubic-bezier(1, 0, 0, 1) infinite;
    background: #000;
    top: 0;
    left: 50%;
    margin-left: -1px;
    position: absolute;
    width: 1px;
    z-index: 10;
}

.scroller:after {
    background: #f0f0f0;
    position: absolute;
    width: 1px;
    z-index: 0;
    top: 0
}

@-webkit-keyframes scrolldown {
    0% {
        transform: scaleY(0);
        transform-origin: 0 0
    }

    50% {
        transform: scale(1);
        transform-origin: 0 0
    }

    50.1% {
        transform: scale(1);
        transform-origin: 0 100%
    }

    to {
        transform: scaleY(0);
        transform-origin: 0 100%
    }
}

@keyframes scrolldown {
    0% {
        transform: scaleY(0);
        transform-origin: 0 0
    }

    50% {
        transform: scale(1);
        transform-origin: 0 0
    }

    50.1% {
        transform: scale(1);
        transform-origin: 0 100%
    }

    to {
        transform: scaleY(0);
        transform-origin: 0 100%
    }
}

@media screen and (max-width:1200px) {
    .scroller:before {
        margin-left: 0;
    }
}

@media screen and (max-width:1000px) {
    .dex {
        height: 660px;
        background-attachment: initial;
        background-size: cover;
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .logo_mob {
        display: block;
        padding: 10rem 0 5rem 0;
        margin: 0 auto;
        text-align: center;
    }

    .logo_mob img {
        width: 50%;
    }

    .dex {
        height: 500px;
    }

    .dex:after {
        min-height: 155px;
    }

    .logo {
        display: none;
    }

    .scroller {
        padding-top: 4rem;
    }

}

@media screen and (max-width:450px) {
    .dex {
        height: 300px;
    }

    .dex:after {
        min-height: 45px;
    }

    .scroller {
        display: none;
    }
}

@media screen and (max-width:414px) {
    .logo_mob img {
        width: 60%;
    }

    .dex {
        height: 250px;
    }
}

@media screen and (max-width:380px) {
    .logo_mob {
        padding: 10rem 0 3rem 0;
    }

    .dex {
        height: 220px;
    }
}

/*---main----------------------------------------------------------------------------------------------------------------------------*/
.main {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
}

.iabtmask {
    position: relative;
}

.iabtmask:before {
    content: '';
    background: url(../../images/iabt_deco02.png) top right no-repeat;
    background-size: contain;
    width: 1069px;
    max-width: 100%;
    min-height: 1106px;
    position: absolute;
    top: 16rem;
    right: 0;
    z-index: -1;
}

.iabtmask:after {
    content: '';
    background: url(../../images/iabt_deco03.png) top left no-repeat;
    background-size: contain;
    width: 1052px;
    max-width: 100%;
    min-height: 1106px;
    position: absolute;
    bottom: 29rem;
    left: 0;
    z-index: -2;
}

.deco {
    padding: 1rem 0 13rem 0;
    display: flex;
	align-items: center;
}

.deco img {}

.deco img:nth-child(1),
.deco img:nth-child(3) {
    width: 41.4%;
}

.deco img:nth-child(2) {
    width: 17%;
}

.title_en {
    text-align: center;
    padding-top: 1.8rem;
}


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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 770px;
    }
    .iabtmask:after {
    bottom: 62rem;
}

    .deco img:nth-child(1),
    .deco img:nth-child(3) {
        width: 37.5%;
    }

    .deco img:nth-child(2) {
        width: 25%;
    }
}

@media screen and (max-width: 1000px) {
    .iabtmask:after {
        bottom: 106rem;
    }

    .deco img:nth-child(1),
    .deco img:nth-child(3) {
        width: 34%;
    }

    .deco img:nth-child(2) {
        width: 32%;
    }

    .title_en {
        padding-top: 1rem;
    }
}

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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 540px;
    }

    .iabtmask:after {
        bottom: -5rem;
    }
}

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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 500px;
    }

    .iabtmask:after {
        bottom: 75rem;
    }

    .deco img:nth-child(2) {
        width: 40%;
    }

    .deco img:nth-child(1),
    .deco img:nth-child(3) {
        width: 30%;
    }
}

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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 420px;
    }

    .iabtmask:after {
        bottom: 107rem;
    }

    .deco img:nth-child(2) {
        width: 50%;
    }

    .deco img:nth-child(1),
    .deco img:nth-child(3) {
        width: 25%;
    }

    .title_en {
        padding: 1rem 2rem 0;
    }
}

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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 320px;
    }

    .iabtmask:after {
        bottom: 112rem;
    }
}


@media screen and (max-width:393px) {
    .iabtmask:after {
        bottom: 114rem;
    }

}

@media screen and (max-width:360px) {
       .iabtmask:after {
        bottom: 105rem;
    }
    .title_en {
        padding: 1rem 1rem 0;
    }

}

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

    .iabtmask:before,
    .iabtmask:after {
        min-height: 270px;
    }

    .iabtmask:after {
        bottom: 109rem;
    }

}

@media screen and (max-width:300px) {
    .iabtmask:after {
        bottom: 107rem;
    }
}


/***********************/
/***inews start***/

.inews {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}


.inews .inews_inner {
    width: 55%;
    padding: 3.9rem 5rem 0 6.2rem;
    position: relative;
}


.inews .inews_deco {
    width: 41%;
    padding-right: 3rem;
    text-align: right;
}


.newslist_rwd {
    padding: 0 1.4rem 1.7rem 7.4rem;
    position: relative;
}

.newslist_rwd:after {
    content: '';
    background: #d3c6a3;
    width: 681px;
    max-width: 100%;
    min-height: 48px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-top-left-radius: 100px;
}

.newslist_rwd .inews_title {
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    text-align: center;
}

.inews_title img {}

.inews_title h3 {
    font-size: 24px;
    color: #151515;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding-top: 1.5rem;

}

@media screen and (max-width:1366px) {
    .inews .inews_inner {
        width: 60%;
    }
}

@media screen and (max-width:1200px) {
    .deco {
        padding: 1rem 0 5rem 0;
    }

    .inews .inews_deco {
        width: 35%;
    }

    .inews .inews_inner {
        width: 75%;
    }
}

@media screen and (max-width:1100px) {
    .inews .inews_inner {
        width: 100%;
        padding: 3.9rem 2rem 0 2rem;
    }

    .inews .inews_deco {
        width: 30%;
        padding-right: 0;
        text-align: left;
        position: absolute;
        bottom: -3rem;
        right: 0;
    }

    .inews .ntitle {
        width: 25%;
    }
}

@media screen and (max-width:991px) {
    .inews .inews_deco {
        width: 25%;
        bottom: 0;
    }
}

@media screen and (max-width:834px) {
    .inews .inews_inner {
        padding: 1rem 2rem 0 2rem;
    }

    .inews .inews_deco {
        width: 17%;
    }

    .newslist_rwd:after {
        width: 100%;
    }

    .inews .ntitle {
        width: 35%;
        padding-top: 2rem;
    }
}

@media screen and (max-width:768px) {
    .newslist_rwd {
    padding: 0 1.4rem 1.7rem 3rem;
}
	.newslist_rwd .inews_title {
        left: 0;
        position: relative;
        margin-bottom: 2rem;
        text-align: center;
        min-height: auto;
    }

    .inews_title h3 {
        -webkit-writing-mode: inherit;
        writing-mode: inherit;
        padding-top: 0;
        display: inline-block;
        padding-left: 1rem;
    }

    .inews .ntitle {
        width: 40%;
    }

    .inews .inews_deco {
        width: 17%;
        right: 3rem;
        bottom: -1rem;
    }

}

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

    .newslist_rwd .inews_title {
        left: 0rem;
    }

    .inews .ntitle {
        width: 32%;
    }
}

@media screen and (max-width:576px) {
    .deco {
        padding: 1rem 0 3rem 0;
    }    

    .newslist_rwd {
        padding: 0 1.4rem 1.7rem 1rem;
    }
}

@media screen and (max-width:450px) {
    .newslist_rwd {
        padding: 0 1.4rem 8rem 1rem;
    }

    .inews .npic {
        width: 100%;
    }

    .inews .ntitle {
        width: 95%;
        display: block;
    }

    .inews .inews_deco {
        width: 21%;
        right: 2rem;
        bottom: 0;
    }
}

@media screen and (max-width:414px) {
    .inews .inews_inner {
        padding: 1rem 0 0 0;
    }

    .inews .inews_deco {
        width: 25%;
        right: 1rem;
    }

}

/***inews end****/
/***********************/


/***mibutton***/
.mibutton {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    cursor: pointer;
    width: 125px;
    height: 125px;
    text-align: left;
    background: #151515;
    padding: 2em 2em 1em 2em;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
    transition: .3s cubic-bezier(0.22, 1, 0.36, 1);
}

/*itype*/
.itype {
    padding: 2em 2em 1em 1.5em;
    font-size: 15px;
    width: 100px;
    height: 100px;
}

.mibutton span {
    display: block;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    transition: .3s ease all;
    color: #fff;
}

.mibutton span:nth-child(2) {
    width: 100%;
    height: 2px;
    transition: .3s ease all;
    background: #d3c6a3;
    text-align: left;
    margin-bottom: .3em;
}

.mibutton span:nth-child(3) {
    width: 75%;
    height: 2px;
    transition: .3s ease all;
    background: #d3c6a3;
    text-align: left;
}

.mibutton:hover span:nth-child(2) {
    width: 50%;
}

.mibutton:hover span:nth-child(3) {
    width: 100%;
}

.mibutton_ani {
    background: none;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0);
    transform: scale(.8);
    transform-origin: top right;
}

.mibutton_ani span {
    opacity: 1;
}

.mibutton_ani span:nth-child(1) {
    opacity: 0;
}

.mibutton_ani span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    background: #f39e78;
}

.mibutton_ani:hover span:nth-child(2) {
    width: 100%;
}

.mibutton_ani span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    background: #f39e78;
    width: 100%;
    margin-top: -.5em;
}

/*navbar*/
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    text-align: center;
    z-index: 30;
    border: 0;
    min-height: auto;
    border-radius: 0;
    margin: 0;
    transform: translateX(350px);
    transition: .6s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
}

.show {
    transform: translateX(0px);
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

/*menu_logo*/
.menu_logo {
    background: #fff;
    padding: 4em 3em;
    text-align: center;
}

.menu_logo a {
    display: inline-block;
}

.menu_logo a:hover {
    opacity: .7;
}

.menu_logo a img {
    width: 80%;
}

/*ibutton*/
.ibutton {
    background: rgba(211,198,163, .9);
    padding: 2em 0;
    border-bottom-left-radius: 50px;
}

.ibutton a {
    color: #1a1a1a;
    transition: .3s ease-in-out;
    padding: .5em 0;
}

.ibutton p.ch {
    font-size: 18px;
    letter-spacing: 3px;
    transition: .2s ease-in-out;
}

.ibutton p.en {
    font-size: 14px;
    line-height: 1.5;
}

.ibutton a:hover {
    background: rgba(0, 0, 0, 0.15);
}

.ibutton a:hover p.ch {
    color: #ffffff;
}


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

    .mibutton {
        width: 110px;
        padding: 2em 1.5em 1em 1.5em;
    }
}

@media screen and (max-width:450px) {
    .mibutton {
        width: 100px;
        padding: 1.5em 1.5em 1em 1.5em;
        height: 90px;
    }

    .menu_logo {
        padding: 4em 4em;
    }
}

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


    .navbar {
        width: 100%;
        transform: translateX(100%);
    }

    .show {
        transform: translateX(0);
    }
	.ibutton {
        padding: 2em 0 7em;
    }
}


/***********************/
/***iabout start***/

.iabout {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}

.iabout .iabt_title {
    text-align: right;
    padding: 0 2.4rem 4.5rem 0;
}


.iabout .abt1 {
    margin-bottom: 7rem;
}

@media screen and (max-width:1200px) {
    .iabout {
        margin-top: 5rem;
    }

}

@media screen and (max-width:1000px) {
    .iabout .iabt_title {
        padding: 0 2rem 4.5rem 2rem;
    }
}
@media screen and (max-width:450px) {
       .iabout .iabt_title {
        width: 75%;
        margin: 0 auto;
    }
}
@media screen and (max-width:414px) {
    .iabout .abt1 {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 360px) {
    .iabout .iabt_title {
        padding: 0 1rem 4.5rem 1rem;
    }
}

/***iabout end****/
/***********************/
/***********************/
/***ienvironment start***/

.ienvironment {
    background: url(../../images/ienv_bg.jpg) top left repeat;
    width: 100%;
    padding: 6.8rem 0 7.5rem 0;
}

.ienvironment .ienv {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;

}

.ienv .ienv_title {
    text-align: center;
    margin-bottom: 4.5rem;
}

.ienv .ienv1 {
    padding: 0 3.5rem 0 13.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.ienv1 .ienv_txt {
    width: 37%;
    padding: 6rem 3rem 0 0;
}

.ienv_title2 {
    margin-bottom: 3rem;
}

.ienv_title2 img {
    padding-right: 1.5rem;
    display: inline-block;
}

.ienv_title2 h3 {
    font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;
}

.ienv_desc {
    margin-bottom: 13rem;
}

.ienv_desc p {
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}


.ienv1 .ienv_img {
    width: 60%;
    -webkit-filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
    filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
    text-align: right;
}

.ienv1 .ienv_img img {}

@media screen and (max-width:1536px) {
    .ienv .ienv_title {
        padding: 0 2rem;
    }

    .ienv .ienv1 {
        padding: 0 2rem;
    }

    .ienv1 .ienv_txt {
        padding: 4rem 3rem 0 0;
    }
}

@media screen and (max-width:1200px) {
    .ienv_desc {
        margin-bottom: 9rem;
    }
}

@media screen and (max-width:1000px) {
    .ienvironment {
        padding: 5rem 0 7rem 0;
    }

    .ienv .ienv_title {
        padding: 0 2rem 4.5rem 2rem;
        margin-bottom: 0;
    }

    .ienv .ienv1 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ienv1 .ienv_txt {
        padding: 0;
        width: 70%;
        margin-bottom: 3rem;
    }

    .ienv1 .ienv_img {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:834px) {
    .ienv1 .ienv_txt {
        width: 100%;
    }
}

@media screen and (max-width:576px) {
    .ienv_desc {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width:414px) {
    .ienvironment {
        padding: 5rem 0 3rem 0;
    }
}

@media screen and (max-width:360px) {
    .ienv .ienv_title {
        padding: 0 1rem 4.5rem 1rem;
    }

    .ienv .ienv1 {
        padding: 0 1rem;
    }
}

/***ienvironment end****/
/***********************/
/***********************/
/***iroom start***/

.iroom {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 5.4rem 0 3.5rem 9.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.iroom .iroom_img {
    width: 46%;
    padding: 0 0 0 3.9rem;
    margin-top: 4.7rem;
    position: relative;
}

.iroom .iroom_img img {}

.iroom .iroom_img:before {
    content: '';
    background: rgba(148,171,197, 0.8);
    width: 658px;
    max-width: 100%;
    min-height: 424px;
    position: absolute;
    top: 3.6rem;
    left: 0;
    z-index: -1;
}

.iroom .iroom_txt {
    width: 53%;
}

.iroom_txt .iroom_title {
    text-align: right;
    margin-bottom: 5rem;
}

.iroom_txt .iroom_title img {}

.iroom_txt .iroom_inner {
    width: 66%;
    margin: 0 auto;
}

.iroom_inner .iroom_title2 {
    margin-bottom: 3rem;
}

.iroom_inner .iroom_title2 img {
    padding-right: 1.5rem;
    display: inline-block;
}

.iroom_inner .iroom_title2 h3 {
    font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;
}

.iroom_inner .iroom_desc {
    margin-bottom: 5rem;
}

.iroom_inner .iroom_desc p {
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

@media screen and (max-width:1536px) {
    .iroom {
        padding: 5.4rem 2rem 3.5rem 2rem;
    }
}

@media screen and (max-width:1366px) {
    .iroom .iroom_img {
        width: 63%;
    }

    .iroom_txt .iroom_inner {
        width: 85%;
    }
}

@media screen and (max-width:1200px) {
    .iroom .iroom_img {
        width: 77%;
    }
}

@media screen and (max-width:1000px) {
    .iroom {
        padding: 5rem 2rem 12rem 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .iroom .iroom_img {
        width: 80%;
    }

    .iroom .iroom_txt {
        width: 70%;
        order: -1;
    }
}

@media screen and (max-width:768px) {
    .iroom .iroom_txt {
        width: 100%;
    }

    .iroom .iroom_img {
        width: 100%;
    }
}

@media screen and (max-width:650px) {
    .iroom {
        padding: 5rem 2rem 7rem 2rem;
    }

    .iroom .iroom_img {
        padding: 0 0 0 2rem;
    }

    .iroom .iroom_img:before {
        width: 92%;
        min-height: 95%;
    }
}

@media screen and (max-width:450px) {
	.iroom_txt .iroom_title {
    width: 60%;
    margin: 0 auto 3rem;
}
	.iroom_txt .iroom_inner {
        width: 100%;
    }
}

@media screen and (max-width:414px) {
    .iroom {
        padding: 5rem 2rem 5rem 2rem;
    }
}
@media screen and (max-width:393px) {
    .iroom_txt .iroom_title {
    width: 55%;
}
}
@media screen and (max-width:360px) {
    .iroom {
        padding: 5rem 1rem 5rem 1rem;
    }

    .iroom .iroom_img {
        padding: 0 0 0 1rem;
    }

    .iroom .iroom_img:before {
        min-height: 96%;
        top: 2rem;
    }
}

/***iroom end****/
/***********************/
/***********************/
/***about start***/

.abtmask {
    position: relative;
}

.abtmask:before {
    content: '';
    background: url(../../images/abt_deco01.png) top right no-repeat;
    background-size: contain;
    width: 1069px;
    max-width: 100%;
    min-height: 1106px;
    position: absolute;
    top: 36rem;
    right: 0;
    z-index: -1;
}

.abtmask:after {
    content: '';
    background: url(../../images/abt_deco02.png) top left no-repeat;
    background-size: contain;
    width: 485px;
    max-width: 100%;
    min-height: 1106px;
    position: absolute;
    bottom: 83rem;
    left: 0;
    z-index: -2;
}

/*about1*/
.about1 {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0 4.9rem 0;
}

.abt1 {
    padding: 0 13.6rem 0 5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.abt1 .abt1_img {
    width: 60%;
    -webkit-filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
    filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
}

.abt1 .abt1_txt {
    width: 37%;
    padding-top: 4rem;
}

.abt1_txt .abt1_title {
    margin-bottom: 3rem;
}

.abt1_txt .abt1_title img {
    padding-right: 1.5rem;
    display: inline-block;
}

.abt1_txt .abt1_title h3 {
    font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;
}


.abt1_txt .bnbnumber {
    color: #151515;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3rem;
}

.abt1_txt .abt1_desc {
    margin-bottom: 1rem;
}

.abt1_txt .abt1_desc p {
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

.all_more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all_more .more {}

.all_more .more_deco {}

.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: #736866;
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    font-size: 22px;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #736866;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    background-color: #94abc5;
    color: #000;
}

.button:hover .button__icon-wrapper {
    color: #000;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}


.about1 .all_more {
    display: none;
}


@media screen and (max-width:1536px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 770px;
    }
    .abtmask:after {
    bottom: 90rem;
}
    .abt1 {
        padding: 0 8rem 0 5rem;
    }
}

@media screen and (max-width:1400px) {
    .abt1 {
        padding: 0 2rem 0 2rem;
    }

    .abt1 .abt1_img {
        width: 70%;
    }

    .all_more .more_deco {
        width: 18%;
    }
}

@media screen and (max-width:1366px) {
    .abtmask:before {
    top: 45rem;
}
     .abt1_txt .abt1_desc {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:1200px) {
    .abtmask:before {
    top: 39rem;
}
    .abt1 .abt1_img {
        width: 60%;
    }

}

@media screen and (max-width:1000px) {
        .abtmask:after {
        bottom: 142rem;
    }
    .abt1 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .abt1 .abt1_txt {
        width: 70%;
        order: -1;
        padding-top: 0;
        margin-bottom: 3rem;
    }

    .abt1 .abt1_img {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:834px) {
        .abtmask:after {
        bottom: 155rem;
    }
    .abt1 .abt1_txt {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 600px;
    }
        .abtmask:after {
        bottom: 153rem;
    }
}
@media screen and (max-width:576px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 500px;
    }
        .abtmask:after {
        bottom: 181rem;
    }
}
@media screen and (max-width:450px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 420px;
    }
        .abtmask:before {
        top: 48rem;
    }
        .abtmask:after {
        bottom: 182rem;
    }
}
@media screen and (max-width:414px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 320px;
    }
        .abtmask:after {
        bottom: 167rem;
    }
    .about1 {
        padding: 3rem 0 3rem 0;
    }
}
@media screen and (max-width:402px) {
        .abtmask:after {
        bottom: 162rem;
    }
}
@media screen and (max-width:393px) {
        .abtmask:after {
        bottom: 159rem;
    }
}
@media screen and (max-width:390px) {
            .abtmask:after {
        bottom: 157rem;
    }
}
@media screen and (max-width:360px) {
        .abtmask:after {
        bottom: 153rem;
    }
    .abt1 {
        padding: 0 1rem 0 1rem;
    }
}
@media screen and (max-width:320px) {
    .abtmask:before,
    .abtmask:after {
        min-height: 270px;
    }
        .abtmask:before {
        top: 53rem;
    }
        .abtmask:after {
        bottom: 137rem;
    }
}
@media screen and (max-width:300px) {   
        .abtmask:after {
        bottom: 129rem;
    }
}

/*about2*/

.about2 {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5.3rem 0 9.6rem;
    display: flex;
    align-items: flex-start;
}

.about2 img {}

.about2 img:first-of-type {
    padding-top: 5rem;
}

.about2 img:last-of-type {}

@media screen and (max-width:1536px) {
    .about2 {
        padding: 0 2rem;
    }
}

@media screen and (max-width:1480px) {
    .about2 img:first-of-type {
        width: 30.4%;
    }

    .about2 img:last-of-type {
        width: 69%;
    }
}

@media screen and (max-width:450px) {
    .about2 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about2 img:first-of-type {
        width: 70%;
        padding-top: 0;
    }

    .about2 img:last-of-type {
        width: 100%;
        order: -1;
    }
}

@media screen and (max-width:360px) {
    .about2 {
        padding: 0 1rem;
    }
}

/*about3*/

.about3 {
    background: url(../../images/abt3_bg.jpg) top center fixed;
    background-size: cover;
    width: 100%;
    min-height: 874px;
    margin-top: -15.4rem;
}

@media screen and (max-width:1366px) {
    .about3 {
        min-height: 700px;
        margin-top: -11rem;
    }
}

@media screen and (max-width:991px) {
    .about3 {
        min-height: 450px;
        margin-top: -4rem;
        background-attachment: inherit;
    }
}

@media screen and (max-width:768px) {
    .about3 {
        min-height: 350px;
        margin-top: -2rem;
    }
}

@media screen and (max-width:576px) {
    .about3 {
        min-height: 260px;
        margin-top: 3rem;
    }

}

@media screen and (max-width:450px) {
    .about3 {
        min-height: 200px;
    }
}

@media screen and (max-width:393px) {
    .about3 {
        min-height: 180px;
    }
}

@media screen and (max-width:360px) {
    .about3 {
        min-height: 164px;
    }
}

@media screen and (max-width:320px) {
    .about3 {
        min-height: 146px;
    }
}


/*about4*/

.about4 {
    width: 1600px;
    max-width: 100%;
    margin: 4.9rem auto 4.7rem;
    padding: 0 5.2rem 0 13.5rem;
    position: relative;
}

.about4:before {
    content: '';
    background: url(../../images/abt_circle01.png) top left no-repeat;
    background-size: contain;
    width: 680px;
    max-width: 100%;
    min-height: 669px;
    position: absolute;
    top: -43rem;
    right: 33rem;
    z-index: -1;
}

.about4 .abt4 {
    display: flex;
    justify-content: space-between;
}

.abt4 .abt4_txt {
    width: 37%;
    padding-top: 9rem;
}

.abt4_txt .abt4_title {
    margin-bottom: 3.7rem;
}

.abt4_txt .abt4_title img {
    padding-right: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

.abt4_txt .abt4_title h3 {
        font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;

}

.abt4_txt .abt4_desc {
    width: 90%;
}

.abt4_txt .abt4_desc p {
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}


.abt4 .abt4_img {
    width: 60%;
    -webkit-filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
    filter: drop-shadow(2px 2px 7px rgba(120, 120, 120, 0.5));
}

.abt4 .abt4_img img {}

@media screen and (max-width:1400px) {
    .about4:before {
        min-height: 550px;
        top: -37rem;
        right: 22rem;
    }
}

@media screen and (max-width:1200px) {
    .about4 {
        padding: 0 2rem;
    }

    .about4:before {
        min-height: 490px;
        top: -33rem;
        right: 15rem;
    }

    .abt4 .abt4_txt {
        padding-top: 5rem;
    }
}

@media screen and (max-width:1000px) {
    .about4 .abt4 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about4:before {
        min-height: 440px;
        top: -33rem;
        right: 2rem;
        max-width: 45%;
    }

    .abt4 .abt4_txt {
        padding-top: 0;
        width: 70%;
        margin-bottom: 3rem;
    }

    .abt4 .abt4_img {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:834px) {
    .abt4 .abt4_txt {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .about4:before {
        min-height: 280px;
        top: -22rem;
        max-width: 35%;
    }
}

@media screen and (max-width:650px) {
    .about4:before {
        min-height: 220px;
        top: -18rem;
    }
}

@media screen and (max-width:450px) {
    .about4:before {
        min-height: 160px;
        top: -13rem;
    }

    .abt4_txt .abt4_desc {
        width: 100%;
    }
}

@media screen and (max-width:414px) {
    .about4:before {
        top: -14rem;
    }
}

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

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

@media screen and (max-width:360px) {
    .about4 {
        padding: 0 1rem;
    }

    .about4:before {
        top: -12rem;
        min-height: 130px;
    }
}

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

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

    .abt4_txt .abt4_title {
        margin-bottom: 2rem;
    }
}


/*about5*/

.about5 {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 3rem;
}

.about5:before {
    content: '';
    background: url(../../images/abt_circle01.png) top left no-repeat;
    background-size: contain;
    width: 680px;
    max-width: 100%;
    min-height: 669px;
    position: absolute;
    top: 39.7rem;
    right: 10rem;
    z-index: -1;
}

/*abt51*/

.about5 .abt51 {
    padding-left: 6.2rem;
    margin-bottom: 8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.abt51 .abt51_img {
    width: 67.2%;
    position: relative;
}

.abt51 .abt51_img:before {
    content: '';
    border: 1px # solid;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 3rem;
    left: 3rem;
}

.abt51 .abt51_deco {
    width: 28.5%;
    padding-top: 6rem;
}


/*abt52*/

.about5 .abt52 {
    position: relative;
    padding-left: 6.2rem;
}

.about5 .abt52:before {
    content: '';
    background: url(../../images/abt_circle02.png) top left no-repeat;
    background-size: contain;
    width: 223px;
    max-width: 100%;
    min-height: 218px;
    position: absolute;
    top: -3.9rem;
    left: 11rem;
    z-index: -1;
}

.abt52 .abt52_title {}

.abt52 .abt52_title h4 {
    font-size: 50px;
    color: #736866;
    font-weight: 500;
    font-family: 'Inter';
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    padding-right: 1.3rem;
}

.abt52 .abt52_title h4 span {
    font-weight: bold;
}

.abt52 .abt52_title img {
    padding-right: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

.abt52 .abt52_title h3 {
    font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}


.abt52 .abt52_inner {
    background: url(../../images/abt52_pcbg.png) top left no-repeat;
    background-size: contain;
    width: 1502px;
    max-width: 100%;
    min-height: 811px;
    margin: -6rem 0 0 0;
}


.abt52_inner #gallery {
    padding: 10rem 6.9rem 0 23rem;
}



@media screen and (max-width:1400px) {
    .about5 .abt52 {
        padding: 0 2rem;
    }

    .abt52_inner #gallery {
        padding: 8rem 14rem 0 23rem;
    }
}

@media screen and (max-width:1366px) {
    .abt52_inner #gallery {
        padding: 8rem 21rem 0 18rem;
    }
}

@media screen and (max-width:1200px) {
    .about5:before {
        max-width: 45%;
        min-height: 530px;
        top: 27rem;
        right: 8rem;
    }

    .about5 .abt52 {
        margin-bottom: 3rem;
    }

    .abt52 .abt52_inner {
        background: url(../../images/abt52_spbg.png) top left repeat-y;
        background-size: contain;
        width: 100%;
        margin: 3rem 0 0 0;
        min-height: auto;
    }

    .abt52_inner #gallery {
        padding: 5rem 2rem 5rem 2rem;
    }
}

@media screen and (max-width:1000px) {
    .about5:before {
        max-width: 38%;
        min-height: 370px;
        top: 22rem;
        right: 5rem;
    }

    .about5 .abt52:before {
        min-height: 200px;
        left: 7rem;
    }
}

@media screen and (max-width:834px) {
    .about5 .abt51 {
        padding: 0 2rem;
        margin-bottom: 3rem;
    }

    .about5:before {
        max-width: 35%;
        min-height: 290px;
    }
}

@media screen and (max-width:768px) {
    .about5:before {
        max-width: 32%;
        min-height: 240px;
        top: 19rem;
        right: 4rem;
    }

    .abt51 .abt51_img:before {
        top: 1rem;
        left: 1rem;
    }

    .abt51 .abt51_deco {
        padding-top: 2rem;
    }
}

@media screen and (max-width:650px) {
    .about5:before {
        max-width: 28%;
        min-height: 180px;
        top: 16rem;
        right: 5rem;
    }

    .about5 .abt52:before {
        min-height: 160px;
        left: 7rem;
        max-width: 25%;
        top: -1.9rem;
    }

    .abt52 .abt52_inner {
        margin: 2rem 0 0 0;
    }

    .abt52_inner #gallery {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width:576px) {
    .about5:before {
        min-height: 160px;
        top: 15rem;
    }

    .abt52 .abt52_title h4 {
        font-size: 30px;
    }
}

@media screen and (max-width:450px) {
    .about5 .abt51 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about5:before {
        min-height: 250px;
        top: 17rem;
        right: auto;
        max-width: 60%;
        left: 6rem;
    }

    .abt51 .abt51_img {
        width: 100%;
    }

    .abt51 .abt51_deco {
        width: 50%;
        order: -1;
        padding: 0;
    }

    .abt52 .abt52_title h4 {
        font-size: 20px;
    }

    .abt52_inner #gallery {
        padding: 2rem 1rem;
    }

}

@media screen and (max-width:414px) {
    .about5 .abt52:before {
        min-height: 90px;
        left: 4rem;
        top: -0.9rem;
    }
}

@media screen and (max-width:393px) {
    .about5:before {
        min-height: 270px;
        max-width: 80%;
        left: 1rem;
    }

}

@media screen and (max-width:380px) {
    .abt52 .abt52_title h4 {
        padding-right: 0;
    }

    .abt52 .abt52_title img {
        padding-right: 0;
    }
}

@media screen and (max-width:360px) {
    .about5:before {
        top: 18rem;
    }

    .about5 .abt51 {
        padding: 0 1rem;
    }

    .about5 .abt52 {
        padding: 0 1rem;
    }

    .about5 .abt52:before {
        min-height: 90px;
        left: 3rem;
        top: -0.9rem;
    }
}

@media screen and (max-width:330px) {
    .abt51 .abt51_img:before {
        width: 95%;
        height: 90%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    .about5 .abt52:before {
        min-height: 80px;
        left: 3rem;
        top: -0.9rem;
    }

    .abt52 .abt52_title img {
        width: 7%;
    }
}

@media screen and (max-width:320px) {
    .abt52 .abt52_title h4 {
        font-size: 15px;
    }
}

/***about end****/
/***********************/
/***********************/
/***environment start***/

.environment {
    position: relative;
}

.environment:before {
    content: '';
    background: url(../../images/env_deco01.png) center right no-repeat;
    background-size: contain;
    width: 637px;
    max-width: 100%;
    min-height: 1083px;
    position: absolute;
    bottom: 50rem;
    right: 0;
    z-index: -1;
}

.environment:after {
    content: '';
    background: url(../../images/env_deco03.png) top left no-repeat;
    background-size: contain;
    width: 742px;
    max-width: 100%;
    min-height: 364px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.environment .env1 {
    margin: 4rem 0 0 0;
}

.env1_swiper #banner {
    margin: 0 auto 40px;
}

.env1_swiper .swiper-slide {
    width: 844px;
    max-width: 100%;
}

.env1_swiper .banner_page {
    margin: -39px auto;
    left: 0;
    right: 0;
}

.env1_swiper .banner_page span {
    margin: 0 10px;
}

.env1_swiper .swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 8px;
}

.env1 .env1_txt {
    width: 525px;
    max-width: 100%;
    margin: 10rem auto 0;
}



@media screen and (max-width:1536px) {
    .environment:after {
        min-height: 250px;
    }
}

@media screen and (max-width:1400px) {
    .environment:before {
        min-height: 900px;
    }
}

@media screen and (max-width:1200px) {
    .environment:before {
        min-height: 700px;
        bottom: 66rem;
    }

    .environment:after {
        min-height: 130px;
    }
}

@media screen and (max-width:834px) {
    .environment:before {
        min-height: 630px;
    }
}

@media screen and (max-width:768px) {
    .environment:before {
        min-height: 600px;
    }

    .environment:after {
        min-height: 100px;
    }
}

@media screen and (max-width:650px) {
    .environment:before {
        bottom: 51rem;
    }
}

@media screen and (max-width:576px) {
    .environment:before {
        bottom: 65rem;
        min-height: 370px;
    }

    .environment:after {
        min-height: 65px;
    }
}

@media screen and (max-width:450px) {
    .environment:before {
        bottom: 56rem;
    }

    .env1 .env1_txt {
        padding: 0 2rem;
    }

}

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


    .environment:before {
        bottom: 60rem;
        min-height: 260px;
    }

    .env1 .env1_txt {
        padding: 0 1rem;
    }
}

@media screen and (max-width:320px) {
    .environment:before {
        bottom: 64rem;
    }
}

/*env2*/

.environment .env2 {
    margin: 5rem 0 0 0;
    position: relative;
}

.environment .env2:before {
    content: '';
    background: url(../../images/env_deco02.png) top left no-repeat;
    background-size: contain;
    width: 425px;
    max-width: 100%;
    min-height: 424px;
    position: absolute;
    top: 0;
    left: 20.4rem;
}

.env2 .env2_deco01 {
    width: 525px;
    max-width: 100%;
    margin: 0 auto 4.5rem;
    padding-top: 10rem;
}

.env2_swiper #banner2 {
    margin: 0 auto 40px;
}

.env2_swiper .swiper-slide {
    width: 844px;
    max-width: 100%;
}

.env2_swiper .banner_page2 {
    margin: -39px auto;
    left: 0;
    right: 0;
}

.env2_swiper .banner_page2 span {
    margin: 0 10px;
}

.env2_swiper .swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 8px;
}

.env2 .env2_txt {
    width: 525px;
    max-width: 100%;
    margin: 10rem auto 0;
}

.env2_txt .env2_title {
    margin-bottom: 3rem;
}

.env2_txt .env2_title img {
    padding-right: 1.5rem;
    display: inline-block;
}

.env2_txt .env2_title h3 {
    font-size: 10px;
    color: #151515;
    display: inline-block;
    font-family: 'Inter';
    vertical-align: middle;
    letter-spacing: 0;
    font-weight: 300;
}


.env2_txt .env2_desc {}

.env2_txt .env2_desc p {
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

.env2 .env2_deco02 {
    width: 1330px;
    max-width: 100%;
    margin: 0 auto;
    padding: 7rem 19rem 8.7rem 0;
    text-align: right;
}



@media screen and (max-width:1700px) {
    .environment .env2:before {
        left: 5rem;
    }
}

@media screen and (max-width:1400px) {
    .environment .env2:before {
        left: 2rem;
        min-height: 340px;
        max-width: 25%;
    }
}

@media screen and (max-width:1200px) {
    .environment .env2:before {
        left: 2rem;
        min-height: 220px;
        max-width: 19%;
        top: 9rem;
    }
}

@media screen and (max-width:1000px) {
    .environment .env2:before {
        top: 7rem;
    }

    .env2 .env2_deco01 {
        padding-top: 5rem;
    }

    .env2 .env2_deco02 {
        padding: 4rem 2rem 7rem 0;
    }
}

@media screen and (max-width:834px) {
    .environment .env2:before {
        top: 11rem;
        min-height: 100px;
        left: 1rem;
    }

    .env2 .env2_deco02 {
        padding: 4rem 2rem 7rem 2rem;
        width: 75%;
        margin: 0 0 0 auto;
    }
}



@media screen and (max-width:576px) {
    .env2 .env2_deco01 {
        padding-top: 2rem;
        width: 60%;
    }

    .environment .env2:before {
        top: 7rem;
    }
}

@media screen and (max-width:450px) {
    .env2 .env2_txt {
        padding: 0 2rem;
        margin: 7rem auto 0;
    }

    .env2 .env2_deco02 {
        padding: 3rem 2rem 9rem 2rem;
        width: 100%;
    }
}

@media screen and (max-width:414px) {
    .environment .env2:before {
        top: 10rem;
    }

    .env2 .env2_deco01 {
        width: 80%;
    }

    .env2 .env2_deco01 {
        margin: 0 auto 7rem;
    }

}
@media screen and (max-width:393px) {
    .env2_txt .env2_title img {
    padding-right: 0;
}
}
@media screen and (max-width:380px) {
    .env2_txt .env2_title h3 {
    letter-spacing: -1px;
}
}
@media screen and (max-width:360px) {
    .env2 .env2_txt {
        padding: 0 1rem;
    }
}
@media screen and (max-width:310px) {
    .env2_txt .env2_title img {
            width: 10%;
}
}
@media screen and (max-width:300px) {
    .env2_txt .env2_title img {
            width: 7%;
}
}

/***environment end****/
/***********************/
/*************************
*********services_isce*****
**************************/
.isce_title {
    padding: 8rem 0 5.3rem;
    text-align: center;
    overflow: hidden;
    background: #f6cd51;
}

.isce_title img {
    display: inline-block;
    vertical-align: middle;
}

.isce_title .isce_title2 {
    display: inline-block;
    padding-left: 1.7rem;
    vertical-align: middle;
}

.isce_title .isce_title2 img {
    padding-right: 1.5rem;
    display: inline-block;
}

.isce_title .isce_title2 h3 {
    font-size: 24px;
    color: #151515;
    font-weight: bold;
    display: inline-block;
}


#services_isce {
    background: url(../../images/index1bg.jpg);
    background-position: top left;
    background-size: auto;
    background-repeat: repeat;
}

#services_isce h2 {
    color: #fff;
    padding-bottom: 15px;
    text-align: center;
    background-image: url(../../images/isceline.png);
    background-position: center bottom;
    background-size: auto;
    background-repeat: no-repeat;
    font-size: 20px;
    line-height: 1.5;
    padding: 10px 0;
}

.iscebg {
    background-image: url(../../images/iscebg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 1em;

}

.iscemore {
    background-image: url(../../images/iscemore.png);
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 16px;
}

.isce h2 span.iscenew {
    background: #dc5127;
    border-radius: 10px;
    font-size: 12px;
    padding: 2px 5px;
    vertical-align: middle;
    margin-right: 5px;
}

.isce h2 span.iscehot {
    background: #af2411;
    border-radius: 10px;
    font-size: 12px;
    padding: 2px 5px;
    vertical-align: middle;
    margin-right: 5px;
}

.isce {
    padding-top: 80px;
    padding-bottom: 60px;
}

.isce ul {
    margin: 0;
    padding: 0;
}

.isce ul li {
    display: inline-block;
    float: left;
    width: 25%;
    padding: 0 1em;
}

.isce ul li img {
    margin: 0 auto;
}

.isce ul li p {
    color: #fff;
    font-size: 16px;
}

.iscebtn img {
    margin: 0 auto;
    padding-bottom: 80px;
}


@media(max-width:1700px) {
    .iscebg {
        padding: 0 100px;
    }
}

@media(max-width:1550px) {
    .iscebg {
        padding: 0 20px;
    }

    .isce ul li {
        padding: 0 15px;
    }
}

@media(max-width:1200px) {
    .isce ul li {
        width: 50%;
    }
}

@media(max-width:1100px) {
    #services_isce h2 {
        font-size: 16px;
    }
}

@media(max-width:991px) {
    #services_isce h2 {
        font-size: 20px;
    }

    .isce ul li {
        display: inline-block;
        float: left;
        width: 50%;
    }

    .isce ul li:nth-child(3) {
        clear: both;
    }

    .iscemore {
        margin-bottom: 20px;
    }

    .isce {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .iscebtn img {
        margin: 0 auto;
        padding-bottom: 20px;
    }
}

@media(max-width:900px) {
    .isce ul li {
        float: none;
        width: 22%;
        vertical-align: top;
    }

    .iscebg {
        text-align: center;
    }

    #services_isce h2 {
        font-size: 18px;
    }
}

@media(max-width:700px) {
    .iscebg {
        padding: 0 15px;
    }

    .iscebtn img {
        max-width: 90%;
    }

    .isce ul li {
        width: 23%;
    }
}

@media(max-width:600px) {
    .isce ul li {
        width: 45%;
    }
}

@media(max-width:576px) {
    .isce_title {
        padding: 3rem 0;
    }

    .isce_title .isce_title2 {
        padding: 2rem 0 0 0;
    }

    .isce ul li {
        width: 48%;
    }
}
@media(max-width:450px) {
  .isce_title img:nth-of-type(1) {
    width: 72%;
}  
	.isce_title .isce_title2 img{
		width: auto;
	}
}
@media(max-width:380px) {
    .isce ul li {
        padding: 0 .5em;
    }

    .isce ul li p {
        font-size: 14px;
    }
}

@media(max-width:360px) {
    .isce_title {
        padding: 3rem 1rem;
    }
	.isce_title img {
    width: 95%;
}
	.isce_title .isce_title2 img {
    width: auto;
}
}


.isce li:hover {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transform: translateY(-10px);
}

.isce ul li:hover img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0.7;
}

.iscebtn img {
    position: relative;
    -webkit-animation: aniscebtn 0.6s infinite;
    animation: aniscebtn 0.6s infinite;
}

.iscebtn:hover img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transform: scale(0.9);
    transform-origin: center center;
}

@-webkit-keyframes aniscebtn {
    0% {
        top: 0;
    }

    50% {
        top: 10px;
    }

    100% {
        top: 2px;
    }
}

@keyframes aniscebtn {
    0% {
        top: 0;
    }

    50% {
        top: 10px;
    }

    100% {
        top: 2px;
    }
}