/********** Template CSS **********/

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

:root {
    --primary: #0051ff;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
    --gray: rgb(231, 230, 230);
    --c_green: #4ba635;
    --c_blue: #121b37;
    --c_DarkBlue: #151a29;
    --c_puple: #3e0d7a;
    --c_puple2: #7524b3;
    --black:#000000;

  }



body{
    font-family: pretendard;
    color:var(--dark);
    /*텍스트 선택 불가*/
    -webkit-user-select: none !important; 
    -moz-user-select: -moz-none !important;
    -ms-user-select: none !important;
    user-select: none !important;
 }

h1,h2,h3,h4,h5{
    font-family: pretendard;
} 

.btn {
    font-weight: 700;
    transition: .5s;
}


 /*** Section Title Start ***/


.section {
    color:var(--c_puple2);
}

.section2 {
    color:var(--black);
    margin-bottom:10%;
}

.section3 {
    color:var(--gray);
    transition: 1.5s;
}

.section-context {
    font-size:1.5rem;
    font-weight:300;
    border-left:1px solid var(--light) ;
    box-sizing:content-box;
    padding:1% 2%;
    color:var(--light)
}

.section-context2 {
    font-size:1.5rem;
    font-weight:300;
    border-left:1px solid var(--black) ;
    box-sizing:content-box;
    color:var(--dark);
    padding:1% 2%;
}

.smaller {
    font-size:1.2rem;
    font-weight:200;
   }


 /*** Section Title End ***/
 
.header-mobile{
    margin-top:79px;
    display: none;
    position:relative;
    width:100%;
    height:200px;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:65px;
    overflow: hidden; 
 }

 #video-thumbnail, #video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


 #video-thumbnail {
    transition: opacity 0.5s ease-in-out; /* 서서히 사라지는 효과 */
    animation:none;
}

 .header-mobile img{
    width:100%;
    object-fit: cover;
    filter:brightness(0.9);
    animation: zoom 1.5s;
 }


 .header {
    overflow:hidden;
}

.header img {
    height:60vh;
    width:100vw;
    object-fit: cover;
    filter:brightness(0.8); 
    animation: zoom 1.5s;
}

@keyframes zoom{
    from{
        transform: scale(1.3,1.3);
    }

    to{
        transform: scale(1,1);
    }
}


 .speed-mobile {
    display:none;
    background-image: linear-gradient(to right, #6441A5 0%, #2a0845  51%, #6441A5  100%);
    margin: 10px 3px 0px 3px;
    padding-top:0.6rem;
    padding-bottom:0.3rem;
    border-radius:50px;
    box-shadow: 0 0 20px #eee;
}

.speed-mobile a h3{
    color:white;
    font-size:1rem;
    font-weight:500;
}
.speed-mobile a h3 span{
    font-weight:700;
    font-size:1.2rem;
    }

.speed-mobile a h3 i{
    font-size:1rem;
    }


#header-carousel .carousel-item video{
    height:950px;
    width:100%;
    object-fit: cover;
    margin-bottom: -7px;
    filter:brightness(0.8);
  }

 
.carousel-caption {
    padding-bottom: 7%;
    left:7%;
}

.carousel-caption h1{
 font-weight: 800;
}

.carousel-caption p{
 font-size:24px;   
}

.caption-highlight {
    color:var(--c_green);
    font-size:90px;
}
 
.carousel-control-prev {
    left: -3%;
    top: 10%;
    font-size: 40px;
}
 
.carousel-control-next {
   top: 10%;
   font-size: 40px;
}


@media (max-width: 575.98px) {
    .header-mobile{
        display:flex;
    }
    #header-carousel{
        display:none;
    }
    .header {
        display:none;
    }
    .speed-mobile {
        display:block;
    }
    
}


/*** Header Carousel End ***/


/*** Navbar Start ***/

 .navbar-mobile {
    display:none;
    background-color:var(--c_blue);
 }

 .navbar-mobile .btn{
    width:40px;
    margin-top:7px;
    margin-left: 5%;
    z-index: 99;
}

 .navbar-mobile .btn i{
    font-size:1.3rem;
    color:white;
 }

 .navbar-mobile .row{
   
    position:relative;
 }

 .navbar-mobile .row .navbar-brand{
    position:absolute;
    border-bottom:1px solid rgba(0, 250, 154, 0.473);
    padding-bottom:0;
    padding-top:0;
   }

 .navbar-mobile .logo{
   width:180px;
   display:block;
   margin-left:auto;
   margin-right:auto;
 }

 .navbar-mobile .nav-link {
    color:#e7eaee;
    font-size: 1.0rem;
    font-weight:500;
    padding-top:5px;
    padding-bottom: 5px;
 }

 .navbar-mobile .nav-link.active {
    color: mediumspringgreen;
    background-color: var(--c_blue);
}



.off-sns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap:10px;
    background-color: var(--light);
  } 

.off-sns .sns{
    border:1px solid #d3d1d1;;
    border-radius: 1.2rem;
    background-color: #f8f8f8;
    padding-left:3px;
    padding-right:3px;
}

