@font-face {
  font-family: 'GmarketSansMedium';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Fonts */
:root {
  --font-default:'GmarketSansMedium', sans-serif;
  --font-secondary: "'Noto Sans KR', sans-serif";

  --color-default: #000000;
  --color-secondary: #52565e;
  --color-wisevill: #23c890;

  scroll-behavior: smooth;

  --font-size-lg: 3rem;
  --font-size-md: 2rem;
  --font-size-sm: 1rem;
}

body {
  font-family: var(--font-default);
  color : var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {font-family: var(--font-default);}

.w-mt-50 {margin-top:50px !important;}
.w-mt-100 {margin-top:100px !important;}
.w-mt-150 {margin-top:150px !important;}
.w-mt-200 {margin-top:200px !important;}

.wh-100 {height:100px !important;}
.wh-200 {height:200px !important;}
.wh-300 {height:300px !important;}
.wh-400 {height:400px !important;}
.wh-500 {height:500px !important;}

@media screen and (max-width: 736px) {

  :root {
    --font-size-lg: 2rem;
    --font-size-md: 1.5rem;
    --font-size-sm: 0.75rem;
  }

  .m-wh-100 {height:50px !important;}
  .m-wh-200 {height:100px !important;}
  .m-wh-300 {height:150px !important;}
  .m-wh-400 {height:200px !important;}
  .m-wh-500 {height:250px !important;}
  
}
/*---section ------------------------------------------------*/

section {
  width:100%;
  padding: 50px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-default);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}


/* --- 유튜브영상 반응형 ---*/
.you_video::before {
  content: "영상자료";
  font-size: 20px;
  margin-bottom:20px;
}
.you_video {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #f0f0f0;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0px 8px 25px #999;
}
 
.video-container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.5%;
}
 
.you_video iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.you_video video {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 736px) {

  .you_video {
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 8px 18px #999;
  }

  .video-container {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 56.5%;
  }
  
}


/* --- 서브페이지 헤더 ------------------- */

#sub-header {
  position: relative;
  width: 100%;
  height: 450px;
  background: #23232f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% 85%, 34% 100%, 0 85%);*/
}



#sub-header .sub-text {z-index:100; text-align:center;}

#sub-header .sub-text h1 {
  display:block;
  font-size: 6rem;
  font-weight:600;
  letter-spacing:-3.2px;
  color:#fff;
  font-weight:600;
  line-height:1.2;
  margin-bottom:1.5rem;
  margin-left:-0.7rem;
  padding-right:0.7rem;
}

#sub-header .sub-text h2 {
  font-size:min(1.5229vw,3.5rem);
	letter-spacing:-1.4px;
	color:#fff;
	font-weight:400;
	line-height:1.5;
}

#back_1 {
  background-image: url('/img/visual_01.jpg');
  background-size: cover;
  background-position: center;  
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#back_2 {
  background-image: url('/img/visual_02.jpg');
  background-size: cover;
  background-position: center;  
  position: absolute; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#back_3 {
  background-image: url('/img/visual_03.jpg');
  background-size: cover;
  background-position: center;  
  position: absolute; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#back_4 {
  background-image: url('/img/visual_04.jpg');
  background-size: cover;
  background-position: center;  
  position: absolute; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.background-animation {
  animation: bgScale 10s ease-out 0s forwards;
}

@keyframes bgScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}


@media screen and (max-width: 736px) {

#sub-header {
  height: 400px;
}

#sub-header .sub-text {z-index:100; text-align:center;}

#sub-header .sub-text h1 {
  font-size:3em;
  letter-spacing:-1px;
  margin-bottom:0;
}

#sub-header .sub-text h2 {
  font-size:1.5em;
}

}


/*---중간 레이아웃 ------------------------------------------------*/

#wrapper {}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto;zoom:1}

#container {position:relative; width:100%; margin:0 auto;}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold}
#container_title span {margin:0 auto 10px;display:block;line-height:30px}

