
/* subTabs */
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 100px;
    text-align: center;
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: #666;
    font-size: 16px;
    padding: 12px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background: linear-gradient(to right, #45bbbd, #2582bf);
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con {
        flex-wrap: wrap;
        background-color: transparent;
        padding: 0;
        gap: 4px;
    }
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 20px;
        width: auto;
        flex-basis: unset;
        flex-grow: unset;
        background-color: #f7f7f7;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 15px;
    }
}
/* subtop */
#subtop > .brWrp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* border-radius: 0 0 0 100px; */
    z-index: -1;
}
#subtop > .brWrp > .bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
}
#subtop .fbox {
    height: 600px;
}
#subtop .fbox h1 {
    line-height: 1em;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,1);
}
#subtop .fbox h1 strong {
    color: #fff;
}
@media (max-width:992px) {
    #subtop > .brWrp {
        border-radius: 0;
    }
    #subtop .fbox {
        height: 350px;
    }
    #subtop .fbox h1 {
        font-size: 40px;
    }
}
@media (max-width:768px) {
    #subtop {
        background-size: cover !important;
    }
    #subtop .fbox {
        height: 300px;
    }
    #subtop .fbox h1 {
        font-size: 30px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
}
#site_config .site {
    display: flex;
    align-items: center;
}
#site_config .site .home {
    display: inline-block;
    line-height: 50px;
    position: relative;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    width: 2px;
    vertical-align: middle;
    background-color: #00d560;
    display: inline-block;
    height: 16px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    /* transform: skewX(-15deg); */
    vertical-align: middle;
    margin: 0 5px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.home2:after,
#site_config .site .home.home3:after {
    
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    display: inline-block;
    padding: 0px 10px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 600;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}
/* #site_config .site .home > ul li:not(:first-child) {
    border-top: 1px solid #eee;
} */
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}
/* 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: 15px;
    cursor: pointer;
}
.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;
    }
    .workItemList .workItem .txt {
        position: relative;
        opacity: 1;
        background-color: #f7f7f7;
        padding: 2rem 15px;
    }
    .workItemList .workItem .txt > div {
        width: 100%;
    }
    .workItemList .workItem .dft {
        color: #111 !important;
        overflow: hidden;
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 1; 
        -webkit-box-orient: vertical
    }
}

/* about */
#about {
    /* background: url(../img/about_bg.png) right bottom no-repeat; */
    background-color: #f3f3f1;
}
#about .sec1 {
    position: relative;
}
#about .sec1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
    background-color: #00d560;
}
#about .sec1 .inner {
    position: relative;
    z-index: 10;
}
#about .topLogo img {
    width: 650px;
}
#about .cntImg {
    height: 500px;
    width: 1px;
    max-width: 1600px;
    background: url(../img/cntImg.jpg) center center no-repeat;
    margin: 0 auto;

    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
    transition-delay: .5s;
}
#about .cntImg.aos-animate {
    width: 100%;
}

@media (max-width:992px) {
    #about {
        background-size: 50vw;
    }
    #about .cntImg {
        height:350px;
        background-size: cover !important;
    }
}
@media (max-width:768px) {
    #about {
        background-size: 80vw;
    }
    #about .cntImg {
        height:250px;
    }
}
/* btToonSlick */
.btToonSlickWrp {
    position: relative;
}
.btToonSlickWrp:after,
.btToonSlickWrp:before {
    content: "";
    position: absolute;
    z-index: 7;
    width: 10vw;
    height: 100%;
    top: 0;
}
.btToonSlickWrp:before {
    right: -10px;
    background: linear-gradient(to right, transparent, #00d560);
}
.btToonSlickWrp:after {
    left: -10px;
    background: linear-gradient(to left, transparent, #f3f3f1);
}
.btToonSlick {
    margin: 0 -10px;
}
.btToonSlick .slick-slide {
    padding: 0 10px;
}

/* formCon */
.formRow  {
    margin: 0 -50px;
}
.formRow  > div {
    padding: 0 50px;
}
#formCon .lb {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin-top: 10px;
}
#formCon .form-control {
    border: 0px solid #333;
    height: 50px;
    border-bottom: 1px solid #333;
    border-radius: 0px;
    box-shadow: 0 0 0;
    margin-top: 8px;
    padding: 8px;
    font-size: 16px;
}
#formCon textarea.form-control {
    border: 1px solid #333;
    height: auto;
}
#formCon .smtBtn {
    background-color: #00d560;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border: 0px;
    color: #111;
    width: 100%;
    text-align: center;
}
@media (max-width:768px) {
    #formCon .form-control:not(textarea) {
        margin-top: 0px;
    }
}



/* profItem */
.profItem {
    position: relative;
}
.profItem + .btnWrp {
    gap: 10px;
}
.profItem + .btnWrp .btnItem {
    min-width: 150px;
}
.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 .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: 30px;
        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;
    }
}
@media (max-width:992px){
    .profItem .prfTxt {
        padding: 0 0 40px;
    }
}
@media (max-width:500px){
    .profItem .wBox {
        margin-top: 15px !important;
        padding-top: 15px;
    }
    .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 .prfImgBig img {
        border-radius: 5px;
        width: 100%;
    }
    .profItem + .btnWrp .btnItem {
        min-width: 120px;
    }
}


/* 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;
    }
}


/* artistItem */
.artistItemList > li {
    padding: 15px;
}
.artistItemList .artistItem ,
.artistItemList .artistItem .dft,
.artistItemList .artistItem .at_logo .at_logo_arr .dft {
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.artistItemList .artistItem {
    padding: 40px 30px;
    border-radius: 15px;
    background-color: #f7f7f7;
    cursor: pointer;
}
.artistItemList .artistItem .at_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.artistItemList .artistItem .at_logo .at_logo_img img {
    width: 100px;
}
.artistItemList .artistItem .at_logo .at_logo_arr .dft {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(24, 24, 24, 0.05);
    border-radius: 50%;
    color: rgba(24, 24, 24, 0.4);
}

@media (min-width:992px){
    .artistItemList .artistItem:hover {
        background-color: #222;
    }
    .artistItemList .artistItem:hover .dft {
        color: #fff !important;
    }
    .artistItemList .artistItem:hover .at_logo .at_logo_arr .dft {
        background-color: rgba(255,255,255,.1);
        transform: rotate(180deg);
    }
}