* {
    margin: 0 auto;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: 0;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
    letter-spacing:-0.01rem;
  }
option{
  -webkit-appearance:unset; 
-moz-appearance: none; 
-o-appearance: none; 
-ms-appearance:none; 
appearance: none;
}

html, body {
  scroll-behavior: smooth;
  font-size:16px;  
}

h4{  
  font-size:2.25rem;
  font-weight: 700;
}
.ALeft{
  text-align:left !important;
}
.ACenter{
  text-align:center !important;
}
/***** Common *****/
.pageBack{
  color:#000;  
  margin-bottom:1.5rem;
  display: block;
}
.pageBack:hover{
  color:#00A0DF;
}
.webHide{
  display:none !important;
}
input.common-check{
  display:none;
  }

input.common-check + label{
  cursor:pointer;
 }

input.common-check + label > span{
  vertical-align: middle;
  padding-left: 8px;
  font-size:0.875rem;
  color:#666;
 }

input.common-check + label:before{
  content:"";
  display:inline-block;
  width:16px;
  height:16px;
  border:1px solid #ddd;
  border-radius: 0.2rem;
  vertical-align:middle;
  background-size: 90%;
  }
   
input.common-check:checked + label:before{
  content:"";
  background-color:#00A0DF;
  border-color:#00A0DF;
  background-image: url('../images/btn-check.png');
  background-repeat: no-repeat;
  background-position: 50%;
  }