.in_container {position:relative; width:1200px; margin:0 auto;}
.big_container {position:relative; width:80%; margin:0 auto;}

@media screen and (max-width: 768px) {
  .in_container {width: 100%; padding:0 20px 0;}
  .big_container {width: 100%; padding:0 20px 0;}
}



/* 메인. WISEVILL Introduce ------------------------------------ */
.section_introduce {min-height:500px; background-color: #fff; }
  .sec_txA {text-align:center; font-size:2em; font-weight:bold; letter-spacing: -3px; margin-bottom:40px;}
  .sec_txB {text-align:center; font-size:3em; font-weight:bold; letter-spacing: -1px;}
	.sec_txB span {color : var(--color-wisevill);}
  .sec_txS {text-align:center; font-size:1.15em; font-weight:500; letter-spacing: -1px;}

@media screen and (max-width: 736px) {

  .sec_txB {font-size:2em;}
  .sec_txS {font-size:0.9em;}

}


/* 메인. 클라이언트 ----------------- */
.clients {
  padding: 40px 0;
  text-align: center;
}

.clients img {
  margin:10px 0 10px;
  max-width: 100%;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  border:1px solid #ececec;
  background-color: #fff;
}

.clients img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 736px) {

  .clients {
    margin-top:40px;
    padding:0 20px 0;
  }

  .clients img:hover {
    border:5px solid #23c890;
  }
}


/* 메인. Footer */

.footx p {
  width:100%;
  color: #b8b8b8;
  font-size:14px;
  line-height: 15px;
  font-weight: 400;
}
.footx p br {display:none !important;}

.footx span {margin-left:30px;}

.logo-footer {
  margin-bottom: 30px;
}

@media screen and (max-width: 736px) {

  .footx p {line-height:28px;}
  .footx p br {display:block !important;}
  .footx span {margin:0;}

  }

/* 메인. Service ------------------------------------ */

.updown {
  border: 0.2px solid #000;  
  width: 0px;
  height: 50px;
  margin:0 auto;
  margin-top:5em;
}


.spotlight {
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;  
}


.spotlight .image {
  -moz-order: 1;
  -webkit-order: 1;
  -ms-order: 1;
  order: 1;
  border-radius: 0;
  width: 50%;
}

  .spotlight .image img {
    border-radius: 0;
    width: 100%;
  }

.spotlight .content {
  font-size:2.75em;
  font-weight:600;
  letter-spacing: -2px;
  padding: 0 5em 0;
  -moz-order: 2;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2;
  max-width: 48em;
  width: 50%;
}