.off-sns img{
    width:100%;
    height:100%;
    padding: 5px 0 5px 0;
    object-fit:contain;
}

.off-sns p{
    text-align: center;
    font-size:0.7rem;
  }

.off-product p{
    padding-top:10px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray);
    transition: .5s;
}

.off-product p:hover{
    background-color: var(--light);
    transform:scale(1.15) translate(25px,0);
    
}


.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left:60px;
    padding: 20px 0;
    font-size: 23px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    color:#e7eaee;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color:  mediumspringgreen;
}

.navbar {
    transition: all 1.0S;
}

@media (min-width: 575.99px) {
    .navbar-scrolled {
        background-color:var(--c_blue);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background:  mediumspringgreen;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 1204px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left:20px;
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }  
}

@media (max-width: 575.98px) {
    .navbar-mobile {
        display:block;
     }
    .navbar-pc {
        display:none;
     }
  
}

 /*** Navbar End ***/


/*** Social & Tel Start
background-image: linear-gradient(135deg, #272667 40%, #7897ec 100%);
  ***/

.tel {
    position:fixed;
    background-color:#272667;
    bottom:0;
    z-index: 3;
    transition: all 1.0S;
    color:var(--light);
    height:60px;
     }

.tel-scrolled{
    display:none;
}

.tel h5{
    color:var(--light);
    font-size:26px;
    font-weight:500;
}

.tel h3{
    color:var(--light);
    font-size:20px;
    font-weight:300;
}

.tel img{
margin-top:12px;

}

.tel .slogan .first{
    color:var(--light);
    font-size:23px;
    font-weight:500;
}

.tel .slogan .second{
    color:var(--light);
    font-size:23px;
    font-weight:500;
}

.tel .slogan .more{
    color:orange;
    font-weight: 700;
    font-size:25px;
}

.tel .slogan h5{
  display: inline;
}

.tel h3 .hightlight{
    color:var(--light);
    font-size:25px;
    font-weight:500;
}

.tel h3 .sales{
    color:orange;
    font-size:20px;
    font-weight:600;
}

.tel h3 .sales .hightlight{
    color:orange;
    font-size:25px;
    font-weight:700;
}


@media (max-width: 1390px) {
    .tel .slogan{
        display:none;
   }
}

@media (min-width: 1190px) and (max-width: 1330px) {
    .tel .sales{
        display:none;
   }
}

.tel-number:hover {
    transform:scale(1.15);
    background-color:var(--dark); 
}

.tel-mobile {
   display : none;
   position:fixed;
   flex-direction: column;
   justify-content:center;
   bottom:0%;
   z-index:99;
   width:100%;
}

.tel-mobile div{
    background: rgb(0,245,255);
    background: linear-gradient(95deg, rgba(0,245,255,1) 34%, rgba(148,182,254,1) 100%);
    border-radius:50px;
    margin: 0px 3px 0px 3px;
}

 .tel-mobile-scrolled{
    display:none;
}

 .tel-mobile a {
    color: var(--dark);
    font-size:1.2rem;
    font-weight:400;
    display: block;
    padding:15px;
    margin:0;
  }

  .tel-mobile a span{
    font-size:1.3rem;
    font-weight:800;
  }

 .tel-mobile img {
    width:40px;
  }

  .social {
    position:fixed;
   display : flex;
   flex-direction: column;
   justify-content:center;
   bottom:3%;
   right:0%;
   z-index:99;
   transform:translate(210px,0)
   }

   .social a {
    color: #fff;
    background: rgba(0,0,0,0.4);
    font-size:20px;
    font-weight:600;
    text-decoration: none;
    display: block;
    margin:7px;
    padding:7px 15px;
    width:280px;
    text-align:left;
    border-radius:50px;
    transition:1s;
    transition-property:transform;
  }

  .social i{
    margin-right:20px;
    font-size:40px;
    width:40px;
    height:40px;
}

  .social a:hover{
    transform: translate(-165px,0);
      }

.social a:hover i{
    transform: rotate(-20deg);
          }

 .social a:hover img {
      transform: rotate(-20deg);
          }

.social a:nth-child(3) i{
    color:#F80000;
}

.social a:nth-child(4) i{
    color:transparent;
    background-image:linear-gradient(45deg, #ffdf93,#e56969,#8a49a1);
    -webkit-background-clip: text;
    font-weight:600;
}

.social img{
    width:50px;
}

@media (max-width: 575.98px) {
    .tel, .social{
        display:none;
   }
   .tel-mobile {
    display : block;
   }
}

/*** Social & Tel End ***/


 /*** Product Start ***/

.products-mobile{
    display:none;
}

.products-mobile .left-right{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap:8px;
    padding-left:3%;
    padding-right:3%;
  } 

.products-mobile .row .p-m-image{
    padding:3% 1%;
    border:1px solid #d3d1d1;;
    border-radius: 1.1rem;
    width:100%;
    height:100%;
}

.products-mobile .row img{
    aspect-ratio: 4 / 3.5;
    width:100%;
    height:100%;
    object-fit:contain;
}

.products-mobile p{
    text-align: center;
    font-size:0.9rem;
  }

 #product {
    overflow: hidden;
    background-image: url(../img/background.png);
    background-size: cover;
   
}

