/*Global*/
:root {
    /*Color*/
    --color-white: #ffffff;
    --color-light-white: #eeeeee;
    --color-dark-white: #bdbdbd;
    --color-pink: #fe918d;
    --color-dark-pink: #ff6863;
    --color-dark-grey: #4d4d4d;
    --color-grey: #5e5e5e;
    --color-light-grey: #7c7979;
    --color-blue: #0065e9;
    --color-skyblue: #73aace;
    --color-yellow: #fff7d1;
    --color-orange: #feb546;
    --color-black: #000000;
  
    /*Font-size*/
    --font-biglarge:60px;
    --font-smalllarge:45px;
    --font-large: 35px;
    --font-medium: 25px;
    --font-semi-regular: 20px;
    --font-regular: 17px;
    --font-small: 14px;
    --font-micro: 12px;
  
    /*Font-weight*/
    --weight-bold: 700;
    --weight-close-bold: 600;
    --weight-semi-bold: 500;
    --weight-regular: 400;
    --weight-thin: 200;
  
    /*Radius*/
    --size-border-radius: 50%;
  }

  /*Universal tags*/

  @font-face { font-family: 'NotoSansKR'; 
		font-display: auto;
		font-style: normal;
		font-weight: 100;
		src: 	url(img/NotoSansKR-Thin.otf) format('opentype'); }

  @font-face { font-family: 'NotoSansKR'; 
  font-display: auto;
  font-style: normal;
  font-weight: 200;
  src: 	url(img/NotoSansKR-Light.otf) format('opentype'); }

  @font-face { font-family: 'NotoSansKR'; 
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  src: 	url(img/NotoSansKR-Regular.woff2) format('woff2'), 
					url(img/NotoSansKR-Regular.woff) format('woff'), 
					url(img/NotoSansKR-Regular.otf) format('opentype'); }

  @font-face { font-family: 'NotoSansKR'; 
  font-display: auto;
  font-style: normal; 
  font-weight: 500;
  src: 	url(img/NotoSansKR-Medium.woff2) format('woff2'), 
					url(img/NotoSansKR-Medium.woff) format('woff'), 
					url(img/NotoSansKR-Medium.otf) format('opentype'); }

  @font-face { font-family: 'NotoSansKR'; 
  font-display: auto;
  font-style: bold; 
  font-weight: 700;
  src: 	url(img/NotoSansKR-Bold.woff2) format('woff2'), 
        url(img/NotoSansKR-Bold.woff) format('woff'), 
        url(img/NotoSansKR-Bold.otf) format('opentype'); }
          
  @font-face { font-family: 'NotoSansKR'; 
  font-display: auto;
  font-style: bold; 
  font-weight: 900;
  src: 	url(img/NotoSansKR-Black.otf) format('opentype'); }

  * {
    box-sizing: border-box;
    font-family: 'NotoSansKR', sans-serif;
    image-rendering: -webkit-optimize-contrast;
  }

  html, body{
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
      position: relative;
  }
  
  body {
    cursor: default;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--color-black);
  }
  
  ul {
    padding: 0;
    margin: 0;
  }
  
  li {
    list-style: none;
    font-size: var(--font-regular);
  }
  
  button {
    background-color: transparent;
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  /* Typography */
  
  h1 {
    font-size: var(--font-large);
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin: 0;
  }
  
  h2 {
    font-size: var(--font-medium);
    font-weight: var(--weight-close-bold);
    color: var(--color-black);
    margin: 0;
  }
  
  h3 {
    font-size: var(--font-regular);
    font-weight: var(--weight-regular);
    color: var(--color-black);
    margin: 0;
  }
  
  p {
    font-size: var(--font-regular);
    font-weight: var(--weight-regular);
    color: var(--color-black);
    margin: 0;
    color: var(--color-grey);
  }


  /* fade-in, out */
.fade-class {
  left: 200px;
  opacity: 0;
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s linear;
}
.fade-in {
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s linear;
  left: 0px;
  opacity: 1;
  position: relative;
}


/*header*/
#header{
  height: 300px;
  width: 100%;
  border-bottom: 1px solid #e1e1e5;
  background: no-repeat url(img/solutionheader.png) ;
}
.header__wrap{
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
}
.header__title{
  padding-top: 100px;
  font-size: var(--font-smalllarge);
  color: white;
}
.header__nav{
  margin-top: 80px;
  height: 54px;
  line-height: 53px;
  display: flex;
}
.header__menu{
  border: 1px solid #e1e1e5;
  background-color: white;
  flex-grow: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.header__menu a{
  display: block;
  width: 100%;
  height: 100%;
}
.subactive{
  background-color: #eef8ff;
  border: 1px solid #3086f6;
}
.subactiveA{
  color: #3086f6;
  font-weight: var(--weight-bold);
}
.header__menu:hover {
  background-color: #eef8ff;
  border: 1px solid #3086f6;
  color: #3086f6;
  font-weight: var(--weight-bold);
}


/*공통된 title과 description*/
.sub__title{
  text-align: center;
  padding-top: 100px;
}
.sub__description{
  font-size: var(--font-regular);
  font-weight: var(--weight-regular);
  color: var(--color-black);
  margin: 0;
  color: var(--color-grey);
  text-align: center;
  margin-top: 10px;
}

/*주요실적 보기 버튼*/
.reference__btn{
    display: block;
    color: white;
    cursor: pointer;
    background: #1462ff;
    border-radius: 10px;
    box-shadow: 0 6px 30px -10px #4a74c9;
    width: 220px;
    height: 60px;
    margin: 0 auto;
    font-size: var(--font-semi-regular);
    margin-top: 50px;
    position: relative;
    text-indent: -10px;
  }
  .reference__btn::after{
    content: ">";
    font-size: var(--font-semi-regular);
    font-weight: var(--weight-bold);
    color: white;
    position: absolute;
    right: 30px;
  }
  
  .reference__btn:hover{
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
  }

  
  /*MEET PLUS 시스템 소개*/
  #meetInformation{
    height: 650px;
  }

  .meetInformation__img{
    margin-top: 20px;
  }
  .meetInformation__paragraph{
    color: white;
    text-align: center;
    margin-top: -265px;
  }
  .meetInformation__paragraph span{
    font-weight: var(--weight-bold);
    color: white;
  }

  /*MEET PLUS가 필요한 순간*/
  #meetMoment{
      height: 1000px;
  }
  #meetMoment h1{
    padding-top: 150px;
  }
  .meetMoment__container{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
  }

  .meetMoment__left{
      width: 100%;
      height: 100%;
  }
  .meetMoment__left:first-child li+li{
    margin-top: -30px;
  }

  .meetMoment__item{
      background: no-repeat url(img/bubblespeach.png);
      width: 700px;
      height: 206px;
      line-height: 180px;
      text-align: center;
      font-size: var(--font-semi-regular);
      color: #5e5e5e;
  }
  .meetMoment__item span{
      font-weight: var(--weight-bold);
      color: black;
  }

  .meetMoment__right{
      display: block;
      width: 478px;
      height: 522px;
      object-fit: cover;
      margin: 0 auto;
  }

  /*MEET PLUS 솔루션 기능*/
  #meetFunction{
    background-color: #f3f3f8;
    height: 1000px;
  }
  #meetFunction h1{
    padding-top: 150px;
  }
  .meetFunction__container{
      display: flex;
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 30px;
  }
  .meetFunction__item{
      width: 100%;
      margin: 20px;
      position: relative;
      border-top: 3px solid #bfbfd1;
  }
  .meetFunction__title{
      font-size: var(--font-medium);
      font-weight: var(--weight-bold);
      padding-left: 50px;
      padding-top: 50px;
  }
  .meetFunction__title::before{
    content: "";
    display: block;
    width: 33px;
    height: 33px;
    background: no-repeat center url(img/meetFeatureIcon.png);
    position: absolute;
    left: 0;
    top: 52px;
  }

  .meetFunction__description{
      padding-left: 50px;
      padding-top: 20px;
      padding-bottom: 50px;
  }
  .meetFunction__img{
      display: block;
      height: 300px;
      line-height: 300px;
      text-align: center;
  }


  /*MEET PLUS 솔루션 특징*/
