/* 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+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset CSS */
* {
  box-sizing: border-box;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
}

/* Default CSS */
body {
  font-family: "Montserrat", sans-serif;
  color: #222;
  font-size: 15px;
  margin: 0;
  height: 100vh;
  background-color: #fff;
}

/* Entire Layout */
.cd-section {
  height: 100vh;
}
.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;
}
/* 이미지를 콘텐츠크기에 맞게 수정 */
.content img {
  width: 100%;
  height: 100%;
}
/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.gnb-inner {
  /* border: 1px solid #000; */
  width: calc(100% - 40px);
  margin: auto;
  height: 60px;
  line-height: 60px;
}
.logo {
  float: left;
}
.logo img {
  padding-top: 17px;
}
.gnb {
  float: right;
}
.menu {
  display: none;
}
.slogan {
  font-size: 18px;
  font-style: italic;
}
.trigger {
  display: none;
}

/* Hiring Button */
.btn-hiring {
  position: fixed;
  right: 50px;
  bottom: 50px;
  color: #fff;
  background-color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 5px 5px 20px #00000045;
  transition: 0.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: overlay 1s 2s ease-in-out both;
  /* display: none; */
}
.welcome-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 50px;
  text-align: center;
  line-height: 1.2em;
  margin: 0;
  /* display: none; */
  font-family: "Source Sans 3", sans-serif;
  animation: slideup 2s linear;
  animation-fill-mode: both;
}
.welcome-text span {
  display: block;
  font-size: 26px;
}
.welcome-text span .fa {
  color: crimson;
}
.opacity-image {
  background: url(images/section-bg-01.jpg) no-repeat center center;
  height: 100%;
  background-size: cover;
  /* display: none; */
  opacity: 0;
  animation: opacity-image 1s 2.5s ease-in-out both;
}
.home-heading {
  /* display: none; */
  /* border: 1px solid red; */
  position: absolute;
  top: 50%;
  left: 250px;
  transform: translateY(-50%);
}
.home-heading span {
  display: block;
  font-size: 115px;
  color: #fff;
  /* font-weight는 단위가 따로 없음*/
  font-weight: 600;
  /* border: 1px solid #000; */
  width: 0;
  overflow: hidden;
  animation: reveal 1s 3s ease-in-out both;
}
.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 overlay {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes opacity-image {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes reveal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ################### Section : about ###################*/
.about-inner {
  background: url(images/line-drawing.png) no-repeat right bottom;
  height: 100%;
  /* 원본의 50% 크기로 축소 */
  background-size: 60%;
  background-color: #0dace3;
}
.about-items {
  width: 60%;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 100px;
}
.item {
  overflow: hidden;
  margin-bottom: 20px;
}
.item:hover h3 {
  color: #000;
}
.item:hover img {
  filter: invert(0);
}
.item img {
  height: 120px;
  /* width도 제한 */
  width: 120px;
  /* 비율 유지하며 크기 맞춤 */
  object-fit: contain;
  float: left;
  margin-right: 20px;
  filter: invert(1);
  transition: 0.5s;
}
.item h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  transition: 0.5s;
  letter-spacing: -1px;
}
.item span {
}
.item p {
  overflow: hidden;
  font-size: 17px;
}
/* ############## Section : project  ##############*/
.project-inner {
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #ddd;
}
.tabs {
  /* border: 5px solid red; */
  height: 100%;
  width: 300%;
  transition: 0.5s;
}
.tab {
  height: 100%;
  /* border: 5px solid yellow; */
  float: left;
  width: 33.333333%;
}
.tab > div {
  /* border: 5px solid blue; */
  height: 100%;
  float: left;
}
.project-info {
  width: 25%;
}
.project-photo {
  width: 75%;
  overflow: hidden;
}
input[name="tabmenu"] {
  display: none;
}
.btn {
  /* border: 2px solid #000; */
  position: absolute;
  left: 0px;
  bottom: 30px;
  /* border: 1px solid #000; */
  width: 25%;
  text-align: center;
}
.btn label {
  cursor: pointer;
  width: 5px;
  height: 5px;
  background-color: #000;
  display: inline-block;
  border-radius: 50%;
  margin: 10px;
  position: relative;
}
.btn label::before {
  content: "";
  display: inline-block;
  /* background-color: #000; */
  border: 1px solid transparent;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: -5px;
  transition: 0.3s;
}
.btn label:hover:before {
  border: 1px solid #bbb;
}
input[id="tab1"]:checked ~ .btn label[for="tab1"]:before,
input[id="tab2"]:checked ~ .btn label[for="tab2"]::before,
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%;
}
/* ################# Section : Project info  ##################*/
.project-info {
  padding: 30px;
  position: relative;
}
.project-info h3 {
  font-size: 20px;
  position: relative;
}
.project-info p {
  font-size: 16px;
  line-height: 1.4em;
}
.project-info ul {
  line-height: 2em;
  margin: 3px 0;
}
.project-info ul li:before {
  font-family: fontawesome;
  content: "\f105";
  margin-right: 5px;
}
.detail {
  /* border: 1px solid #000; */
  margin-bottom: 20px;
}
.detail div {
  /* border: 1px solid #000; */
  text-align: center;
  display: inline-block;
  font-size: 12px;
  padding: 7px;
  /* width: 30%; */
}
.detail div span {
  font-size: 30px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.view-project {
  background-color: #3f3f3f;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  width: 220px;
  padding: 10px;
  text-align: center;
  /* 새로고침 했을때 생성되는시간 */
  transition: 0.5s;
}
.view-project:hover {
  background-color: #000;
  /* 마우스를 갖다 됬을때 검은색으로 변하는시간 */
  transition: 0.5s;
}

.view-project .fa {
  margin-left: 10px;
  /* 오른쪽 화살표가 해당값까지 이동하는 시간 */
  transition: 0.5s;
}
.view-project:hover .fa {
  margin-left: 30px;
}
.project-info::before {
  content: attr(data-text);
  color: #d4d4d459;
  font-size: 130px;
  position: absolute;
  top: -10px;
  left: 10px;
}

/* ################# Section : plan  ##################*/
.plan-inner {
  background-color: #1d1b24;
  height: 100%;
}
.plan-feature {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.plan-feature > div {
  /* border: 1px solid #ff0000; */
  height: 300px;
  color: #bbb;
}
.plan-info {
}
.plan-info > div {
  float: left;
}
.plan-heading {
  width: 70%;
  padding-right: 50px;
}
.plan-heading h2,
.history-info h2 {
  color: #fff;
  margin: 0;
}
.plan-heading p {
  font-size: 14px;
  line-height: 1.6em;
}
.plan-photo {
  width: 30%;
}
.plan-photo img {
  height: 265px;
}
.plan-heading hr.bar,
.history-info hr.bar {
  background-color: dodgerblue;
  display: inline-block;
}
.history-slider {
  /* border: 1px solid red; */
}
.history-slider div {
}
.history-slider div h4 {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}
.history-slider div h4 span {
  color: dodgerblue;
}
.history-slider div p {
  font-size: 16px;
  line-height: 1.2em;
}
/* Slick.js Custom CSS */
.history-slider .slick-arrow {
  /* 화살표 표시제거 */
  display: none !important;
}
.history-slider .slick-dots li button:before {
  color: #fff;
  font-size: 10px;
}
.history-slider .slick-dots li {
  margin: 0;
}

/* ################### Section : awards  ###################*/
.awards-inner {
  height: 100%;
  border: 1px solid #000;
}
.awards-inner > div {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}
.about-awards {
  background-color: #000;
  color: #fff;
}
.about-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
.victory-jump {
  background-color: #fff;
}
.victory-jump img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 30px;
}
hr.bar {
  width: 50px;
  height: 4px;
  border: none;
  background-color: crimson;
  /* 위아래 30px 좌우는 auto로 설정 */
  margin: 30px auto;
}
.about-heading p {
  color: #999;
  font-size: 167x;
  /* 16px * 1.5em */
  line-height: 1.5em;
}
.about-heading a {
}
.view-awards {
  color: #bbb;
  border: 1px solid #bbb;
  padding: 5px 15px;
  border-radius: 20px;
  transition: 0.5;
  display: inline-block;
  margin: 20px;
}
.view-awards:hover {
  background-color: #00fbffc9;
  color: #fff;
  border-color: transparent;
}

/* ################### Section : location  ###################*/
.location-inner {
  background: url(images/background-location.jpg) no-repeat center;
  height: 100%;
}
/* 중요한 부분 before, after는 인라인요소에서 크기값을 가질수 없기때문에 postion:absolute를 준다*/
.location-inner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
}
.feature {
  /* border: 1px solid red; */
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #bbb;
}
.feature > div {
  /* border: 1px solid #000; */
  float: left;
}
.office {
  width: 60%;
  padding-right: 50px;
}
.servie {
  /* border: 1px solid #ffffff; */
  width: 40%;
}
.office b {
  font-weight: normal;
}
.office h2 {
  color: #0dace3;
  font-weight: bold;
  margin: 0;
  margin-top: 5px;
}
.office p {
  font-size: 16px;
  line-height: 1.5em;
}
.office span {
  color: #fff;
}

