/* 동글이가 회전하고 수직으로 올라가면서 페이지가 페이드인하는 로딩화면을 만들어보자! */
* {
    margin: 0;
    padding: 0;
}

body,
html {
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    /* scroll-behavior: smooth; */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    max-width: 100%;
}

button,
input {
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    outline: 0;
    cursor: pointer;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    height: 160px;
    background: #EBEBEB;
    border-radius: 4px;
}

body::-webkit-scrollbar-track {
    background: rgb(0, 0, 0, 0.8);
}

#wrap {
    width: 100%;
    margin: 0 auto;
}

.center {
    max-width: 1400px;
    margin: 0 auto;
}

/* topBtn */
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 5px solid lightgray;
    border-radius: 60px;
    text-align: center;
    z-index: 9998;
    cursor: pointer;
    display: none;
}

#topBtn i {
    line-height: 60px;
    font-size: 2.5rem;
    color: lightgray;
}

/* header */
/* header 섹션의 z-index는 2000부터 부여*/
header {
    position: fixed;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2000;
}

.headerBody {
    position: relative;
    max-width: 1800px;
    height: 60px;
    margin: 0 auto;
}

header .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
}

header .logo a img {
    width: 100%;
}

#gnb {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#gnb li {
    position: relative;
    float: left;
    font-size: 1rem;
    margin-right: 40px;
}

#gnb li a {
    color: #505050;
}

#gnb li::after {
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    background-color: #505050;
    transition: 0.3s;
}

#gnb li:hover::after {
    width: 100%;
}

/* Intro */
#intro {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

/* intro 섹션의 z-index는 90~부터 부여*/
#intro .spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 660px;
    height: 660px;
    max-width: 660px;
    max-height: 660px;
    border-radius: 50%;
    background-color: black;
    z-index: 98;
}

.spotlight .introEyes {
    display: inline-block;
    width: 100px;
    margin-bottom: 20px;
}

.spotlight .introEyes img:first-child {
    width: 12%;
    float: left;
}

.spotlight .introEyes img:last-child {
    width: 12%;
    float: right;
}

.spotlight .introTxt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1.2rem;
    font-weight: lighter;
}

.spotlight .introTxt h2 {
    animation: wiggle ease-in-out 1.5s infinite;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-2deg);
    }

    20% {
        transform: rotate(2deg);
    }

    30% {
        transform: rotate(-2deg);
    }

    40% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.spotlight .introTxt h2,
.spotlight .introTxt strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    text-shadow:
        0 0 7px #F8B62C,
        0 0 10px #F8B62C,
        0 0 21px #F8B62C,
        0 0 42px #F8B62C;
    color: #ffffff;
}

.spotlight .introTxt p {
    margin: 20px 0;
}

.spotlight .introTxt strong {
    margin-bottom: 10px;
    animation: name ease-in-out 2s;
    animation: zoomNout ease-in-out 1.5s infinite;
}

@keyframes zoomNout {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes name {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

.spotlight .introTxt span {
    display: inline-block;
}

.elipse {
    position: absolute;
    border-radius: 100%;
}

#introElipse1 {
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background-color: #F8B62C;
    animation: motion 1s ease-in-out 0s infinite alternate;

}

#introElipse2 {
    top: 22%;
    left: 10%;
    width: 230px;
    height: 230px;
    background-color: #EBEBEB;
    border: 1px solid gray;
    filter: blur(2px);
    z-index: 96;
    animation: motion-big 2.5s ease-in-out 0s infinite alternate;
}

#introElipse3 {
    top: 40%;
    left: 22%;
    width: 100px;
    height: 100px;
    background-color: black;
    filter: blur(1px);
    z-index: 97;
    animation: motion 1.5s ease-in-out infinite alternate-reverse;
}

#introElipse4 {
    top: 73%;
    left: 58%;
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border: 1px solid #707070;
    z-index: 100;
    animation: motion-big 2s ease-in-out 0s infinite alternate;
}