.point-blue{
  color:#00A0DF !important
}
.point-orange{
  color:#EF8C07 !important
}
.point-a{
  animation: blink-visible-2s 3s linear infinite;
  color: #fff; 
  background-image: linear-gradient(to right, #ECC251, #EF8A05);
  padding:0 0.5rem;

}
@keyframes blink-visible-2s {
  0%, 75% {
    visibility: visible;
  }
  76%, 100% {
    visibility: hidden;
  }
}
/***** Header *****/
header #headerWrap{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    border-bottom:1px solid rgba(255,255,255,0.2);
    -webkit-transition: .4s;
    transition: .4s;
    background-color:rgba(255,255,255,0);
  }
  #headerWrap.no-fixed{
   top:-100px;
   -webkit-transition: .4s;
    transition: .4s;
    border-bottom:0;
    background-color:rgba(255,255,255,0);
  }
  #headerWrap.fixed, #headerWrap.up{
    top:0px;
    -webkit-transition: .4s;
     transition: .4s;
     background-color:rgba(255,255,255,1);
     border-bottom:1px solid rgba(0,0,0,0.1);
   }
  
   #headerWrap .PCheaderWrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #headerWrap .headerLogo{
    width: 150px;
    text-align: left;
    margin: 0 0 0 5rem;
  }
  #headerWrap .gnbWrap{
    width:calc(100% - 280px);
    text-align: center;
  }
  #headerWrap .headerBtn{
    width: 150px;
    margin: 0 5rem 0 0;
    text-align: right;
  }
  #headerWrap .logo {
    display: inline-block;
    width: 130px;
    height: 100px;
    background-image: url(../images/header_logow.png);
    background-repeat: no-repeat;
    background-position: center -10px;
  }
  #headerWrap.fixed .logo,  #headerWrap.up .logo,   .logo {
    display: inline-block;
    width: 130px;
    height: 100px;
    background-image: url(../images/header_logo.png);
    background-repeat: no-repeat;
    background-position: center -10px;
  }  
  .apply-wrap .logo{
    display:block;
    margin:-3rem 0 2rem 0;
  } 
  #headerWrap .qnaBtn {
    width: 150px;
    line-height: 3rem;
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size:1.125rem;
    border:1px solid rgba(255,255,255,0.3);
    border-radius: 1.5rem;
    -webkit-transition: .4s;
    transition: .4s;
    background:rgba(255,255,255,0);
    display: inline-block;
  }
  #headerWrap.up .qnaBtn, #headerWrap.fixed .qnaBtn {
    width: 150px;
    line-height: 3rem;    
    color: #00A0DF;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size:1.125rem;
    border:1px solid #00A0DF;
    border-radius: 1.5rem;
    -webkit-transition: .4s;
    transition: .4s;
    background:rgba(255,255,255,0);
  }
  #headerWrap.up .qnaBtn:hover{
    background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
    border:0;
    color:#fff;
    -webkit-transition: .4s;
    transition: .4s;
  }
  #headerWrap .gnbWrap .gnb {
    position: relative;
    display: inline-block;
    height: 100%;
    font-family: "Poppins", sans-serif;
  }
  #headerWrap .gnbWrap .gnb>a {
    position: relative;
    display: inline-block;
    line-height: 100px;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    margin: 0 3rem;
    -webkit-transition: .4s;
    transition: .4s;
  }
  #headerWrap.fixed .PCheaderWrap .gnbWrap .gnb>a,
  #headerWrap.up .PCheaderWrap .gnbWrap .gnb>a  {
    color:#000;
  }
  
  #headerWrap .PCheaderWrap .gnb>a::after {
    content: '';
    position: absolute;
    width: 0%;
    background: unset;
    height: 3px;
    bottom: 0;
    left: 50%;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnb>a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    background: #00a0df;
    height: 3px;
    bottom: 0;
    left: 0;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnb>a:hover {
    color: #00a0df !important;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .gnb .lnbWrap {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    min-width: 1350px;
    height: 0;
    background: #fff;
    overflow: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    opacity: 0;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .gnb:hover .lnbWrap {
    height: 80px;
    -webkit-transition: .4s;
    transition: .4s;
    background: #fff;
    opacity: 1;
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .gnb .lnbWrap .lnb {
    width: 90%;
    height: 100%;
    max-width: 1900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .gnb:hover .lnbWrap .lnb {
    opacity: 1;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .lnbWrap .lnb a {
    line-height: 80px;
    margin: 0 1.875rem;
    color: #000;
    font-size:1.125rem;
    font-family: "Poppins", sans-serif;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  #headerWrap .PCheaderWrap .gnbWrap .lnbWrap .lnb a:hover {
    color: #00a0df;
    -webkit-transition: .4s;
    transition: .4s;
  }
/***** Mobile header *****/
  header #MheaderWrap{
    display:none;
  }

/*Sub title*/
.subTitle.on .titleWrap h3 {
    top: 0;
    opacity: 1;
    transition: 1s;
  }
.subTitle.on .titleWrap p {
    top: 0;
    opacity: 1;
    transition: 1s;
}
.subTitle.on{
    background-size:100%;
    transition: 3s;
    background-position: top center;
    height:33rem;    
}
.subTitle{
  background-size:110%;
  background-position: top center;
}
.sub-sap{
    background-image: url(../images/sub-hanainfo-bg.jpg);    
}
.sub-cloud{
  background-image: url(../images/sub-cloud-bg.jpg);
}
.sub-solution{
  background-image: url(../images/sub-solution-bg.jpg);
}
.sub-recurit{
    background-image: url(../images/sub-recurit-bg.jpg);
}
.sub-contact{
  background-image: url(../images/sub-contact-bg.jpg);
}
.sub-recurit.on, .sub-contact.on{
  height:26rem;
  
}
.subTitle .titleWrap{
    width:1350px;
    text-align: center;
    margin:0 auto;
    padding:11.75rem 0 5.5rem;
}
.subTitle .titleWrap .titleTopic{    
    position: relative;
    top: 2rem;
    opacity: 0;
    font-size:1.5rem;
    font-family: "Poppins", sans-serif;
    color:#EF8903;
    font-weight: 600;
}
.subTitle .titleWrap h3{
    position: relative;
    top: 2rem;
    opacity: 0;
    font-size: 4.5rem;
    color: #fff;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    margin:1rem 0 3rem;
}
.subTitle .titleWrap .descriptopn{
    position: relative;
    top: 2rem;
    opacity: 0;
    font-size: 1.2rem;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-heighT:1.6rem;
}
.contentsWrap{
    width:1350px;
    margin:0 auto;    
    padding:5rem 0;
}
.contentsWrap .innerWrap{
    border-bottom: 1px solid #eee;
    padding-bottom:5rem;
    margin-bottom: 5rem;
}
.contentsWrap .innerWrap:last-child{
  border-bottom: 0;
  padding-bottom:0rem;
  margin-bottom: 5rem;
}
.contentsWrap .innerWrap h5{
    font-size:2.25rem;
    margin-bottom:1.4rem;
}
.contentsWrap .innerWrap h6{
    font-size:1.625rem;
    margin-bottom:1.4rem;
    color:#00A0DF;
    margin-top:3rem;
}
.contentsWrap .innerWrap .CbodyText, .Wrms-SubWrap p, .grid-table-wrap p{
    font-size:1.125rem;
    color:#666;
    line-height:1.9rem;
}
.contentsWrap .innerWrap .Cimg{
    margin:3.125rem auto 0;
    display:block;
}
.sapewm-table-01{
  margin:3.125rem 0 0;
}
.sapewm-table-01 ul{
  display: flex;
  justify-content: space-between;
}
.sapewm-table-01 ul>li{
  width:calc(50% - 15px);
  font-family: "Poppins", sans-serif;
}
.sapewm-table-01 ul li>.title{
  color:#fff;
  font-size:1.625rem;
  line-height: 4rem;
  text-align: center;  
  font-family: "Poppins", sans-serif;  
}
.sapewm-table-01 ul .orange-title>.title{
  background:linear-gradient(90deg, #ECBB47 0%, #EF8C07 100%);     
}

.sapewm-table-01 ul .orange-title{
  margin-right:30px;
}
.sapewm-table-01 ul li .sapewm-body{
  display: flex;  
  padding:1.125rem;  
  border:1px dashed #eee;
  display:table
}
.sapewm-table-01 ul li .sapewm-body .title{
  background-color: #fbfbfb;
  color:#000;
  font-size:1.25rem;
  width:8.75rem;
  margin-right:1.125rem;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;    
}
.sapewm-table-01 ul li .sapewm-body li{
  width:calc(100% - 10.625rem);  
  display:table-cell; 
  vertical-align: middle;
  
}
.sapewm-table-01 ul li .sapewm-body li:last-child{
  padding-left:1rem;
}
.sapewm-table-01 ul li .sapewm-body p, .blue-symbol p{
  font-size:1.125rem;
  color:#666;
  margin-bottom:0.12rem;
  line-height:1.8rem;
  position: relative;
  padding-left:1rem;
}
.sapewm-table-01 ul li .sapewm-body p:before, .blue-symbol p:before{
  content: '';
  display: inline-block;
  width:0.5rem;
  height:0.5rem;
  border-radius: 0.5rem;
  background-color: #00A0DF;
  position: absolute;
  left:0rem;
  top:0.6rem;
}
.sapewm-table-01 ul .orange-title .sapewm-body p:before{
  background-color: #EF8C07;
}
.sapewm-table-01 ul li ul{
  height:320px;
}
.sapewm-table-01 ul li ul:last-child{
  margin-top:-1px;
}
.sapewm-table-01 ul li ul li img{
  width:100%;
}
.blue-title>.title{
  background: linear-gradient(90deg, #40D6CF 0%, #01A1E0 100%);
}
.blue-title .blue-symbol p:before{
  background-color: #00A0DF;
}
.grid-table-wrap{
  margin-top:3.5rem;
  background-color:#fbfbfb;
  padding:1.875rem;
}

.grid-table-wrap b{
  font-size:1.625rem;
  padding-bottom:1.25rem;
  display:block;  
  text-align:center;
  color:#00A0DF;
  font-weight: 600;
}
.grid-table-wrap ul{
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  
}
.gridOne ul{
  gap: 0.9375rem;
}
.gridTwo ul{
  gap: 0.9375rem 0.9375rem;  
}
.gridfull ul{
  gap:0.9375rem;
}
.gridRowTwo ul{
  grid-template-columns: repeat(2, 1fr);
}
.gridfull ul{
  grid-template-columns: repeat(1, 1fr);
}
.grid-table-wrap ul li{
  background-color:#fff;
  width:100%;  
}
.grid-table-wrap .blue-title .title{ 
  color:#fff;
  font-size:1.375rem;  
  line-height: 2rem;
  padding:0.5rem 0;
  text-align: center;  
  font-family: "Poppins", sans-serif;  
  font-weight:500;
}
.grid-table-wrap .blue-symbol, .none-symbol{
  padding:1.5rem;
}
.grid-table-wrap .img-center{
  display: block;
  margin:0 auto 1rem;
}
.AR-table .img-center{
  height:70px;
}
.AR-table .area-img img.img-center{
  width: 100%;
  height:100%;
}
.aws-three img{
  margin:2rem auto 0rem !important;
}
.naverthroughWarp .point-color{
  color:#03c75a;
}
.grid-table-wrap .flex-img-wrap .img-center{
 margin: 0 1rem 0 0;
}
.DeTwo{
  display: flex !important;
  justify-content: space-between;
}
.DeTwo li:first-child{
  width:calc(100% - 711px);
}
.DeTwo li:last-child{
  width:681px;
}
.flex-img-wrap{
  display:flex;
  justify-content: space-around;
  padding:1.125rem;
  align-items: center;
}
.flex-img-wrap p{
  font-size:1.25rem;
}
.BG-blue{
  background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
  
}
.BG-blue ul li{
  background:rgba(255,255,255,0.3);
  color:#fff;
  padding:1.125rem;
  text-align: center;
}
.BG-blue b{
  font-size:1.125rem;
  color:#fff;
  font-family: "Poppins", sans-serif;
}
.BG-blue p{
  font-size:1.25rem;
  font-family: "Poppins", sans-serif;
}
.gridfull b{
  text-align:left;
}
.wjerp-table-wrap{
  margin-top:0;
}
.Wrms-SubWrap .title{
  color:#00A0DF;
  font-size:1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.Wrms-SubWrap b.subTitle{
  font-size:1.25rem;
  margin-bottom:0.7rem;
  display: inline-block;
}
.Wrms-SubWrap b.C-black{
  color:#000;
  margin:0 auto;
  padding-bottom:0.5rem;
  display: block;
}
.Wrms-SubWrap .grid-table-wrap span{
  display: block;
  margin:0 auto;
  font-size:1.25rem;
  padding-bottom:1.25rem; 
  text-align:center;
  color:#00A0DF;
  font-weight: 600;
}
.Wrms-SubWrap .Wrms-SubWrap-In{
  border-top:1px dashed #eee;
  padding-top:4rem;
  margin-top:4rem
}
.Wrms-SubWrap .Wrms-SubWrap-In:last-child{
  padding-bottom:0;
  border-bottom:0;
}
.grid-table-wrap .mdblack{
 font-weight: 500;
 font-size:1.25rem;
 color:#000;
 margin-left:0.5rem;
 padding-bottom:0.5rem;
}
.none-symbol p{
  text-align: center;
}
.SM-table-wrap{
  text-align:center;
  border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-top:4rem;
    overflow: hidden;;
}
.SM-table-wrap thead{
  background-color:rgba(255,255,255,0);
  color:#fff;
  font-size:1.25rem;  
  position: relative;
}
.SM-table-wrap thead:after{
  background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
  content: '';
  display: block;
  width:100%;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  z-index: -1;
}

.SM-table-wrap thead th{
  padding:1rem;
  font-weight: 600;
  border-right:1px solid #fff;
}
.SM-table-wrap tbody .bg{
  background-color:#fbfbfb;
  border-left:0;
  color:#000;
}
.SM-table-wrap tbody td{
  border-left:1px solid #00A0DF;
  border-bottom:1px solid #00A0DF;
  padding:1rem;
  font-size:1.125rem;
  color:#666;
}
.table-moility .blue-title{
  margin-bottom:1rem;
  background-color:#fff;
}
.table-moility .blue-title p{
  margin-bottom:0;
}
.table-moility ul li{
  background-color:transparent;
}
.table-moility ul {
  gap:2.5rem
}
.table-moility ul li:after{
  width:100%;
  height:1px;
  content: '';
  background-color:#000;
}
.tableNM{
  margin-top:-2.8rem !important; 
}
.img-title {
  background-color:#fbfbfb;  
}
.img-title h5.title{
  margin:0 auto;
  padding-bottom:1.5rem;
  text-align: center;
  font-size:1.625rem;
  display:block;
}

/*****Recurit*****/
.recurit-wrap{
  display: flex;
  justify-content: space-between;
}

.recurit-wrap .left-location{
  width:200px;
  margin-right:60px;
}
.recurit-wrap .left-location .left-location-wrap .location-title{
  font-size:2.25rem;
  font-weight: 700;
  margin-bottom:1rem;
}
.recurit-wrap .left-location .left-location-wrap .check_wrap{
  margin-bottom:0.6rem;
}
.recurit-wrap .right-contents{
  width:calc(100% - 260px);
}
.right-contents-list a{
  color:#000;
}
.right-contents-list a:hover, .right-contents-list a:hover p.body{
  color:#00A0DF;
}
.right-contents-list li{
  border-bottom: 1px solid #eee;
  padding:1.875rem 0;
}
.right-contents-list li .title{
  font-size:1.5rem;
  font-weight: 700;
  margin-bottom:0.7rem;
}
.right-contents-list li .body{
  font-size:1.125rem;
  color:#666;
}
.recurit-wrap .right-contents .right-search-wrap{
  padding:0 !important;
  border:none !important;
  position: relative;
}
.recurit-wrap .right-contents .right-search-wrap label{
  display:none;
}
.recurit-wrap .right-contents .right-search-wrap input{
  width:100%;
  height:60px;
  border:none;
  padding:1.25rem;  
  font-size:1.5rem;
  border:1px solid #ddd;
  border-radius: 0.2rem;
  margin-bottom:2rem;
}
.recurit-wrap .btn-search{
  height: 34px;
    background: url(../images/btn-search.png) no-repeat 50%;
    position: absolute;
    top: 12px;
    right: 1rem;
    display: block;
    width: 34px;
    border:0;
    cursor: pointer;
}

/*****NEW Search*****/
.searchWrap {
  display:flex;
  justify-content: space-between;
  border-bottom:1px solid #000;
}
.searchWrap .multiselectWrap{
  width:200px;
}
.searchWrap .right-search-wrap{
  width:calc(100% - 340px);
}
.searchWrap .searchbtnWrap{
  width:140px;
  position: relative;
}
.searchWrap .searchbtnWrap:before{
  background: url(../images/btn-search.png) no-repeat;
  background-size: 100%;
  height:20px;
  width:20px;
  content: '';
  display:inline-block;
  position:absolute;
  left:27px;
  top:20px;
}
.searchWrap .right-search-wrap label{
  display:none;
}
.searchWrap  .right-search-wrap input{
  width:100%;
  height:62px;
  border:none;
  padding:1.25rem;  
  font-size: 1.125rem;
  border:1px solid #ddd;
  margin-bottom:2rem;
  background-color:#f4f4f4;
  margin-left:-1px;
  
}
.searchWrap .btn-search{
  width:100%;
  background-color: #00A0DF;
  color:#fff;
  display: block;
  border:0;
  cursor: pointer;
  font-size: 1.125rem;
  height:62px;
  margin-left:-1px;
  padding-left:25px;
  
}
.searchWrap .btn-search:hover{
  background:linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%)
}
.searchWrap .multiselect {
  width: 100%;
  font-size: 1.125rem;
  border: 1px solid #ddd;
  transition: 0.2s;
  outline: none;
  position: relative;
  background-color:#f4f4f4;
  border-radius: 0;
}
.searchWrap .multiselect:hover{
  background-color:#fbfbfb;
  color:#00A0DF;

}
.searchWrap .multiselect > .container{
  padding:0;
}

.searchWrap .multiselect .option{
  display:block;
  width:100%;
  height:2rem;
  font-size:0.9rem;
  background:#fff;
  border:0;
  text-align: left;
  cursor: pointer;
  padding-left:1rem;
  position: relative;
}
.searchWrap .multiselect .option:hover{
  background-color:#fbfbfb;
}
.searchWrap .multiselect .option.selected{
  color:#00A0DF;
}
.searchWrap .multiselect .option.selected:after{
  background: url(../images/btn-check-blue.png) no-repeat;
  background-size: 100%;
  height:20px;
  width:20px;
  content: '';
  display:inline-block;
  position:absolute;
  right:0.5rem;
  top:5px;
}
.recurit-detail-wrap{
  position: relative;
}
.recurit-detail-wrap h4.title{
  margin-bottom:2rem;
}
.recurit-detail-wrap .subTtitle{
  font-size:1.375rem;
  font-weight:600;
  margin-bottom:1rem;
}
.recurit-detail-wrap .body{
  font-size:1.125rem;
  color:#666;
  line-height:1.9rem;
}
.recurit-detail-wrap .recurit-detail-line{
  border-bottom:1px dashed #eee;
  margin:3rem 0;
}
.recurit-detail-wrap .btn-apply{
  position: absolute;
  right:0;
  top:0;
  background-color:#00a0df;
  font-size:1.125rem;
  width:150px;
  line-height:3rem;
  font-weight: 600;
  border-radius: 3rem;  
  color:#fff;
  text-align: center;
  box-shadow:0 5px 20px #5FBFE5;

}
.recurit-detail-wrap .btn-back{
  border:1px solid #ddd;
  font-size:1.125rem;
  width:150px;
  line-height:3rem;
  font-weight: 600;
  border-radius: 0.2rem;  
  color:#000;
  text-align: center;
  display: inline-block;
  margin:0 auto;
  -webkit-transition: .4s;
  transition: .4s;
}
.recurit-detail-wrap .btn-apply:hover, .recurit-detail-wrap .btn-back:hover {
  background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
  
  color:#fff;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: none;;
}
.apply-wrap{
  width:720px;
  margin:0 auto;
}
.apply-wrap .title{
  margin:0rem 0 1rem;
}
.apply-wrap .subTitle{
  font-size:1.125rem;
  color:#666;
  line-height:1.75rem;
}
.apply-wrap .apply-form{
  margin-top:2rem;
}
.apply-wrap .apply-form label{
  display:block;
  margin-bottom:0.5rem;
  font-size:1.125rem;
  color:#000;
}
.apply-wrap .apply-form input, .apply-wrap .apply-form select{
  width:100%;
  border:1px solid #ddd;
  line-height:3.5rem;
  height:3.5rem;
  padding:0 1.25rem;
  border-radius: 0.2rem;
  margin-bottom:2rem;
  font-size:1.125rem;
}
.apply-wrap .textarea-form{
  width:100%;
  border:1px solid #ddd;
  height:12rem;
  padding: 1.25rem;
  border-radius: 0.2rem;
  margin-bottom:1rem;
  font-size:1.125rem;
}

.btn-apply-full{
  width:100%;
  background-color:#00A0DF;
  color:#fff;
  font-size:1.375rem;
  line-height: 4.5rem;
  border:0;
  text-align: center;
  border-radius: 0.2rem;
  cursor: pointer;
  margin-top:1rem;
  font-weight: 700;
}
.btn-apply-full:hover{
  background: linear-gradient(90deg, #40D6CF 0%, #01A1E0 100%);
  box-shadow:0 5px 20px #5FBFE5;
  
}
/***** multi select *****/
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.multiselect {
  width: 100%;
  font-size: 1.125rem;    
  border-radius: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  outline: none;
  position: relative;
}



.multiselect.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid transparent;
}

.multiselect > .title {
  cursor: pointer;
  height: 60px;
  padding: 0 0.5rem 0 1rem;
  line-height:60px;
}

.multiselect > .title > .text {
  display: block;
  float: left;
  overflow: hidden;
  max-width: 160px;
  max-height:60px;
}

.multiselect > .title > .expand-icon,
.multiselect > .title > .close-icon {
  float: right;
  border-radius: 50%;
  padding: 0 4px;
  font-weight: 700;
  transition: 0.2s;
  display: none;
  font-size:2rem;
  font-weight: 200;
  line-height: 55px;
}

.multiselect.selection > .title > .expand-icon {
  display: none;
}

.multiselect > .title > .expand-icon,
.multiselect.selection > .title > .close-icon {
  display: block;
}

.multiselect > .title > .close-icon:hover {
  color: #00A0DF;
}

.multiselect > .container {    
  overflow: auto;
  margin-left: -1px;
  width: 100%;
  height:400px;
  transition: 0.2s;
  position: absolute;
  z-index: 99;
  background: #fff;
  padding:0.5rem;
  display:none;
}

.multiselect.active > .container {
  border: 1px solid #eee;
  border-top: 0;
  border-top:1px solid #eee;
  border-radius:0.2rem;
  display:block;
}


.multiselect > .container > option {
  padding: 5px;
  cursor: pointer;
  transition: 0.2s;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.multiselect > .container > option.selected {
  background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
  color: #fff;
}

.multiselect > .container > option:hover {
  border:1px solid #00A0DF;
  color: #00A0DF;
}

.multiselect.active > .container > option {
  display: block;
  text-align: center;
  font-size:0.9rem;
  line-height:34px;
  border: 1px solid #eee;
  margin:3px 1px;
  border-radius: 0.2rem;
}

/***** file *****/


.file-input {
  display: inline-block;
  text-align: left;
  background: #fff;
  position: relative;
  border-radius: 0.2rem;
  background-color:#fbfbfb;
  width:100%;
  margin-bottom:2rem;
}
.file-input input[type="text"] {
  max-height: 1.2rem; 
  overflow: hidden; 
  outline: none; 
}
.file-input:hover{
  background-color:#e5e5e5;
}

.file-input > [type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.file-input > .button {
  display: inline-block;
  cursor: pointer;
  padding: 0rem 0.5rem;
  border-radius: 0.2rem;
  margin-right: 8px;
  vertical-align: middle;
  margin-left:0.5rem;
}

.file-input > .label {
  color: #666;
  white-space: nowrap;
  opacity: .3;
  line-height:58px;
  font-size:1rem;
}

.file-input.-chosen > .label {
  opacity: 1;
  font-size:0.6rem;
}
.file-img{
  width:29px;
}

.w3-modal {
  z-index: 3;
  display: none;
  padding-top: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4)
}

.w3-modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 0;
  outline: 0;
  width: 600px
}

/*Contact US*/
.mapWrap {
  display: flex;
  justify-content: space-between;
  margin-top:3rem;
}
.mapWrap li{
  width:calc(100% - 0.9375rem);
  margin-right:1.875rem;
}
.mapWrap .mapText:first-child{
  border-bottom:1px dashed #eee;
  margin-bottom:2rem;
  padding-bottom:2rem;
}
.mapWrap .mapText p{
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.12rem;
  line-height: 1.4rem;
}
.mapWrap .mapText .title{
  font-size:1.625rem;
  font-weight: 600;
  display: block;
  color:#00A0DF;
  margin-bottom:0.7rem;
}
.subTitle{
  font-size:1.25rem;
  margin:0rem 0 0.2rem;
  display: block;
}
.mapWrap .mapText span{
  color:#000;
}
.tab-button{
  text-align: center;
  margin-bottom:4.5rem;
  display:flex;
  width:50%;
}
.contactus-tab button{
  width:100%;
  line-height:2rem;
  background:#fff;
  border:1px solid #eee;
  font-size:1.25rem;
  padding:1rem 0;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}
.contactus-tab button:hover{
  color: #00A0DF;
  border:1px solid #00A0DF

} 
.contactus-tab .tab-active{
  background: linear-gradient(143.6deg, #41D7CE 0%, #00A0DF 86.06%);
  color:#fff;
  border:none;
}
 .contactus-tab .tab-active:after
{
  content:'';
  display:block;
  width:100%;
  height: 100%;
  left:0;
  top:0;
  background-color:rgba(255,255,255,0);
  box-shadow: 0 5px 20px #5FBFE5;
  z-index: 1;
  position:absolute;
  transition: 1s;
}

/*****Footer*****/
footer{
  background-color:#333;
  color:#fff;
  padding:2rem 0;
  font-size:1rem;
  line-height:1.8rem;
  
}
footer .footer-wrap{
  width:1350px;
  margin:0 auto;

}
footer .footer-wrap p{
  font-family: 'Inter',sans-serif !important;
  line-height:1.8rem !important;

}
footer .footer-locations{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content:space-between;
  margin-bottom:2rem;
}
footer .footer-location{
  flex:1 1 250px;
  min-width:250px;
}
footer .footer-location-title{
  font-weight:600;
  font-size:1.125rem;
  margin-bottom:0.5rem;
}
footer .footer-location p{
  margin:0.25rem 0;
}
footer .footer-location span{
  font-weight:600;
  margin-right:0.5rem;
  display:inline-block;
  min-width:90px;
}
footer .footer-wrap .copyright{
  color:#999;
  font-size:0.875rem;

}

.topBtn {
  position: fixed;
  right: 50px;
  bottom: -50px;
  opacity: 0;
  width: 70px;
  height: 70px;
  background-color:#00a0df;
   background-image: url(../images/btn-top.png);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0px 1px 5px 1px #00000060;
  box-shadow: 0px 1px 5px 1px #00000060;
  border-radius: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.topBtn.active {
  bottom: 50px;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.img-flex-wrap{
  display: flex; 
  border:1px dashed #00A0DF
}
.img-flex-wrap b{
  line-height:2.2rem
}
.img-flex-wrap p{
  padding-left:0 !important; 
}
.img-flex-wrap p:before{
  display:none !important;
}
.img-flex-wrap .img-wrap{
  margin-right:3rem; 
}
.img-flex-wrap .img-wrap img{
  width:68px
}

.img-flex-wrap div:last-child{
  width:100%;
}
.underline{
  border-bottom: 1px solid #000;
  color:#000;
}
/*Starter*/
.Starter-wrap{
  position: relative;
  padding: 5px;
  background: linear-gradient(to right, #3FD5CE, #00A0DF);
  border-radius: 32px;
}
div.price-wrap::before{
  content: '';
  display: block;
  width:60px;
  height:60px;
  margin:2rem auto;
  background-image: url("../images/price-plus.png");
  background-size:100%;
}
.Starter-wrap div{
  background-color: #fff;
  border-radius: 30px;;
}
.Starter-wrap ul{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding:2rem;
}
.starter-ex-wrap li{
  width:50%;
   border-top:1px dashed #00A0DF;
  padding-top:2rem;
  margin-top:-2rem;
}
.Starter-wrap .left-c{
  margin:0;
}
.Starter-wrap .right-c{
  margin:0;
  text-align: right;
}
.Starter-wrap .right-c ul{
  display: flex;
  padding:0;
  margin-bottom:1rem;
  justify-content: end;
  align-items: center;
    position: relative;
}
.Starter-wrap .right-c ul li{
  margin:0;

}
.Starter-wrap .right-c ul .price-ex{
  position: absolute;
  right:0;
  bottom:-28px;
  width:140%;
}

.starter-title{
  font-size:2.25rem;
  font-weight: 700;
  margin-bottom:1rem;;
}
.starter-body{
  font-size:1.125rem;
  color:#666;
  line-height: 1.8rem;;
}
.starter-price{
  font-size:4rem;
  font-weight: 700;
  color:#000;
}
.starter-btn, .gotopricing{
  display: inline-block;
  text-align: center;
  height:70px;
  line-height:70px;
  border-radius: 35px;
  padding:0 2.5rem;
  font-size:1.5rem;
  color:#fff;
  background: linear-gradient(to right, #3FD5CE, #00A0DF);
  margin-left:1rem;
  cursor: pointer;
}
.sgotopricing:hover{
  opacity: 0.8;
}
.gotopricing{
  position: fixed;
  right:50px;
  bottom:150px;
  padding:0 2.5rem;
  box-shadow:0px 1px 5px 1px #00000060;
  z-index: 99999999;
   cursor: pointer;
}
/*price*/
.price-wrap ul{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;

}
.price-wrap ul li{
  border:1px solid #ddd;
  border-radius:32px;
  width: 100%;
}
.price-wrap ul li.wide  {
  grid-column: span 2; /* 3칸 전체 차지 */
  background:linear-gradient(to right, #ECC251, #EF8A04);
  padding:2px !important;
  border:none !important
}
.price-wrap ul li.wide .inner{
  height: 100%;
}
.price-wrap .price-title{
  font-size:1.8rem;
  color:#000;
  font-weight: 700;
  margin-bottom:1.5rem;
}
.price-body{
  font-size:1.125rem;
  color:#666;
  line-height:1.6rem;
}
.price-total{
  font-size:3rem;
  color:#000;
  margin-top:3.75rem;
  margin-bottom:1.2rem;
  font-weight: 700;
}
.price-ex{
  font-size:0.875rem;
  color:#888;
  font-weight: 400;
  line-height:1.3rem;
  font-family: 'inter';
}
 .add-module{
  font-sizE:1.125rem;
  width:100%;
  border:1px solid #00a0df;
  height:3.125rem;
  line-heighT:3.125rem;
  border-radius: 4rem;
  background-color: transparent;
  color:#00A0DF;
  margin:1rem 0;
  cursor: pointer;
 }

.price-option-wrap{
  border-top:1px dashed #ddd;
  margin-top:1rem;
  padding-top:2rem;
}
.option-title{
  font-size:1.125rem;
  color:#000;  
  margin-bottom:1.5rem;
  font-weight: 600;
}
.option-text{
  position: relative;
  font-size:1rem;
  color:#666;
  line-height:1.4rem;
  margin-bottom:0.6rem;
  padding-left:26px;
}
.option-text::before{
  content: '';
  display:inline-block;
  background-image: url("../images/price-symbol-1.png");
  width:18px;
  height:18px;
  background-size: 100%;
  position: absolute;
  left:0;
  top:2px;
}
/*Active*/
.active .option-text::before{
   background-image: url("../images/price-symbol-2.png");
}
li.active .add-module{
  border:0;
  background: linear-gradient(to right, #3FD5CE, #00A0DF);
  color:#fff;
}
li.active{
  background: linear-gradient(to right, #3FD5CE, #00A0DF);
  padding:4px !important;
  border:none !important;
}
li.active .inner{
  height:100%;
}
.inner{
  background: #fff;
  padding:2rem;
  border-radius: 31px;
  position: relative;
}
li.active .inner:before{
  content: '';
  display: block;
  width:54px;
  height:42px;
  background-size:100%;
  background-image: url("../images/price-selected.png");
  position: absolute;
  right:2rem;
  top:1.4rem;
}
.price-count{
  display: block !important;
}
.price-count li:first-child{

    margin-top:4rem !important ;
}
.price-count li{
  display:flex;
  justify-content: space-between;
  border:none !important;
    padding:0 !important;
    position: relative;
    margin-bottom:0.7rem;
    align-items: center;
}
.price-starter-title{
  width:50%;
  font-size:1.675rem;
  font-weight: 700;
  margin:0 0 0 32px;
}
.price-add-title{
  width:50%;
  font-size:1.35rem;
  margin:0 0 0 32px;
}



.price-count-total{
  width:20%;
  font-size:1.5rem;
  font-weight: 700;
  margin:0;
}
.price-count li.active{
  background:none !important
}
.price-count li.active:before{
  position: absolute;
  content: '';
  display: block;
  width:24px;
  height:19px;
  background-size:100%;
  background-image: url("../images/price-selected.png");
  left:0rem;
  top:0.4rem;
}
.price-count li.disabled:before{
  position: absolute;
  content: '';
  display: block;
  width:24px;
  height:19px;
  background-size:100%;
  background-image: url("../images/price-selected-g.png");
  left:0rem;
  top:0.4rem;
}
.price-count li.disabled .price-add-title, 
.price-count li.disabled .price-starter-title, 
.price-count li.disabled .price-count-input p, 
.price-count li.disabled .price-count-total{

  color:#ccc
}
.price-count li.disabled .price-count-input input{

  border-bottom:2px solid #ccc;
}

.price-count-input{
  display: flex;
  width:30%;
  align-items:center
}
.price-count-input p{font-size:1.5rem;}
.price-count-input input{
  position: relative;
  border-bottom:2px solid #000;
  width:90%;
  border-top:none;
  border-left:none;
  border-right:none;
  text-align: center;
  font-size:1.5rem;
}
.input-disabled{color:#aaa;}
.price-count-input input:disabled{
  background:transparent;
}
.price-summary{
  font-size:0.875rem;
  color:#999;
  margin-top:1rem;
}
.price-cost{
  border-top:1px dashed #eee;
  margin-top:2rem;
  padding-top:2rem;
  font-size:2rem;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  align-items: center;
}
.price-cost p:first-child{
  font-size:1.65rem;
}
.price-cost p{
  margin:0;
}
.price-quote{
  text-align:center;
  margin-top:2rem;
}
.price-quote .starter-btn{
  margin-left:0;
}
@media screen and (max-width: 1400px) {
  #headerWrap .PCheaderWrap .gnbWrap .gnb .lnbWrap{
    min-width:100%;
  }
    
    html, body {
        font-size:15px;
    }
    .subTitle .titleWrap, .contentsWrap{
        width:100%;
    }
    .contentsWrap{
        padding:5rem 1.5rem;
    }
    .contentsWrap .innerWrap .Cimg{
        margin:3.125rem 0 0;
        width:100%;
    }
    footer .footer-wrap{
      width:100%;
      padding:0 1.5rem;
    }
    .aws-three img{
      margin:0rem auto 1rem !important;
    }
    .Centerimg{
      width: 100%;
    }
    
}
@media screen and (max-width: 1200px) {
    #headerWrap .headerLogo{
      margin: 0 0 0 2rem;
    }
    #headerWrap .headerBtn{
      margin: 0 2rem 0 0;
    }
    #headerWrap .gnbWrap .gnb>a{
      margin:0 2rem;
    }
    .price-cost p:first-child{
      width:30%;
    }
}
@media screen and (max-width: 1024px) {
    header #headerWrap{
        display:none;
    }
    header #MheaderWrap{
        display:block;
    }
    body.fixed {
        position: fixed;
    }
      
    header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
    z-index: 999;
    }
    header #MheaderWrap {
    width: 100%;
    height: 60px;
    font-size: 0;
    padding: 0 1.5rem;
    border-bottom:1px solid #eee;
    }
    header #MheaderWrap .Mheadertop{
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
    header #MheaderWrap .logo {
    display: inline-block;
    background-image: url(../images/header_logo.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 90%;
    width: 100px;
    height: 60px;
    cursor: pointer;
    margin:0;
    }
    header #MheaderWrap .navBtn {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background:transparent;
    border:0;
    margin:0;
    }
    header #MheaderWrap .navBtn span {
    position: absolute;
    display: block;
    width: 24px;
    height: 2px;
    top: 31px;
    background-color: #000;
    opacity: 1;
    right:0;
    }
    header #MheaderWrap .navBtn span:first-child {
    top: 22px;
    }
    header #MheaderWrap .navBtn span:last-child {
    top: 40px;
    }
      
    header.scroll {
        background-color: #fff;
        border: unset;
    }
    header.scroll #MheaderWrap .logo {
        background-image: url(../images/header_logo.png);
    }
    header.scroll #MheaderWrap .navBtn span {
        background-color: #000;
    }
    header.nav {
        background-color: #fff;
        transition: 0.5s;
    }
    header.nav #MheaderWrap {
        width: 100%;
    }
    header.nav #MheaderWrap .logo {
        background-image: url(../images/header_logo.png);
    }
    header.nav #MheaderWrap .navBtn span {
        background-color: #000;
    }
    header.nav #MheaderWrap .navBtn span:first-child {
        top: 29px;
        transform: rotate(45deg);
    }
    header.nav #MheaderWrap .navBtn span:nth-child(2) {
        opacity: 0;
    }
    header.nav #MheaderWrap .navBtn span:last-child {
        top: 29px;
        transform: rotate(-45deg);
    }
    header.nav nav {
        position: fixed;
        right: 0;
        transition: 0.5s;
    }
    header nav {
        position: fixed;
        top: 60px;
        right: -100vw;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: 0.5s;
    }
    header nav ul.navWrap {
        height: 100%;
        overflow-y: auto;
    }
  header nav ul.navWrap li.navmenu {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #eee;
    line-height: 1;
    font-family: "Poppins", sans-serif;
  }
  header nav ul.navWrap li.navmenu span.gnb_txt {
    font-size: 1.42rem;
    
  }
  header nav ul.navWrap li.navmenu span.gnb_txt a{
    color:#000;
  }
  header nav ul.navWrap li.navmenu span.gnb_icon {
    position: relative;
    display: block;
    float: right;
    width: 20px;
    height: 20px;
  }
  header nav ul.navWrap li.navmenu span.gnb_icon::before, header nav ul.navWrap li.navmenu span.gnb_icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    top: 1.833vw;
  }
  header nav ul.navWrap li.navmenu span.gnb_icon::after {
    transform: rotate(90deg);
    transition: 0.5s;
  }
  header nav ul.navWrap li.navmenu.active {    
    color: #00a0df;
    font-weight: bold;
  }
  header nav ul.navWrap li.navmenu.active span.gnb_icon::before {
    background-color: #00a0df;
  }
  header nav ul.navWrap li.navmenu.active span.gnb_icon::after {
    transform: rotate(180deg);
    transition: 0.5s;
    background-color:#00a0df;
  }
  header nav ul.navWrap li.navSmenu {
    display: none;
    padding: 10px 20px;
    background-color: #F4F4F4;
  }
  header nav ul.navWrap li.navSmenu ul li {
    padding: 2.34vw 0;
  }
  header nav ul.navWrap li.navSmenu ul li a {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #000;
  }
  header nav ul.navWrap li.navSmenu.active {
    display: block;
  }

  .subTitle .titleWrap{
    padding:3rem 1.3rem;
  }
  .subTitle.on{
    margin-top:60px;
    height:20rem;
  }
  .sub-contact.on, .sub-recurit.on{
    height:14rem;
  }
  .subTitle .titleWrap h3{
    font-size:3.6rem;
    margin:1rem 0 1.5rem;
  }
  .grid-table-wrap{
    padding:1rem;
    margin-top:2rem;
  }
  .tableNM{
    margin-top:-1rem !important;
  }
  .wjerp-table-wrap{
    margin-top:0;
  }
  .DeTwo{
    display: block !important;
    justify-content: space-between;
  }
  .DeTwo li:first-child{
    width:100%;
  }
  .DeTwo li:last-child{
    width:100%;
  }
  .DeTwo li:last-child img{
    width:100%;
    margin-top:2rem;
    text-align: left;
  }
}
  @media screen and (max-width: 767px) {
    .contentsWrap{
      padding:3rem 1.3rem;
    }
    .sub-recurit.on{
      height:14rem;
    }
    .sub-smartfactory.on,   .sub-workthrough.on, .sub-wrms{
      
      height:22rem;
    }
    .sub-wjerp.on{
      height:16.5rem;
      
    }
    .sub-other.on{
      height:18rem;
    }
    .sub-contact.on{
      height:11rem;
    }
    .sub-mobility.on{
      height:21rem;
    }
    .contentsWrap .innerWrap{
      padding-bottom: 3rem;
      margin-bottom: 2.6rem;
    }
    .contentsWrap .innerWrap .Cimg{
      margin:2rem 0 0
    }
    
    .contentsWrap .innerWrap h5{
      font-size:1.8rem;
      line-height:2.6rem;
      margin-bottom:1rem;
    }
    .subTitle .titleWrap{
      padding: 0;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
    }
    .subTitle .titleWrap h3{
        font-size:2.6rem;
    }
    .subTitle .titleWrap .titleTopic{
        font-size:1.3rem;
    }
    .subTitle .titleWrap .descriptopn{
        font-size:0.9rem;
    }
    
    .subTitle.on{
      background-size:cover; 
      position: relative;
    }
    .sub-sap{
      background-image: url(../images/sub-hanainfo-mo-bg.jpg); 
        
    }
    .sub-cloud{
      background-image: url(../images/sub-cloud-mo-bg.jpg);
    }
    .sub-solution{
      background-image: url(../images/sub-solution-bg.jpg);
    }
    .sub-recurit{
        background-image: url(../images/sub-recurit-bg.jpg);
    }
    .sub-contact{
      background-image: url(../images/sub-contact-bg.jpg);
    }
    .sapewm-table-01 ul{
      display: block;
    }
    .sapewm-table-01 ul>li{
      width:100%;
    }
    .sapewm-table-01 ul li ul{
      height:auto;
    }
    .sapewm-table-01 ul li.blue-title{
      margin-top:1.5rem;
    }
    .grid-table-wrap ul{
      grid-template-columns:repeat(1, 1fr)
    }
    .apply-wrap{
      width:100%;
    }
    .webHide{
      display: block !important;
    }
    .moHide{
      display:none !important;
    }
    .sapewm-table-01 ul li .sapewm-body p, .blue-symbol p{
      padding-left:1.1rem;
    }
    .sapewm-table-01 ul li .sapewm-body p:before, .blue-symbol p:before{
      left:0;
    }
    .gridfull b{
      margin-left:0;
    }
    .recurit-wrap{
      display:block;
    }
    .recurit-wrap .left-location{
      width:100%;
      margin-right:0;
      margin-bottom:0.5rem;
    }
    .recurit-wrap .left-location .location-title{
      display:none;
    }
    .recurit-wrap .right-contents{
      width:100%;
    }
    .btn-search{
      padding:1.2rem 1rem;
      
    }
    .recurit-wrap .right-contents .right-search-wrap input{
      font-size:1.125rem;
      color:#000;
    }
    .recurit-detail-wrap .btn-apply{
      position: static;
      display:block;
      width:100%;
      margin-top:3rem;
    }
    .mobile-scroll{
      
      overflow-x:auto;
    }
    .mobile-scroll table{
      width:Auto;
    }
    .flex-img-wrap p, .BG-blue p{
      font-size:1.125rem;
    }
    .Wrms-SubWrap .title{
      margin-bottom:1rem;
    }
    .grid-table-wrap b, .img-title h5.title{
      font-size:1.45rem;
      
    }
    .SM-table-wrap thead:after{
      display: none;
    }
    .SM-table-wrap thead{
      background-color:#00A0DF;
    }
    .tab-button{
      width:100%;
    }
    .mapWrap{
      display:block;
    }
    .mapWrap li:first-child{
      margin-bottom:2rem;
    }
    .mapWrap li{
      width: 100%;
      margin-right:0;
    }
    .Wrms-SubWrap .Wrms-SubWrap-In{
      padding-top:2rem;
      margin-top:2rem;
    }
    .searchWrap .multiselectWrap{
      width:60px;
    }
    .multiselect > .container{
      width:200px;
    }
    .multiselect > .title > .text{
      display:none;
    }
    .multiselect::after{
      background: url(../images/location.png) no-repeat;
    background-size: 100%;
    height: 20px;
    width: 20px;
    content: '';
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 20px;
    }
    .searchWrap .searchbtnWrap{
      width:90px;
    }
    .searchWrap .right-search-wrap{
      width:calc(100% - 150px)
    }
    .searchWrap .btn-search{
      padding-left:28px;
    }
    .searchWrap .searchbtnWrap:before{
      left:5px;
    }
    .tab-button{
      margin-bottom:3.5rem;
    }
    .contactus-tab button{
      font-size:1.125rem;
    }
    .sapewm-table-01 ul li>.title{
      font-size:1.4rem;
    }
    .SM-table-wrap tbody td{
      padding:0.5rem;
    }
    .AR-table li.area-img{
      display:none;
    }
    .grid-table-wrap, .sapewm-table-01 ul li .sapewm-body .title, .SM-table-wrap tbody .bg, .img-title, .searchWrap .multiselect:hover, .searchWrap .multiselect .option:hover, .file-input{
      background-color:#f4f4f4;
    }
    .img-flex-wrap{
      display: block
    }
    .img-flex-wrap .img-wrap img{
      margin:0 0 1rem;
    }
    .price-wrap ul{
      display:block;

    }
    .price-wrap ul li{
      margin-bottom: 10px;;
      width: 100%;
      
    }
    .inner{
      padding:1.65rem
    }
    .Starter-wrap ul{
      display: block;
    }
    .starter-ex-wrap li{
      width:100%;
      margin:0;
      border-top:none;
    }
    .starter-ex-wrap li:first-child{
      border-top:1px dashed #00a0df;
      margin-top:-3rem;
    }
    .Starter-wrap .right-c ul{
      display:block;
      text-align: left;
    }
    .Starter-wrap .right-c ul .price-ex{
      position: static;
      margin-top:0.75rem;
      width: 100%;
    }
    .starter-price{
      margin-top:3rem;
    }
    .starter-btn{
      width:100%;
      margin-left:0;
      margin-top:1rem;
      display: inline-block;
      text-align: center;
      padding:0;
    }
    .price-cost{
      display: block;
    }
    .price-cost p{
      margin:0 0 1rem;
    }
    .price-starter-title{
      font-size: 1.3rem;;
      margin: 0 0 0 20px;
      width:54%;
    }
    .price-add-title{
      
      margin: 0 0 0 20px;
      width:54%
    }
    .price-add-title, .price-count-total, .price-count-input p, .price-count-input input{
      font-size:1rem;
    }
    .price-count-input{
      width:21%;
    }
    .price-count-total{
      width:23%;
    }
    .price-count li.active:before, .price-count li.disabled:before{
      width:16px;
      height:13px;
    }
    .price-cost p:first-child{
      font-size:1.5rem;
      width: 100%;
    }
    .price-cost p:last-child{
      font-size:3rem;
    }
  }
  @media screen and (max-width: 480px) {
    .mo-full{
      width:90%;
    }
  }

