/* works */
#works {
    overflow: hidden;
}
.workItemList {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.workItemList .workItem {
    margin-top: 30px;
    flex-basis: 25%;
    padding: 0 15px;
}
.workItemList .workItem .item {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.workItemList .workItem .txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    padding: 1.5rem;

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.workItemList .workItem:hover .txt {
    opacity: 1;
}
.workItemList .workItem .txt p {
    opacity: .6;
}
.workItemList .workItem .txt .more {
    text-decoration: underline;
    opacity: .6;
}
@media (max-width:992px){
    .workItemList {
        margin: 0 -10px;
    }
    .workItemList .workItem {
        flex-basis: 33.3333%;
        padding: 0 10px;
    }
    .workItemList .workItem .item {
        border-radius: 10px;
    }
}
@media (max-width:768px){
    .workItemList {
        margin: 0 -5px;
    }
    .workItemList .workItem {
        flex-basis: 50%;
        padding: 0 5px;
        margin-top: 20px;
    }
}

/* topTabs */
.topTabs {
    display: flex;
    gap: 15px;
}
.topTabs a {
    display: inline-block;
    padding: 7px 30px;
    border: 1px solid #999;
    color: rgba(0,0,0,.5);
    border-radius: 100px;
    background-color: transparent;
    text-decoration: none;
}
.topTabs a.active {
    color: #000;
    border-color: #ffce2d;
    background-color: #ffce2d;
}
@media (max-width:768px){
    .topTabs {
        gap: 7px;
        justify-content: center;
    }
    .topTabs a {
        padding: 4px 20px;
    }
}


/* profItem */
.profItem {
    position: relative;
}
.profItem .prfImgBig {
    position: relative;
    text-align: right;
}
.profItem .prfImgBig img {
    display: inline-block;
    border-radius: 30px;
}
.profItem .prfTxt > div {
    width: 100%;
}
.profItem .name {
    display: flex;
    gap: 10px;
    align-items: center;
}
.profItem .tags {
    display: flex;
    gap: 8px;
}
.profItem .tags span {
    display: inline-block;
    line-height: 1em;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #ffce2d;
    color: #111;
    font-weight: 500;
}
.profItem .wBox {
    padding: 2.5rem 3rem;
    border-radius: 2rem;
    background-color: #fff;
    box-shadow: 10px 10px 15px rgba(122, 129, 140, 0.2);
    margin-top: 15px;
}
.profItem .wBox2 {
    margin-top: 25px;
}
.profItem .wBox2 ul {
    display: flex;
    align-items: flex-start;
}
.profItem .wBox2 ul li {
    position: relative;
    flex-grow: 1;
}
.profItem .wBox2 ul li:not(:first-child):after {
    content: "";
    position: absolute;
    left: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #ddd;
}
.profItem .wBox2 h5 {
    color: #999;
}
.profItem .wBox2 h6 {
    color: #999;
}
.profItem .wBox2 ul li .exLink {
    display: flex;
    color: #111;
}
@media (min-width:992px){
    .profItem .prfImgBig img {
        box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
    }
    .profItem .prfTxt {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        width: 50%;
        z-index: 5;
    }
}
@media (max-width:992px){
    .profItem .prfTxt {
        padding: 0 0 40px;
    }
}
@media (max-width:500px){
    .profItem .prfImg {
        padding-bottom: 60px;
        padding-right: 0;
    }
    .profItem .wBox {
        border-radius: 1rem;
    }
    .profItem .wBox2 ul {
        flex-wrap: wrap;
    }
    .profItem .wBox2 ul li {
        flex-basis: 50%;
        margin-top: 20px;
    }
    .profItem .wBox2 ul li:nth-child(odd):after {
        display: none;
    }
    .profItem .name {
        flex-wrap: wrap;
        gap: 3px;
    }
    .profItem .name > div {
        width: 100%;
        text-align: center;
    }
    .profItem .tags {
        justify-content: center;
    }
    .profItem .tags span {
        padding: 6px 8px;
    }
}

/* creator-nav-wrp */
.creator-nav-wrp {
    position: relative;
    padding: 0 50px;
    text-align: center;
    margin: 0 auto;
}
.creator-nav-wrp .slick-slide {
    padding: 15px;
}
.creator-nav-wrp .slick-slide span {
    display: inline-block;
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.creator-nav-wrp .slick-slide.is-active span {
    border-color: #ffce2d;
    box-shadow: 10px 10px 15px rgba(122, 129, 140, 0.2);
}
.creator-nav-wrp .slick-slide img {
    display: inline-block;
    filter: grayscale(1);

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.creator-nav-wrp .slick-slide.is-active img {
    filter: grayscale(0);
}
.creator-nav-wrp .cr_arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.creator-nav-wrp .cr_arr#creator_prev {
    left: 0;
}
.creator-nav-wrp .cr_arr#creator_next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
@media (max-width:500px){
    .creator-nav-wrp {
        padding: 0 30px;
    }
    .creator-nav-wrp .slick-slide {
        padding: 10px 3px;
    }
    .creator-nav-wrp .slick-slide span {
        border-radius: 3px;
    }
    .creator-nav-wrp .cr_arr#creator_prev,
    .creator-nav-wrp .cr_arr#creator_next {
        width: 20px;
    }
}



/* contactForm */
.contactForm .fTit {
    margin-bottom: 20px !important;
    padding-left: 10px;
    position: relative;
}
.contactForm .fTit:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #000;
    transform: translateY(-50%);
}
.contactForm ul li {
    margin: 20px 0;
}
.contactForm .form-item {
    position: relative;
}
.contactForm .form-item > label {
    /* position: absolute; */
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    font-weight: 400;
    margin: 0;
}
.contactForm select.form-common,
.contactForm input.form-common[type="tel"],
.contactForm input.form-common[type="email"],
.contactForm input.form-common[type="text"] {
    height: 40px;
}
.contactForm .form-common {
    box-shadow: 0 0 0;
    border-radius: 0px;
    border: 0px solid #444;
    border-bottom-width: 1px;
    font-weight: 500;
    font-size: 1.7rem;
    background-color: transparent;
}
.contactForm input.form-common[type="file"] {
    border-width: 1px;
    padding: 1px;
}
.contactForm .checkWrp {
    line-height: 29px;
}
.contactForm .form-item .form-common {
    /* padding-left: 95px; */
}
.contactForm label {
    font-size: 1.7rem;
    line-height: 1em;
    color: #666;
    font-weight: 300;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    padding-left: 5px;
}
.contactForm .btnItem {
    width: 100%;
}
.contactForm .agrees input,
.contactForm .agrees label,
.contactForm .agrees strong {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
}
.contactForm .agrees label {
    margin-left: 5px;
}
.contactForm .agrees strong {
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
}

@media (max-width:768px){
    .contactForm {
        padding: 3rem 1rem;
    }
    .contactForm .fTit {
        margin-bottom: 10px !important;
    }
    .contactForm .checkWrp {
        line-height: 30px;
    }
    .contactForm .checkWrp .checkbox-custom {
        margin: 0px !important;
        margin-right: 5px !important;
    }
}


/* contBoxs */
.contBoxs {
    padding: 3rem 5rem;
    background-color: #222;
    border-radius: 20px;
}
.contBoxs .item {
    /* border: 1px solid #aaa; */
    display: flex;
    align-items: center;
    padding: 20px;
}
.contBoxs .item.kakao {
    background-color: rgba(250, 234, 98, 0.2);
}
@media (max-width:768px) {
    .contBoxs {
        padding: 3rem 2rem;
        border-radius: 10px;
    }
    .contBoxs .item {
        padding: 10px;
    }
    .contBoxs .item .icon {
        font-size: 30px;
        width: 30px;
    }
    .contBoxs .item .txt {
        width: calc(100% - 30px);
    }
}
/* company */
#company .sec1 .bg1 {
    background: url(../img/com1_bg.jpg) center bottom no-repeat;
    background-size: cover;
    height: 1040px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (max-width:992px) {
    #company .sec1 .bg1 {
        height: 900px;
    }
}
@media (max-width:768px) {
    #company .sec1 .bg1 {
        height: 150vw;
        min-height: 500px;
    }
    #company .sec3 {
        text-align: center;
    }
    #company .sec3 .fbox > div {
        width: 100%;
    }
}
/* interfiction */
.interfiction {
    width: 170px;
    height: 170px;
    border-radius: 2rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 25px rgba(122, 129, 140, 0.1);
}
@media (max-width:768px) {
    .interfiction {
        width: 140px;
        height: 140px;
        margin: 0 auto;
        margin-top: 20px;
    }
}


