@charset "utf-8";
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: #b7b7ae;
}
ul {
    list-style: none  ;
}
body {
    background-color: #1e1b1a;
    color: #e0dede;
    font-family: 'GmarketSansMedium';
}
/* common */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3vw 0;
}
p {
    font-family: 'GmarketSansMedium';
    font-size: 1.2vw;
}
h2 {
    /*font-size: 80px;*/
    font-size: 4.5vw;
    color: #dddad3;
    text-transform: uppercase;
    font-family: 'GmarketsansBold';
}
h3 {
    /*font-size: 40px;*/
    font-size: 2vw;
    text-transform: uppercase;
    color: #cecac0;
}
.section {
    margin-bottom: 7.5vw;
}
/* ================== 헤더영역 ================== */
/* nav */
nav {
    position: relative;
}
nav .btn-wrap {
    position: fixed;
    top: 4%;
    right: 8%;
    display: flex;
    gap: 1vw;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
nav .btn-wrap.visible {
    opacity: 1;
    pointer-events: auto;
}
nav .btn-wrap .btn {
    display: flex;
    gap: 4vw;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.3vw;
    border: 2px solid #918f87;
    border-radius: 60px; 
    background-color: #1e1b1a;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.4);
}
nav .btn-wrap .btn div {}
nav .btn-wrap .btn div a {
    font-size: 1vw;
    font-family: 'centryGothic';
    position: relative;
    transition: color 0.3s;
}
nav .btn-wrap .btn div .line::after {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    top: 50%;
    left: 160%;
    transform: translateY(-50%);
    background-color: #adab92;
    width: 1px;
    height: 0.9vw;
}
nav .btn-wrap .gotop {
    width: 4.5vw;
    height: 4.5vw;
    border: 2px solid #918f87;
    border-radius: 50%;
    background-color: #1e1b1a;
    display: flex;
    align-items: center;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.4);
}
nav .btn-wrap .gotop .img-wrap {
    width: 2vw;
    height: 2vw;
    margin: 0 auto;
}
nav .btn-wrap .gotop .img-wrap img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}
/* hover 시 */
nav .btn-wrap .btn div a:hover {
    color: #5286e0;
}
/* active 시 (선택된 메뉴 유지용) */
nav .btn-wrap .btn div a.active {
    color: #5286e0;
}

/* ================== 메인영역 ================== */
/* visual section */
.visual {}
.visual .container {}
.visual .container p {
    font-family: 'poppinsLight';
}
.visual .container p .freestyle {
    font-family: 'Freestyle';
    color: #265ab5;
    font-size: 1.8vw;
}
.visual .container .web {
    position: absolute;
    top: 2.5vw;
    left: 50%;
    transform: translateX(-50%);
}
.visual .container .gray {
    color: #646166;
}
.visual .container .visual-txt {
    padding-top: 10vw;
    padding-bottom: 9vw;
}
.visual .container h2 {
    font-family: 'GmarketsansBold';
    /*font-size: 8vw;*/
    font-size: 8.2vw;
    margin: 0 auto;
    text-align: center;
    position: relative;
    white-space: nowrap;
    color: #e0dede;
}
.visual .container h2 br {
    display: none;
}
.visual .container .text-shadow {
    position: relative;
    top: 2vw;
    left: 49.5%;
    transform: translate(-50%, -50%);
    /*width: 64.5vw;*/
    width: 66vw;
}
.visual .container .text-shadow-m img,
.visual .container .text-shadow img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.visual .container .text-shadow-m {
    display: none;
    position: relative;
    top: 3.5vw;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 64.5vw;*/
    width: 29vw;
}
.visual .container .year {
    position: relative;
}
.visual .container .year::after {
    display: block;
    clear: both;
    content: '';
    width: 90%;
    height: 0.5px;
    background-color:#c9c8c7;
    position: absolute;
    top: 74%;
    left: 10%;
}
.visual .container .year::before {
    clear: both;
    content: '';
    position: absolute;
    top: 24%;
    right: -0.5%;
    background: url('../images/visual-arrow-01.png') no-repeat center right;
    width: 100%;
    height: 100%;
    background-size: contain;
}