.spotlight .content h2 {font-weight:600; font-size:24px; margin-bottom:30px; color:#2578de; letter-spacing: -1px;}

.spotlight .content .s_btns {font-weight: normal; font-size:20px; letter-spacing:normal;}

.spotlight:nth-child(2n) {
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* .spotlight:nth-child(1) {
  background-color: rgba(208, 169, 169, 0.075);
}

.spotlight:nth-child(2) {
  background-color: rgba(192, 210, 215, 0.15);
}

.spotlight:nth-child(3) {
  background-color: rgba(203, 210, 195, 0.225);
}
*/

@media screen and (max-width: 1280px) {

  .spotlight .image {
    width: 50%;
  }

  .spotlight .content {
    width: 50%;
  }

}

@media screen and (max-width: 980px) {

  .spotlight {
    display: block;
  }

    .spotlight br {
      display: none;
    }

    .spotlight .image {
      width: 100%;
    }

    .spotlight .content {
      padding: 4em 3em 2em 3em ;
      max-width: none;
      text-align: center;
      width: 100%;
    }

}

@media screen and (max-width: 736px) {

  .spotlight .content p {font-size:30px;}

  .spotlight .content {
    padding: 1em 1em 0;
  }

}



/* 서비스 내용 ------------- */
.bg-primary {
  background-color: #23c890 !important;
}

.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item h4 {
  font-size:2em;
  font-weight: bold;
  color : var(--color-wisevill);
}

.service-item p {
  display: block;
  font-family: var(--font-secondary);
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.service-item .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #696E77;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

.service-item a.btn {
  color: var(--primary);
  background: #F6F7FC;
}

.service-item a.btn:hover {
  color: #FFF ;
  background-color: #015FC9;
  border-color: var(--primary);
}


.button-51 {
  background-color: transparent;
  border: 1px solid #266DB6;
  box-sizing: border-box;
  color: #00132C;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 23px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-51:hover,
.button-51:active {
  outline: 0;
}

.button-51:hover {
  background-color: transparent;
  cursor: pointer;
}

.button-51:before {
  background-color: #D5EDF6;
  content: "";
  height: calc(100% + 3px);
  position: absolute;
  right: -7px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}

.button-51:hover:before {
  background-color: #6DCFF6;
}

@media (min-width: 768px) {
  .button-51 {
    padding: 16px 32px;
  }
}


/* 메인. Contact US ---------------------- */

.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.3), rgba(0, 0, 0, 0.9)), url("/img/contacts_bg5.jpg") fixed center center;
  background-size: cover;
  padding: 200px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size:18px;
  margin-top: 20px;
}

.cta span {
  color : var(--color-wisevill);
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 20px;
  display: inline-block;
  padding: 15px 25px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 50px;
  background-color: rgba(13, 85, 73, 0.8);
  border: 0px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  background: #23c890;
  border-color: #0a875c;
  color: #fff;
  font-weight: bold;
}


@media screen and (max-width: 736px) {

  .cta {
    padding: 100px 30px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 70px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size:2.5em;
  font-weight:bold;
  color:#c1c1c1;
  margin: 0 10px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 5px;  
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  font-size:3em;
  font-weight:bold; 
  color : var(--color-wisevill);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  position: relative;
  margin:0;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-item img {
  transition: all 0.3s;
}

.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  cursor: pointer;
  background-color: rgba(16, 29, 26, 0.7);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}


@media screen and (max-width: 736px) {


  .portfolio {padding:20px;}
  .portfolio .section-header {width:100%; padding:0;}
  .portfolio .section-header h2 {font-size:2.5em;}

  .portfolio .portfolio-item {
    margin:15px 0;
  }

  .portfolio .portfolio-flters li {
    font-size: 1.5em;
    margin: 10px 5px 0;
    letter-spacing: -1px;
  }
  
  .portfolio .portfolio-flters li:hover,
  .portfolio .portfolio-flters li.filter-active {
    font-size:2em;
    font-weight:bold; 
    color : var(--color-wisevill);
  }

}



/* --- 회사소개 ---인사말/연혁/찾아오시는길-------------------------------------*/

.sub-company-title {
  width:70%;
  margin:0 auto;
  color:#222222;
}

.sub-com-tit01 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom:40px;  
}

.sub-com-tit02 {
  font-size: 100px;
  margin-bottom: 0.1em;
  font-family: 'Poppins', 'Detre', sans-serif;
  letter-spacing: 0;
  font-weight: 800;
  line-height:100px;
  position: relative;
  z-index: 1;
}
.sub-com-tit02 span {color : var(--color-wisevill);}

.sub-com-tit03 {
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 500;
}

.sub-com-in-bg {
  width:70%;
  height:600px;
  margin:0 auto;
  background-image: url('https://www.lottewellfood.com/images/common/visual05_1.jpg');
  background-size:cover;
}

/* 회사소개 */
h1[title='회사소개'] {
  color: red;
}

/* 서비스 */
h1[title='서비스'] {
  color: blue;
}

@media screen and (max-width: 736px) {

  .sub-company-title  {width:100%; padding:25px;}
    .sub-com-tit01 {font-size:14px; font-weight:300; letter-spacing: -1px;}
    .sub-com-tit02 {font-size: 12vw; line-height:14vw;}
    .sub-com-tit03 {word-break: keep-all; letter-spacing: -1px;}

    .sub-com-in-bg {
      width: 100%;
      height:400px;
      background-size: cover;
      background-position: center;
    }

}

/*--회사연혁--------------------------------- */

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    background-color: #f1f1f1;
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f1f1f1;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    background-color: #1ee2e7;
}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    font-size: var(--font-size-lg);
    color : var(--color-wisevill);
    font-weight:bold;
    margin-top: 0;
}

