@import url('page-landing.css'); /* landing page basic*/


.index .banner  h1, .index .banner p, .index .landing-aditem h2,
.index .compare h3, .index .compare ul, .index .compare h4 {
    text-align: left;
}

.index .landing-adbox > h2 {
    margin-bottom:24px;
}
.index .landing-adbox > h3 {
    text-align: center;
}
.index .landing-adbox .img {
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .tag {
    display: flex;
    flex-wrap: wrap;
 }

 .tag span {
    color: #1A1A1A;
    background: #F3F3F3;
    padding: 4px 8px; 
    margin: 4px;
    border-radius: 4px;
}
.tag span:first-child {
    margin-left: 0;
}
.tag span:last-child {
    margin-right: 0;
} 

.index .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}

.index .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    box-shadow: none;
    background: #E8E8E8;
}
.index .slick-dots li.slick-active, .slick-dots li:after {
    width: 24px;
    height: 10px;
    border-radius: 24px;
    background-color:#6D01BE;
    top: 0;
    left: 0;
}
.more-view {
    padding-top: 16px;
}
.more-view, .more-view a {
    text-align: center;
    color: #666;
}
/* section  container ------------------------------*/

.topic .container, .feature .container, .story .container, .vier .container {
    padding: 80px 0;
}
.index .banner .container {
    padding: 136px 0 0;
}
.index .company .container {
    padding: 40px 0;
}
.index .topic.huntbyte .container {
    padding-bottom: 0;
}
.index .ad-banner .container {
    padding: 0;
}
.index .workact .container {
    padding: 97px 0 0;
}

/* section  banner ------------------------------*/

.banner {
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: "";
    width: 180px;
    height: 180px;
    background: #E5F33C;
    position: absolute;
    filter: blur(120px);
    top: 0px;
    left: 0px;
    z-index: -1;  
}
.banner::after {
    content: "";
    width: 200px;
    height: 200px;
    background: #8500EA;
    position: absolute;
    filter: blur(200px);
    bottom: 20%;
    right: 10%;
    z-index: -1;  
}

