@charset "utf-8";

/* Google Web Font : Montserrat */
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
/* FontAwesome CDN 4.7 */
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


/* reset css */
* {box-sizing: border-box;}
ul {list-style: none; padding: 0;}
a {text-decoration: none; color: #333;}

/* default css */
body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-size: 15px;
  margin: 0;
  height: 100vh;
  background-color: #ffffff;
}

/* entire layout */
.cd-section{
  height: 100vh;
  text-align: center;
}
.cd-section p {
  line-height: 1.8em;
}
.cd-section > div {
  height: 100%;
  position: relative;
}
.content {
/* background-color: #ddd; */
position: absolute;
width: calc(100% - 40px);
height: calc(100% - 80px);
left: 20px;
bottom: 20px;
overflow: hidden;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.gnb-inner {
  width: calc(100% - 40px);
  margin: auto;
}
.logo {
  float: left;
}
.logo img {
  padding-top: 17px;
}
.gnb {
  float: right;
}
.menu {
  display: none;
}
.menu a {}
.gnb a {}
.slogan {
  font-size: 16px;
  font-style: italic;
  margin: 22px 0;
}
.trigger {
  display: none;
}

/* hiring */
.btn-hiring {
  position: fixed;
  right: 50px;
  bottom: 50px;
  color: #fff;
  padding: 10px 20px;
  background-color: #000;
  border-radius: 20px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, .38);
  transition: .5s;
}
.btn-hiring .fa {
  transform: rotateY(180deg);  
  margin-right: 5px;
}
.btn-hiring:active {
  transform: scale(0);
}
/* ################# section : home  #################*/
.home-inner {
  background-color: #fff;
  height: 100%; 
}
.home-inner::before {
  content: '';
  background-color: #000;
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  animation: black 1s 2s ease-in-out both;
}
.welcome-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  line-height: 1.2em;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  animation: slideup 2s 0s linear;
  animation-fill-mode: both;
  /* 키프레임 이름, 지속 시간, 지연시간(0이 기본값) */
}
.welcome-text span {
  display: block;
  font-size: 26px;
}
.welcome-text span .fa {
  color: crimson; 
}
.opacity-img {
  background: url(../img/main01.png) no-repeat center center;
  height: 100%;
  background-size: cover;
  opacity: 0;
  animation: opacity 1s 2.5s ease-in both;
}

.home-heading {
  position: absolute;
  top: 85%;
  left: 38px;
  /* transform: translateY(-50%); */
  text-align: left;
  font-family: 'Source Sans Pro', sans-serif;

}
/* .home-heading {
  position: absolute;
  top: 50%;
  left: 250px;
  transform: translateY(-50%);
  l50%을 안 하는 이유: 유동적으로 따라 움직이기 때문에 px로 고정해 줘야 덜컹거리는 현상이 사라짐!
} */
.home-heading span {
  display: block;
  font-size: 23px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3em;
  width: 0;
  overflow: hidden;
  animation: reveal 1s 3s ease-in-out both;
}
.home-heading p a {
  color: #fff;
  font-size: 15px;
  line-height: 1.4em;
  margin-top: 0px;
}

