/* contactForm */
.contactForm {
    padding: 80px 60px;
    background-color: #f7f7f7;
}
.contactForm .fTit {
    margin-bottom: 10px !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;
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    gap: 8px;
}
.contactForm select.form-common,
.contactForm input.form-common[type="tel"],
.contactForm input.form-common[type="email"],
.contactForm input.form-common[type="text"] {
    height: 50px;
}
.contactForm .form-common {
    box-shadow: 0 0 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-weight: 500;
    font-size: 1.7rem;
    background-color: #fff;
    margin-top: 8px;
}
.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 .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: 30px 20px;
    }
    .contactForm .fTit {
        margin-bottom: 10px !important;
    }
    .contactForm .checkWrp {
        line-height: 30px;
    }
    .contactForm .checkWrp .checkbox-custom {
        margin: 0px !important;
        margin-right: 5px !important;
    }
}

/* btnWrp */
.btnWrp .btnItem {
    text-decoration: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-weight: 400;
    line-height: 50px;
    border: 1px solid #aaa;
    text-align: center;
    color: #666;
    padding: 0;
    letter-spacing: -0.01em;
    background-color: transparent;
    min-width: 150px;
    text-align: center;
}
.btnWrp .btnItem:hover {
    border-color: #4d7abf;
    color: #fff;
    box-shadow: 10px 23px 40px rgba(77, 123, 191, 0.25);
}
.btnWrp .btnItem.w {
    border-color: #fff;
    color: #fff;
}
.btnWrp .btnItem.w:hover {
    color: #111;
    border-color: #fff;
}
.btnWrp .btnItem strong,
.btnWrp .btnItem i {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}
.btnWrp .btnItem span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #4d7abf;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -0;
}
.btnWrp .btnItem.w span {
    background-color: #fff;
}
.btnWrp .btnItem:hover span {
    width: 225%;
    height: 562.5px;
}
@media (max-width:767px){
    .btnWrp .btnItem {
        font-size: 15px;
        padding: 0 15px;
        min-width: 120px;
        line-height: 40px;
    }
}
/* 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;
    width: 50%;
}
.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: #fff;
    color: #f36f21;
    font-weight: 500;
}
.profItem .wBox {
    padding: 2.5rem 0;
    border-radius: 2rem;
    /* background-color: #fff; */
    margin-top: 15px;
}
.profItem .wBox .stit {
    border-bottom: 1px solid #aaa;
    padding-bottom: 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 {
        border-radius: 50px 0 0 50px;
        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;
        width: 50%;
        z-index: 5;
        padding: 70px 40px;
        padding-right: 80px;
        background-color: #f7f7f7;
        border-radius: 0 50px 50px 0;
    }
}
@media (max-width:992px){
    .profItem .prfTxt {
        padding: 0 0 40px;
    }
}
@media (max-width:500px){
    .profItem .prfImg {
        padding-bottom: 0;
        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;
    }
    .profItem .prfImgBig img {
        border-radius: 5px;
        width: 100%;
    }
}

/* 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;
    }
}


/* mapbox */
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 350px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}
/* comInfo */
@media (min-width:767px) {
    .comInfo {
        border-top: 1px solid #ddd;
    }
}
@media (max-width:768px) {
    .comInfo .fbox > div {
        width: 100%;
    }
}
/* fItemBox */
.fItemBox {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.fItemBox .tit {
    width: 100px;
}
.fItemBox .con {
    width: calc(100% - 100px);
}
.fItemBox.fItemBox_col3 .con1 {
    width: calc(50% - 100px);
}
.fItemBox.fItemBox_col3 .con2 {
    width: 50%;
}
@media (max-width:992px){
    .fItemBox .tit {
        width: 70px;
    }
    .fItemBox .con {
        width: calc(100% - 70px);
    }
    .fItemBox.fItemBox_col3 .con1 {
        width: calc(50% - 70px);
    }
}
@media (max-width:500px){
    .fItemBox {
        margin-top: -1px;
    }
    .fItemBox .tit {
        width: 70px;
    }
    .fItemBox .con {
        width: calc(100% - 70px);
    }
    .fItemBox.fItemBox_col3 {
        flex-wrap: wrap;
    }
    .fItemBox.fItemBox_col3 .con2 {
        width: 100%;
        padding-left: 70px;
        margin-top: 10px;
    }
    .fItemBox {
        display: flex;
        align-items: flex-start;
        padding: 15px 0;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
}

/* contBoxs */
.contBoxs .item {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 20px 40px;
	height: 160px;
}
.contBoxs .item.kakao {
    background-color: rgba(0, 0, 0, 0.1);
}
.contBoxs .item .icon {
    font-weight: 100;
    width: 80px;
}
.contBoxs .item .txt {
    width: calc(100% - 80px);
    padding-left: 0;
}
@media (max-width:768px) {
    .contBoxs .item {
        padding: 20px;
		height: auto;
    }
    .contBoxs .item .icon {
        font-size: 40px;
        width: 40px;
    }
    .contBoxs .item .txt {
        width: calc(100% - 40px);
        padding-left: 15px;
    }
}


/* fboxList */
.fboxList .tit a {
    text-decoration: none;
    display: block;
}
.fboxList .tit a p {
    line-height: 1em;
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #888;
    color: #888;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.fboxList .tit a:hover p {
    border-color: #111;
    color: #111;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.fboxList .tit a p i,
.fboxList .tit a p span {
    display: inline-block;
    vertical-align: middle;
}
.fboxList .tit .fbox > .rt a {
    cursor: pointer;
}

@media (max-width:768px) {
    .fboxList .tit .fbox > div {
        width: 100%;
    }
    .fboxList .tit .fbox > .rt a {
        margin-top: 15px;
    }
}


/* pass-slick-wrp */
.pass-slick-wrp {
    position: relative;
}
.pass-slick-wrp::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 10vw;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}
.pass-slick-wrp:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10vw;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}
@media (max-width:768px){
    .mobileFlow.pass-slick-wrp::before,
    .mobileFlow.pass-slick-wrp:after {
        display: none;
    }
}

/* photo-slick */
.photo-slick .slick-slide {
    padding: 0 10px;
}
/* pass-slick */
.pass-slick .slick-slide {
    padding: 0 10px;
}
.pass-slick .slick-slide span {
    display: block;
    position: relative;
}
.pass-slick .slick-slide span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(246,246,246,0.5);
    mix-blend-mode: multiply;
}
.pass-slick .slick-slide img {
    display: inline-block;
}
/* infiLogo */
.infiLogo .slick-slide {
    padding: 0 10px;
}
.infiLogo .slick-slide img {
    display: inline-block;
}
/* .pass-slick .slick-slide img {
    border: 1px solid #eee;
} */



