/* 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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass&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;}

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

}

/* Entire Layout */
.cd-section {
    height: 100%;
}
.cd-section > div {
    height: 100%;
    position: relative;
}
.content {
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
    left: 20px;
    bottom: 20px;
    overflow: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}
.gnb-inner {
    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;
}
.menu a {

}
.slogan {
    font-size: 16px;
    font-style: italic;
}
.trigger {
    display: none;
}

/* Hiring Button */
.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,0.38);
    transition: 0.5s;
}
.btn-hiring .fa-solid {
    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 1.5s ease-in-out both;

}
.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0;
    font-size: 33px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-align: center;
    line-height: 1.1em;
    animation: slideup 1.5s linear both;
}
.welcome-text span {
    display: block;
    font-size: 18px;
}
.welcome-text .fa-solid {
    color: crimson;
}
.opacity-image {
    background: url(images/section-bg-01.jpg) no-repeat center center /cover;
    height: 100%;
    opacity: 0;
    animation: opacity-image 1s 1.8s ease-in both;

}
.home-heading {
    position: absolute;
    top: 50%;
    left: 200px;
    transform: translateY(-50%);
}
.home-heading span {
    display: block;
    font-size: 100px;
    color: #fff;
    font-weight: 600;
    width: 0;
    overflow: hidden;
    animation: reveal 0.7s 2.3s ease-in-out both;
}
.home-heading span:nth-child(1) {
    animation-delay: 2.3s;
}
.home-heading span:nth-child(2) {
    animation-delay: 2.4s;
}
.home-heading span:nth-child(3) {
    animation-delay: 2.5s;
}

@keyframes slideup {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    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: #0dace3 url(images/line-drawing.png)no-repeat right bottom;
    height: 100%;
    background-size: 800px;
}
.about-items {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    margin-left: 100px;
    color: #fff;

}
.item {
    overflow: hidden;
    margin-bottom: 30px;
}

/* +위아래 마진 여백 맞추기위해 마지막 요소 margin bottom 0 */
.item:last-child {
    margin-bottom: 0;
}
.item:last-child p {
    margin-bottom: 0;
}
/* +위아래 마진 여백 맞추기위해 마지막 요소 margin bottom 0 */

.item:hover h3{
    color: #000;
}
.item:hover img {
    filter: invert(0);
}
.item h3 {
    font-size: 27px;
    font-weight: 500;
    margin: 0;
    transition: 0.5s;
    letter-spacing: -1px;
}
.item img {
    height: 120px;
    float: left;
    margin-right: 20px;
    filter: invert(1);
    transition: 0.5s;
}
.item span {}
.item p {
    overflow: hidden;
    font-size: 18px;
}

/* ------------------------------- Section project------------------------------ */
.project-inner {
    height: 100%;
    overflow: hidden;
}
.tabs {
    height: 100%;
    width: 300%;
    transition: 0.5s;
}
.tab {
    height: 100%;
    float:  left;
    width: 33.333333%;
    border: 1px solid #ddd;
}
.tab > div {
    height: 100%;
    float: left;
}

.project-photo {
    width: 70%;
    overflow: hidden;
}
input[name=tabmenu] {
    display: none;
}
.btn {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 30%;
    text-align: center;
}
.btn label {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 10px;
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
}
.btn label:before {
    content: '';
    position: absolute;
    display: inline-block;
    top: -5px;
    left: -5px;
    width: 15px;
    height: 15px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: 0.3s;
}
.btn label:hover:before {
    border: 1px solid #aaa;
}
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 ~ .btn label[for=tab1] {
    color: red;
}
input[id=tab2]:checked ~ .btn label[for=tab2] {
    color: red;
}
input[id=tab3]:checked ~ .btn label[for=tab3] {
    color: red;
}
input[id=tab1]:checked ~ .tabs {
    margin-left: 0;
}
input[id=tab2]:checked ~ .tabs {
    margin-left: -100%;
}
input[id=tab3]:checked ~ .tabs {
    margin-left: -200%;
}

/* Project info */
.project-info {
    position: relative;
    padding: 50px;
    width: 30%;
    
}
.project-info h3 {
    font-size: 20px;
    line-height: 1.6em;
    position: relative;
}
.project-info p {
    font-size: 14px;
    line-height: 1.5em;
}
.project-info ul {
    line-height: 1.5em;
    margin: 10px 0;
}
.project-info ul li:before {
    content: "\f105";
    font-family: fontawesome;
    margin-right: 10px;
}

.detail div {
    display: inline-block;
    width: 32%;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}
.detail div span {
    display: block;
    font-size: 35px;
    font-weight: bold;
    color: #999;
}
.view-project {
    display: inline-block;
    width: 200px;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    background-color: #3f3f3f;
    text-align: center;
    transition: 0.5s;
}
.view-project:hover {
    background: #000;
}
.view-project .fa {
    transition: 0.3s;
  
}
.view-project:hover .fa {
   margin-left: 10px;
}
.project-info:before {
    content: attr(data-text);
    position: absolute;
    top: -10px;
    left: 20px;
    color: #eee;
    font-size: 130px;
    font-weight: bold;
    
}
/* ------------------------------- Section plan ------------------------------ */

.plan-inner {
    background-color: #1d1b24;
    height: 100%;

}
.plan-feature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
}
.plan-feature > div {
    /* height: 300px; */
    color: #bbb;
}
.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: 16px;
    line-height: 1.6em;
}