.home-heading span:nth-child(1) {
  animation-delay: 3s;
}
.home-heading span:nth-child(2) {
  animation-delay: 3.2s;
}
.home-heading span:nth-child(3) {
  animation-delay: 3.4s;

}
@keyframes slideup {
  0% {
    opacity: 0;
    margin-top: 50px;
  }
  20% {
    opacity: 1;
    margin-top: 0;
  }
  80% {
    opacity: 1;
    margin-top: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes black {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes reveal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* ################# section : about  #################*/
.about-inner {
  background: url(../img/line-drawing.png) no-repeat right bottom;
  height: 100%;
  /* 백그라운드 깔려면 꼭 height가 있어야 함 */
  background-color: #0dace3;
}
.about-item {
  width: 60%;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 100px;
  margin-left: 100px;
}
.item {
  overflow: hidden;
}
.item:hover img {
filter: invert(0);
}
.item:hover h3 {
  color: #000;
  letter-spacing: -1px;  
}
.item img {
  height: 100px;
  float: left;
  margin-right: 20px;
  filter: invert(1);
  transition: .5s;
}
.item h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  transition: .5s;
}
.item span {}
.item p {
  overflow: hidden;
  font-size: 18px;
}

/* ################# section : project #################*/

.project-inner {
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #ddd;
}
.tabs {
  height: 100%;
  width: 300%;
  transition: .5s;
}
.tab {
  height: 100%;
  float: left;
  width: 33.3333%;
}
.tab > div {
  height: 100%;
  float: left;
}
.project-info {
  width: 25%;
}
.project-photo {
  width: 75%;
  overflow: hidden;
}
input[name="tabmenu"] {
  display: none;
}
.btn {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 25%;
  text-align: center;
}
.btn label {
  cursor: pointer;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 10px;
  background-color: #000;
  display: inline-block;
  position: relative;
}       /* label은 인라인 요소 */
.btn label::before {
  position: absolute;
  content: '';
  display: inline-block;
  border: 1px solid transparent;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  transition: .3s;
}
.btn label:hover::before {
  border: 1px solid #aaa;
}
input[id="tab1"]:checked ~ .btn label[for="tab1"]::before {
  border: 1px solid #aaa;
}
input[id="tab2"]:checked ~ .btn label[for="tab2"]::before {
  border: 1px solid #aaa;
}
input[id="tab3"]:checked ~ .btn label[for="tab3"]::before {
  border: 1px solid #aaa;
}
input[id="tab1"]:checked ~ .tabs {
  margin-left: 0;
}
input[id="tab2"]:checked ~ .tabs {
  margin-left: -100%;
}
input[id="tab3"]:checked ~ .tabs {
  margin-left: -200%;
}
.tab .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
/* ################# section : project info #################*/
.project-info .slick-dotted.slick-slider {margin-bottom: 0;}
.project-info {
  padding: 50px;
  position: relative;
}
.project-info h3 {
  font-size: 20px;
  position: relative;
}
.project-info p {
  font-size: 16px;
  line-height: 1.6em;
}
.project-info ul {
  line-height: 2em;
  margin: 50px 0;
}
.project-info ul li::before {
  content:'\f105';
  font-family: fontawesome;
  margin-right: 10px;
}
.detail {
  margin-bottom: 50px;
}
.detail > div {
  display: inline-block;
  text-align: center;
  color: #999;
  /* width: 32.5%;  */
  width: 118px;
  margin-bottom: 20px;
}
.detail div span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #000;
}
.view-project {
  background-color: #EBB163b6;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  font-weight: 500;
  width: 200px;
  padding: 10px;
  text-align: center;
  transition: .5s;
}
.view-project:hover {
  background-color: #EBB163;
}
.view-project .fas {
  transition: .5s;
}
.view-project:hover .fas {
  margin-left: 30px;
}
.project-info::before {
  content: attr(data-text);
  font-size: 130px;
  color: #eee;
  position: absolute;
  top: -10px;
  left: 10px;
}

/* ################# section : plan #################*/
.plan-inner {
  background-color: #fff;
  height: 100%;
  border: 1px solid #ddd;
}
.plan-feature {
  width: 80%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.plan-feature > div {
  height: 100px;
  color: #bbb;
}
.plan-info {}
.plan-info > div {
  margin: 0 auto;
}
.plan-heading {
  width: 100%;
}
.plan-heading h2, .history-info h2 {
  color: #333;
  margin: 0;
}
.history-info h2 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.plan-heading p {
  font-size: 16px;
  line-height: 1.5em;
}
.plan-photo {
  width: 30%;
}
.plan-photo img {
  height: 265px;
  display: none;
}
.plan-heading hr.bar, .history-info hr.bar {
  background-color: dodgerblue;
  display: inline-block;
}
.history-info {}
.history-slider {}
.history-slider div h4 {
  color: #333;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  line-height: 1.5em;
}
.history-slider div h4 span {
  color: dodgerblue;
}
.history-slider div p {
  font-size: 16px;
  line-height: 1.5em;
}

/* slick js custom css */
/* slick js custom css */
/* slick js custom css */

.history-slider .slick-arrow {
  display: none !important;
}
.history-slider .slick-dots li button:before {
  color: transparent;
  font-size: 19px;
}
.history-slider .slick-dots li {
  margin: 5px;
}
.history-slider .slick-slide img {
  width: 100%;
  height: 400px;
}
.history-slider .slick-slide {
  margin: 10px;
}
.slick-dots li {
  width: 13px;
  height: 13px;
  background: transparent;
  box-shadow: inset 0 0 0 .5px #aaa;
  border-radius: 10px;
  cursor: pointer;
  transition: all .5s;
}
.slick-dots li button {opacity: 0;}
.slick-dots li.slick-active {background: #555;}
.slider_wrap {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.slick-slide {
  height: auto;
  width: 100%;
}
.slick-dots li button {
  width: 15px;
  height: 15px;  
}
/* ################# section : awards winndt #################*/
.awards-inner {
  height: 100%;
  border: 1px solid #ddd;
}
.awards-inner > div {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;;
}
.about-awards {
  background-color: #1a1f24;
  color: #fff;
}
.about_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
}
.victory-jump {
  background-color: #fff;
}
.victory-jump img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.about_wrap h2 {
  margin: 0;
}
hr.bar {
  width: 50px;
  height: 4px;
  border: none;
  background-color: crimson;
  margin: 30px auto;
}
.about_wrap p {
  font-size: 16px;
  color: #999;
  line-height: 1.5em; /* 16px x 1.5 */
}
.view-awards {
  color: #bbb;
  border: 1px solid #bbb;
  padding: 5px 15px;
  border-radius: 20px;
  transition: .5s;
  display: inline-block;
  /* a태그는 인라인요소라 마진탑바텀이 안 먹힘 그래서 인라인블럭 */
  margin-top: 20px;
}
.view-awards:hover {
  background-color: #31c0ce;
  color: #fff;
  border-color: transparent;
}

/* ################# section : lacation #################*/
.location-inner {
  background: url(../img/background-location.jpg) no-repeat center center;
  height: 100%;
}
.location-inner::before {
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, .8);
  width: 100%;
  height: 100%;
}
.feature {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #bbb;
}
.feature > div {
  float: left;
}
.office {
  width: 60%;
  padding-right: 100px;
}
.service {
  width: 40%;
}
.office b {
  font-weight: normal;
}
.office h2 {
  color: #1db1f0;
  font-weight: 500;
  margin: 0;
  margin-top: 5px;
}
.office p {
  font-size: 13px;
  line-height: 1.5em;
}
.office span {
  color: #fff;
}
.customer {
  margin-top: 40px;
}
.service-item {
  margin-bottom: 20px;
}
.service-item .fa {
  color: #1db1f0;
  font-size: 40px;
}
.service-item h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
/* ################# section : contact #################*/
.contact-inner {
  background-color: #fff;
  height: 100%;
  border: 1px solid #ddd;
}
.contact-feature {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-feature > div {
  float: left;
  width: 50%;
  padding: 20px;
}
.contact-form {}
.contact-form h3 {
  font-size: 30px;
  font-weight: normal;
  margin: 0;
}
.send-box {}
.send-box label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0;
  margin-top: 20px;
  text-align: left;
}
.send-box label span {
  color: crimson;
  font-weight: normal;
}
.send-box input[type=email], .send-box input[type=text],
.send-box textarea {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 3px;
  outline: none;
  width: 100%;
  transition: .5s;
}
.send-box input[type=email]:hover,
.send-box input[type=text]:hover,
.send-box textarea:hover {
  border: 1px solid #0088cc;
  box-shadow: 0 0 5px #0088cc;
}
.send-box input[type=email]:focus,
.send-box input[type=text]:focus,
.send-box textarea:focus {
  background-color: #eee;
}
.send-box button {
  background-color: #0088cc;
  text-transform: uppercase;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  transition: .5s;
  margin-top: 10px;
}
.send-box button:hover {
  background-color: #000;
}
.contact-info {}
.contact-info h4 {
  font-weight: normal;
  font-size: 20px;
  margin: 0;
  margin-top: 20px;
}
.contact-info ul li {
line-height: 2em;
}
.contact-info ul li:last-child {
  color: #0088cc;
}
.contact-info {
  line-height: 1.5em;
}

/* #################### sub page #################### */
.modal {
  font-family: 'Source Sans Pro', sans-serif;

}
.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
}
.header-inner {
  margin: 0 auto;
  width: 95%;
  height: 90px;
  line-height: 90px;
  border-bottom: 1px solid #ddd;
}
.modal-display {
  font-size: 16px;
}
.hiring-main {
  height: 600px;
  position: relative;
}
.hiring-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hiring-heading span {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}
.hiring-heading span::before, 
.hiring-heading span::after {
  content:'';
  height: 2px;
  background-color: #000;
  width: 50px;
  position: absolute;
  top: 50%;
}
.hiring-heading span::before {
  right: 120%;
}
.hiring-heading span::after {
  left: 120%;
}
.hiring-heading h1 {
  font-size: 100px;
  font-weight: 200;
  margin: 0;
  margin-top: 40px;
}
.hiring-info {
  overflow: hidden;
  word-break: keep-all;
}
.hiring-info:last-of-type {
  padding-bottom: 100px;
  box-sizing: border-box;
}
.hiring-info > div {
  float: left;
  width: 50%;
  height: 600px;
}
.center-parent {
  position: relative;
}
.center-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.center-child h2 {
  font-size: 36px;
  font-weight: normal;
}
.center-child p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6em;
}
.photo img {
  width: 100%;
}
.hiring-slogan {
  padding: 100px 0;
}
.hiring-slogan p {
  font-size: 32px;
  font-weight: 300;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.hiring-slogan p::before {
  font-family: 'Overpass', sans-serif;
  content: ',,';
  position: absolute;
  color: #ddd;
  font-size: 200px;
  transform: rotate(180deg);
  top: -82px;
  left: -35px;
}
.hiring-contact ul {
  display: inline-block;
  width: 49%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}
.hiring-contact ul li:first-child {
  font-weight: 400;
}
.hiring-contact ul li:last-child {
  color: royalblue;
}
.sns a {
  font-size: 15px;
  color: #000;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin: 2px;
  position: relative;
  transition: .3s;
}
.sns a::before {
  content:'';
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: .3s;
}
.sns a:hover {
  color: #fff;
}
.sns a:hover::before {
  transform: translateX(-50%) scale(1);
}
.sns a:nth-child(1)::before {
  background-color: #3b5999;
}
.sns a:nth-child(2)::before {
  background-color: #55acee;
}
.sns a:nth-child(3)::before {
  background-color: #0077B5;
}
.sns a:nth-child(4)::before {
  background-color: #e4405f;
}
.sns a:nth-child(5)::before {
  background-color: #cd201f;
}
.sns a:nth-child(6)::before {
  background-color: #3aaf85;
}

/* #################### sub page #################### */

.hiring-main.project-main1 {
background: url(../img/03-one.jpg) no-repeat center center;
background-size: cover;
height: 100vh;
}
.hiring-main.project-main2 {
background: url(../img/project-main-02-01.jpg) no-repeat center center;
background-size: cover;
height: 100vh;
}
.hiring-main.project-main3 {
background: url(../img/project-main-03-01.jpg) no-repeat center center;
background-size: cover;
height: 100vh;
}
.hiring-main.project-main1 .hiring-heading,
.hiring-main.project-main2 .hiring-heading,
.hiring-main.project-main3 .hiring-heading {
  color: #fff;
  width: 100%;
  animation: slidedown 1s linear both;
}
.hiring-main.project-main1 .hiring-heading h1,
.hiring-main.project-main2 .hiring-heading h1,
.hiring-main.project-main3 .hiring-heading h1 {
  font-size: 70px;
}
/* .project-detail .hiring-info {
  margin-bottom: 0;
} */
.project-detail .hiring-slogan p::before {
  left: -100px;
}
.photo.project-info {
  font-size: 20px;
  font-weight: 300;
  padding-top: 120px;
}
.project-detail .hiring-heading span::before, 
.project-detail .hiring-heading span::after {
  background-color: #fff;
}
@keyframes slidedown {
  0% {
    opacity: 0;
    margin-top: -50px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 0;
  border-bottom: 25px solid transparent;
  margin-left: 0;
  margin-right: 0;
  max-height: 100%;
  background: #fff;
  cursor: auto;
  white-space: normal;
  WIDTH: 100%;
  HEIGHT: 100%;
}
.featherlight iframe {
  border: none;
  width: 100%;
  height: 100%;
}
.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 30px;
  right: 70px;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0;
  font-size: 40px;
  outline: none;
}