*{
    position: relative;
}
html{
    overflow: -moz-hidden-unscrollable;
    height: 100%; 
    padding-top: constant(safe-area-inset-top);
    padding-right: constant(safe-area-inset-right);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-left: constant(safe-area-inset-left);       
    image-rendering: -webkit-optimize-contrast;
}
#app{
    overflow: hidden;
}
p{
    color: #3e3a39;
    text-align: justify;
}

.green01{
    color: #38afa5;
}
.green02{
    color: #37aa52;
}
.grey01{
    color: #3E3A39;
}
.grey02{
    color: #7C7D84;
}
.grey03{
    color: #E0DFD7;
}
.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
}
.navbar .logo{
    width: 360px;
    padding: 0 30px;
}
.navbar .navBtns{
    width: 70%;
    transition: all .5s ease;
}
.navbar .nav{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.navbar .nav>div{
    width: calc(100% / 7);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid transparent 5px;
    transition: all .25s ease;
    color: #3e3a39;
    cursor: pointer;
}
.navbar .nav>div:hover{
    border-bottom: solid #38afa5 5px;
}
.navbar .nav>div.active{
    border-bottom: solid #38afa5 5px;
}
.navbar .nav div ul.subNav{
    position: fixed;
    background-color: rgba(240, 240, 240, 0.7);
    /*background-color: rgba(55, 170, 82, 0.5);*/
    width: 100vw;
    top: 90px;
    left: -100vw;
    opacity: 1;
    /*transition: .5s ease;*/
    padding: 30px 0;
    padding-left: 30%;
    list-style-type: none;
    display: flex;
    justify-content: start;
    align-items: start;
}
.navbar .nav div:hover ul.subNav{
    opacity: 1;
    padding-left: 30%;
    left: 0%;
}

.navbar .nav div ul.subNav.spec{
    padding: 30px 5vw;
    padding-left: 300px;
    padding-right: 30px;
    justify-content: space-around;
}
.navbar .nav div:hover ul.subNav.spec{
    padding: 30px 5vw;
    padding-left: 300px;
    padding-right: 30px;

}
.navbar .nav ul.subNav .listItem{
    position: absolute;
    margin-left: -170px;
    color: #37aa52;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2.5em;
}
.navbar .nav ul.subNav.spec .listItem{
    position: relative;
}

.navbar .nav ul.subNav .listItem .arrow{
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #37aa52;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 35px;
}

.navbar .nav ul.subNav .listItem .arrow i{
    color: #fff;
    font-size: 12px;
}

.navbar .nav ul.subNav li{
    padding-left: 15px;
}
.navbar .nav div ul.subNav a,
.navbar .nav div ul.subNav div{
    width: calc((100% - 200px) / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    line-height: 2.5em;
}
.navbar .nav div ul.subNav.spec a{
    width: initial;
    padding: 0 10px;
}
.navbar .nav ul.subNav ol li{
    list-style-type: "-";
    font-weight: normal;
    white-space: nowrap;
}
.messageBtn{
    width: 200px;
    background: #009f8d; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #009f8d 0%, #198a98 51%, #24a145 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #009f8d 0%,#198a98 51%,#24a145 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #009f8d 0%,#198a98 51%,#24a145 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009f8d', endColorstr='#24a145',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    height: 100%;
    color: #fff;
}
.index .logo{
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30vw;
}
.index .logo img{
    width: 13vw;
}
.index .kv{
    width: 70vw;
    height: 70vh;
    max-height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom-left-radius: 700px;
}
.index .service{
    padding: 150px 30px 33vh 30px;
}
.index .service .container{
    max-width: 1000px;
}
.index .service .serviceTitle, 
.index .news .newsTitle{
    font-size: 55px;
    font-weight: bold;
    letter-spacing: 5px;
}
/*.index .service .serviceTitle::before{
    content: '';
    width: 180px;
    height: 2px;
    position: absolute;
    left: -70px;
    top: 35px;
    background-color: #38afa5;
    transform: rotate(-45deg);
}*/
.index .service .serviceTitle span,
.index .news .newsTitle span{
    font-size: 16px;
    color: #38afa5;
    margin-left: 50px;
    font-weight: bold;
    letter-spacing: 1px;
}
.index .service .serviceBox,
.index .service .content{
    width: calc(100% / 2 - 30px);
}


.index .service .serviceBox{
    min-height: 56.25%;
    border-top-right-radius: 50px;
    box-shadow: 5px 5px 20px  rgba(181, 181, 181, 0.5);
    background-color: #fff;
    padding: 30px;
    margin-bottom: 60px;
}
.index .service .serviceBox:nth-child(3){
    margin-top: -100px!important;
}
.index .service .serviceBoxBg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 40% 0, 24% 100%, 0% 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.index .service .serviceBox .title{
    font-size: 28px;
    margin-bottom: 15px;
    color: #3E3A39;
    font-weight: bold;
    letter-spacing: 1px;
}
.index .service .serviceBox p{
    line-height: 1.8em;
    color: #3e3a39;
}
.index .service .serviceBox a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.index .service .moreBtn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(50% - 30px);
}

.index .service .serviceBg{
    width: 35%;
    /*height: 35vw;*/
    /*clip-path: polygon(100% 0, 0 100%, 100% 100%);*/
    /*background-color: #198A98;*/
    position: absolute;
    right: 0;
    bottom: 0;
}
/*.index .service .serviceBg .uponBg{
    position: absolute;
    left: 0;
    bottom: -110px;
    width: 300%;
    height: 200px;
    border-radius: 100%;
    background-color: #6ac2b7;
}*/
.index .service .dotBg{
    position: absolute;
    left: 10vw;
    bottom: 28vh;
}
.index .service .dotBg span{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #198A98;
}
.index .service .dotBg span:nth-child(2){
    margin-top: 80px;
}
.index .service .dotBg span:nth-child(3){
    margin-top: 160px;
}


.index .about{
    background-color: #f4f4f4;
    border-top-left-radius: 200px;
    height: 50vw;
}

.index .about .aboutBg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 15% 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index .about .content{
    padding: 8vw;
}
.index .about .content .txt{
    text-align: justify;
    width: 25vw;
    letter-spacing: 1px;
    line-height: 1.8em;
}

.btnStyle01{
    width: 300px;
    height: 70px;
    background-color: #3e3a39;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-around;
    align-items: center;
    letter-spacing: 5px;
    padding-left: 15px;
    transition: all .25s ease;
}
.btnStyle01:hover{
    background-color: #38afa5;
    color: rgba(255, 255, 255, 0.7);
}
.index .news{
    padding: 100px 0;
    background-color: #f4f4f4;
}
.index .news::before{
    content: '';
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom-right-radius: 200px;

}
.index .news .newsBg{
    width: 15%;
    position: absolute;
    left: 0;
    top: 0;
}
.index .news .day,
.newsPage .day{
    font-size: 48px;
    font-weight: bold;
    width: 65px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index .news .month, .index .news .year,
.newsPage .month, .newsPage .year{
    font-weight: bold;
}
.index .news .newsList .newsGroup,
.newsPage .newsList .newsGroup{
    width: 100%;
    border-bottom: 1px solid #38afa5;
    padding: 15px 0;
}
.index .news .newsList .newsGroup .grey01,
.newsPage .newsList .newsGroup .grey01{
    transition: all .5s;
}
.index .news .newsList .newsGroup:hover .w100.grey01,
.newsPage .newsList .newsGroup:hover .w100.grey01{
    color: #14823d;
}

.index .news .newsList .newsGroup:nth-child(1),
.newsPage .newsList .newsGroup:nth-child(1){
    border-top: 1px solid #38afa5;
}
.index .news .newsList .tags,
.newsPage .newsList .tags{
    border: 1px solid #3e3a39;
    letter-spacing: 2px;
    width: 120px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 30px;
}
.index .link{
    background-color: #f4f4f4;
    padding: 180px 0;
}
.index .link .linkBox01{
    box-shadow: 5px 5px 20px 0 rgba(181, 181, 181, 0.5);
    border-top-right-radius: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 150px;
    margin: 30px auto;
}

.index .link .linkBox01Bg{
    position: absolute;
    clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.index .link .w50{
    padding: 0 3vw;
}
.index .link p{
    margin-bottom: 0;
}
.index .link svg{
    margin-bottom: 10px;
}
.index .link .linkBox02{
    box-shadow: 5px 5px 20px 0 rgba(181, 181, 181, 0.5);
    border-bottom-left-radius: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 150px;
    margin: 30px auto;
}
.index .link .linkBox02Bg{
    position: absolute;
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.index .link .linkBox02 svg{
    transform: rotateY(180deg);
}

.index .link .linkBg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20vw;
}
.index .link .container, 
.index .other .container{
    max-width: 960px;
}
.index .other{
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.index .other .box{
    background-color: #fff;
    box-shadow: 5px 5px 20px  rgba(181, 181, 181, 0.5);
    width: calc(50% - 30px);
    padding: 50px;
    cursor: pointer;
}
.index .other .box01{
    border-top-left-radius: 50px;
}
.index .other .box02{
    border-bottom-right-radius: 50px;
}
.index .other .box svg{
    position: absolute;
    right: 30px;
}
.bottomLine{
    width: 100%;
    height: 20px;
    background: #009f8d; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #009f8d 0%, #198a98 51%, #24a145 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #009f8d 0%,#198a98 51%,#24a145 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #009f8d 0%,#198a98 51%,#24a145 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009f8d', endColorstr='#24a145',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
footer{
    padding: 50px 0;
    background-color: #222;
    color: #fff;
    font-size: 14px;
}
footer .logo{
    width: 200px;
}
footer i{
    margin-right: 10px;
    color: #fff;
}
footer .navArea a{
    color: #fff;
}
footer .navArea ul li{
    list-style-type: '-';
    padding-left: 15px;
    color: #d8d8d8;
    line-height: 2em;
}
footer .navItem{
    width: 100px;
    flex-shrink: 0;
}
footer .container{
    max-width: 1440px;
}
footer hr{
    border-top: 1px solid #979797;
    margin:  2rem 0;
}

.banner{
    width: 100vw;
    height: 30vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.contentBg01{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;

}
.contentBg02{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
}
.contentBoard{
    width: 100%;
    min-height: 40vh;
    background-color: #f4f4f4;
}
.breadcrumb{
    background-color: transparent;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: '>';
}
.breadcrumb-item.active{
    color: #37aa52;
}
.headline{
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #3e3a39;
    padding-left: 30px;
}
.headline::before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 35px;
    background-color: #38afa5;
}
.headlineEn{
    color: #38afa5;
}
.board{
    border-radius: 0;
    border-top-right-radius: 50px;
    margin-top: 50px;
    box-shadow: 0 0 0 transparent;
}
.board .title{
    color: #37aa52;
    font-size: 24px;
    margin-bottom: 15px;
}

.servicePage .serviceBox {
    height: 250px;
    border-top-right-radius: 50px;
    box-shadow: 5px 5px 20px rgb(181 181 181 / 50%);
    background-color: #fff;
    padding: 30px;
    margin-bottom: 60px;
    cursor: pointer;
}


.servicePage .serviceBoxBg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 40% 0, 24% 100%, 0% 100%);
    background-size: cover;
    background-position: 0;
    background-repeat: no-repeat;
}
.servicePage .serviceBox .title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3E3A39;
    font-weight: bold;
    letter-spacing: 1px;
}
.servicePage .serviceBox a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.servicePage .board .title{
    padding-left: 20px;

}
.servicePage .board .title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 25px;
    background-color: #38afa5;
}
.servicePage .itemOne{
    border-bottom: 1px solid #38afa5;
    padding: 20px 0;
}
.servicePage .itemOne:nth-child(1){
    border-top: 1px solid #38afa5;
}
.servicePage .downloadBtn{
    background-color: #3e3a39;
    color: #fff!important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 55px;
    letter-spacing: 5px;
    flex-shrink: 0;
    margin-left: 30px;
}
.servicePage .downloadBtn i{
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    letter-spacing: 1px;
}
.jobPage .album{
    cursor: pointer;
    width: calc(100% / 3 - 15px);
    margin: 15px;
}
.jobPage .album.board{
    width: 100%;
}
.jobPage .album .board{
    height: 265px;
    margin-top: 0;
    overflow: hidden;
}
.jobPage .album .w100-4 .photoOne{
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.jobPage .album .w100-4{
    width: calc(100% / 4 - 10px)!important;
    margin: 5px;
}
.newsPage .tagSwitch{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}
.newsPage .tagSwitch .tagBtn{
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3e3a39;
    margin-right: 15px;
    letter-spacing: 3px;
}
.newsPage .tagSwitch .tagBtn.active{
    background-color: #3e3a39;
    color: #fff;
}

.contactPage input{
    border: 0;
    height: 60px;
    padding: 0 30px;
    color: #3e3a39;
    margin-bottom: 15px;
}
.contactPage textarea{
    border: 0;
    padding: 10px 30px;
    height: 180px;
}
::placeholder{
    opacity: 0.5;
}
.contactPage .board{
    border-radius:  0px;
    border-bottom-right-radius: 50px;
}
.about .board img{
    max-width: 100%;
    height: auto!important;
}
ul.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin: 0 5px;
    line-height: 1.25;
    color: #3e3a39;
    background-color: transparent;
    border: 1px solid #3e3a39;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #3e3a39;
    border-color: #3e3a39;
}
hr.greenLine{
    border-top: 1px solid #38afa5;
}
.h5625{
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.board p{
    line-height: 2em;
}
.moreTagBtn{
    margin-left: 10px;
    background-color: #000;
    padding: 2px 7px;
    color: #fff;
    border-radius: 15px;
    font-size: 14px;

}
.recaptcha{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.g-recaptcha{
    margin-top: 15px;
}
#contactForm .btnStyle01{
    height: 75px;
    margin-left: 5px;
}
.album .w100-4.h5625{
    width: calc(100% / 4 - 10px)!important;
    margin: 5px;
}
.breadcrumb{
    color: #666;
}
.gotoAlbum{
    background-color: #38afa5;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    width: 70px;
    flex-shrink: 0;
}
@media (max-width: 1200px){
    /*.navbar .logo{
        width: 30%;
    }
    .messageBtn{
        width: 150px;
    }*/
}
@media (max-width: 1200px){

    .index .service .serviceBox, .index .service .content {
        width: 100%;
        margin-bottom: 30px;
    }
    .navbar{
        height: 60px;
    }
    .navbar .logo {
        width: 240px;
    }
    .index .kv{
        width: 75vw;
        height: 30vh;
        max-height: 280px;
    }
    .index .service{
        padding: 30px 0 100px 0;
    }
    .index .service .serviceTitle, .index .news .newsTitle{
        font-size: 36px;
        margin-bottom: 15px;
    }
    .index .service .serviceTitle span, .index .news .newsTitle span{
        margin-left: 15px;
    }
    .index .service .serviceBox{
        min-height: 56.25%;
    }
    .index .service .serviceBox .title{
        font-size: 22px;
        top: 10px;
    }
    .index .service .serviceBox p{
        font-size: 14px;

    }
    .index .about .content .txt{
        width: 100%;
        margin-top: 15px!important;
    }
    .index .about{
        height: 67vw;
    }
    .index .service .moreBtn{
        width: initial;
    }
    .index .service .dotBg{
        display:  none;
    }
    .index .about .aboutBg{
        opacity: 0.3;
    }
    .btnStyle01{
        width: 250px;
        height: 50px;
    }
    .index .link svg{
        margin-top: 15px;
    }
    .index .link{
        padding: 100px 0;
    }
    footer  .logo{
        width: 150px;
    }
    .ham{
        width: 30px;
        height: 30px;
        margin-right: 30px;
    }
    .ham div{
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: #3E3A39;
        border-radius: 5px;
        opacity: 1;
        transition: all .5s ease;
    }
    
    .ham div:nth-child(1){
        margin-top: -10px;
    }
    .ham div:nth-child(3){
        opacity: 0;
    }
    .ham div:nth-child(4){
        margin-top: 10px;
    }
    .ham.open div:nth-child(1),
    .ham.open div:nth-child(4){
        opacity: 0;
    }
    .ham.open div:nth-child(2),
    .ham.open div:nth-child(3){
        opacity: 1;
    }
    .ham.open div:nth-child(2){
        transform: rotate(45deg);
    }
    .ham.open div:nth-child(3){
        transform: rotate(-45deg);
    }
    
    .navBtns{
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%!important;
        background-color: #fff;
        flex-direction: column;
    }
    .navbar .nav{
        flex-direction: column;
        flex-wrap: nowrap;
        position: relative;
        padding: 30px 0;
        overflow: scroll;
    }
    .navbar .nav>div{
        width: 100%;
        height: initial;
        flex-direction: column;
        /*padding: 15px 0;*/
    }
    .navbar .nav div ul.subNav.spec{
        padding:10px 30px;
    }

    .navbar .nav div ul.subNav{
        left: initial;
        flex-direction: column;
        position: relative;
        display: block;
        top: 0;
        height: 100%;
        padding: 0;
        overflow: hidden;
        transition: all .5s ease;
    }
    .navbar .nav div ul.subNav.active{
        display: block;
        padding: 15px 0;
        height: 100%;
    }
    .navbar .nav>div.active {
        border-bottom: solid transparent 5px;
    }
    .messageBtn{
        width: 100%;
        height: initial;
        padding: 30px 0;
        /*position: fixed;*/
        /*bottom: 0;*/

    }
    .navbar .nav ul.subNav .listItem{
        display:  none;
    }
    .navbar .nav div ul.subNav a, .navbar .nav div ul.subNav div{
        width: 100%;
    }
    .navbar .nav div:hover ul.subNav.spec{
        padding-left: 30px;
    }
    .navbar .nav>div:hover{
        border-bottom: solid transparent 5px;
    }
    .navbar .nav ul.subNav li,.navbar .nav div:hover ul.subNav{
        padding-left: 0;
    }
    .breadcrumb{
        margin-bottom: 0;
    }
    .board{
        margin-top: 0px;
    }
    .index .service .serviceBox:nth-child(3) {
        margin-top: initial!important;
    }
    .headline{
        font-size: 24px;
    }
    .headlineEn{
        padding-left: 30px;
    }
    .container>.headBox{
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }
    
    .container{
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
    .breadcrumb{
        padding: 0;
        padding-bottom: 15px;
    }
    .contentBg01{
        width: 90px;
    }
    .banner{
        height: 56.25vw;
    }
    .servicePage .downloadBtn{
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
    .newsPage .tagSwitch{
        margin-top: 0;
    }
    .newsPage .tagSwitch .tagBtn{
        margin-bottom: 15px;
    }
    .h5625{
        /*padding-top: calc(56.25% / 2);*/
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .servicePage .serviceBox{
        height: initial;
    }
    .servicePage .serviceBox .title{
        font-size: 22px;
    }
    .servicePage p{
        font-size: 14px;
    }
    .album .w100-4.h5625{
        width: calc(100% / 2 - 10px)!important;
        margin: 5px;
    }
}
@media (max-width: 1200px){
    #contactForm .jcfe{
        flex-direction: column;
        width: 100%;
    }
    #contactForm .btnStyle01{
        width: 100%;
        margin: 0px;
    }
    .navbar .nav{
        justify-content: flex-start;
    }
    .navbar .nav div:hover ul.subNav.spec{
        padding: 10px 30px;

    }
    .jobPage .album{
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .jobPage .album .w100-4{
        width: calc(100% / 2 - 10px)!important;
        margin: 5px;
    }
    .jobPage .album .board{
        height: initial;
    }

}

@media(max-width: 768px){
    .index .kv{
        width: 90vw;
    }
}