.index .banner .landing-aditem {    
    align-items: end;
}
.index .banner .landing-aditem .text-box {
    min-height: 580px;
}
.index .banner .slgan h1 {
    text-transform:uppercase;
    background-image: linear-gradient(90deg, #6D01BE 0%, #8500EA 90%);
    background-clip: text;
    color: transparent;
}
.index .banner .slgan p {
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
}
.index .banner .slgan p span {
    padding-right: 24px;
    color: #6D01BE;
}
.index .banner .slgan p span i {
    padding-right: 8px;
}
.search-box {
    padding-top: 40px;
}
.search-box .keywords-container {
    position: relative;
    padding: 12px 24px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box .keyword-input-container {
    width: 85%;
    flex-grow: 1;
}
.search-box .keywords-container input {
    margin: 0;
    box-shadow: none;
    height: 44px;
}
.search-box .button {
    position: absolute;
    top: 12px;
    right: 24px;
}
.search-box p {
    margin-top: 24px;
}
.search-box p > a {
    font-style: normal;
   text-decoration: underline;
}


.index .banner .banner-box {
    position: relative;
}
.banner-box .banner-pic {
    animation-name: lightmove;
    animation-duration: 1s;
}
@keyframes lightmove {
    0% {
        opacity: 0;
        display: none;
    }
    10% {
        display: block;
    }
    100% {
        opacity: 1;
    }
}

.banner-box .text {   
    position: absolute;    
}
.banner-box .text.text1 {
    width: 234px;
    top: 0;
    right: 0;

    animation-duration: 3s;
    animation-name: showimg;
	animation-iteration-count: infinite;
	animation-direction: alternate;	
}
.banner-box .text.text2 {   
    width: 180px;
    top: 10%;
    left: 0;

    animation-duration: 2.5s;
    animation-name: showimg;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-delay: 0.6s;
}
.banner-box .text.text3 {
    width: 262px;
    top: 50%;
    right: 10%;

    animation-duration: 3.5s;
    animation-name: showimg;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-delay: 1.2s;
}
.banner-box .text .text-detail {
    background: rgba(249, 241, 255, 0.8);
    border-radius: 4px;
    padding: 6px 12px;    
    display: inline-flex;
    align-items: center;
    justify-content: start;    
   
}
.banner-box .text img {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 8px;
}
.banner-box .text h6, .banner-box .text span  {
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
}
.banner-box .text span {
    color: #666;
}
.banner-box .text p {
    font-size: 12px;
    line-height: 160%;
    font-weight: 400;
}
@keyframes showimg {
    0% {
     opacity: 0;
     transform: scale(0.8) translate3d(16px, 8px, 3em); 
    }

    90% {
     opacity: 1;
     transform: scale(1) translate3d(-16px, -8px, 2em); 
    }
    100% {
        opacity: 1;
        transform: scale(1) translate3d(-16px, -8px, 2em); 
       }
  }  

/* section  job-list -----------------------------*/

.job-list h3 {
    color: #666;
}

.job-list .button-list {    
    padding-top: 40px;
    overflow: auto;
}
.job-list .button-list .button-listitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: max-content;
}
.job-list .button-list ul {
    display: flex;
}
.button-list ul button.button {
    color: #6D01BE;
    background: #fff;
    border: 1px solid #6D01BE;
    border-radius: 30px;
    box-shadow: none;
    padding: 8px 16px;   
}
.button-list ul button.button:hover, .button-list ul button.button.active {
    color: #fff;
    background: #6D01BE;
}
.button-list ul li {
    margin-right: 8px;
}
.button-list ul li:last-child .button {
    margin-right: 0;
}
.job-list .button-list a {
    color: #6D01BE;
    padding-left: 16px;
}

.index .job-list h5 {
    text-align: left;
    color: #6D01BE;
    padding-top: 40px;
    padding-bottom: 16px;
    padding-right: 125px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}
.job-list.publicnon .landing-adbox > h5 {    
    color: #DD5800;
}
.index .job-list h5 span {
    color: #666666;
    font-size: 16px;
    margin-left: 16px;
}
.job-card-item {
    display: flex !important;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E8E8E8;    
    width: 360px;
    margin: 0 8px;
    box-sizing: border-box;
}
.slider-job .title-text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
}
.job-card-item.hide {
    display: none !important;
}
.card-kind {
    min-height: 196px;
}
.job-logo {
    width: 60px;
    height: 60px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 8px;   
    overflow: hidden;
}
.job-logo img {
    height: 60px;
}
.job-card-item p {
    color: #666;
}
.index .job-list .job-card-item h5 {
    text-align: left;
    color: #1a1a1a;
    padding: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制最多顯示兩行 */
    overflow: hidden;
}
.sort span {
    color: #666;   
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}
.sort span::after {
    content:"\e917";
    font-family: 'Material-Icons' !important;
    padding: 0 4px;
}
.sort span:last-child:after {
    display: none;
}
.sort .last-expanded-item::after {
    display: none;
}
.tag {
    padding-top: 8px;
}
.tag span {   
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.2%;
}
.job-list .job-card-item h6 {
    text-align: left;
    margin-top: 24px;;
    padding-top: 8px;
    border-top:1px solid #E8E8E8;
}
.tip span {
    color: #666; 
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    position: relative;
    padding-right: 16px;
}
.tip span::after {
    content: " ";
    width: 4px;
    height: 4px;
    background: #666;
    position: absolute;
    top: 11px;
    right: 6px;
    border-radius: 50%;
}
.tip span:last-child:after {
    display: none;
}
.job-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.collapse-item {
    display: none;
}
.expand-dots {
    cursor: pointer;
    color: #999;
    font-size: 16px;
    line-height: 160%;
    padding: 0 2px;
}
.expand-dots::after {
    display: none !important;
}

.job-list .slick-prev, .job-list .slick-next {
    border: 1px solid #E8E8E8;
    box-shadow: none;
    top: -40px;
}