.our-product {
 position: relative; 
 
}

.our-product .context {
    padding : 3% 5% 0% 5%;
    z-index: 1;
}
.product-feature {
    font-size:16px;
}

.our-product .products {
    padding : 2% 5% 8% 5%;
    z-index: 1;
}

.our-product .section-context{
    border:none;
}

.triangle-topleft {
    margin-left:-10px;
    width: 0;
    height: 0;
    border-top: 100vh solid transparent;
    border-right: 320px solid transparent;
    z-index: 0;
    position:absolute;
    object-fit:unset;
    transition : .5s;
    }

#product :hover {
    .triangle-topleft {
        border-top: 100vh solid rgba(92, 0, 129, 0.425);;
         
    }
   }



.our-product .products .row .product{
  text-align:center;
  background-color: #f8f8f8;
  padding: 2.5em 0.3em;
  transition : transform .5s;
  cursor:pointer;
  color:var(--dark);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.our-product .products .row .product img{
    object-fit: contain;
}

.our-product .products .row .product:hover {
  transform:scale(1.15);
  }

  @media (min-width: 576px) {
    .our-product .products .row{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        grid-gap:20px;
      } 
  } 

  @media (max-width: 575.98px) {
    #product {
        background-image: none;
    }
    
    #product :hover {
        .triangle-topleft {
            display:none;
        }
       }
    .our-product {
        display:none;
              
    }
    .products-mobile{
        display:block;
    }
   
}

/*** Product END ***/