/* hisBox */
.hisBox .hisCon {
    position: relative;
}
.hisBox .hisCon:after {
    content: "";
    position: absolute;
    left: 120px;
    top: 0px;
    height: 100%;
    width: 1px;
    background-color: #ddd;
}

.hisBox .tit .con {
    position: relative;
    padding-left: 15px;
} 
.hisBox .tit .con:after {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    width: 10px;
    height: 10px;
    background-color: #f4c323;
    border-radius: 50%;
}
.hisBox .tit .haccp {
    max-width: 20vw;
}
.hisBox .hisCon .yItem {
    position: relative;
    padding-left: 160px;
    margin: 0 0 2rem;
}
.hisBox .hisCon .yItem .hap {
    padding: 5px 0;
}
.hisBox .hisCon .yItem .yBox {
    position: absolute;
    left: 0;
    top: 0;
    padding-right: 80px;
}
.hisBox .hisCon .yItem .yBox .dot {
    position: absolute;
    top: 0;
    left: 80px;
    width: 80px;
    height: 100%;
}
.hisBox .hisCon .yItem .yBox .dot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: rgba(244, 195, 35, 0.2);
    z-index: 1;
}
.hisBox .hisCon .yItem .yBox .dot:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 7px;
    height: 7px;
    background-color: #f4c323;
    border-radius: 50%;
    z-index: 3;
}
.hisBox .hisCon .yItem .hap .pList {
    padding-top: .6rem;
    padding-bottom: .6rem;
}
@media (min-width:992px) {
    .hisBox {
        display: flex;
        align-items: flex-start;
    }
    .hisBox .tit {
        width: 410px;
    }
    .hisBox .hisCon {
        width: calc(100% - 410px);
    }
}
@media (max-width:992px) {
    .hisBox .hisCon:after {
        left:  calc(100vw * 150 / 992);
    }
    .hisBox .hisCon .yItem {
        padding-left:  calc(100vw * 200 / 992);
    }
    .hisBox .hisCon .yItem .yBox {
        padding-right:  calc(100vw * 100 / 992);
    }
    .hisBox .hisCon .yItem .yBox .dot {
        left: calc(100vw * 100 / 992);;
        width: calc(100vw * 100 / 992);;
    }
}
@media (max-width:500px) {
    .hisBox .hisCon:after {
        left:  calc(100vw * 105 / 500);
    }
    .hisBox .hisCon .yItem {
        padding-left:  calc(100vw * 140 / 500);
    }
    .hisBox .hisCon .yItem .yBox {
        padding-right:  calc(100vw * 140 / 500);
    }
    .hisBox .hisCon .yItem .yBox .dot {
        left: calc(100vw * 70 / 500);;
        width: calc(100vw * 70 / 500);;
    }
}

/* imgSlideLeft */
.imgSlideLeft span {
    display: inline-block;
    position: relative;
}
.imgSlideLeft .lft {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #f7f7f7;
    width: 100%;

    transition: all 1.8s;
    -o-transition: all 1.8s;
    -moz-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}
.imgSlideLeft.aos-animate .lft {
    width: 0%;
}

/* pList */
.pList > li {
    position: relative;
    padding-left: 15px;
}
.pList > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 11px ;
    width: 3px;
    height: 3px;
    background-color: #aaa;
}
.pList > li p {
    font-weight: 300;
}
@media (max-width:768px){
    .pList > li:after {
        top: 8px ;
    }
}
/*mapbox*/
.mapbox .root_daum_roughmap .wrap_map {
    height: 450px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map {
		height: 250px !important;
	}
}