.timeline .timeline-heading h4.subheading {
    font-size: var(--font-size-md);
    text-transform: none;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
    color: #5a5a5a;
    font-size: var(--font-size-sm);
}

@media(min-width:768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        margin-bottom: 100px;
        min-height: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 40%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media(min-width:992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 30px;
        font-size: 18px;
        line-height: 26px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media(min-width:1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 40px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}


/*-- 찾아오시는길 */

.mapsize {width:100%; height:600px;}
.location {
  width:70%;
  margin:0 auto;
  padding:30px 20px 30px;
  border-top:2px solid #000;
  border-bottom:2px solid #000;
}

.sub-map-in-bg {
  width:70%;
  height:600px;
  overflow: hidden;
  margin:0 auto;
}

@media screen and (max-width: 736px) {

  .mapsize {width:100%; height:400px;}

  .location {width:90%;}

    .sub-map-in-bg {
      width: 90%;
      height:400px;
      background-size: cover;
      background-position: center;
    }

}


/* 서비스안내 */
.sub-service-title {
  width:70%;
  margin:0 auto;
  margin-top:100px;
  margin-bottom:50px;
  color:#222222;
}

.sub-service-tit01 {
  font-size: 80px;
  margin-bottom: 0.1em;
  letter-spacing: 0;
  font-weight: 800;
  line-height:100px;
  position: relative;
  z-index: 1;
}
.sub-service-tit01 span {color : var(--color-wisevill);}

.sub-service-tit02 {
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 500;
}

.sub-service-tit02 br {display:none !important;}

.serv-cont {
  width:85%;
  height:auto;
  margin:0 auto;
  overflow: hidden;
}

.serv-cont span {
color: var(--color-wisevill);
}

.serv-cont dt {font-size:30px;}
.serv-cont dt:nth-child(2) {
  font-size:16px;
  margin-bottom:30px;
}

.serv-cont dd::before {
content: "˚ ";
}

.serv-cont2 {
  width:85%;
  height:auto;
  margin:0 auto;
  overflow: hidden;
}

.serv-cont2 dt {
  font-size:22px;
  color: var(--color-wisevill);
}

.serv-cont2 dd {
  font-size:16px;
}

.serv-cont2 dd::before {
content: "˚ ";
}


@media screen and (max-width: 736px) {
  .serv-cont2 {width:90%; margin-bottom:40px;}
  .serv-cont2 dd {font-size:14px;}

}


/*--- Steps ---------*/
.steps .row {
  overflow: hidden;
}

.steps .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-wisevill);
}

.steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.steps .content-item p {
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 736px) {

  section {margin:0; padding:0;}

  .sub-service-title  {width:100%; margin-top:20px; padding:25px;}
  .sub-service-tit01 {font-size: 6vw;}
  .sub-service-tit02 {margin-top:0px; font-size: 15px; letter-spacing: -1px;}
  .sub-service-tit02 br {display:block !important;}

  .steps .content-item {
    padding: 40px 0;
  }
}


/*------------- 포트폴리오 게시판 */
.wr_view_area {
  width:100%;
  max-width: 1400px;
  font-size:15px;
  color:#555;
  background-color: #f7f7f7;
  padding:30px 50px 30px;
  margin:0 auto;
}

.wr_view_area span {border:1px solid;}


.wr_view_area_title {
  font-size: 26px;
  color:#111;
  margin-bottom:10px;
}

@media screen and (max-width: 736px) {

  .wr_view_area {
    padding:25px;
  }

  .wr_view_area_title {
    font-size: 22px;
  }

  .p_margin {margin-bottom:20px;}

}