/*** access floor start ***/
.access-mobile{
    display:none;
    background: linear-gradient(45deg,#dbe6ee, #e7e8e9);
    width:100%;
}

.access-mobile .left{
    padding-left:1.2rem;
    padding-right:0;
}

.access-mobile h1{
    font-size:1.4rem;
    font-weight:600;
    color:var(--black);
    margin-top:2px;
}

.access-mobile p{
    font-size:0.9rem;
    font-weight:300;
    color:var(--black);
  }

.badge-mobile {
    background-image: linear-gradient(to right, #6441A5 0%, #2a0845  51%, #6441A5  100%);
        color: white;
        padding: 4px 8px;
        text-align: center;
        border-radius: 5px;
        font-size:0.85rem;
        font-weight:400;
      }

.a-m-panels p{
    display:inline;
    text-align: center;
}

.pulse {
    position: absolute;
    margin-top: 7%;
    width:200px;
    height:200px;
    background: rgba(62, 129, 0, 0.185);
    border-radius:50%;
    z-index: -1;
}

.pulse span {
    position:absolute;
    width:100%;
    height:100%;
    background:inherit;
    border-radius:inherit;
    opacity:.8;
    animation: pulseAnimate 6s ease-out infinite;
    animation-delay:calc(2s *var(--i));
}

@keyframes pulseAnimate {
    100% {
        opacity:0;
        transform:scale(2);
    }
}

.access-floor .context {
    padding : 8% 0% 3% 5%;
} 

.access-floor .panels {
    padding : 8% 0.5% 3% 0%;
}

.panel-context {
    position:absolute;
    bottom:0;
    background-color:var(--gray);
 }

.panel-name {
    background-color:var(--c_green);
    font-size: 24px;
    font-weight:300;
    color:var(--light);
}

.panel-feature {
    color:var(--black);
    font-size:20px;
    font-weight:200;
}

.access-floor .panel {
    aspect-ratio: 6/7.5;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}

.access-floor .panel img{
    height:100%;
    object-fit: contain;
    filter: drop-shadow(5px 3px 5px #313131);
}

@media (max-width: 575.98px) {
    .access-mobile{
        display:block;
    }

    .access-floor{
        display:none;
    }
} 

.product-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--gray);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** access floor end ***/


/*** OA floor start ***/
.oa-mobile{
    display:none;
    background: linear-gradient(45deg,#dbe6ee, #e7e8e9);
    width:100%;
}

.oa-mobile .left{
    padding-left:1.2rem;
    padding-right:0;
}

.oa-mobile h1{
    font-size:1.4rem;
    font-weight:600;
    color:var(--black);
    margin-top:2px;
}

.oa-mobile p{
    font-size:0.9rem;
    font-weight:300;
    color:var(--black);
  }

.o-m-panels p{
    display:inline;
    text-align: center;
}

.OA-floor .panels {
    padding : 3% 0.3% 3% 0.5%;
}

.OA-floor .context {
    padding : 3% 0% 3% 5%;
}

.OA-floor .panel-name {
    background-color:var(--c_puple2);
    font-size: 24px;
    font-weight:300;
}

.OA-floor .pulse {
    margin-top: -3%;
    margin-left: -4%;
    background: rgba(92, 0, 129, 0.185);
}

.OA-floor .panel {
    aspect-ratio: 6/7.5;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor:pointer;
}

.OA-floor .panel img{
    height:100%;
    object-fit: contain;
    filter: drop-shadow(5px 3px 5px #313131);
}

@media (max-width: 575.98px) {
   .oa-mobile{
    display:block;
   }

   .OA-floor{
    display: none;
   }
}

/*** OA floor End ***/


/*** Accessary-mobile start ***/
 
.accessary-mobile{
    display:none;
    background: linear-gradient(45deg,#dbe6ee, #e7e8e9);
    width:100%;
}

.accessary-mobile .left{
    padding-left:1.2rem;
    padding-right:0;
}

.accessary-mobile h1{
    font-size:1rem;
    font-weight:500;
    color:var(--black);
    margin-top:2px;
}

.accessary-mobile p{
    font-size:0.9rem;
    font-weight:300;
    color:var(--black);
  }

.accessary p{
    display:inline;
    text-align: center;
}


@media (max-width: 575.98px) {
    .accessary-mobile{
     display:block;
    }
 }

/*** Conductive-mobile start ***/

 .conductive-mobile{
    display:none;
    background: linear-gradient(45deg,#dbe6ee, #e7e8e9);
    width:100%;
}

.conductive-mobile .left{
    padding-left:1.2rem;
    padding-right:0;
}

.conductive-mobile h1{
    font-size:1.4rem;
    font-weight:600;
    color:var(--black);
    margin-top:2px;
}

.conductive-mobile p{
    font-size:0.9rem;
    font-weight:300;
    color:var(--black);
  }

@media (max-width: 575.98px) {
    .conductive-mobile{
     display:block;
    }
 }

 /*** Contact-Banner start ***/

 .contact-banner-mobile{
    display:none;
    position: relative;
    overflow: hidden;
 }

 .contact-banner-mobile img{
    margin:0;
    padding:0px 3px;
    width:100%;
    height:230px;
    object-fit: cover;
    
    filter:brightness(0.5);
    border-radius:30px;
 }

.contact-banner-mobile .left{
    position:absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.contact-banner-mobile h3{
    font-size:1.1rem;
    font-weight:500;
    color:var(--light);
}

.contact-banner-mobile h3 span{
    font-size:1.4rem;
    font-weight:600;
}

.contact-banner-mobile h4{
    font-size:1.0rem;
    font-weight:500;
    color:var(--light);
}

.contact-banner-mobile h5{
    display: inline-block;
    font-size:1.1rem;
    font-weight:500;
    color:var(--light);
    margin-bottom:5px;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
}

.contact-banner-mobile p{
    font-size:0.9rem;
    font-weight:400;
    color:var(--light);
    margin-bottom: 3px;
  }

.contact-banner-mobile .contact p{
    display:inline;
    text-align: center;
}

@media (max-width: 575.98px) {
    .contact-banner-mobile{
     display:block;
    }
 }

/*** Why Start ***/

.why-mobile{
    display:none;
}

.why-mobile .m-s-title h1{
    color:var(--dark);
    font-size:1.4rem;
}

.why-mobile .m-s-title p{
    font-size:0.9rem;
}

.why-mobile .m-s-title .highlight{
    color:var(--c_puple2);
}

.why-mobile .w-m-service p{
    font-size:0.9rem;
}

.why-mobile .w-m-service .services .row .service{
    background-color: #f8f8f8;
    text-align: center;
    transition : transform 0.5s;
    cursor:pointer;
    border:1px solid #e7d8d8;
    border-radius: 1.2rem;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  }
  
  .why-mobile .w-m-service .services .row .service img{
      object-fit: contain; 
      width:35px;
  }

  .why-mobile .w-m-service .services .row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(70px, 1fr));
    grid-gap:5px;
} 

.why .context {
    padding : 3% 1% 3% 5%;
    z-index: 1;
}

.our-service {
    padding : 3% 0;
    z-index: 1;
}

.why-title {
    font-size:25px;
    color:var(--black);
}
.why-context {
    font-size:20px;
    color:var(--black);
}

.bg-logo {
    position:absolute;
    width:60%;
    z-index: 0;
    filter:opacity(8%);
}

.our-service .services .row{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
        grid-gap:25px;
      } 
 
.our-service .services .row .service{
  background-color: #f8f8f8;
  text-align: center;
  padding: 1em;
  transition : transform 0.5s;
  cursor:pointer;
  border:1px solid #e7d8d8;
  border-radius: 1.5rem;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.our-service .services .row .service img{
    object-fit: contain; 
    width:85px;
}

.our-service .services .row .service:hover {
  transform:scale(1.1);
  border:1px solid var(--c_puple);
}

.our-service .services .row .service:hover H3{
  color: #fff;
}

.our-service .services .row .service:hover H5{
    color: #fff;
  }

.our-service  .services .row .service h2{
  margin-bottom:8px;
}

@media (max-width: 575.98px) {
    .why {
        display:none;
    }
    .why-mobile{
        display:block;
    }
}


/*** Why End ***/


/*** Portfolio Start ***/
.gallery-mobile{
    display:none;
    background: linear-gradient(45deg,#dbe6ee, #e7e8e9);
    width:100%;
}

.gallery-mobile .left{
    padding-left:1.2rem;
    padding-right:0;
}

.gallery-mobile h1{
    font-size:1.4rem;
    font-weight:600;
    color:var(--black);
}

.gallery-mobile p{
    font-size:0.9rem;
    font-weight:300;
    color:var(--black);
  }

.g-m-right p{
    text-align: center;
    margin-bottom:0;
}

.g-m-right img{
    border-radius:10%;
    object-fit:cover;
    width:100%;
    height:150px;
}

.our-portfolio .portfolios {
    padding : 1% 3% 1%;
}

#gallery :hover {
    .section3 {
        color:var(--c_green);
        transform:scale(1.15);
    }
}

.our-portfolio .context {
    padding : 1% 3% 1%;
}

.our-portfolio .panel {
    height:auto;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.our-portfolio .panel img {
    object-fit:cover;
    width:100%;
    height:300px;
}

.our-portfolio .panel-context {
    position:relative;
    padding-left:13%;
    padding-bottom:10%;
    bottom:0;
    background-color:white;
    z-index:2;
}

.our-portfolio .panel-skew{
    position: absolute;
    transform:skewY(6deg) translateY(-35%);
    background-color:white;
    color:white;
    z-index:1;
}

.our-portfolio .panel-name {
    background-color:white;
    color:var(--black);
    font-size: 24px;
    font-weight:300;
}

.our-portfolio .panel-access{
    display:inline-block;
    color:var(--c_green);
    font-size:18px;
}

.our-portfolio .panel-OA{
    color:var(--c_puple2);
}

.our-portfolio .panel-feature {
    color:var(--dark);
    font-size:20px;
    font-weight:200;
}

.portfolio-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.portfolio-carousel .owl-nav .owl-prev,
.portfolio-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--gray);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.portfolio-carousel .owl-nav .owl-prev:hover,
.portfolio-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


@media (max-width: 575.98px) {
    #gallery {
        display:none;
    }
    .gallery-mobile{
        display:block;
    }
}


/*** Portfolio End ***/

/*** SNS Mobile Start ***/

.sns-mobile{
    display:none;
}

.sns-mobile .left-right{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(57px, 1fr));
  } 

.sns-mobile .icon{
    border:1px solid #d3d1d1;;
    border-radius: 1.2rem;
    background-color: #f8f8f8;
}

.sns-mobile img{
    aspect-ratio: 4 / 3.5;
    width:100%;
    padding: 5% 0 5% 0;
    object-fit:contain;
}

.sns-mobile p{
    text-align: center;
    font-size:0.85rem;
  }

@media (max-width: 575.98px) {
    .sns-mobile{
        display:block;
    }
}


/*** Footer Start ***/

.footer-mobile{
    display:none;
    height:285px;
}

.f-m-context{
    color:var(--light);
}

.f-m-context h1{
    color:var(--light);
    font-size:1.07rem;
    font-weight:400;
}

.f-m-context p{
    color:var(--light);
    font-size:0.8rem;
    font-weight:300;
}

.footer{
    min-height:280px;
    padding-bottom:25px;
}

.footer .left{
    padding-top:15px;
    padding-left:5%;
}

.footer .middle{
    padding-top:15px;
    padding-left:5%;
}

.footer .right{
    padding-top:15px;
    padding-left:2%;
    padding-right:4%;
}


.footer .slogan {
    color: mediumspringgreen;
    font-size:35px;
}

.footer .slogan span{
    color:var(--light);
}

.footer p{
    color:var(--light);
}

@media (max-width: 575.98px) {
    #footer {
        display:none;
    }
    .footer-mobile{
        display:block;
    }
}


/*** Footer End ***/


/*** About Start ***/



#greeting {
    overflow:hidden;
}

.greeting .context {
    padding : 8% 0% 3% 0%;
} 

.greeting .section2 {
    font-weight: 400;
    font-size:40px;
}

.greeting .context .section-context2 {
    border:none;
    font-size:20px;
}

.greeting .bg-logo {
    position:absolute;
    width:55%;
    top:80%;
    z-index: 0;
    filter:opacity(8%);
}

@media (max-width: 575.98px) {
    .bg-logo {
        display:none;
    }
    .greeting .context {
        padding : 8% 2% 2% 2%;
    } 
    .greeting .section {
        font-size:1.6rem;
    }
    .greeting .section2 {
        font-size:1.5rem;
    }
    .greeting .context .section-context2 {
        font-size:0.9rem;
    }
}

.faq .m-s-title{
    display:none;
}

.faq .m-s-title h1{
    font-size:1.4rem;
}

.faq .m-s-title p{
    display:none;
    font-size:0.9rem;
}

.faq .m-s-title .highlight{
    color:var(--c_puple2);
}

.accordion{
    padding-left:8%;
    padding-right:5%;
   }

.accordion li{
    list-style:none;
    width:100%;
    margin: 2% 0;
    padding: 1%;
    border-radius: 8px;
    background: #f8f8f8;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: .5s;
}

.accordion li:hover{
    transform: scale(1.15);
}

.accordion li label{
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 22px;
    font-weight:500;
    cursor:pointer;
    color:var(--c_puple);
}

label::before{
    content:"+";
    margin-right:10px;
    font-size:24px;
    font-weight:300;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    padding: 0 10px;
    line-height: 26px;
    max-height:0;
    overflow:hidden;
    transition: max-height 0.5s, padding 0.5s;
    color:var(--dark);
    font-size:19px;
    font-weight:300;
}

.accordion input[type="radio"]:checked + label + .content{
    max-height:300px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before{
    content: '-';
}

@media (max-width: 575.98px) {
    .faq .m-s-title{
        display:block;
    }

    .faq .context{
        display:none;
    }

    .accordion{
        margin:0;
        padding-left:0%;
        padding-right:0%;
       }

    .accordion ul{
        padding-left:1%;
        padding-right:2%;
    }
    
    .accordion li {
        border: 1px solid #ccc;
        box-shadow:  -5px 0 5px -5px #333, 5px 0 5px -5px #333;
    }

    .accordion li label{
        display: flex;
        align-items: center;
        padding: 5px;
        font-size: 1.0rem;
        font-weight:500;
        cursor:pointer;
    }

    .accordion p{
        font-size:0.93rem;
    }

    .accordion li:hover{
        transform: none;
    }
    .accordion .content{
        padding: 0 10px;
        line-height: 20px;
    }
    label::before{
        margin-right:5px;
    }
    .accordion input[type="radio"]:checked + label + .content{
        max-height:none;
        padding: 10px 10px 10px;
    }
}

.map .context{
    padding-left:10%;
}

.map .section2 {
    font-weight: 400;
    font-size:35px;
    margin-bottom:5%;
}


.root_daum_roughmap{
   padding:2%;
   box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
}

.map-mobile {
    display:none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
    padding:1%;
}

.map-mobile img{
    width:100%;
    height:300px;
    object-fit:none;
}

.map p{
    border:none;
    font-size:20px;
}
.map-title {
    font-size:25px;
    font-weight:600;
}

@media (max-width: 575.98px) {
    .map .context{
       padding-left:5%;
    }
    .map .section {
        font-size: 1.4rem;
    }
    .map .section2 {
        font-size:1.2rem;
    }
    .map p{
        font-size:1rem;
    }
    .map-title {
        font-size:1.1rem;
    }
    .map-mobile {
    display:block;
    }
    .map-box {
    display:none;
    }
}


/*** About End ***/

/*** Products Start ***/
.product-buttons{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap:3px;
}

.product-buttons button{
    height: 40px;
    font-size:20px;
    font-weight:500;
    border:1px solid var(--c_puple);
    background-color: var(--light);
    transition: 0.5s;
}

#b_oa_3, #b_oa_5, #b_etc_3, #b_etc_5{
    font-size:17px;
}

.product-buttons button:hover {
    color:white;
    border:none;
    transform:scale(1.15);
}
.product-buttons button.active{
    color:white;
}


.product-buttons button[id^="b_ac"]:hover, 
.product-buttons button[id^="b_ac"].active{
    background-color: var(--c_green);
}


.product-buttons button[id^="b_oa"]:hover,
.product-buttons button[id^="b_oa"].active {
    background-color: var(--c_puple2);
}
.product-buttons button[id^="b_etc"]:hover,
.product-buttons button[id^="b_etc"].active {
    background-color: var(--primary);
}





@media (max-width: 575.98px) {
    .product-buttons{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(77px, 1fr));
        grid-gap:2px;
        padding-left:0;
        padding-right:0;
    }
    .product-buttons button{
        font-size:0.9rem;
        font-weight:400;
        line-height:18px;
        padding:0;
    }
    #b_oa_3, #b_oa_5, #b_etc_3, #b_etc_5{
        font-size:0.9rem;
    }
    #b_oa_1{
        font-size:0.8rem;
    }
}

