/*
    ======================================
    + Creators Style CSS
        - Create : 2023. 06. 25
    ======================================
*/

/* Import */
@import url('https://cdn.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');
/* // Import */

/* Header */
.header-button + label[for="header-button"] > span {
    background: #fdfdfd;
}
/* // Header */

/* 1024 ~ Resolution */
/* Intro Section */
.intro-section {
    width: 100%;
    height: 100vh;
    background: #111420;
}

.intro-contents { width: 100%; height: 50vh; transition: all 0.5s; }

.title {
    color: #fff;
    font-family: 'PyeongChangPeace-Bold';
    text-align: center;
    font-size: 8.5rem;
}

.subtitle {
    color: #fff;
    font-family: 'Galmuri9';
    text-align: center;
    font-size: 1.8rem;
    font-weight: lighter;
}

.subtitle > span {
    font-family: 'Galmuri9';
    color: #4fffbe;
}

.contents-background {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 50.5vh;
    background: url(/static/images/background/wave.png);
    background-size: cover;
    background-position: center;
}
/* // Intro Section */

/* Contents Section */
.contents-section {
    display: table;
    width: 100%;
    background: #0d0e12;
}

/* Before Contents */
.before-contents-section {
    height: 20vh;
    margin-bottom: 8%;
}

.animation-text {
    position: relative;
    transform: translateY(-50%);
    top: 50%;
    width: 100%;
    max-width: 100%;
    height: 350px;
    overflow: hidden;
} 

@-webkit-keyframes TextAnimationSidetoSide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes TextAnimationSidetoSide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animation-text .text-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    -webkit-animation: TextAnimationSidetoSide 60s linear infinite;
            animation: TextAnimationSidetoSide 60s linear infinite;
}

.before-contents-title {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: #fff;
    opacity: 0.3 !important;
    font-size: 15rem;
    font-weight: 900;
}

.before-contents-title > span {
    color: #4fffbe;
}
/* // Before Contents */

/* Contents */
.contents-wrap {
    display: table;
    width: 100%;
    height: 100vh;
}

.contents-title-wrap {
    padding-top: 100px;
}

.contents-title {
    color: #fff;
    margin-left: 5%;
    letter-spacing: 1.5px;
    font-size: 5rem;
    font-weight: bold;
}

.contents-title > span {
    color: #4263f7;
    margin-left: 8px;
}

.contents-line {
    margin: 20px 0 0 5%;
    width: 50%;
    height: 3.5px;
    border: none;
    background: #4fffbe;
}

/* Profiles */
.profile-grid {
    width: 85%;
    flex-wrap: wrap;
    margin: 50px auto 30px;
    justify-content: space-around;
}

.no-data {
    margin: 10% auto;
    font-size: 3rem;
    color: #fff;
}

.profile-grid.nopage {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.profile {
    width: 325px;
    height: 325px;
    margin-bottom: 35px;
}

.profile-wrap {
    width: 0;
    height: 0;
}

.profile-image {
    margin: 10px 25px 0;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0;
    transform: scale(1.0);
    transition: 0.5s;
}

.profile-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    transform: scale(1.0);
    opacity: 0;
    transition: 0.5s;
}

.profile-image:hover {
    transform: scale(1.035);
    box-shadow: 3px 3px 0 #4263f7;
}

.profile-image:hover:after {
    opacity: 0.45;
    transform: scale(1.035);
}

.info {
    visibility: hidden;
    font-family: 'Pretendard-Regular';
    line-height: 25px;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    z-index: 2;
    transition: 0.5s;
}

.none {
    visibility: hidden;
}

.manager {
    color: #4fffbe;
    font-family: 'GmarketSansMedium';
    font-weight: bold;
    font-size: 12.5px;
}

.profile-image:hover > .info{
    visibility: visible;
    opacity: 1;
}

.profile-name {
    position: relative;
    transform: translateY(-50%);
    top: 93.8%;
    font-size: 20px;
    text-align: center;
    color: white;
    transition: all 0.5s;
}
/* // Profiles */

/* Pagination */
.page-number {
    color: #adadad;
    font-size: 1.4rem;
    font-family: 'Pretendard-Regular';
    cursor: pointer;
    transition: all 0.5s;
}

.page-number:hover {
    color: #fff;
}

.page-number.active {
    position: relative;
    color: #4fffbe;
}

.page-number:not(:first-child) {
    margin-left: 25px;
}
/* // Pagination */
/* // Contents */
/* // Contents Section */
/* // 1024 ~ Resolution */

/* ~ 480 Mobile Resolution */
@media (min-width: 320px) and (max-width: 480px) {
    /* Intro Section */
    .intro-contents {
        height: 65vh;
    }

    .subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.8%;
    }

    .title {
        font-size: 3.5rem;
    }
    
    .contents-background {
        height: 35.5vh;
    }
    /* // Intro Section */
    
    /* Contents Section */
    /* Before Contents */
    .before-contents-section {
        height: 30vh;
        margin-bottom: -35%;
    }
    
    .before-contents-title {
        font-size: 8.5rem;
    }
    /* // Before Contents */

    /* Contents */
    .contents-title {
        padding-top: 0;
        margin: 0;
        text-align: center;
        font-size: 2.65rem;
    }
    
    .contents-line {
        margin: 10px auto;
        width: 90%;
    }

    /* Profiles */
    .profile-grid {
        margin-top: 30px;
    }

    .profile-contents-wrap > .row {
        width: 100%;
        flex-wrap: wrap;
    }

    .profile {
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }

    .profile:nth-child(3),
    .profile:nth-child(4) {
        margin-bottom: 0;
    }


    .profile-image {
        margin: 2.5px 16px 0;
        width: 150px;
        height: 150px;
    }

    .profile-image::after {
        width: 150px;
        height: 150px;
    }

    .profile-image:hover {
        transform: none;
        box-shadow: none;
    }

    .info {
        font-size: 0.72rem;
    }

    .manager {
        font-size: 10px;
    }

    .profile-name {
        top: 95%;
        font-size: 16.5px;
    }

    .none {
        display: none;
    }
    /* // Profiles */
    /* // Contents */
    /* // Contents Section */
}
/* // ~ 480 Mobile Resolution */