#introElipse5 {
    top: 40%;
    left: 65%;
    width: 300px;
    height: 300px;
    /* border: 1px solid black; */
    background-color: #CFCFCF;
    filter: blur(1.5px);
    animation: motion-big 3s ease-in-out 0s infinite alternate;
}

#introElipse6 {
    top: 18%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-color: rgba(248, 182, 44, 60%);
    filter: blur(3px);
    z-index: 95;
    animation: motion-big 4s ease-in-out 0s infinite alternate-reverse;
}

#introElipse7 {
    top: 6%;
    right: 15%;
    width: 80px;
    height: 80px;
    border: 1px solid #707070;
    background-color: #CFCFCF;
    filter: blur(2px);
    z-index: 94;
    animation: motion 3s ease-in-out 0s infinite alternate;
}

#introElipse8 {
    bottom: -10%;
    right: -5%;
    width: 360px;
    height: 360px;
    background-color: black;
    animation: motion-big 2.5s ease-in-out infinite alternate-reverse;
}

#introElipse9 {
    top: -25%;
    left: 30%;
    width: 300px;
    height: 300px;
    background-color: #F8B62C;
    filter: blur(4px);
    animation: motion-big 2s ease-in-out infinite alternate;
}

#introElipse10 {
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background-color: black;
    filter: blur(3px);
    animation: motion-big 2s ease-in-out infinite alternate;
}

@keyframes motion {
    0% {
        transform: translate(0, -12px);
    }

    100% {
        transform: translate(0, 12px);
    }
}

@keyframes motion-big {
    0% {
        transform: translate(0, -20px);
    }

    100% {
        transform: translate(0, 20px);
    }
}

@keyframes elipse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* portfolioSec */
#portfolioSec {
    clear: both;
}

#portfolioSec h2 {
    display: none;
}

/* mockUp Swiper */
.mockupWrap {
    float: left;
    width: 70%;
    height: 100vh;
}

.mockupWrap .mockupSwiper {
    height: inherit;
}

.mockupSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 50% 50%;
    background-image:
        radial-gradient(18% 18% at 25% 25%, #EBEBEB 100%, #0000 0%),
        radial-gradient(18% 18% at 75% 75%, #EBEBEB 100%, #0000 0%);
    background-size: 200px 200px;
    background-color: #ffffff;
    background-attachment: fixed;
}

.mockup {
    width: 55%;
}

/* contentSwiper */
.contentWrap {
    float: right;
    width: 30%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: #F8B62C;
    box-sizing: border-box;
}

.portfolioTitle {
    margin-bottom: 50px;
}

.portfolioTitle .eyes {
    margin: 0 auto 0;
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.portfolioTitle .eyes img {
    width: 12%;
}

.portfolioTitle h4 {
    font-size: 2.5vw;
    font-weight: 900;
    color: #ffffff;
}

.contentSwiper .swiper-wrapper .swiper-slide {
    text-align: center;
    box-sizing: border-box;
}

.swiper-slide .slide-content {
    word-break: keep-all;
}

.slide-content .portfolioContent {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.slide-content .portfolioContent h5 {
    font-size: 1.8vw;
    margin-bottom: 30px;
}

.slide-content .portfolioContent ul {
    text-align: center;
    box-sizing: border-box;
}

.slide-content .portfolioContent ul li {
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.slide-content .portfolioContent ul li strong::after {
    content: ':';
    margin: 0 5px;
}

.slide-content .portfolioContent ul li:nth-child(3)::after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    margin: 15px 0;
    background-color: #ffffff;
}

.slide-content .buttonWrap {
    width: 100%;
}

.slide-content .buttonWrap a.button {
    display: inline-block;
    box-sizing: border-box;
    padding: 8px 12px;
    background-color: #ffffff;
    border: 2px solid black;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.slide-content .buttonWrap a.button:last-of-type {
    margin: 0;
}

.contentSwiper .swiperNav .swiper-button-next,
.contentSwiper .swiperNav .swiper-button-prev {
    color: #ffffff;
    z-index: 1;
}

/* .contentSwiper .swiperNav .swiper-button-next{margin-right: 20px;}
.contentSwiper .swiperNav .swiper-button-prev{margin-left: 20px;} */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2.5rem;
}

/* storyBoard */
.popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow: hidden;
}

.storyBoardCon {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 75vh;
    border-radius: 40px;
    background-color: #ffffff;
    text-align: center;
    overflow: scroll;
    display: none;
}

.storyBoardCon::-webkit-scrollbar {
    display: none;
    /* overflow: hidden; */
}

/* .storyBoardCon .storySlide {} */

.storyBoardCon .storySlide>img {
    display: block;
    width: inherit;
    margin-bottom: 2px;
}

.storyBoardCon .storySlide span {
    position: absolute;
    color: #ffffff;
}




/* workSec */
#workSec {
    position: relative;
    clear: both;
    padding: 150px;
    /* height: 100vh; */
}

#workSec .workTitle {
    margin-bottom: 100px;
    text-align: center;
}