.wrapper {
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

@media (max-width: 575.98px) {
.wrapper {
    display:none;
   }
}

.shape:nth-of-type(1) {
    width:550px;
    height:550px;
    background:#7998ff;
    position:absolute;
    left:0%;
    opacity: .1;
    z-index: -1;
    animation: wave 8s ease-in-out infinite;
}

.shape:nth-of-type(2) {
    width:500px;
    height:500px;
    background:#74bcff;
    position:absolute;
    bottom:-40%;
    right:0%;
    opacity: .15;
    z-index: -1;
    animation: wave 10s ease-in-out infinite;
}

.shape:nth-of-type(3) {
    width:250px;
    height:250px;
    background:#7385be;
    position:absolute;
    left:50%;
    bottom:-30%;
    opacity: .1;
    z-index: -1;
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave{
    0%, 100% {
     border-radius: 66% 34% 37% 63% / 57% 31% 69% 43%;
    } 
    60% {
     border-radius: 25% 75% 50% 50% / 25% 50% 45% 80%;
    }
 }

.product-p1 img{
    width:70%;
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.product-contexts .name{
    text-align: center;
    font-size:18px;
}

.product-p1 .name{
    text-align: center;
    font-size:18px;
}

.product-p2 video{
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.product-p2 thead th{
    text-align: center;
    font-size:19px;
    color:var(--dark);
    background-color: var(--light);
}

.product-p2 tbody{
    font-size:19px;
    color:var(--dark);
}

.product-p2 tbody th{
    text-align: center;
    background-color: var(--light);
}

.product-p2 tbody td{
    text-align: center;
}

.product-cg {
    display: inline-block;
    background: var(--c_green);
    color: #ffffff;
    font-size: 18px;
    font-weight:300;
    padding: 5px 23px;
    border-radius: 10px;
    margin-bottom:10px;
    text-transform: uppercase;
   }

.oap .product-cg {
    background-color: var(--c_puple2);
}

.etc .product-cg {
    background-color: var(--primary);
}

.product-middle-title{
    color:var(--dark);
}

.product-middle-title .first{
    color:var(--primary);
}

.product-name-eg{
    display:inline-block;
    color:var(--secondary);
    font-size:25px;
    font-weight:300;
    font-style:italic;
}

.product-description {
    font-size:23px;
    font-weight:400;
    color:var(--dark);
    padding:1% 0;
}

.product-sub-title{
    text-align: center;
    padding-bottom:8px;
    border-bottom:1px solid var(--c_green);
    color:var(--c_green);
    font-size:22px;
    font-weight:500;
}



.oap .product-sub-title{
    color:var(--c_puple2);
    border-bottom:1px solid var(--c_puple2);
}
.etc .tiles .row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-gap:20px;
  } 

.etc .tiles .row .tile{
    text-align:center;
    padding: 0.5em 0.3em;
    transition : transform .5s;
    cursor:pointer;
    border-radius: 0.5rem;    
  }

.etc .tiles .row .tile h3{
    color:var(--dark);
    font-size:20px;
    font-weight:400;
}

.etc .product-sub-title{
    color:var(--primary);
    border-bottom:1px solid var(--primary);
}

.product-sub-title.tile{
    color:var(--dark);
}

.product-detail{
    color:var(--dark);
    font-size:19px;
    font-weight:400;
    line-height:32px;
}

.product-detail i{
    color:var(--c_green);
}

.oap .product-detail i{
    color:var(--c_puple2);
}

.etc .product-detail i{
    color:var(--primary);
}

.cable-end img{
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:80%;
}

.accessary-image p{
    font-size:20px;
}

@media (max-width: 575.98px) {
    .product-p1 img{
        width:90%;
    }
    .product-cg {
        font-size:0.8rem;
        font-weight:300;
        padding: 5px 15px;
        border-radius: 10px;
        margin-bottom:5px;
        text-transform: uppercase;
       }
    .product-name {
        font-size:1.4rem;
    }
    .product-name-eg{
        font-size:1.2rem;
    }
    .product-middle-title{
        font-size:1.4rem;
    }
    .product-middle-title span{
        display:block;
    }
    .product-description {
        font-size:1.1rem;
        font-weight:300;
        border-left:none;
        box-sizing:content-box;
        color:var(--dark);
        padding:1% 1%;
    }
    .product-sub-title{
        font-size:1.2rem;
        font-weight:500;
        padding-bottom:5px;
    }
     .product-detail{
        color:var(--dark);
        font-size:0.95rem;
        font-weight:300;
        line-height:24px;
    }

    .product-p2 video{
        width:100%;
    }
    .product-p2 thead th{
       font-size:0.95rem;
    }
    .product-p2 tbody{
        font-size:0.95rem;
    }
    .product-p2 tbody th{
       min-width:70px;
       padding-left:0;
       padding-right:0; 
       font-weight:500;   
    }
    .product-p2 tbody td{
       font-weight:300;
    }
    .etc .tiles .row{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-gap:10px;
      } 
    .etc .tiles .row .tile h3{
        font-size:1.1rem;
    }
    
    .accessary-image p{
        font-size:0.9rem;
    }
}


/*** Products End ***/


/*** why-access Start***/

.why-access .context {
    padding : 3% 0% 3% 5%;
} 

.why-access .context2 {
    padding : 3% 0% 2% 5%;
} 

.why-access .context2 .section-context2 {
    border:none;
    font-size:28px;
    font-weight: 400;
} 

.why-access .section2 {
    font-weight: 400;
    font-size:40px;
}

.why-access .context2 .number h3{
    font-size:70px;
    font-weight:600;
    color:var(--c_puple2);
    transition:.5s;
}

.why-access .context2 .advantages .advantage{
    transition: .5s;
}

.why-access .context2 .advantages .advantage:hover{
    transform: scale(1.15);
    .number h3{
    color: var(--c_green);
   }
}

.why-access .context2 .advantages h5 {
    font-size:30px;
    font-weight:500;
}
.why-access .context2 .advantages p {
    font-size:20px;
    font-weight:300;
    color:var(--dark);
}

@media (max-width: 575.98px) {
    .why-access .context {
        padding : 4% 1% 2% 2%;
    } 
    .why-access .context .section-context2 {
        font-size:1rem;
        font-weight: 400;
        padding-left:1em;
    } 
    .why-access .section {
        font-size:1.5rem;
    }
    .why-access .section2 {
        font-size:1.3rem;
    }
    .why-access .context2 {
        padding : 3% 0% 3% 2.5%;
    } 
    .why-access .context2 .advantages h5 {
        font-size:1.3rem;
        font-weight:500;
    }
    .why-access .context2 .advantages p {
        font-size:1rem;
        font-weight:300;
        color:var(--dark);
    }
    .why-access .context2 .number h3{
        font-size:2.5rem;
             
    }
    .why-access .context2 .right {
        padding-left:1.2em;
        padding-right:0em;
    }
    
    .why-access .context2 .advantages .advantage:hover{
        transform: none;
        .number h3{
        color: var(--c_puple2);
        }
    }

}


/*** quotation Start***/

.quotation {
    position:relative;
}

.quotation .bg-logo {
    position:absolute;
    bottom:25%;
    width:60%;
    z-index: -1;
    filter:opacity(6%);
}

.contact-container .section2 {
    font-weight: 400;
    font-size:35px;
    margin-bottom:5%;
}

.contact-container .context p{
    border:none;
    font-size:20px;
}

.contact-title {
    font-size:25px;
    font-weight:600;
}

.contact-container {
   padding-left:15%;
}

.contact-right{
    display: flex;
    flex-direction:column;
    align-items: start;
    gap:10px;
}

.privacy{
    width: 70%;
    height: 120px;
    padding:2%;
    font-size:17px;
    color:var(--dark);
    overflow:auto;
    border: 1px solid var(--c_green);
}

input[type=checkbox]{
    zoom:1.8;
    vertical-align: middle;
    accent-color: red; 
}

.form-label{
    color:var(--black);
    font-size:17px;
}

.contact-container label::before{
    content:none;
}

.contact-inputs{
    width: 70%;
    height: 50px;
    border: 1px solid var(--c_green);
    outline: none;
    padding-left:25px;
    font-weight: 500;
    color: #666;
    border-radius:50px;
}

.contact-right textarea{
    height:150px;
    padding-top:15px;
    border-radius: 20px;
}

.contact-inputs:focus{
     border:2px solid var(--c_puple2);
}

.contact-inputs::placeholder{
    color:#a9a9a9;
}

.contact-right .add{
    color:red;
       font-size:20px;
}

.contact-right button{
    display:flex;
    align-items:center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background:var(--c_green);
    cursor:pointer;
}

.contact-right button img{
    height: 15px;
}

.quotation .confirmed-msg {
    display: none;
    color: var(--c_puple);
    font-size: 18px;
    font-style: italic;
}




@media(max-width:575.98px) {
    .quotation{
        background-image: none;
        backdrop-filter: blur(10px);
     }
    .contact-container .section2 {
        font-size:1.3rem;
    }
    .contact-container .section {
        font-size:1.4rem;
        }

    .contact-inputs{
        width:80vw;
     }
     .contact-container {
        padding-left:1%;
     }
     .contact-container .context .address{
        display:none;
     }
     .contact-container .context p {
        font-size:0.85rem;
    }
    .contact-title {
        font-size:1.1rem;
    }
     .privacy{
        width: 100%;
        font-size:0.85rem;
    }
    .form-label{
        font-size:1rem;
    }
   .contact-inputs{
        width: 100%;
    }
    .contact-right button{
        padding: 10px 20px;
        font-size: 1rem;
    }
    .contact-right .add{
        font-size:0.93rem;
    }
}

/*** Gallery Start***/

.gallery-page {
    margin-top:150px;
}

.gallery-page h3{
    font-size:4.5rem;
}

.gallery-page .pulse {
    margin-top: -3%;
    left: 45%;
}

.gallery-page .section-context2{
    margin-bottom:0;
    padding-bottom:5px;
}
.gallery-page .button-wrapper{
    display:flex;
    justify-content: end;
}

.gallery-page button{
    margin-right:30px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: var(--c_puple);
    color:var(--light);
    border:none;
    font-size:1.2rem;
    transition:0.7s;
}
.gallery-page button:hover{
    transform: scale(1.1);
}


.real-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(359px, 1fr));
    column-gap:30px;
    row-gap: 50px;
    padding: 30px;
    justify-items: center;
}

.real-gallery .gallery-container {
    position: relative;
    width: 100%;
}

.real-gallery .thumbnail {
    width: 100%;
    object-position: left top;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}

.real-gallery .label {
    margin-top: 10px;
    text-align: center;
    font-size:1.3rem;
    font-weight: 300;
}

.real-gallery .label span{
    font-size:1.2rem;
    font-weight: 500;
}

.real-gallery .label .access{
    color:var(--c_green);
}

.real-gallery .label .oa{
    color:var(--c_puple2);
}
.real-gallery .label .etc{
    color:var(--primary);
}

.real-gallery .gallery {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: top;
    transition: transform 0.9s ease;
}

.real-gallery .gallery-container:hover .gallery {
    transform: scaleX(1);
  }

.real-gallery .popup-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.real-gallery .popup-link img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.real-gallery .popup-link:hover img {
  transform: scale(1.2);
}

.real-gallery .gallery > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}



@media (max-width: 600px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
}
 