.job-list .slick-prev {
    left: auto;
    right: 64px;
}
.job-list .slick-next {
    left: auto;
    right: 0;
}
.job-list .slick-prev:before, .job-list .slick-next:before {
    color: #1A1A1A;
}
.job-list .slick-prev:hover:before, .job-list .slick-prev:active:before,
.job-list .slick-next:hover:before, .job-list .slick-next:active:before {
    color: #fff;
}

.job-list .more-view, .job-list .more-view a {    
    color: #6D01BE;
}



/* section  company ------------------------------*/

.logo-list .logo-listitem {
    width: 228px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo-list .logo-listitem::before {
    content:"";
    width: 1px;
    height: 32px;
    background: #E8E8E8;
    position: absolute;
    top: 24px;
    left: 0;
}
.logo-list .logo-listitem img {
    width: 120px;
    height: 45px;   
}
.logo-list .slick-list::before {
    content:"";
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, transparent 50%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.logo-list .slick-list::after {
    content:"";
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, transparent 50%, #fff 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}

/* section  publicnon -----------------------------*/

.publicnon h3 {
    color: #1a1a1a;
    text-align: center;
}
.publicnon .card-kind {
    min-height: 107px;
}


/* section  achieve -----------------------------*/

.index .achieve .landing-adbox > h2 {
    margin-bottom: 40px;
}

.achieve-box {
    border-radius: 16px;
    background: #fff;
    position: relative;
}
.achieve-box::before {
    content: "";
    width: 70px;
    height: 70px;
    background: #8500EA;
    position: absolute;
    filter: blur(100px);
    top: 0px;
    right: 0px;
    z-index: -1;
}
.achieve-box::after {
    content: "";
    width: 160px;
    height: 133px;    
    background: url(../images/landing/index-ad02.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: -120px;
    right: 96px;
}
.index .achieve .achieve-list {
    display: flex;  
    flex-wrap: wrap;  
    padding: 32px 0;
}
.index .achieve .achieve-list li {
    width: 25%;
    flex-grow: 1;
    padding: 24px 0;
}
.index .achieve .achieve-list li h3 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.index .achieve .achieve-list li h3 span {
    color: #666;
}
.index .achieve p {
    text-align: center;
    padding-top: 24px;
    width: 100%;
    justify-content: center;
}
.index .achieve p .button {
    color: #6D01BE;
}
.index .achieve p .button:hover {
    color: #fff;
}

/* section  topic -----------------------------*/

.topic.doubt, .topic.huntbyte  {
    position: relative;
    /* overflow: hidden; */
}

.topic.doubt::before {
    content: "";
    width: 120px;
    height: 120px;
    background: #6D01BE;
    position: absolute;
    filter: blur(150px);
    bottom: 50px;
    left: 0px;
    z-index: -1; 
}
.topic.huntbyte::before {
    content: "";
    width: 120px;
    height: 120px;
    background: #6D01BE;
    position: absolute;
    filter: blur(150px);
    top: 0px;
    right: 0px;
    z-index: -1; 
}

.index .topic .landing-aditem .landing-aditembox.topic-textbox {
    width: 60%;
    max-width: 560px;
}
.index .topic .landing-aditembox h2 {
    margin-bottom: 8px;
}
.index .topic ul.disc li {  
    padding-left: 40px;
    padding-bottom: 20px;
    text-align: left;
}
.index .topic ul.disc li::before {   
    width: 8px;
    min-width: 8px;
    height: 8px;
    background: #6D01BE;
    top: 14px;
    left: 16px;
}

.index .topic .landing-adbox .img {    
    justify-content: end;
}
.index .topic.huntbyte .landing-adbox .img {    
    justify-content: start;
}

.topic.huntbyte .landing-aditem {
    align-items: end;
}
.topic.huntbyte .btn-box {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* section  feature -----------------------------*/

.feature {
    background: linear-gradient(180deg, rgba(240, 219, 255, 0.4) 0%, rgba(240, 219, 255, 0) 50%);
}
.feature .iconmode .landing-aditembox.three-column .picbox {   
    background: #fff;   
}
.feature  .landing-aditembox.three-column .picbox::before {
    display: none;
}
.feature  .landing-aditembox.three-column {
    position: relative;
    padding: 0;
}
.feature  .landing-aditembox.three-column::after {
    content: '\e868';
    font-family: 'icon-cust' !important;
    font-size: 35px;
    color: #6D01BE;
    position: absolute;
    top:136px;
    right:-56px;
}
.feature  .landing-aditembox.three-column:last-child:after {
    display: none;
}

/* section  story -----------------------------*/
.story-list {
   padding-top: 40px;
}

.story-listitem {    
    margin: 0 40px;   
}
.story-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    width: 347px;
    height: auto;
}

.story-detail {
    display: flex;
    align-items: center;  
    padding-top: 40px;  
}
.story-pic {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}
.story-pic.logocompany {
    width: auto;
    height: 48px;
   
}

/* section  view -----------------------------*/

.index .view h2 {
    text-align: left;
    position: relative;
}
.view h2 span {
    position: absolute;
    right: 0;
    color: #6D01BE;
}
.view-listitem {
    width: 347px;
    margin: 0 40px;
}
.view-pic {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f3f3f3;
}
.view-pic img {
    display: block;
    width: 100%;
}
.view-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 1px solid #E8E8E8;
    border-radius: 0 0 12px 12px;
    padding: 24px;
    border-top: 0px;
}
.view .view-text h5 {
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.view-text span, .view-text a {
    padding-top: 8px;
}
.view-text a {
    color: #6D01BE;
}
.view .slick-prev, .ad-banner .slick-prev  {
    left: -60px;
}
.view .slick-next, .ad-banner .slick-next {
    right: -60px;
}

/* section  insights (blog widget) -----------------------------*/

.landing.index section.insights.view .container {
    position: relative;
}
.landing.index .insights-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.landing.index .insights-heading h4 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: -1px;
    text-align: left;
    flex: 1 1 auto;
}
.landing.index .insights-link,
.landing.index .insights-link:hover {
    color: #6D01BE;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    white-space: nowrap;
}
.landing.index .insights-heading  .insights-link::after, 
.landing.index .insights-grid .insight-card-more::after,
.landing.index .more-view .insights-link::after {
    content: '\e868';
    font-family: 'icon-cust' !important;
    color: #6D01BE;
}
.landing.index .more-view .insights-link,
.landing.index .more-view .insights-link::after {
    color: #666;
}
.landing.index .insights-heading  .insights-link > span,
.landing.index .insights-grid .insight-card-more > span,
.landing.index .more-view .insights-link > span {
    display: none;
}
.landing.index .insight-slide {
    width: 347px;
    margin: 0 40px;
}
.landing.index .insights-slider .slick-list {
    padding-bottom: 1px;
}
.landing.index .insight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.landing.index .insight-card-image {
    overflow: hidden;
    background: #f3f3f3;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16 / 9;
}
.landing.index .insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}
.landing.index .insight-card:hover .insight-card-image img {
    transform: scale(1.03);
}
.landing.index .insight-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #E8E8E8;
    border-radius: 0 0 12px 12px;
    padding: 24px;
    border-top: 0;
    background: #fff;
    box-sizing: border-box;
    min-height: 222px;
}
.landing.index section.insights h5 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.landing.index .insight-card-date {
    color: #666;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.2px;
    padding-top: 8px;
}
.landing.index .insight-card-more {
    color: #6D01BE;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    padding-top: 8px;
}
.landing.index .insights .slick-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.landing.index .insights .slick-prev {
    left: -60px;
}
.landing.index .insights .slick-next {
    right: -60px;
}
.landing.index .insights-maintenance {
    padding: 28px 32px;
    border-radius: 12px;
    background: #f7f1fb;
    color: #6D01BE;
    font-size: 18px;
    text-align: center;
}
.landing.index .insights-maintenance-meta {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #4f4f4f;
}

/* section  ad-banner -----------------------------*/

.slider-banner a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}
.slider-banner img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* section  workact -----------------------------*/