#meetFeatures{
  height: 1000px;
}
#meetFeatures h1{
  padding-top: 150px;
}
.meetFeatures__container{
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
}
.meetFeatures__left{
  width: 550px;
  height: 410px;
  background: no-repeat center url(img/meetFeatureLeft.png);
}
.meetFeatures__right{
}
.meetFeatures__item{
  border: 1px solid #cdcdcd;
  width: 800px;
  height: 130px;
  margin-left: 35px;
  margin-bottom: 10px;
  display: flex;
}
/*이미지*/
.meetFeatures__img{
  display: block;
  width: 90px;
  height: 90px;
  margin-top: 20px;
  margin-left: 100px;
  margin-right: 70px;
  text-align: center;
  line-height: 83px;
  font-size: var(--font-small);
  object-fit: cover;
}
/*텍스트*/
.meetFeatures__title{
  font-size: var(--font-semi-regular);
  font-weight: var(--weight-bold);
  padding-top: 20px;
}
.meetFetures__description{
  padding-top: 10px;
}

.meetFeatures__hard{
  border: 1px solid #cdcdcd;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
}
.meetFeatures__hardTitle{
  width: 100%;
  height: 64px;
  background-color: #a1a1b4;
  font-size: var(--font-semi-regular);
  font-weight: var(--weight-bold);
  line-height: 64px;
  text-align: center;
  color: white;
}
.meetFeatures__hardDescription{
  text-align: center;
  padding: 30px;
}
