* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

section {
    width:100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    max-width:1140px;
    padding:0 60px;
    margin: 0 auto;
}
.overlay-up {
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    clip-path: inset(0 0 0 0); 
    transition: none;
    opacity: 50;
    z-index: 99999;
}
.overlay-down {
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    clip-path: inset(0 0 0 0); 
    transition: none;
    opacity: 50;
    z-index: 99999;
}
.overlay-up.animate {
    animation: animationup 1.2s forwards ease-in;
}
.overlay-down.animate{
    animation: animationdown 1.2s forwards ease-in;
}
@keyframes animationup {
    0% {
        clip-path: inset(0 0 0 0); 
        opacity: .9;
    }
    80% {
        clip-path: inset(0 0 30% 0);
        opacity: .9;
    }
    100% {
        clip-path: inset(0 0 50% 0);
        opacity: 0;
    }
}
@keyframes animationdown {
    0% {
        clip-path: inset(0 0 0 0); 
        opacity: .9;
    }
    80% {
        clip-path: inset(30% 0 0 0);
        opacity: .9;
    }
    100% {
        clip-path: inset(50% 0 0 0);
        opacity: 0;
    }
}
.custom-pagination {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 125px;
    top: 98%;
}
.fraction {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.progressbar-container {
    width: 80%;
    height: 5px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progressbar {
    height: 100%;
    width: 0;
    background: #007aff; /* 진행률 색상 */
    transition: width 0.3s ease;
}
/* --------------------------머리 ---------------------*/
header {
    right: 0;
    top: 0;
    z-index: 99999998;
    position: relative;
    
}
/********************** NAV **********************/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
  }
  
  .nav-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }
  
  .logo a {
    display: block;
    background-image: url(/mainimg/logo.png);
    width: 135px;
    height: 45px;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 120px;
  }
  
  .nav-item {
    position: relative;
    padding: 1em;
  }
  
  .nav-link {
    display: block;
    padding: 1rem;
    color: #ffff;
    text-decoration: none;
  }
  .global{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .global .global-img{
    width: 30px;
    height: 30px;
  }
  .global .arr {
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: inline-block;
    transform: rotate(135deg);
    margin: 10px;
}
  /********************** DROPDOWN **********************/
  .dropdown {
    display: none;
    position: fixed;
    left: 0;
    top: 90px;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .gldropdown{
    display: none;
    position: fixed;
    right: 0;
    top: 80px;
    width: 128px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10%;
  }
  
  .dropdown-menu {
    width: auto;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
  }
  .gldropdown-menu{
    width: auto;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    background: #000;
  }
  .dropdown-icon {
    display: none;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    stroke: #000;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }
  .dropdown-menu a,
  .gldropdown-menu a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .nav-item:hover .dropdown,
  .nav-item:hover .gldropdown{
    display: block;
  }
  
  .nav-link:hover,
  .dropdown-menu a:hover,
  .gldropdown-menu a:hover {
    color: #0aa0d2;
  }
  .nav-item.active .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
  }
  
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: #fff;
    height: 2px;
    width: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
  }
  
  .nav-toggle-label span::before {
    bottom: 8px;
  }
  
  .nav-toggle-label span::after {
    top: 8px;
  }
  
  .nav-toggle:checked+.nav-toggle-label span {
    background: transparent;
  }
  
  .nav-toggle:checked+.nav-toggle-label span::before {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  .nav-toggle:checked+.nav-toggle-label span::after {
    transform: rotate(45deg);
    top: 0;
  }
/* ------------------------처음 화면 -------------------*/
.content-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 980px;
    text-align: center;
    width:100%;
    background-image: url(/serveimg/company.png);
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
}

.content-main .text-main {
    position: relative;
    flex-direction: column;
    width: 1260px;
    z-index:1;
}

.content-main .text-main h1 {
    position: relative;
    font-size: 120px;
    color: #fff;
    margin-bottom: 55px;
    z-index: 3;
    font-weight: 900;
}

.text-main p {
    font-size: 35px;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
}

/* ---------------------------소개 ---------------------*/
.content-intro {
    text-align: center;
    background-color: #fff;
    height: auto;
}

.company-intro {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 200px 0;
}

.content-intro h1 {
    font-size: 2.3em;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
}

.intro-gird {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}


.intro {
    border-radius: 8px;
    text-align: left;
}

.intro h3 {
    font-size: 25px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.intro .intro-en{
    font-size: 1.5em;
    color: #7b7b7b;
}

.intro p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    padding-bottom: 50px;
}

.intro .intro-img{
    margin: 50px 0 50px 0;
}

.intro-gird1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.company-intro .small-tiltle,
.interviwee-intro .small-tiltle,
.perks-title .small-tiltle,
.recruit-title .small-tiltle
{
    color: #0aa0d2; 
    margin-bottom: 40px; 
    text-align: left; 
    font-size: 20px; 
    font-weight: 600;
}
.intro-img{
    height: 82px;
}

/*------------------------ 인터뷰 ------------------*/
.content-interviwee {
    text-align: center;
    position: relative;
    padding-bottom: 200px;
    height: 1000px;
    padding-top: 205px;
}

.interviwee-intro {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
    height: 100%;
}
.content-interviwee .interviwee{
    padding-bottom: 50px;
}

.content-interviwee h1 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 100px;
    font-weight: 700;
}
.content-interviwee p {
    font-size: 20px;
    color: #fff;
}

