@charset "utf-8";


@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


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

  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }

  html{
    background-color: var(--bg-color-black);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }


  body {
    color: inherit;
    font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', 'Nanum Gothic', 'Noto Sans', sans-serif;
    background: var(--bg-color-light);
    color:var(--font-color-white);
    line-height: 1.25;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
  
  /* 4. 목록 스타일 제거 */
  ol, ul {
    list-style: none;
  }
  
  /* 5. 인용구 및 인라인 요소의 기본 quotes 제거 */
  blockquote, q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before, q::after {
    content: "";
    content: none;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  button, input, select, textarea {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    cursor: pointer;
    resize: none;
  }

  img, video, canvas, svg, picture {
    display: block;
    max-width: 100%;
    height: auto;
  }


  fieldset, legend {
    border: 0;
    padding: 0;
  }
  
  
  a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  a:hover{
    text-decoration: none;
    color: inherit;
  }

  
:root {

    /* Font Weights */
    --font-weight-light:    300;
    --font-weight-regular:  400;
    --font-weight-medium:   500;
    --font-weight-semi-bold: 600;
    --font-weight-bold:     700;


    --font-color-white: #FFFFFF;
    --font-color-black: #000000;

    /* Gray Tones */
    --font-color-gray: #E2E2E2;
    --font-color-gray-100: #8B95A1;
    --font-color-gray-200: #8D8D93;
    --font-color-gray-300: #81868D; 
    --font-color-gray-400: #737373;  
    --font-color-gray-500: #565656;
    

    /* Blue Tones */
    --font-color-blue-100: #B7CDED;  
    --font-color-blue-200: #91BCFF;  
    --font-color-blue-300: #3182F6; 
    --font-color-blue-400: #2C91EC; 
    --font-color-blue-500: #0979ff;
    

    /* Border Colors */
    --border-color-light: #E5E7EB;
    --border-color-white: #FFFFFF;
    --border-color-black: #000000;
    --border-color-dark-gray:#171717;
    --border-color-blue:#0979ff;


    /* Background Colors */
    --bg-color-primary: #3182F6;
    --bg-color-secondary: #0056F5;
    --bg-color-green: #00d255;
    --bg-color-gray-100: #282828;
    --bg-color-gray-200: #171717;
    --bg-color-black: #000000;
    --bg-color-white: #FFFFFF;
    --bg-color-light: #f8f8f8;
}


.container{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 10px;
}
.sr-only{
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/* 모바일 사이즈에서 보여즘 */
.m_block{
    display: none !important;
}

b.blueTit{
    display: block;
    text-align: center;
    font-size: 18px;
    color: var(--font-color-blue-300);
    font-weight: var(--font-weight-bold);
    
}

.navbar {
    height: 70px;
    padding: 0 40px;
    background: var(--bg-color-black);
    border-bottom: 1px solid var(--border-color-dark-gray);
}

.container-fluid{
    padding: 0;
}


.navbar-brand {
    height: 70px;
    padding: 25px 0;
}

.navbar-brand img{
 width: 75.2px;;
}

.navbar-toggler {
    padding: 10px;
    font-size: 1.25rem;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
    background: url("../images/m_menu.png") no-repeat center/18px;
    width: 42px;
    height: 50px;
}

.nav-link{
    padding: 0 20px;
    color: #D8D8D8;
}

.nav-link:hover {
    color: var(--font-color-white);
}

.nav-link:active {
    color: var(--font-color-white);
}

.dropdown{
    display: none;
}
.slide-close{
    display: none;
    position: absolute;
    background: url(../images/close.png) no-repeat center/25px;
    width: 28px;
    height: 28px;
    right: 310px;
    left: auto;
    top: 9px;
    margin: 8px 0 8px 15px;
    padding: 8px;
}

.slide_menu_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 9; 
    display: none;
}

/* 메뉴가 열리면 배경 보이게 */
.navbar-collapse.show + .slide_menu_backdrop {
    display: block;
}

.more_menu {
    position: relative;
    display: none;
    padding: 0 20px;
    font-size: 0;
    background: url(../images/more_menu.png) no-repeat center/ 20px;
}

.more_menu ol li:hover{
    background: var(--bg-color-green);
}


section{
    scroll-margin-top: 70px;
}
section.service{
    scroll-margin-top: 100px;
}

section h2{
    font-size: 60px;
    font-weight: var(--font-weight-bold);
}
section h3{
    font-size: 48px;
    font-weight: var(--font-weight-bold);
}
section h4{
    font-size: 72px;
}
section strong{
 font-weight: var(--font-weight-bold);
}
.home{
    margin-top: 70px;
    padding: 60px 0 35px;
    background: var(--bg-color-black);
}

.home > div{
    display: flex;
    flex-direction: column;
}
.home h2{
    margin-bottom: 25px;
}

.home p{
    font-size: 22px;

}
.home p+p{
    margin-top: 25px;
}
.home  strong{
    font-size: 26px;
}
.blueBox{
    display: flex;
    gap: 20px;
}

.blueBox >div p{
    font-size: 36px;
    line-height: 1.25;
    font-weight: var(--font-weight-bold);
}

.blueBox > div{
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-color-secondary);
    border-radius: 20px;
    gap: 25px;
}
.blueBox > div b{
    font-size: 22px;
    font-weight: var(--font-weight-bold);
}

.home .blueBox{
    margin: 50px 0 70px;
}

.home .blueBox >div{
    width: 50%;
    font-weight: var(--font-weight-bold);
}

.brand-1{
    padding-top: 143px;
    background: linear-gradient(130deg, #01c1d5, #2E8BF0, #005BEA);
}
.brand-1 h3{
 text-align: center;
 margin-bottom: 40px;
}
.brand-1 h4{
    margin-bottom: 70px;
    text-align: center;
    font-weight: var(--font-weight-bold);
   
}
.brand-1 h4 span{
    font-weight: var(--font-weight-regular);
    color: var(--font-color-blue-100);
}
.brand-1 h4 strong{
    display: block;
    font-weight: var(--font-weight-semi-bold)
}
.brand-1 a{
    display: flex;
    margin: 78px auto 38px;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 8px 50px;
    line-height: 1.4;
    font-size: 30px;
}
.brand-1 a:hover, .brand-1 a:active{
    border-color: #165aba;
    color: #165aba;
}
.brand-1 .imgWrap img{
    margin: 0 auto;
}

.brand-2{
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
    padding: 86px 0 192px;
    background: var(--bg-color-black);
}
.brand-2::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.brand-2 h2 {
    margin-bottom: 30px;
}
.brand-2 h2 span{
    display: block;
}
.brand-2 p{
    font-size: 22px;
    line-height: 1.5;
}
.brand-2 .blueBox{
    margin: 92px 0 35px;
    padding: 0 10px;
}

.brand-2 .blueBox >div{
    width: calc(33.3% - 5px);
}
.brand-2 .blueBox >div b{
    color: rgba(255, 255, 255, 0.7);
}

.brand-2 a{
    display: block;
    margin: 0 auto 45px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    width: fit-content;
    font-size: 14px;
}
.brand-2 a:hover{
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6) !important;
    background-color: rgba(255, 255, 255, 0);
}
.brand-2 img{
    display: block;
    margin: auto;
    height: auto;
    width: 100%;
}

.solution{
    background: var(--bg-color-black);
    padding: 80px 0 150px;
}

.solution b{
    margin-bottom: 20px;
    text-align: center;
}
.solution h2 {
    text-align: center;
    margin-bottom: 64px;
    line-height: 1;
}
.solution h2 > span{
    display: block;
}

.solution .container > div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 99px;
}
/* .solution .container >div:nth-of-type(2){
    margin: 130px 0 40px;
} */
.solution .container .imgWrap{
    padding: 0 20px;
    border-radius: 7px;
    height: 502px;
    width: 50%;
}
.solution .container  .imgWrap img{
    border-radius: 10px;
    height: 100%;
    width: auto;
    object-fit: cover;
} 
.solution .container .textWrap {
    display: flex;
    flex-direction: column;
    padding: 93px 20px ;
    width: 50%;
}
.solution .container .textWrap b{
    text-align: left;
}
.solution .container .textWrap h3 {
    margin-bottom: 18px;
}
.solution .container .textWrap > h3 >span{
    display: block;
}
.solution .container .textWrap p{
    font-size: 18px;
    color: var(--font-color-gray);
}
.solution .container .textWrap p+p{
    margin: 25px 0 30px;
    color: var(--font-color-blue-200);
}
.solution .container .textWrap a{
    width:  fit-content;
    margin-left: auto;
    padding: 15px 24px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 30px;
    border: 1px solid var(--border-color-white);
}
.solution .container .textWrap a:hover{
    color: var(--font-color-blue-500);
    border-color: var(--border-color-blue);
}
.service{
    padding-top: 120px;
    position: relative;
}
.service::before{
    content: '';
    display: block;
    position: absolute;
    top: -29px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--bg-color-light);
    border-radius: 30px 30px 0 0;
}