#workSec .workTitle span,
#workSec .workTitle strong {
    display: block;
    font-size: 1.4rem;
}

#workSec .workTitle strong {
    font-size: 1rem;
}

#workSec .workTitle h2 {
    font-size: 2.4rem;
}

#workSec .workTitle h2::after {
    margin: 5px auto;
    content: '';
    display: block;
    width: 21%;
    height: 3px;
    background-color: #F8B62C;
}

.swiper.workSwiper {
    display: inline-block;
    width: 100%;
    height: fit-content;
    margin-bottom: 100px;
    padding: 0 20px;
    box-sizing: border-box;
}

.swiper.workSwiper .swiper-wrapper {
    padding: 10px 0;
}

.workSwiper .swiper-slide {
    height: 250px;
    text-align: center;
    font-size: 1rem;
    color: grey;
    background: lightgray;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 5px 3px 8px rgb(0, 0, 0, 0.4);
}

.workSwiper>.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workSwiper>.swiper {
    margin-left: auto;
    margin-right: auto;
}

#workSec .swiper-button-next {
    right: 3%;
}

#workSec .swiper-button-prev {
    left: 3%;
}

#workSec .swiper-button-next,
#workSec .swiper-button-prev {
    top: 55%;
    color: black;
}

/* mid-banner */
.mid-banner {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: black;
}

.mid-banner>.eyes {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
}

.mid-banner.blinkActive>.eyes {
    animation: blink 2s;
}

.mid-banner>.eyes>.eye {
    position: relative;
    display: flex;
    align-items: center;
}

.mid-banner>.eyes>.eye .lightEffect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 180%;
    height: 180%;
    border-radius: 20px;
    background-color: rgba(254, 231, 168, 60%);
    filter: blur(15px);
}

.mid-banner>.eyes>.eye>img {
    width: 20px;
}

@keyframes blink {

    0%,
    30%,
    50%,
    60%,
    64%,
    85%,
    90% {
        opacity: 0;
    }

    40%,
    55%,
    63%,
    100% {
        opacity: 1;
    }
}



/* about Me */
#aboutMeSec {
    position: relative;
    /* border: 3px solid red;
    box-sizing: border-box; */
}

#aboutMeSec>h2 {
    display: none;
}

#aboutMeSec>.introduce {
    width: 100%;
    padding: 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.introduce .introduceTitle1 .titleBox,
.introduce .introduceTitle2 .titleBox {
    width: 100%;
    position: relative;
    text-align: center;
}

.introduce .introduceTitle1 .titleBox {
    left: -100%;
}

.introduce .introduceTitle2 .titleBox {
    right: -100%;
}

.introduce .introduceTitle1 .titleBox h3,
.introduce .introduceTitle2 .titleBox h3 {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: #F8B62C;
    -webkit-text-stroke-width: 1.8px;
    -webkit-text-stroke-color: black;
}