/* about section */
.about {}
.about h2 {
    line-height: 1.3;
}
.about .container >p {
    font-family: 'centryGothic';
    color: #827c78;
    font-size: 1.3vw;
    text-transform: uppercase;
    margin-bottom: 4vw;
}
.about .profileBox {
    display: flex;
    gap: 7vw;
}
/* left box */
.about .left-box {}
.about .left-box .img-wrap {
    width: 24vw;
}
.about .left-box .img-wrap img {
    width: 100%;
}
.about .left-box .desc-wrap {
    text-align: center;
    margin-top: 1.5vw;
    margin-bottom: 3vw;
}
.about .left-box .desc-wrap .name {
    font-size: 1.57vw;
    margin-bottom: 0.5vw;
    color: #cecac0;
}
.about .left-box .desc-wrap .birth {
    font-size: 1.3vw;
    color: #726e6d;
}
.about .left-box .desc-wrap p {}
.about .left-box .contact .intro {
    padding: 1vw 1.7vw;
    font-size: 1.25vw;
    color: #cecac0;
    text-transform: uppercase;
}
.about .left-box .contact {}
.about .left-box .contact p {
    padding: 1vw 1.8vw;
    font-size: 0.9vw;
    color: #847e7c;
}

/* right-box */
.right-box {
    width: 100%;
}
.right-box .desc-wrap {
    margin: 0 auto;
}
.right-box .desc-wrap .title-wrapper {
    display: flex;
    align-items: center;
    margin: 2.2vw 0;
}
.right-box .desc-wrap .education {
    margin-top: 0;
}
.right-box .desc-wrap .title {
    font-size: 1.2vw;
    font-weight: 300;
    white-space: nowrap;
    color: #cecac0;
    text-transform: uppercase;
}
.right-box .desc-wrap .title-line {
    flex-grow: 1;
    border-top: 1px dashed #64625e;
    height: 1px;
    margin-left: 30px;
}
.right-box .desc-wrap .row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5vw;
    margin-left: 0.8vw;
}
.right-box .desc-wrap .date {
    /* width: 120px; */
    flex-shrink: 0;
    font-size: 0.9vw;
    color: #847e7c;
    white-space: nowrap;
}
.right-box .desc-wrap .desc {
    flex-grow: 1;
    text-align: right;
    white-space: nowrap;
    font-size: 0.82vw;
    color: #847e7c;
}
.right-box .desc-wrap .img-wrap {
    margin-left: 30%;
    width: 28vw;
}
.right-box .desc-wrap .img-wrap img {
    width: 100%;
}
/* about section 반응형 */
/* -brake point 1400px- */
@media screen and (max-width:1400px) {
    
}

/* ========== coding section ========== */
.coding-work {}
.coding-work .container {
    /* border: 1px solid red; */
}
.coding-work h2 {
    margin-bottom: 4vw;
}
.coding-work h2 span {
    font-size: 1.4vw;
    color: #827c78;
    font-family: 'centryGothic';
}
.coding-work .coding-wrap {
    display: flex;
    gap: 6vw;
    padding-top: 2vw;
    padding-bottom: 4.9vw;
    border-bottom: 1px solid #5B564F;
}
.coding-work .redesign {
    padding-bottom: 0vw;
    border-bottom: 1px solid #5B564F;    
}
/* left box */
.coding-work .coding-wrap .left-box {}
.coding-work .coding-wrap .left-box .num {
    /*font-size: 45px;*/
    font-size: 2.2vw;
    margin-bottom: 1.5vw;
    color: #5b5855;
    font-family: 'PretendardMedium';
}
.coding-work .coding-wrap .left-box .mockup {
    position: relative;
}
.coding-work .coding-wrap .left-box .mockup .img-wrap {
    /* width: 530px;
    height: 335px; */
    width: 29vw;
    height: 17.5vw;
}
.coding-work .coding-wrap .left-box .img-wrap::after {
    clear: both;
    content: '';
    width: 43%;
    height: 46%;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    background: url('../images/geojey-img.JPG')no-repeat center top;
    background-size: cover;
    transition: 2s;
    z-index: -1;
}
.coding-work .coding-wrap .left-box .mockup .noelohils::after {
    background-image: url('../images/noelohils.JPG');
    transition: 2.5s;
}
.coding-work .coding-wrap .left-box .mockup .touslesjours::after {
    background-image: url('../images/touslesjours.JPG');
    transition: 5s;
}
.coding-work .coding-wrap .left-box .mockup .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coding-work .coding-wrap .left-box .mockup .img-wrap:hover::after {
    background-position: center bottom;
}