.content-interviwee .interviwee-title{
    font-size: 30px;
    color: #fff;
    padding-bottom: 50px;
}
.interviwee .interviwee-p{
    line-height: 1.5;
}

.interviwee-silde .interviwee-peolpe{
    position: absolute;
    top: -500px;
    right: 100px;
}
.swiper-slide{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 51%;
}
.button-box{
    border: 2px solid #fff;
    width: 125px;
    height: 7%;
    position: absolute;
    top: 89.5%;
}
.swiper-bar{
    display: flex;
    position: absolute;
    top: 850px;
    left: 1px;
    width: 125px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.swiper-pagination{
    position: relative;
}
.button-box::before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.swiper-button-prev,.swiper-button-next{
    top: var(--swiper-navigation-top-offset, 50%);
    color: #fff;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 24px;
}
.swiper-button-prev{
    left: var(--swiper-navigation-sides-offset, 13%);
}
.swiper-button-next{
    right: var(--swiper-navigation-sides-offset, 13%);
}
.swiper{
    height: 100%;
}
/* --------------------------------------------- */
.perks{
    flex-direction: column;
    background-color:#111111;
    padding: 200px 0;
    height: 2300px;
}
.perks .perks-title {
    width: 1200px;
    font-weight: 700;
}
.perks-title hr{
    margin: 90px 0;
    opacity:0.1;
}
.perks-title1{
    padding-bottom: 115px;
}

.perks-title {
    width: 800px;
    text-align: left;
}
.tilte-span{
    display: block;
    margin-bottom: 20px;
}
.perks-title1 h1{
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.title-span{
    margin-bottom: 20px;
    display: block;
}
.perks-support h3,
.perks-health h3,
.perks-growth h3{
    font-size: 40px;
    margin-bottom: 20px;
}

.perks-support p,
.perks-health p,
.perks-growth p{
    font-size: 20px;
    margin-bottom: 50px;
}

.support-img,
.health-img,
.growth-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    color: #fff;
}

.support-img div,
.health-img div,
.growth-img div{
    margin: 100px auto 0 auto;
    width: 190px;
    height: 100px;
}

.support-img p,
.health-img p,
.growth-img p{
    margin-top: 25px;
    font-weight: 300;
}

/*------------------------ 채용 ---------------------*/
.process{
    height: 1100px;
    position: relative;
}

.title1 h1{
    text-align: left;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}
.title1-h1{
    margin-bottom: 125px;
}
.process .recruit-title{
    width: 1200px;
    position: relative;
}

.textimg-flex .text-p{
    text-align: left;
    font-size: 23px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.textimg-flex .perks-br,
.last-p .perks-br{
    display: none;
}
.all-line{
    display: flex;
}
.process-line{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, blue, skyblue);
    height: 3px;
    margin-top: 160px;
    width: 100%;
}
.pc .process-line{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, blue, skyblue, yellow);
    height: 3px;
    margin-top: 160px;
    width: 100%;
}
.process-line2{
    display: flex;
    background: linear-gradient(to right, skyblue, yellow);
    height: 3px;
    margin-top: 160px;
    width: 70%;
    justify-content: flex-start;
    gap: 80px;
    align-items: center;
}
.process-line2 .process-all:nth-child(1){
    margin-left: 40px;
}