/* hisList */
.hisList {
    position: relative;
}
.hisList:after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    background: url(../img/his_bg.png) center top no-repeat;
    background-attachment: fixed;
    background-color: #eee;
    top: 0;
    height: 100%;
    width: 3px;
}
.hisList > li {
    margin: 40px 0;
    padding-left: 40px;
    position: relative;
    z-index: 3;
}
.hisList > li ul {
    margin-top: 20px;
}
.hisList > li ul li {
    margin: 10px 0;
}
.hisList > li ul li h5 {
    position: relative;
   /* padding-left: 85px;*/
    word-break: keep-all;
    color: #444;
    font-weight: 300;
    position: relative;
}
.hisList > li ul li h5:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: -45px;
    height: 11px;
    width: 11px;
    border: 2px solid #0a2543;
    background-color: #fff;
    border-radius: 50%;
}
.hisList > li ul li h5 > strong {
    position: absolute;
    left: 0;
    color: #111;
    font-weight: 700;
	font-family: "Roboto";
}
@media (min-width:768px){
    .hisList > li {
        width: 50%;
    }
    .hisList > li:nth-child(odd) {
        margin-left: 50%;
    }
    .hisList > li:nth-child(even) {
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .hisList > li:nth-child(even) ul li h5 {
       /* padding-right: 85px;*/
        padding-left: 0;
    }
    .hisList > li:nth-child(even) ul li h5 > strong {
        left: auto;
        right: 0;
    }
    .hisList > li:nth-child(even) ul li h5:after {
        left: auto;
        right: -46px;
    }
}
@media (max-width:768px){
    .hisList:after {
        background: #eee;
        left: -2px;
    }
    .hisList > li {
        padding-left: 20px;
    }
    .hisList > li ul li h5 {
        /*padding-left: 70px;*/
    }
    .hisList > li ul li h5:after {
        left: -25px;
        height: 9px;
        width: 9px;
        top: 7px;
    }
}


/* movText */
.movText {
    position: relative;
    display: inline-block;
}
.movText .text-fixed {
    color: rgba(255,255,255,0.1);
}
.movText.movText-dk .text-fixed {
    color: rgba(0,0,0,0.1);
}
.movText .text-mov,
.movText .text-mov {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: #111 !important;
    white-space: nowrap;
    overflow: hidden;
}
.textMoveWrp.aos-animate .movText .text-mov,
.slick-current .movText .text-mov {
    animation: viewText 1.5s ease-in-out .5s 1 normal forwards;
}
.textMoveWrp.aos-animate .movText.movText2 .text-mov,
.slick-current .movText.movText2 .text-mov {
    animation-delay: 1s;
}
.textMoveWrp.aos-animate .movText.movText3 .text-mov,
.slick-current .movText.movText3 .text-mov {
    animation-delay: 1.5s;
}
.textMoveWrp.aos-animate .movText.movText4 .text-mov,
.slick-current .movText.movText4 .text-mov {
    animation-delay: 2s;
}
@keyframes viewText {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}



/* hBox */
.hBox {
    position: relative;
    overflow: hidden;
    height: 600px;
}
.hBox > .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}
@media (max-width:768px){
    .hBox {
        height: 300px;
    }
}


/* hdH */
.hdH {
    position: relative;
    padding-left: 20px;
}
.hdH:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15px;
    background: url(../img/hdH.png) left center no-repeat;
    background-size: contain;
}

/* ptnList */
.ptnList {
    text-align: center;
}
.ptnList .item {
    border: 2px solid #eee;
    border-radius: 10px;
}