.workact {
    background: linear-gradient(180deg, rgba(240, 219, 255, 0) 15%, rgba(240, 219, 255, 0.6) 100%);
}
.workact .landing-aditem {
    align-items: end;
}
.slider-workact > div {
    margin: 0 2px;
}
.workact .btn-box {
    padding-bottom: 40px;
}


/* RWD 1441 ========================================================================== */

@media (max-width:1441px) {}

/* RWD 1366 ========================================================================== */

@media (max-width:1366px) {   

    .index .topic.huntbyte .landing-aditem .landing-aditembox.topic-textbox  {
        padding-left: 54px;
    }
}

@media (max-width:1240px) {   

    .banner-box .text.text1 {        
        top: 25%;
    }
    .banner-box .text.text2 {        
        top: 50%;
    }
    .banner-box .text.text3 {        
        top: 75%;
    }
}

/* RWD 1199 ========================================================================== */

@media (max-width:1199px) {

    .index .banner .container {
        padding: 80px 0 0;
    }
    .index .workact .container {
        padding: 60px 0 0;
    }
    .search-box{
        padding-bottom: 60px;
    }
    .achieve-box::after {
        right: 0;
        transform: scale(0.8);
        transform-origin: right bottom;
    }
   
}

/* RWD 1099 ========================================================================== */