/* Quote modal styles */
#quoteModal.quote-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}
.quote-modal-content{
  background:#fff;
  padding:20px;
  max-width:760px;
  width:90%;
  position:relative;
  max-height:90vh;
  overflow-y:auto;
}
.quote-modal-content h4{
  font-size:2.25rem;
  margin-bottom:1.4rem;
}
.quote-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  cursor:pointer;
}
.quote-summary{
  white-space:pre-line;
  border:1px solid #ccc;
  padding:10px;
  max-height:150px;
  overflow:auto;
  margin-bottom:2rem;
}

.quote-summary-item{
  display:flex;
  align-items:center;
  margin-bottom:0.6rem;
}

.quote-summary-item::before{
  content: '';
  display:inline-block;
  background-image: url("../images/price-symbol-2.png");
  width:18px;
  height:18px;
  background-size: 100%;
  margin-right:8px;
  flex-shrink:0;
}

.quote-summary-item{
  display:flex;
  align-items:center;
  margin-bottom:0.6rem;
}

.quote-summary-item::before{
  content: '';
  display:inline-block;
  background-image: url("../images/price-symbol-2.png");
  width:18px;
  height:18px;
  background-size: 100%;
  margin-right:8px;
  flex-shrink:0;
}

#quoteModal .apply-wrap .textarea-form{
  height:8rem;
}


.mapText .title.office-link { cursor: pointer !important; }
.mapText .title.office-link:hover { text-decoration: underline; }


.tab-body {
    display: block;
}

.tab-body.is-hidden {
    display: none;
}