.introduce .introduceTitle1 .titleBox h3 {
    margin-right: 15px;
}

.introduce .introduceTitle2 .titleBox h3 {
    margin-left: 15px;
}

.introduce .introduceTitle1 .titleBox span,
.introduce .introduceTitle2 .titleBox span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #F8B62C;
}

/* aboutMeSec 배경 하단 검은부분 */
#aboutMeSec::after {
    content: '';
    display: block;
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: 0;
    background-color: black;
    z-index: -1;
}

#aboutMeSec .profileCard {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 50%;
    height: 500px;
    margin: 0 auto;
    padding: 70px;
    border-radius: 70px;
    background-color: #F8B62C;
    box-shadow: 0px -1px 20px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 50;
}

.profileCard h3 {
    width: 100%;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.profileCard .myprofile {
    width: 40%;
    max-width: 40%;
    box-sizing: border-box;
}

.myprofile .profilePic {
    display: inline-block;
    width: 200px;
    max-width: 200px;
    height: 270px;
    max-height: 270px;
    border: 3px solid black;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.myprofile .profilePic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profileCard button {
    display: block;
    padding: 16px 45px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #ffffff;
    border: 3px solid black;
    font-size: 1.3rem;
    font-weight: bold;
}

.profileCard .profile-content {
    padding-left: 30px;
    width: 60%;
    max-width: 60%;
    text-align: left;
    box-sizing: border-box;
}

.profile-content>div {
    margin-bottom: 10px;
}

.profile-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-content ul li {
    margin: 5px 0;
    font-size: 1.2rem;
    word-break: keep-all;
}

/* skills */
#skillsSec {
    position: relative;
    background-color: black;
    color: #ffffff;
    text-align: center;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 100px;
}

#skillsSec h2 {
    display: none;
}

#skillsSec article .skillContent:first-child {
    margin-bottom: 80px;
}

.skillContent .skillTxt {
    margin-bottom: 60px;
}

.skillContent .skillTxt span {
    display: inline-block;
    font-size: 1.1rem;
}

.skillContent .skillTxt h3 {
    display: inline-block;
    margin: 0 5px;
    font-size: 1.4rem;
    color: #F8B62C;
}

.skillContent ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 30vw;
    margin: 0 auto;
    box-sizing: border-box;
}

.skillContent ul li {width: 10%;}

.skillContent ul li img {width: 100%;}

.skillContent .webStandard {display: inline-block;}

.skillContent .webStandard h3 {
    display: block;
    margin-bottom: 50px;
}

.skillContent .validator {
    display: inline-block;
    animation: big ease-in-out 0.7s infinite alternate;
}

@keyframes big {
    0% {scale: 1;}
    100% {scale: 1.2;}
}

/* contact */
#contactSec {
    position: relative;
    text-align: center;
    background-color: #F8B62C;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

#contactSec>h2 {
    display: none;
}

#contactSec .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#contactSec .center .contactTitle {
    margin: 0 auto;
    margin-bottom: 80px;
}

#contactSec .center .contactTitle .eyes {
    margin: 20px auto;
    display: flex;
    width: 150px;
    justify-content: space-between;
    align-items: center;
}

#contactSec .center .contactTitle .eyes img.wink {
    height: 50px;
    animation: wink ease 2s infinite;
}

@keyframes wink {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(30deg);
    }

    45% {
        transform: rotate(-20deg);
    }

    60% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    85%,
    95%,
    100% {
        transform: rotate(0deg);
    }
}

/* 콘택트타이틀 텍스트크기 조절하자! */


#contactSec .center .contactTitle .contact>h3 {
    display: block;
    font-size: 3rem;
}

#contactSec .center .contactTitle strong {
    font-size: 1.6rem;
}

#contactSec .center article {
    display: flex;
    align-items: center;
    justify-content: center;

}

#contactSec .center>article h4 {
    display: none;
}

