::-moz-selection {
    background-color: rgba(210, 255, 30, .8);
}

::selection {
    background-color: rgba(210, 255, 30, .8);
}

section {
    overflow: hidden;
}

.wrapper, #work_wrap, #contact_wrap {
    width: 100%;
    background-image: url(../images/bg.gif);
}


/* nav */
#navBar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
}

.navBarBg::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg.gif);
    opacity: .9;
}

.logo {
    width: 70px;
    padding-top: 2rem;
    position: relative;
    left: 10%;
}

.menu-toggle {
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    cursor: none;
}

.menu-toggle.on .one {
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.on .two {
    opacity: 0;
}

.menu-toggle.on .three {
    -ms-transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    transform: rotate(-45deg) translate(7px, -7px);
}

.one,
.two,
.three {
    width: 100%;
    height: 3px;
    background: #FFDA18;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

nav ul {
    margin: 10% auto;
    text-align: center;
}

nav ul.hidden {
    display: none;
}

nav ul a {
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    text-decoration: none;
    color: #fff;
    line-height: 1.8em;
    width: 100%;
    display: block;
}

nav ul a:hover {
    color: #FFDA18;
    letter-spacing: 4px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.menu-section {
    height: 0;
    padding-top: .5rem;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.menu-section.on {
    z-index: 20;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
}

/* title */
.title {
    color: transparent;
    -webkit-text-stroke: 1px #E7E7FA;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2.8vw;  
    text-align: center;
}

.title::after {
    letter-spacing: -2.8vw;
}

/* aboutMe */
#about_wrap {
    width: 100%;
    height: 100vh;
    padding-top: 20vh;
    position: relative;
}

#about_wrap .title {
    position: fixed;
    top: 36vh;
    left: 0;
    right: 0;
}


.sophiaArea {
    width: 100%;
    padding: 0 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    z-index: 1;
}

.sophiaBox,
.sophiaInfo {
    width: 100%;
    margin: 0 auto;
}

.sophia {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.sophiaTit {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.picBox {
    padding: .2%;
    position: relative;
}

.picBox::after {
    content: "";
    background-image: url(../images/Sophia.png);
}


.animatedText {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    color: #000;
    -webkit-animation: textRotation 12s linear infinite;
            animation: textRotation 12s linear infinite;
}

@-webkit-keyframes textRotation {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes textRotation {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.animatedText span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: -10.5%;
    -webkit-transform-origin: 0 60%;
        -ms-transform-origin: 0 60%;
            transform-origin: 0 60%;
}

.iconStart {
    position: absolute;
    width: 12%;
    top: -10%;
    right: -10%;
}

.sophiaInfo ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.sophiaInfo ul li {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.line {
    width: 20%;
    border-bottom: 1px solid #000;
}

.infoDec {
    padding: 1.2rem 1.2rem 1.2rem 5rem;
    border-radius: 4rem;
    background-color: rgb(210, 255, 30, .7);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
}

.decoSvg {
    width: 10%;
}

.scrollBox {
    width: 100%;
    position: absolute;
    bottom: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scrollTit {
    color: #888;
    margin-bottom: .3rem;
}

.scrollLine {
    width: 1px;
    height: 60px;
    background-color: #cacaca;
}

.scrollPointer {
    width: 1px;
    height: 10px;
    background-color: #000;
    -webkit-animation: line 1s .5s linear infinite;
    animation: line 1s .5s linear infinite;
}

@-webkit-keyframes line {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
}

@keyframes line {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
}

/* project */
#work_wrap {
    width: 100%;
    position: relative;
    padding-bottom: 8vh;
}

.projectTagBar {
    position: sticky;
    top: 18vh;
    z-index: 1;
}

.projectTagBar ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: -3.5rem;
}

.projectTagBar ul li {
    margin: 0 0.25%;
    width: 12%;
    padding: 0.8% 0;
    text-align: center;
    background-color: rgba(255, 51, 102, 0.9);
    cursor: pointer;
}

.projectTagBar ul li:hover,
.projectTagBar ul li.active {
    background-color: #FFDA18;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.projectArea {
    width: 100%;
}

.project_wrap {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.projectBox {
    width: 45%;
    margin: 0 1em;
    padding-bottom: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.projectBox a ul li {
    margin-top: .8rem;
}

.projectPic {}

.projectTag {
    margin: .5rem 0;
}

.tagBg {
    background-color: #cacaca;
    padding: .2rem .5rem;
    margin-right: .2rem;

}

.projectTit {
    position: relative;
    display: inline-block;
}

.projectTit::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    margin-top: 0.5rem;
    background-color: #FFDA18;
    -webkit-transition: width .3s .1s;
    -o-transition: width .3s .1s;
    transition: width .3s .1s;
}

.projectBox a:hover .projectTit::after {
    width: 100%;
}

.mt3 {
    margin-top: 3%;
}

.mt8 {
    margin-top: 8%;
}

.p_content_info {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.p_content_infoBox {
    width: 50%;
    padding-right: 1.5em;
}

.p_content_picBox {
    width: 100%;
    text-align: center;
}

.p_content_picBox img {
    -o-object-position: top;
    object-position: top;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.p_title {
    margin: 3rem 0 .3rem;
    text-align: left;
}
.p_title02 {
    margin: .8rem 0;
    text-align: left;
}
.p_title_desc {
    text-align: justify;
    line-height: 1.8rem;
}

.p_title_desc a:hover {
    color: #FF3366;
}

.p_review {
    display: inline-block;
    padding-top: 1em;
    margin-bottom: 3%;
}

/* introduce */

/* contact */
#introduce_wrap,
#contact_wrap {
    width: 100%;
    padding-bottom: 2.5%;
    position: relative;
}
#introduce_wrap {
    margin-top: 4%;
}
.contactInfo {}

.introduceInfo,
.contact_Tit {
    width: 59%;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: justify;
    margin-bottom: 1em;
}


/* Popup */
.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 217, 0, .7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 50;
}

.cd-popup::-webkit-scrollbar {
    display: none;
}

.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -o-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
    overflow-x: hidden;
    border: none;
    position: relative;
    width: 90% !important;
    margin: 2em auto;
    padding: 4em 1em;
    background: #fff;
    border-radius: .25em .25em .4em .4em;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cd-popup-container p {
    margin: 0;
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    right: 8px;
    width: 30px;
    height: 30px;
    padding-top: 1em;
}

.cd-close-button {
    color: #545454;
    border-bottom: none;
}

.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}

.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}

.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* projectContent */

.projectContent {
    background: #ffffff !important;
    height: auto;
    margin: 100px auto;
    max-width: 85%;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: rgba(26, 26, 26, 0.1) 0 1px 3px 0;
    box-shadow: rgba(26, 26, 26, 0.1) 0 1px 3px 0;
}

/* marquee */
.scroll {
    display: flex;
    /* height: 40px; */
}

.scroll .text {
    width: 100%;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*toTop*/
.toTop-arrow {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50% 0;
    opacity: 0.8;
    background: #0C06C7;
    color: #fff;
    cursor: pointer;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding-top: 5px;
    z-index: 1;
}

.toTop-arrow::before,
.toTop-arrow::after {
    width: 10px;
    height: 3px;
    border-radius: 5px;
    top: 10px;
    background: #fff;
    position: absolute;
    content: "";
}

.toTop-arrow::before {
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
    left: 1.1rem;
}

.toTop-arrow::after {
    -webkit-transform: rotate(45deg) translate(0, -50%);
    -ms-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%);
    right: 1.1rem;
}

.toTop-arrow:focus {
    outline: none;
}


/* mouse */
#mouse_circle {
    position: absolute;
    width: 52px;
    height: 52px;
    margin: -26px 0px 0px -26px;
    border: 1px solid #0C06C7;
    border-radius: 50% 2%;
    pointer-events: none !important;
    -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 0);
            box-shadow: 0 0 16px rgba(255, 255, 255, 0);
    z-index: 99;
}