.service h2{
    color: var(--font-color-black);
    text-align: center;
    margin: 30px 0 84px;
}
.service h2 span{
    display: block;
}
.service .imgCardWrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0px 130px;
}
.imgCard{
    width: calc(25% - 15px);
    height: 411px;
    cursor: pointer;
    transition: 0.5s;
}
.imgCard:hover{
    opacity: 1;
}
.over{
    width: 100%;
    height: 100%;
    background: rgba(43, 41, 41, 0.9);
    opacity: 0;
    transition: .3s;
}
.over:hover {
    opacity: 1;
  }
.imgCard:first-of-type{
    background: url(../images/service_imgCard1.png) no-repeat center /cover;
}
.imgCard:nth-of-type(2){
    background: url(../images/service_imgCard2.png) no-repeat center /cover;
}
.imgCard:nth-of-type(3){
    background: url(../images/service_imgCard3.png) no-repeat center /cover;
}
.imgCard:nth-of-type(4){
    background: url(../images/service_imgCard4.png) no-repeat center /cover;
}
.imgCard:nth-of-type(5){
    background: url(../images/service_imgCard5.png) no-repeat center /cover;
}
.imgCard:nth-of-type(6){
    background: url(../images/service_imgCard6.png) no-repeat center /cover;
}
.imgCard:nth-of-type(7){
    background: url(../images/service_imgCard7.png) no-repeat center /cover;
}
.imgCard:last-of-type{
    background: url(../images/service_imgCard8.png) no-repeat center /cover;
}