#contactSec .flip {
    display: inline-block;
    width: 360px;
    max-width: 360px;
    height: 360px;
    max-height: 360px;
    margin-right: 100px;
    perspective: 1100px;
    text-align: center;
}

#contactSec .flip:last-child {
    margin: 0;
}

.flip .card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.3s;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 10px 10px 10px rgba(142, 77, 20, 0.3);
}

.flip .card .front,
.flip .card .back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
}

.flip .card .front img {
    width: 35%;
    margin-bottom: 15px;
}

.flip .card .front h5 {
    font-size: 2rem;
}

.flip .card .front span {
    font-size: 1.5rem;
}

.flip .card .back {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transform: rotateY(180deg);
    cursor: pointer;
}

.flip .card .back a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
}

.flip .card .back a h6 {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
}

.flip .card .back span {
    display: block;
    font-size: 1.8rem;
}

.flip .card .back strong {
    font-size: 1.5rem;
}

.flip .card .back img {
    width: 40%;
    margin: 8px 0;
}

.flip:hover .card {
    transform: rotateY(180deg);
}

.flip:hover .card .back span {
    transition: 0.3s ease-out;
    color: #F8B62C;
}

/* QR popup */
#qrPopbg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 90%);
    z-index: 9999;
}

#qrPop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    text-align: center;
}

#qrPop img {
    display: block;
    max-width: 100%;
    max-height: 360px;
    margin-bottom: 20px;
}

#qrPop span {
    display: inline-block;
    font-size: 2rem;
    font-weight: lighter;
    color: #ffffff;
    cursor: pointer;
}

#qrPop span:hover {
    margin-bottom: -1px;
    border-bottom: 1px solid #ffffff;
}

/* bg elipse */
#contactSec .elipse {
    background-color: rgba(242, 217, 217, 60%);
    mix-blend-mode: multiply;
}

#contanctElipse1 {
    top: -20%;
    left: -5%;
    width: 450px;
    height: 450px;
}

#contanctElipse2 {
    bottom: -20%;
    left: 4%;
    width: 400px;
    height: 400px;
}

#contanctElipse3 {
    bottom: -10%;
    right: -2%;
    width: 560px;
    height: 560px;
}

#contanctElipse4 {
    top: 10%;
    right: 10%;
    width: 250px;
    height: 250px;
}

#contanctElipse5 {
    top: 28%;
    left: 20%;
    width: 180px;
    height: 180px;
}



/* footer */
footer {
    width: 100%;
    height: 150px;
    background-color: black;
    color: #ffffff;
    text-align: center;
}

footer .center {
    position: relative;
    height: 100%;
}

.footer-logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer-logo a {
    display: block;
    width: 100%;
}

.footer-logo a img {
    display: block;
    width: 80%;
}

.footer-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    text-align: center;
    font-weight: lighter;
    color: rgba(255, 255, 255, 60%);
    box-sizing: border-box;
}

.footer-info span {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-info strong {
    margin-bottom: 5px;
}

.footer-info .copyright {
    display: block;
    font-size: 0.8rem;
}

/* responsive-------------------------------------------------------------*/

@media screen and (max-width:1024px) {
    #topBtn {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }

    #topBtn i {
        line-height: 50px;
        font-size: 2rem;
    }

    /* portfolioSec */
    .portfolioTitle {
        margin-bottom: 30px;
    }

    .slide-content .portfolioContent {
        margin-bottom: 30px;
    }

    .slide-content .portfolioContent ul li {
        font-size: 0.8rem;
    }

    .slide-content .buttonWrap a.button {
        font-size: 0.8rem;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 2rem;
    }

    /* workSec */
    #workSec .workTitle span {
        font-size: 1.2rem;
    }

    #workSec .workTitle h2 {
        font-size: 1.8rem;
    }

    #workSec .workTitle strong {
        font-size: 0.8rem;
    }
}

/* mobile */
@media screen and (min-width:320px) and (max-width: 768px) {}