.customer {
  margin-top: 40px;
}

/* service 전체박스 밑으로 내리기 */
/* .servie{
 margin-top: 20px;
} */

/* 요소들간에 마진을 줘서 feature테두리에 맞추기 */
.service-item {
  margin-top: 30px;
}
.service-item .fa {
  color: #0dace3;
  font-size: 40px;
}
.service-item h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

/* ################### Section : Contact  ###################*/
.contact-inner {
  background-color: #fff;
  height: 100%;
  border: 1px solid #00000034;
}
.contact-feature {
  /* border: 1px solid red; */
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-feature > div {
  /* border: 1px solid #000; */
  /* height: 400px; */
  float: left;
  width: 50%;
  padding: 20px;
}
.contact-form {
}
.contact-form h3 {
  font-size: 30px;
  font-weight: normal;
  margin: 0px;
}
.contact-form h3 b {
}
.send-box {
}
.send-box label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0;
  margin-top: 23.5px;
}
.send-box label span {
  color: crimson;
}
.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: 0.5s;
}
.send-box input[type="email"]:hover,
.send-box input[type="text"]:hover,
.send-box textarea:hover {
  border: 1px solid #08c;
  box-shadow: 0 0 5px #0088cc;
}
.send-box input[type="email"]:focus,
.send-box input[type="text"]:focus,
.send-box textarea:focus {
  /* 클릭했을때 칸 배경색 변경 */
  /* background-color: #f1f1f1; */
}
/* input 요소들은 inline-block이기때문에 크기 설정가능하다 */
/* html5부터 button태그가 만들어졌다. */
.send-box button {
  background-color: #08c;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 10px;
}
.send-box button:hover {
  background-color: #000;
}
.contact-info {
}