.imgCard .over{
    height: 100%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}
.imgCard .over  strong{
    font-size: 30px;
}
.imgCard .over p{
    font-size: 20px;
}
/* 모바일 슬라이드 */
.carousel{
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}
.carousel::before {
    content: "";
    display: block;
    padding-top: 60%;
}

.carousel-control-next, .carousel-control-prev{
    width: 5%;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
    width: 1.5rem;
    height: 1.5rem;
}
.carousel-indicators [data-bs-target]{
    width: 6px !important;
    height: 6px !important;
    margin: 5px 4px !important;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
}
.carousel-indicators button.active{
    background-color: #fff;
}

.carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.carousel-item:first-of-type{
    background: url(../images/service_imgCard1.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(2){
    background: url(../images/service_imgCard2.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(3){
    background: url(../images/service_imgCard3.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(4){
    background: url(../images/service_imgCard4.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(5){
    background: url(../images/service_imgCard5.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(6){
    background: url(../images/service_imgCard6.png) no-repeat center /cover;
}
.carousel-item:nth-of-type(7){
    background: url(../images/service_imgCard7.png) no-repeat center /cover;
}
.carousel-item:last-of-type{
    background: url(../images/service_imgCard8.png) no-repeat center /cover;
}
.carousel-caption{
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-caption h5{
    font-size: 18px;
    margin-bottom: 10px;
}
.carousel-caption p{
    font-size: 14px;
}
.service .user{
    display: flex;
    gap: 20px;
    margin-bottom: 110px;
}

.service .user > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 33.3%;
    border: 1px solid var(--border-color-light);
    border-radius: 20px;
    padding: 32px 30px;
    color: var(--font-color-gray-500);
}

.service .user > div span{
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
}
.service .user > div strong{
/*     font-weight: var(--font-weight-semi-bold); */
    color: var(--bg-color-primary);
    font-size: 36px;
}
.service .user > div ul{
    text-align: center;
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    line-height: 1.5;
}
.equipment .container{
    border-top: 1px solid rgba(225, 225, 225, 0.5);
    padding-top: 130px;
}

.equipment h2{
    text-align: center;
    color: var(--font-color-black);    
    margin:30px 0 20px;
}
.equipment h2 span{
    display: block;
}
.equipment h2 span em{
    color: var(--bg-color-primary);
}
.equipment a{
    display: block;
    width: fit-content;
    height: 50px;
    line-height: 30px;
    padding: 10px 30px;
    background: #4b91ff;
    margin: 20px auto;
    text-align: center;
    border-radius: 30px;
    border:1px solid rgba(0, 0, 0, 0.2);
}

.equipment a:hover{
    background-color: rgba(75, 145, 255, 0);
    color: #4b91ff !important;
    border-color: #4b91ff;
}

.equipment .blackBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin : 200px 40px 10px;
    padding: 100px 130px;
    border-radius: 20px;
    background: var(--bg-color-black);
    color: var(--font-color-white);
}
.equipment .blackBox strong{
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}
.equipment .blackBox h2{
    word-break: keep-all;
    color: var(--font-color-white);
    text-align: left;
    margin-bottom: 0;
}
.equipment .blackBox span{
    display: block;
}
.equipment .blackBox > img{
    max-width: 260px;
}
.equipment .blackBox >div>div{
    margin-top: 30px;
    display: flex;
    gap: 16px;
}
.equipment .blackBox >div>div img{
    width: 33%;
    margin: 5px auto;
}
.equipment .btnWrap{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-bottom: 17px;
}
.equipment .btnWrap a{
    font-size: 12px;
    margin: 0 auto;
    height: 33px;
    line-height: 12px;
}

.consulting{
    padding: 80px 15px 60px;
    margin: 0 auto ;
    max-width: 1160px;
    color: var(--font-color-black);
}
.consulting h2{
    text-align: center;
    margin-bottom: 20px;
}
.consulting h2+b{
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.consulting .privacy button{
    border-radius: 30px;
    border: 1px solid  rgba(0, 0, 0, 0.8);
    color: #212121;
    font-size: 12px;
    padding: 10px 25px;
    letter-spacing: 1px;
    display: block;
    margin: auto;
}

/* checkbox 스타일 */
.form-check {
    position: relative;
    display: block;
    margin-bottom: 0.75rem;
    margin:10px 0;
    padding-left: 1.9375em;
}

.form-check-input {
    left: 20px;
    top: -4px;
    position: absolute;
    display: inline-block;
    vertical-align: top;
    z-index: 1;
    height: 20px;
    width: 20px;

    line-height: 1.44em;
    border: 1px solid #8d8d93;
    border-radius: 3px;
    background-color: #fff;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
    color: var(--font-color-gray-200);
}

.form-text-input {
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    color: var(--bg-color-black);
    background-color: var(--bg-color-light);
    border-bottom: 1px solid var(--bg-color-black);
    border-radius: 0;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* 포커스 되었을 때의 스타일 */
.form-text-input:focus {
    border-color: var(--bg-color-primary);
}
.phonenumber_input{
    display: flex;
    gap: 5px;
}
.phonenumber_input .form-text-input{
    width: 65px;
}

.form-group{
    margin-bottom: 15px;
}

.control-label{
    font-weight: normal;
    font-size: 1em;
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    color: var(--font-color-gray-200);
}
.control-label.req::after{
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #f25656;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: 2px;
}

.form-control{
    padding: 10px;
    height: 160px;
    overflow-y: auto;
    font-size: 16px;
    border-radius: 0;
    line-height: 1.42857143;
    border: 1px solid var(--border-color-black);
    background: var(--bg-color-light);
}
.form-control strong{
    font-weight: var(--font-weight-semi-bold);
}



footer{
    margin: 0 auto;
    color: var(--font-color-gray-200);
}
footer .container{
    padding-bottom: 90px;
}
footer h1{
    margin:20px 0;
}
footer h1 img{
    display: block;
    margin: auto;
    height: 90px;
    width: 300px;
}
.footer-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    gap: 10px;
    margin-bottom: 40px;
}
.footer-menu{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-menu a{
    font-size: 14px;
    font-weight: var(--font-weight-semi-bold);
    color: var(--font-color-gray-300);
}
.footer-menu a::after{
    content: '|';
    padding: 0 6px;
}
.footer-menu a:last-of-type::after{
    display: none;
}



/* 반응형 */

@media (max-width: 1450px){
    .dropdown{
        display: block;
    }
} 

@media (max-width: 1440px){
    .menu_hide{
        display: none;
    }
}

@media (max-width: 1200px){
    .navbar{
        padding: 0 10px;
    }
   .equipment .blackBox{
    padding: 80px 90px;
   }
} 

@media (min-width: 992px) {
    .navbar-expand-lg {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .navbar-expand-lg .navbar-nav .nav-link{
        padding: 20px;
    }
    .dropdown-toggle{
        background: url(../images/more_menu.png) no-repeat center / 22px;
        width: 58px;
        height: 100%;
    }
    .dropdown-toggle::after {
        display: none ;
    }
    .dropdown-menu[data-bs-popper]{
        top: 75%;
    }
    .navbar-expand-lg .dropdown-menu {
        position: absolute;
        left: auto;
        right: 0;
        background: var(--bg-color-gray-100);
        font-size: 13px;
        border-radius: 0px;
        padding: 0;
        border:unset;
    }
    .navbar-expand-lg .dropdown-menu li a{
        color: rgba(255, 255, 255, 0.6);
        padding: 10px 20px;
        height: 38.56px;
    }
    .navbar-expand-lg .dropdown-menu li a:hover{
        color: #fff !important;
        background: #00d255 !important;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .slide_menu_backdrop{
        display: none;
    }
}
    
@media (max-width: 992px) {
    .container{
        padding: 0 20px;
    }
    section{
        scroll-margin-top: 56px;
    }
    .m_hide{
        display: none !important;
    }
    .m_block{
        display: block !important;
    }
    b.blueTit{
        font-size: 16px;
    }
    .navbar{
        height: 56px;
        padding: 0;
        border-bottom:unset;
    }
    .navbar-brand{
        height: 56px;
        padding: 18px 10px;
    }
    .navbar-brand img{
        width: 87px;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        background: var(--bg-color-white);
        z-index: 10;
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .navbar-toggler {
        display: block !important; 
    }
    .navbar-collapse.show .slide-close{
        display: block;
    }
    .navbar-nav{
        padding-top: 10px;
    }
    .nav-item .nav-link {
        color: rgba(33, 33, 33, 0.89);
        line-height: 1;
        padding: 11px 20px 10px;
        letter-spacing: 0px;
    }
    .nav-item.active{
        background: var(--bg-color-primary);
        color: var(--font-color-white);
    }
    .nav-item.active .nav-link {
        color: #ffffff;
    }

    .menu_hide{
        display: block !important;
    }
    .dropdown{
        display: none;
    }
 
    section h2{
        font-size: 30px;
    }
    section h3{
        font-size: 28px;
    }
    .home {
        margin-top: 56px;
        padding-top: 40px;
    }
    .home .container{
        padding: 0 15px;
    }
    .home p{
        font-size: 16px;
    }
    .home h2{
        margin-top: 0px;
    }
    .home p+p{
        margin-top: 21px;
    }
    .home strong{
        font-size: 18px;
    }
    .home .blueBox{
        margin: 35px 0px;
    }
    .home .blueBox >div p{
        font-size: 24px;
    }
    .blueBox{
        flex-direction: column;
    }
    .blueBox > div{
        width: 100% !important;
    }
    .blueBox > div b{
        font-size: 16px;
    }
    .blueBox >div p{
        font-size: 30px;
        line-height: 1.25;
    }
    .blueBox >div p >span{
        display: block;
        margin-top: 21px;
        font-size: 36px;
    }
    .brand-1{
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .brand-1 h3{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .brand-1 h4{
        margin: 0 auto 24px;
        width: 300px;
        font-size: 30px;
        word-break: keep-all;
    }
    .brand-1 h4 span:nth-of-type(3){
        font-size: 0;
    }
    .brand-1 a{
        margin: 15px auto 30px;
        font-size: 14px;
        padding: 8px 24px;
        border-width: 1px;
    }
    .brand-1 .imgWrap img{
        display: block;
        height: 301px;
    }
    .brand-2{
        margin-top: -30px;
        padding-top: 60px;
        padding-bottom: 0px;
        border-radius: 30px 30px 0 0;
    }
    .brand-2::after{
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .brand-2 h2{
        margin-bottom: 10px;
        font-size: 26px;
        word-break: keep-all;
    }
    .brand-2 h2 em{
       display: block;
    }
    .brand-2  h2 + p{
        font-size: 13px;
        color: var(--font-color-gray-200);
        width: 250px;
        margin: 0 auto 34px;
        word-break: keep-all;
    }
    .brand-2 .blueBox{
        margin: 10px 0;
        padding: 0;
        gap: 12px;
        
    }
    
    .brand-2 .blueBox >div{
        background: var(--bg-color-gray-200);
        gap: 20px;
    }
    .brand-2 a{
        margin-bottom: 50px;
        padding: 12px 40px;
        border-color: rgba(255, 255, 255, 0.4);
    }
    .brand-2 .imgWrap{
        display: none;
    }
    .solution {
        padding: 34px 0 40px;
    }
    .solution b{
        margin-bottom: 10px;
    }
    .solution h2 {
        line-height: 1.2;
        margin-bottom: 44px;
    }
    .solution h2 em{
        display: block;
    }
    .solution .container .textWrap{
        width: 100%;
        padding: 10px 0px 10px 30px;
    }
    .solution .container .textWrap h3{
        font-size: 26px;
        margin-bottom: 0;
    }
    .solution .container .textWrap b{
        font-size: 13px;
    }
    .solution .container .textWrap p{
        font-size: 14px;
    }
    .solution .container .textWrap p+p{
        margin-top: 48px;
        padding-right: 30px;
    }
    .solution .container .textWrap a{
        padding: 6px 24px;
        margin: 16px 0 6px auto;
        font-size: 12px;
    }
    .solution .container > div{
        flex-direction: column-reverse;
        gap: 16px;
    }
    .solution .container > div:nth-of-type(2){
        flex-direction: column;
    }
    .solution .container .imgWrap{
        width: 100%;
        height: auto;
        padding: 0;
    }
    .service{
        padding-top: 30px;
    }

    .service h2{
        margin: 10px 0 34px;
        word-break: keep-all;
    }
    .service h2.hide{
        display: none;
    }
    .service .user{
        margin-bottom: 0;
        flex-direction: column;
        gap: 10px;
    }
    .service .user > div{
        width: 100%;
        padding: 40px 30px;
        gap: 13px;
    }
    .service .user > div span{
        font-size: 13px;
    }
    .service .user > div strong{
        font-size: 26px;
    }
    .service .user > div ul{
        font-size: 16px;
        line-height: 1.5;
    }
    .service .imgCardWrap{
        display: none;
    }
    .carousel{
        display: block;
    }
    .equipment{
        padding-top: 75px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .equipment .container{
        padding-top: 0;
        border-top: none;
    }
    .equipment .container::after{
        content: '';
        display: block;
        width: 100%;
        background: rgba(225, 225, 225, 0.5);
        height: 1px;
    
    }
    .equipment h2{
        width: 220px;
        margin: 10px auto 0;
    }
    .equipment h2 span{
        margin-top: 20px;
    }
    .equipment a{
        width: fit-content;
        font-size: 14px;
        padding: 10px 24px;
        margin: 30px auto;
        background: var(--bg-color-primary);
    }
    .equipment .blackBox{
        margin: 40px 20px 25px;
        padding: 48px 36px;
    }
    .equipment .blackBox strong{
        font-size: 18px;
    }
    .equipment .blackBox h2{
        font-size: 30px;
        margin: unset;
       
    }
    .equipment .blackBox h2 em{
        display: block;
    }
    .equipment .blackBox span{
        margin-top: 0;
    }
    .equipment img{
        display: none;
    }
    .equipment .blackBox >div>div{
        margin-top: 0;
    }
    .equipment .btnWrap{
        display: flex;

    }
    .consulting h2+b{
        font-size: 15px;
    }
  
    footer .container{
        padding-bottom: 60px;
    }

}