/* right box */
.coding-work .coding-wrap .right-box {}
.coding-work .coding-wrap .right-box .title {
    /* font-size: 52px; */
    margin-bottom: 2vw;
    color: #BFBEA9;
}
.coding-work .coding-wrap .right-box .title p {}
.coding-work .coding-wrap .right-box .info {
    margin-bottom: 1.5vw;
}
.coding-work .coding-wrap .right-box .info p {
    font-size: 1vw;
    margin-bottom: 1vw;
    color: #7e7874;
    font-family: 'centryGothic';
}
.coding-work .coding-wrap .right-box .btn a {
    color: #b7b7ae;
}  
.coding-work .coding-wrap .right-box .btn p {
    font-size: 1.4vw;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid #5B564F;
    padding: 1.36vw 0;
    background: url('../images/coding-arrow-01.png')no-repeat;
    background-position: 96% center;
    background-size: 1.05vw;
    transition: all .2s;
}
.coding-work .coding-wrap .right-box .btn a:nth-child(3) p {
    border-bottom: 0;
    position: relative;
}
.coding-work .coding-wrap .right-box .btn a:nth-child(3) p:after {
    display: block;
    content: '';
    clear: both;
    background-color: #5B564F;
    width: 0%;
    height: 1px;
    position: absolute;
    top: 100%;
    left:0;
}
.coding-work .coding-wrap .right-box .btn p:hover {
    color: #797870;
    background-size: 1.35vw;
}
.coding-work .coding-wrap .right-box .btn p span {
    color: #8c8c8c;
    font-family: "Source Code Pro", monospace;
    font-weight: 400;
    font-size: 1.5vw;
}
.coding-work .coding-wrap .right-box .btn p:nth-child(3) {
    border-bottom: none;
}

/* ====== design-work section ====== */
/* .section.design-work {}
.design-work .container {}
.design-work .container h2 {
    margin-bottom: 5vw;
}
.design-work .container h2 span {
    color: #8a8880;
}
.design-work .container ul {
    width: 86%;
}
.design-work .container ul li {
    padding: 3vw;
    border-radius: 14px;
    border: 3px solid #20539e;
    margin-bottom: 1.5vw;
    transition: all 0.25s;
    background: url('../images/design-icon.png') no-repeat bottom right;
    background-size: 0;
}
.design-work .container ul li:hover {
    background-size: auto;
    background-color: #20539e;
    color: #1e1b1a;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
}

.design-work .container ul li h4 {
    font-size: 1.8vw;
    margin-bottom: 0.5vw;
}
.design-work .container ul li p {
    font-size: 0.9vw;
    font-family: 'centryGothic';
} */