.process-line .process-all{
    text-align: center;
}
.process-line2 .process-all{
    text-align: center;
}

.process-line .process-img{
    text-align: center;
    background-color: #282828;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.process-line2 .process-img{
    text-align: center;
    background-color: #282828;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.last-p{
    margin-top: 150px;
    color: #5c5c5c;
}

.casebox{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

.viewcase{
    width: 250px;
    height: 70px;
    border-radius: 500px;
    border: 2px solid;
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;  
    text-align: left;
    cursor: pointer;
}
.viewcase:hover {
    background-color: white;
}

.viewcase:hover .view-scr {
    background-color: #000;
}

.viewcase:hover .view-scr .view-line{
    border-top: 2px solid #fff; 
    border-right: 2px solid #fff; 
}

.viewcase:hover p {
    color:#000;
}

.viewcase .view-scr{
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.viewcase .view-scr .view-line{
    width: 10px;
    height: 10px;
    border-top: 2px solid #000; 
    border-right: 2px solid #000; 
    transform: rotate(45deg);
    margin-top: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    margin-left: 0px;
}
.viewcase p{
    margin-left: 8px;
}




/*------------------------------------------------*/
.foot{
    position: relative;
}
.allfooter{
    margin: 0 auto;
    width: 1200px;
    position: relative;
    height: 285px;
}

.logobox{
    text-align: left;
}
.logobox img{
    margin-top: 50px;
    margin-bottom: 45px;
    aspect-ratio: auto 73 /23;
}
.foot .footer-intro{ 
    text-align: left;
    line-height: 1.3;
}
.foot .footer-intro p{
    color: #595959;
    font-size: 16px;
}
.foot .footer-intro .intro-bold{
    font-weight: bold;
    color: #fff;
}
.foot .footer-intro .intro-margin{
    display: block;
    margin-bottom: 15px;
}
.foot .sitebox{
    width: 170px;
    height: 50px;
    background-color: #333333;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}
.siteplus {
    position: relative;
    width: 10px;
    height: 2px;
    background-color: #fff; 
  }
  
  .siteplus::before {
    content: '';
    position: absolute;
    top: 50%; 
    left: 0;
    transform: translateY(-50%) rotate(90deg);
    width: 10px;
    height: 2px; 
    background-color: #fff;
  }

  .footer-intro .foot-br{
    display: none;
  }

/*--------------------미디어------------------*/

@media screen and (max-width:768px) {
    /*-------------------nav--------------------*/
    .nav-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 2;
      }
    
      .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
      }
    
      .nav-toggle:checked~.nav-menu {
        transform: translateX(0);
      }
    
      .nav-item {
        margin: 0;
      }
      .nav-link{
        color: #000;
      }
      .global{
        display: none;
      }
      .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 0px;
      }
    
      .dropdown-menu {
        padding: 10px 0;
      }
    
    /* 반응형 스타일 */
      .nav-toggle-label {
        display: flex;
        cursor: pointer;
      }
    
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
      }
    
      .nav-toggle:checked~.nav-menu {
        display: block;
      }
    
      .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
      }
    
      .dropdown-menu {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    
      }

      .nav-item:hover .dropdown-icon {
        stroke :#0aa0d2;
      }
    
      .nav-item:hover .dropdown {
        display: none;
      }
    
      .nav-item.active .dropdown {
        display: block;
        background: #fff;
      }
      .dropdown-icon {
        display: inline-block;
      }
      .dropdown-menu a, .gldropdown-menu a {
        color:#000;
      }
      /*------------------------------------content-----------------------------*/
    .company-intro{
        width: 80%;
        padding: 0;
    }
    .content-main{
        height: 1155px;
        background-position: center;
        background-size: cover;
    }
    .logo .frontlogo{
        width: 500px;
    }
    .logo .backlogo{
        width: 500px;
    }
    .text-main{
        height: 720px;
    }
    .text-main h2{
        font-size: 60px;
    }
    .content-main .text-main h1{
        font-size: 56px;
        margin-bottom: 70px;
    }
    .text-main p{
        white-space: pre-line;
        font-size: 32px;
    }
    .intro-gird{
        grid-template-columns: repeat(1, 1fr);
    }
    .intro p{
        font-size: 16px;
        white-space: pre-line;
        padding: 0;
    }
    .intro h3{
        font-size: 21px;
        white-space: pre-line;
    }
    .intro .intro-en{
        font-size: 21px;
        padding: 0;
        margin-top: 40px;
        margin-bottom: 45px;
    }
    .content-intro{
        height: 100%;
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .content-intro h1{
        font-size: 30px;
    }
    .intro .intro-img{
        width: 70px;
        height: 125px;
        margin: 120px 0 40px 0
    }
    /*-------------------------------------intervieww--------------------*/
    .content-interviwee{
        height: 100%;
        margin-top: 160px;
    }
    .content-interviwee h1{
        font-size: 46px;
        margin-bottom: 80px;
    }
    .interviwee-intro{
        height: 1000px;
        width: 80%;
        padding: 0;
    }
    .swiper-wrapper .interviwee-peolpe img{
        width: 386px;
        height: 100%;
    }
    .content-interviwee .interviwee{
        padding: 50px 0;
    }
    .swiper-wrapper .swiper-slide{
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        height: 60%;
    }
    .swiper-button-next,
    .swiper-button-prev{
        top:var(--swiper-navigation-top-offset,50%) !important;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev{
        right: var(--swiper-navigation-sides-offset,10%) !important;
    }
    .swiper-bar{
        top: 720px;
        width: 125px;
    }
    .interviwee-silde .interviwee-peolpe{
        position: absolute;
        top: -1000px;
        right: 50px;
    }
    .content-interviwee .interviwee-title{
        font-size: 21px;
        padding-bottom: 30px;
    }
    .interviwee .interviwee-p{
        font-size: 16px;
        margin-bottom: 0;
        line-height: 1.3;
    }
    .interviwee-all{
        flex-direction: column-reverse;
    }
    .interviwee-all .interviwee-peolpe{
        margin-bottom: 80px;
    }
    .content-interviwee .interviwee-silde{
        justify-content: flex-end;
    }
    /*----------------------------------perks----------------------------*/
    .perks{
        height: auto;
        padding-top: 160px;
        padding-bottom: 160px;
        background: #111111;
    }
    .perks .perks-title{
        width: 80%;
        padding: 0;
    }
    .perks-title1 h1{
        font-size: 30px;
    }
    .title-span{
        display: block;
    }
    .title-span2{
        display: block;
    }
    .perks-title1{
        padding-bottom: 120px;
    }
    .perks-support h3, .perks-health h3, .perks-growth h3{
        font-size: 21px;
        margin-bottom: 40px;
    }
    .perks-support p, .perks-health p, .perks-growth p{
        font-size: 16px;
        line-height: 1.6;
    }
    .support-img, .health-img, .growth-img{
        grid-template-columns: repeat(2, 1fr);
        justify-content: center
    }
    .support-img div, .health-img div, .growth-img div{
        margin: 60px auto;
    }
    /*------------------------------- process ---------------*/
    .process{
        height: auto;
        margin-top: 160px;
        margin-bottom: 160px;
    }
    .process .recruit-title{
        width: 100%;
        padding: 0;
    }
    .process .title11{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .process .title1{
        width: 80%;
    }
    .title1-h1{
        word-break: keep-all;
        margin-bottom: 120px;
    }
    .process .title1 h1{
        text-align: left;
        font-size: 33px;
        line-height: 1.2;
        font-weight: 700;
    }
    .process .linepc{
        display: none;
    }
    .textimg-flex .text-p{
        font-size: 21px;
        width: 80%;
        margin: 0 auto 15px;
        line-height: 1.3;
        
    }
    .textimg-flex{
        display: flex;
        flex-direction: column-reverse;
        gap: 170px;
        width: 100%;
    }
    .all-line{
        flex-direction: column;
        gap: 50px
    }
    .process-line{
        margin-top: 90px;
    }
    .process-line2{
        width: 100%;
        justify-content: center;
    }
    .process-line2 .process-all:nth-child(1){
        margin: 0;
    }
    .textimg-flex .perks-br,
    .last-p .perks-br{
        display: block;
    }
    .last-p{
        font-size: 16px;
        width: 80%;
        margin: 60px auto 0 auto;
        line-height: 1.3;
    }
    .casebox{
        justify-content: flex-start;
        width: 80%;
        margin: 100px auto 0 auto;
    }
    .allfooter{
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .foot .footer-intro p{
        line-height: 1.5;
        font-size: 13px;
    }
    .logobox img{
        width: 150px;
    }
    .foot .sitebox{
        position: absolute;
        top: -95px;
        right: 0px;
    }
    .footer-intro .foot-br{
        display: block;
    }
    /*------------- 드롭 ----------*/
    .dropdown1{
        display: none !important;
    }
    .menu-toggle {
        display: block;
    }

    .menu-toggle span,
    .menu-toggle span:before,
    .menu-toggle span:after {
        display: block;
    }
    .manuBar .logo {
        z-index: 1;
    }

    .manuList .media-global {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #cccccc;
        margin-bottom: 80px;
        margin-top: 235px;
    }

    .manuList .media-ko {
        border: 2px;
        border-right-style: solid;
    }

    .manuList .media-ko p,
    .manuList .media-en p {
        margin: 10px;
    }
    .manuList .media-ko p{
        color: #000;
    }
    .moblie-dropdown{
        display: block;
    }
    .small-tiltle {
        font-size: 18px !important;
        font-weight: 400 !important;
    }
    .button-box{
        width: 100px;
        height: 5%;
        right: 0;
        top: 85%;
    }
    .custom-pagination{
        right: 0;
        width: 104px;
        top: 91%;
    }
}
@media (max-width: 1980px) and (min-width: 1024px) {
    .nav-menu {
      gap: calc(120px - ((120 - 40) * ((1980px - 100vw) / (1980 - 1024))));
    }
    .company-intro{
        width: 80%;
    }
    .interviwee-intro{
        width: 80%;
    }
    .perks .perks-title{
        width: 80%;
    }
    .perks-title1 h1{
        font-size: 44px;
    }
    .process .recruit-title{
        width: 80%;
    }
    .title1 h1{
        font-size: 45px;
    }
    .textimg-flex .text-p{
        font-size: 19px;
    }
    .last-p{
        font-size: 13px;
    }
    .allfooter{
        width: 80%;
    }


}

@media (max-width: 1024px) and (min-width: 768px) {
      .nav-menu {
        gap: calc(40px - ((60 - 20) * ((1024px - 100vw) / (1024 - 768))));
      }
    .company-intro{
        width: 80%;
    }
    .intro p{
        font-size: 16px;
    }
    /*--------------------------------------*/
    .interviwee-intro{
        width: 80%;
    }
    .content-interviwee .interviwee-title{
        font-size: 26px;
    }
    .content-interviwee p{
        font-size: 16px;
    }
    /*-----------------------------------------*/
    .perks .perks-title{
        width: 80%;
    }
    .perks-title1 h1{
        font-size: 45px;
    }
    .perks-support h3, .perks-health h3, .perks-growth h3{
        font-size: 35px;
    }
    .perks-support p, .perks-health p, .perks-growth p{
        font-size: 17px;
    }
    /*--------------------------------------*/
    .process .recruit-title{
        width: 80%;
        padding: 0;
    }
    .title1 h1{
        font-size: 45px;
    }
    .textimg-flex .text-p{
        font-size: 19px;
    }
    .last-p{
        font-size: 13px;
    }
    .process-line .process-img{
        width: 140px;
        height: 140px;
    }
    /*--------------------------------------------*/
    .allfooter{
        width: 80%;
    }
    .swiper-wrapper .interviwee-peolpe img{
        max-width: 386px;
    }
    .tabletbr{
        display: none;
    }
}


.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height:2px;
    background:rgba(255,255,255,0.2);
    top:-1px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background:#fff;
}


.progressbar-container {height:2px;background: rgba(255,255,255,0.2);}
.progressbar {background:#fff;}

#current-slide, #total-slides {
    color:#fff;
}
@media screen and (max-width:1300px){
    .tabletbr{
        display: none;
    }
}