@media (max-width:1099px) {
    .banner-box .text.text1 {
        top: 30%;
    }
}

/* RWD 992 ========================================================================== */

@media (max-width:992px) {
   
    .index .banner .container {
        padding: 60px 0 0;
    }    
    .banner-box .text.text1 {        
        top: -30%;
    }
    .banner-box .text.text2 {        
        top: 35%;
    }   
    .achieve-box::after {        
        transform: scale(0.6);
    }
    .index .achieve .achieve-list li {
        width: 30%;        
    }
    .index .topic.huntbyte .landing-aditem .landing-aditembox.topic-textbox {
        padding-left: 16px;
    }
    .feature .iconmode .landing-aditem {        
        flex-wrap: wrap;
    }
    .feature .landing-aditem > div.three-column {
        margin: 0 40px 20px 0; 
    }
    .feature .textbox p {
        max-width: 200px;
    }
    .feature .landing-aditembox.three-column::after {
        right: -27px;
    }
    .story-listitem, .view-listitem {        
        margin: 0 12px;
    }
    .index .view .landing-adbox h2 {
        margin-bottom: 40px;
    }   
    .view .slick-next, .ad-banner .slick-next {
        right: -20px;
    }
    .view .slick-prev, .ad-banner .slick-prev {
        left: -20px;
    }
    .slider-banner img {
        height: auto;
    }
    .landing.index .insight-slide {
        margin: 0 12px;
    }
    .landing.index .insights .slick-prev {
        left: -20px;
    }
    .landing.index .insights .slick-next {
        right: -20px;
    }

    .enlang .feature .textbox p {
        max-width: max-content;
    }
    .index.enlang .job-list h5 span {
        margin-left:0;
    }
   
}

/* RWD 767 ========================================================================== */