/* web-work content */
.fa-solid, .fas {
    color: #1e1b1a;
}
.content {}
.content .title-wrap {}
.content .title-wrap .title {
    margin-bottom: 5vw;
}
.content .title-wrap .title h2 {}
.content .title-wrap .title h2 span {
    color: #64625e;
}
.content .work-wrap {
    max-width: 85%;
}
.content .work-content {
    padding: 3vw;
    border-radius: 2vw;
    border: 3px solid #20539e;
    margin-bottom: 1.5vw;
    transition: all 0.25s;
    background: url('../images/design-icon.png') no-repeat bottom right;
    background-size: 0;
}
.content .work-content:hover {
    background-size: 4.6vw;
    background-color: #20539e;
    color: #1e1b1a;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.7vw), calc(100% - 4.7vw) 100%, 0 100%);
}
.content .work-content:hover a {
    color: #1e1b1a;
}
.content .work-content .work-img {
    width: 100%;
    overflow: hidden;
}
.content .work-content .work-img a {
    display: block;
}
.content .work-content .work-img a img {
    width: 100%;
    vertical-align: top;
    transition: transform 0.5s;
}
.content .work-content:hover .work-img a img {
    transform: scale(1.1);
}
.content .work-content .work-desc {}
.content .work-content .work-desc h4 {
    font-size: 2vw;
}
.content .work-content .work-desc p {
    font-size: 1vw;
    font-family: 'CentryGothic';
}
/* .content .work-content .work-desc:first-child {
    font-size: 1.3em;
    font-weight: 500;
    padding: 20px 30px 10px;
} */

/* modal */
.window-content {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 80%;
    height: 100%;
    overflow-y: scroll;
    display: none;
}
.window-content-close {
    position: fixed;
    top: 20px;
    right: 12%;
    z-index: 1000;
    font-size: 3vw;
    cursor: pointer;
    display: none;
}
.window-content img {
    width: 100%;
}
.footer {
    position: relative;
}

/* ================== 푸터영역 ================== */
/* footer section */
.footer .section {
    margin-bottom: 0;
}
.footer .container {
    padding-bottom: 5vw;
}
.footer .container .touch {
    display: flex;
    align-items: flex-start;
    gap: 12vw;
    position: relative;
}
.footer .container h2 {
    white-space: nowrap;
    color: #dddad3;
    text-transform: uppercase;
    position: relative;
    font-size: 6vw;
}
.footer .container .touch .icon {
    position: absolute;
    top: -1.5%;
    left: 26%;
    width: 6vw;
}
.footer .container .touch .icon img {
    width: 100%;
}
.footer .container .touch .email {
    border: 1px solid #BFBEA9;
    border-radius: 0.8vw;
    width: 20vw;
    height: 3.8vw;
    margin-bottom: 3.5vw;
}
.footer .container .touch .email a {
    display: block;
    background-color: #20539e;
    border-radius: 0.8vw;
    height: 100%;
    width: 40%;
    text-align: center;
    line-height: 3.7vw;
    margin-left: 60%;
    font-size: 1.1vw;
    color: #1e1b1a;
    transition: .2s;
}
.footer .container .touch .email:hover a {
    color: #dddad3;
}
/* .footer .container h2 .point::after {
    background: url('../images/footer-shadow.png') no-repeat center;
    position: absolute;
    top: 65%;
    left: 0;
    clear: both;
    content: '';
    width: 34vw;
    height: 8vw;
    border: 1px solid red;
    background-image: 100%;
} */
.footer .container .text-shadow {
    position: absolute;
    top: 12.7vw;
    left: 0.2%;
    width: 34.7vw;
}
.footer .container .text-shadow img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.footer .container h2 .point {
    color: #20539e;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 6vw;
}
.footer .container .contact {}
.footer .container .contact >p {
    font-size: 1.5vw;
    margin-bottom: 3.5vw;
    color: #BFBEA9;
}
.footer .container .contact .contact-txt {
    display: flex;
    gap: 4.5vw;
    margin-bottom: 9vw;
}
.footer .container .contact .contact-txt p {
    font-family: 'centryGothic';
    font-size: 1vw;
    margin-bottom: 1.8vw;
    color: #918f87;
}
.footer .container .contact .contact-txt .point {
    color: #BFBEA9;
}
.footer .container .contact .contact-txt a {
    font-family: 'centryGothic';
    font-size: 1vw;
    color: #918f87;
}
.footer .container .end {
    font-family: 'centryGothic';
    font-size: 1.3vw;
    line-height: 2.5;
    color: #8a8880;
    border-bottom: 1px solid #b5b5b0;
}