.plan-photo {
    width: 30%;
}
.plan-photo img {
    height: 280px;
    width: 100%; /* +height만 크기 지정해주면 width가 와이어프레임을 벗어나서 width를 100%로 조정 */
}
.plan-heading .bar,
.history-info hr.bar {
    display: inline-block;
    /* hr 태그는 블록요소이기 때문에 margin:auto를 주어서 중앙에 보낼 수 있는데, 이번 경우는 중앙이 아니라 왼쪽에 정렬을 하려고 하는 것이기 때문에 hr.bar를 display:inline-block 바꿔주었습니다 */
    background-color: dodgerblue;
}
.history-info {

}
.history-slider {
}
.history-slider div h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5em;

}
.history-slider div h4 span {
    color: dodgerblue;

}
.history-slider div h4 p {
    font-size: 16px;
    line-height: 1.5em;
}

/* Slick.js Custom CSS */
.history-slider  .slick-arrow {
    display: none !important;
}
.history-slider .slick-dots li button::before {
    color: #fff;
    font-size: 40px;
}
.history-slider .slick-dots li {
    margin: 0;
}

/* ------------------------------- Section awards ------------------------------ */

.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%;
    width: 70%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.victory-jump {
    background-color: #fff;
}
.victory-jump img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);

}
.about-heading h2{
    margin: 0;
}
hr.bar {
    width: 50px;
    height: 4px;
    border: none;
    background-color: crimson;
    margin: 30px auto;
}
.about-heading p {
    color: #999;
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 30px;

}
.view-awards {
    color: #bbb;
    border: 1px solid #bbb;
    padding: 5px 15px;
    border-radius: 20px;
    transition: 0.5s;
}
.view-awards:hover {
    background-color: #31c0ce;
    color: #fff;
    border-color: transparent;
}

/* ------------------------------- Section Location ------------------------------ */
.location-inner {
    position: relative;
    background: url(images/background-location.jpg)no-repeat center center;
    height: 100%;
}
.location-inner:before {
    position: absolute; /* before 가상요소는 inline 요소이기때문에 width 나 height 값을 못가진다. 그래서 position에 absolute를 줬다 */
    display: block;
    content: '';
    background-color: rgba(0,0,0,0.85);
    width: 100%;
    height: 100%;

}
.feature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
    color: #bbb;

}
.feature > div {
    float: left;
}
.office {
    padding-right: 100px;
    width: 60%;
}
.office b{
    font-weight: normal;
}
.office h2 {
    margin: 0;
    margin-top: 5px;
    color: #1db1f0;
    font-weight: 500;

}
.office p {
    font-size: 16px;
    line-height: 1.5em;
}
.office span{
    color: #fff;
}
.customer {
    margin-top: 40px;
}
.service {
    width: 40%;

}
.service-item {
    margin-bottom: 40px;
}
.service-item .fa-solid {
    color: #1db1f0;
    font-size: 40px;
}
.service-item h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;

}
/* ------------------------------- Section Contact ------------------------------ */
.contac-inner {
    height: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
}
.contact-feature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
}

.contact-feature > div {
    float: left;
    width: 50%;
    padding: 20px;
}
.contact-form h3 {
    margin: 0;
    font-size: 30px;
    font-weight: normal;
}

.send-box label {
    display: block;
    margin: 10px 0;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;

}
.send-box label span {
    color: crimson;
    font-weight: normal;

}
.send-box input[type=email],
.send-box input[type=text],
.send-box textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    transition: 0.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 {
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #0088cc;
    color: #fff;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}
.send-box button:hover {
    background-color: #000;
}

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

.contact-info ul li {
    line-height: 2em;
}
.contact-info ul li:last-child {
    color: #0088cc;
}
.contact-info p {
    line-height: 1.5em;
}

/* ---------------------- SubPage : Hiring -------------------------- */

.modal {
    font-family: 'Source Sans Pro', sans-serif;
  }
  .header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 100;
  }
  .header-inner {
    width: 95%;
    margin: auto;
    height: 90px;
    line-height: 90px;
    border-bottom: 1px solid #ddd;
  }
  .modal-display {
    font-size: 18px;
  }
  .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: 80px;
    font-weight: 200;
    margin: 0;
    margin-top: 40px;
  }
  .hiring-info {
    overflow: hidden;
    margin-bottom: 30px;
  }
  .hiring-info > div {
    float: left;
    width: 50%;
    height: 500px;
  }
  .center-parent {
    position: relative;
  }
  .center-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }
  .center-child h2 {
    font-size: 33px;
    font-weight: normal;
  }
  .center-child p {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5em;
  }
  .photo img {
    width: 100%;
    height: 100%;
  }
  .hiring-slogan {
    padding: 100px 0;
  }
  .hiring-slogan p {
    font-size: 31px;
    font-weight: 300;
    text-align: center;
    width: 70%;
    margin: auto;
    position: relative;
  }
  .hiring-slogan p:before {
    content: ',,';
    font-family: 'Overpass', sans-serif;
    font-size: 200px;
    position: absolute;
    color: #ddd;
    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: dodgerblue;
  }
  .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: 0.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: 0.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: #25D366;
  }

  
/* ############ SubPage : Hiring ############ */
.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%;
    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 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;
  }
    
  