@media (max-width: 767px) {    
 
    .landing section .container, .landing section .container-fluid, 
    .index .banner .container, .index .workact .container {
        padding: 40px 15px;
    } 
    .index .banner .container , .index .workact .container {
        padding-bottom: 0;
    } 
    .index .ad-banner .container {
        padding: 0 15px;
    } 
    .banner-box .text.text1 {        
        top: 30%;
    }
    .banner-box .text.text2 {        
        top: 50%;
    }   

    .index .landing-aditem h2, .index .landing-aditem h3, .index .banner h1, .index .banner p  {
        text-align: center;
    }   
   
    .index .landing-adbox > h2, .index .landing-adbox .landing-aditembox h2 {
        margin-bottom: 8px;
    }      
    
    .index .banner .banner-box, .topic .img {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 40px;
    }

    .job-card-item {
        min-width: 280px;
    }   
    .story-listitem .story-content, .view-listitem {
        width: 280px;
    }   
    .enlang  .view-listitem {
        width: 300px;
    }   
    .landing.index .insight-slide {
        width: 280px;
    }
    .landing.index .insights-heading h4 {
        font-size: 34px;
    }
    .landing.index section.insights h5 {
        font-size: 22px;
    }
    .landing.index .insights-link,
    .landing.index .insight-card-more {
        font-size: 16px;
    }

    /* section  -----------------------------*/

    .banner::after {
        content: "";
        width: 150px;
        height: 150px;       
        filter: blur(180px);
    }
    
    .index .banner .landing-aditem .text-box {
        min-height: max-content;
    }
    .index .banner .slgan p {       
        justify-content: center;
    }
    
    .search-box {
        padding: 24px 0 0;
    }
    .banner-box .text {
        transform: scale(1);
    }

    .index .job-list h5 {       
        padding-right: 0px;
    }

    .index .topic .landing-aditem .landing-aditembox.topic-textbox {
        width: 100%;
    }
    .index .topic .landing-adbox .img, .index .topic.huntbyte .landing-adbox .img {       
        justify-content: center;
    }
    .topic.huntbyte .btn-box {
        padding-bottom: 0px;
        text-align: center;
    }
    .topic.huntbyte .landing-aditem {
        flex-direction: column-reverse;
    }
    .index .topic.huntbyte .landing-aditem .landing-aditembox.topic-textbox {
        padding-left: 0;
    }
    .feature .landing-aditem > div.three-column {
        margin: 0 0 56px;
    }  
    .feature .landing-aditem > div.three-column:last-child {
        margin-bottom: 0;
    } 
    .feature .landing-aditembox.three-column::after {
        content: '\e85b';      
        font-size: 24px;
        position: absolute;
        top: auto;
        right: auto;
        bottom: -40px;
        left: calc( 50% - 12px);
    }
    .feature .textbox p {
        max-width: max-content;
    }
    .workact .btn-box {
       text-align: center;
    }

}

/* RWD 640 ========================================================================== */

@media (max-width: 640px) {}

/* RWD 575 ========================================================================== */

@media (max-width: 575px) {

    .banner-box .text .text-detail {
        transform: scale(0.9);
        transform-origin: center right;
    }      

    .workact .btn-box, .topic.huntbyte .btn-box {       
        text-align: center;
    }

    .index .achieve .achieve-list {
        padding: 24px 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .index .achieve .achieve-list li {
        padding: 0 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .index .achieve .achieve-list li:last-child {
        padding-bottom: 0;
    }
}
/* RWD 480 ========================================================================== */

@media (max-width: 480px) {

    .index .company .container {
        padding: 0;
    }

    .index .banner h1, .index .banner p, 
    .job-list .landing-adbox > h2, .job-list .landing-adbox > h3,
    .topic .topic-textbox h2, .topic .topic-textbox h3,
    .workact .landing-aditem h2 {
        text-align: left;
    }
    .job-list.publicnon .landing-adbox > h2, .job-list.publicnon .landing-adbox > h3,
    .index .view h2 {
        text-align: center;
    }
    
    .index .banner .slgan p {
        justify-content: start;
    }
    .search-box .keywords-container {
        border: none;
        background: transparent;
        padding: 0;
    }
    .search-box .keywords-container input {
        border: 1px solid #E8E8E8;
        border-radius: 4px; 
    }
    .banner-box .text .text-detail {
        transform: scale(0.6);
    }

    .job-list .button-list, .index .job-list h5 {
        padding-top: 24px;
    }
    .index .job-list h5  {
        flex-direction: column;
        align-items: start;
    }
    .index .job-list h5 span {
        display: block;
        margin-left: 0;
    }
    .job-card-item {
        width: 300px;
    } 

    .banner-box .text {
        transform: scale(0.6);
    }
    .search-box .keyword-input-container {
        width: 100%;
    }
    .search-box .keywords-container {
        flex-direction: column;
        align-items: start;
    }
    .search-box .button {
        position: initial;
        margin-top: 16px;
        width: 100%;
    }

    .workact .btn-group .button { 
        margin-bottom:16px;
    }  
    
}

/* RWD 440 ========================================================================== */
@media (max-width: 440px) {}

/* RWD 400 ========================================================================== */
@media (max-width: 400px) {

    .index .banner p > .button {
            padding: 6px 16px;
            width: 100%;
    }  
    
   
 
}