.contact-info h4 {
  font-weight: normal;
  font-size: 20px;
  margin: 0;
}

.contact-info h4 b {
}
.contact-info ul {
}
.contact-info ul li {
  line-height: 2em;
}

/* ul에서 li선택할때 클래스이름으로 선택하는 대신 last-child로 선택해서 간략화 */
.contact-info ul li:last-child {
  color: #08c;
}

.contact-info p {
  line-height: 1.5em;
}

/* ####################### SubPage : Hiring ####################  */
.modal {
  font-family: "Source Sans 3", sans-serif;
}
.header {
  position: fixed;
  width: 100%;
  /* border: 1px solid #000; */
  background-color: #fff;
  z-index: 100;
}
.header-inner {
  /* border: 1px solid #000; */
  width: 95%;
  margin: auto;
  height: 90px;
  line-height: 90px;
  border-bottom: 1px solid #ddd;
}
.modal-display {
  font-size: 18px;
}

.hiring-main {
  height: 600px;
  /* border: 1px solid #000; */
  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;
  /* border: 1px solid #000; */
  position: relative;
}
.hiring-heading span::before,
.hiring-heading span::after {
  content: "";
  height: 2px;
  background-color: #000;
  position: absolute;
  width: 50px;
  top: 50%;
}
.hiring-heading span::before {
  right: 120%;
}
.hiring-heading span::after {
  left: 120%;
}
.hiring-heading h1 {
  font-size: 70px;
  font-weight: 200;
  margin: 0;
  margin-top: 30px;
}
.hiring-info {
  overflow: hidden;
  margin-bottom: 30px;
}
.hiring-info > div {
  /* border: 1px solid #ff0000; */
  float: left;
  width: 50%;
  height: 600px;
}
.center-parent {
  /* border: 1px solid #000; */
  position: relative;
}
.center-child {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 콤마 주의 */
  transform: translate(-50%, -50%);
  width: 80%;
  /* border: 1px solid #000; */
}
.center-child h2 {
  /* border: 1px solid #000; */

  font-size: 46px;
  font-weight: normal;
}
.center-child p {
  font-size: 20px;
  font-weight: 300;
}

/* .photo1 {
  background: url(images/hiring-main-01-01.jpg) no-repeat center center;
  background-size: cover;
}

.photo2 {
  background: url(images/hiring-main-01-02.jpg) no-repeat center center;
  background-size: cover;
} */

.photo img {
  width: 100%;
}
.hiring-slogan {
  padding: 100px 0;
}
.hiring-slogan p {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  width: 70%;
  margin: auto;
  position: relative;
}
.hiring-slogan p::before {
  /* border: 1px solid #000; */
  font-family: "Overpass", sans-serif;
  content: ",,";
  font-size: 200px;
  position: absolute;
  color: #ddd;
  transform: rotate(180deg);
  /* 개발자 도구를 이용해서 해당위치 찾아면 쉬움 */
  top: -82px;
  left: -29px;
}

.hiring-contact ul {
  display: inline-block;
  /* border: 1px solid #000; */
  width: 49%;
  font-size: 20px;
  font-weight: 300;
}
.hiring-contact ul li {
  line-height: 2em;
}
.hiring-contact ul li:first-child {
  font-weight: 400;
}
.hiring-contact ul li:last-child {
  color: dodgerblue;
}
.sns {
}
.sns a {
  color: #000;
  width: 30px;
  height: 30px;
  display: inline-block;
  /* border: 1px solid #000; */
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  margin: 2px;
  position: relative;
  transition: 0.3s;
}
.sns a::before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  /* 속성을 따로 쓰면 위치가 밀려나가기 때문에 한줄작성해야한다 */
  transform: translate(-50%) scale(0);
  transition: 0.3s;
}
.sns a:hover {
  color: #fff;
}

.sns a:hover::before {
  transform: translate(-50%) scale(1);
}

.sns a:nth-child(1)::before {
  background-color: #1877f2;
}

.sns a:nth-child(2)::before {
  background-color: #1da1f2;
}

.sns a:nth-child(3)::before {
  background-color: #0a66c2;
}

.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: #0099ff;
}
/* ####################### SubPage : Project ####################  */
.hiring-main.project-main1 {
  background: url(images/project-main-01-01.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
}
.hiring-main.project-main2 {
  background: url(images/project-main-02-01.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
}

.hiring-main.project-main3 {
  background: url(images/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%;
  /* border: 1px solid red; */
  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;
}

.hiring-info img{
  margin-top: 60px;
  /* border: 2px solid #000; */
}

.project-detail .hiring-slogan p::before {
  left: -50px;
}
.photo.project-info {
  /* border: 1px solid #000; */
  /* margin-top: 30px; */
  font-size: 25px;
  font-weight: 300;
  padding-top: 80px;
}
.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 Custom CSS */
.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;
}



