

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    font-family: 'Karla', sans-serif;
    font-weight: 300;
    color: #827673;
    background: #0A0A0A;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

input,
textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 15px 30px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 5px;
    height: 50px;
    background-color: #141211;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

label {
    position: relative;
    top: -20px;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a:focus {
    color: #fff;
    text-decoration: none;
}

main {
    overflow: hidden;
}


/*
* ----------------------------------------------------------------------------------------
* 02.KEYFRAME ANIMATION
* ----------------------------------------------------------------------------------------
*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes scroll-down {
    0% {
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
    49% {
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
    50% {
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
    100% {
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}

@keyframes scroll-down {
    0% {
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
    49% {
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
    50% {
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
    100% {
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.LOADDER PAGE
* ----------------------------------------------------------------------------------------
*/

.logox {
    display: block;
    text-align: center;
    padding-bottom: 150px;
}

.logox img {
    width: 100px;
}

#loadderwrap {
    position: fixed;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0e0f10;
    z-index: 999999;
}

#loadderwrap-status {
    display: table-cell;
    vertical-align: middle;
}

.loadderwrap-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loade {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -22px 0 0 -22px;
    font-size: 10px;
    text-indent: -12345px;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    border: 3px solid rgba(255, 255, 255, .2);
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.loade span {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -3px;
    left: -3px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


/*
* ----------------------------------------------------------------------------------------
* 04.CUSTOM CURSOR
* ----------------------------------------------------------------------------------------
*/

.cursor-center,
.cursor-center-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    z-index: 999;
}

.cursor-center {
    width: 8px;
    height: 8px;
    background-color: #fff;
    display: none;
}

.cursor-center-outline {
    width: 80px;
    height: 80px;
    background-color: red;
    mix-blend-mode: difference;
}


/*
* ----------------------------------------------------------------------------------------
* 05.MOBILE HEAD
* ----------------------------------------------------------------------------------------
*/

.mobile-head {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    background: linear-gradient(180deg, #151812 0%, transparent 100%);
    z-index: 999;
    display: none;
}


/*
* ----------------------------------------------------------------------------------------
* 05.MOBILE HEAD
    - BURGER MENU 
* ----------------------------------------------------------------------------------------
*/

.wrap-menumobile {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    z-index: 12;
}

.wrap-close {
    width: 33px;
    height: 50px;
    display: none;
    position: absolute;
    right: 10px;
    top: 5px;
}

.wrap-menumobile .menu-bar span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin: 10px auto;
    margin-left: 0;
    width: 35px;
    transition: all .1s;
}

.wrap-menumobile .menu-bar:hover span:nth-child(2) {
    margin-left: 10px;
}

#exitmenu:before,
#exitmenu:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 43px;
    width: 2px;
    background-color: #fff;
}

#exitmenu:before {
    transform: rotate(45deg);
}

#exitmenu:after {
    transform: rotate(-45deg);
}

.listmobile {
    padding-left: 30px;
}

.listmobile li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
}

.listmobile li a {
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
}

.listmobile li.active a {
    padding-left: 100px;
    color: rgba(255, 255, 255, 1);
}

.listmobile li.active a:before {
    content: "";
    height: 1px;
    background: #fff;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    left: 80px;
    right: auto;
    width: 250px;
    top: 12px;
}

.listmobile li.active a:after {
    content: "";
    position: absolute;
    display: block;
    top: 13px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}


/*
* ----------------------------------------------------------------------------------------
* 05.MOBILE HEAD
    - OVERLAY MENU MOBILE 
* ----------------------------------------------------------------------------------------
*/

.transparant {
    position: fixed;
    width: 100%;
    display: none;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 11;
}

.wrap-menulistmobile {
    position: absolute;
    top: 50%;
    left: 130px;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: auto;
}


/*
* ----------------------------------------------------------------------------------------
* 06.LEFT SIDE
* ----------------------------------------------------------------------------------------
*/

#left-sidewrap {
    width: 70%;
}


/*
* ----------------------------------------------------------------------------------------
* 07.HERO WRAP
* ----------------------------------------------------------------------------------------
*/

#hero-section {
    background: #0A0A0A;
}

.hero-wrap {
    height: 100vh;
    width: 100%;
    text-align: center;
    position: relative;
    background: url(../image/user/centrorio.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.title-hero {
    position: absolute;
    top: 50%;
    width: 80%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.title-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 150px;
    color: #fff;
    letter-spacing: 3.5px;
}

.title-hero h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 150px;
    color: #fff;
    letter-spacing: 3.5px;
}


.title-hero p {
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.hero-wrap img {
    width: auto;
    height: 100vh;
    object-fit: cover;
}

.a-scroll {
    position: absolute;
    z-index: 10;
    left: 50%;
    width: .5rem;
    bottom: 0;
    height: 2.5rem;
    border-bottom: none;
    mix-blend-mode: exclusion;
}

.a-scroll::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;
}


/*
* ----------------------------------------------------------------------------------------
* 08.ABOUT SECTION WRAP
* ----------------------------------------------------------------------------------------
*/

#about-section {
    height: auto;
    background: #0A0A0A;
    position: relative;
    padding-top: 50px;
}

.aboutme-wrap {
    text-align: center;
    position: relative;
    height: 100vh;
    z-index: 1;
}

.aboutme-wrap h1 {
    font-size: 150px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    position: absolute;
    color: transparent;
    top: 50%;
    left: 50%;
    z-index: -1;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
}
.aboutme-wrap h2 {
    font-size: 150px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    position: absolute;
    color: transparent;
    top: 50%;
    left: 50%;
    z-index: -1;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
}

.poto-hero {
    height: 230px;
    width: 230px;
    margin: 50px auto;
    position: relative;
}

.poto-hero img {
    object-fit: cover;
    height: 230px;
    width: 230px;
    z-index: 2;
    border-radius: 100%;
}

.image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-out;
    filter: grayscale(1);
}

.image-hover:hover {
    opacity: 1;
}

.the-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.the-wrapper h3 {
    position: relative;
    width: 100%;
    color: #fff;
    line-height: 30px;
    letter-spacing: 1px;
    padding-top: 50%;
    font-weight: bold;
}

.the-wrapper p {
    position: relative;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 20px;
    letter-spacing: 1px;
}

.a-scroll-static {
    width: .1rem;
    margin: 30px auto;
    height: 6.5rem;
    position: relative;
    border-right: 1px solid #fff;
}

.a-scroll-static::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.bg-wrapper {
    position: absolute;
    top: 0;
    font-size: 0;
    width: 100%;
}

.bg-wrapper:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0.7) 80%, rgba(10, 10, 10, 0.8) 90%, rgba(10, 10, 10, 0.9) 95%, #0a0a0a 100%), linear-gradient(to right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0.7) 80%, rgba(10, 10, 10, 0.8) 90%, rgba(10, 10, 10, 0.9) 95%, #0a0a0a 100%), linear-gradient(to left, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0.7) 80%, rgba(10, 10, 10, 0.8) 90%, rgba(10, 10, 10, 0.9) 95%, #0a0a0a 100%), linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0.7) 80%, rgba(10, 10, 10, 0.8) 90%, rgba(10, 10, 10, 0.9) 95%, #0a0a0a 100%);
}

.bg-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}


/*
* ----------------------------------------------------------------------------------------
* 09.SKILL WRAP
* ----------------------------------------------------------------------------------------
*/

.mid-info {
    text-align: center;
    padding: 30px;
    border: 1px solid #141211;
    transition: background .3s;
}

.mid-info:nth-last-child(2) {
    background: #141211;
}

.mid-info:nth-last-child(1)>.icon {
    color: #24C269;
}

.mid-info:nth-last-child(1)>.title-skil {
    color: #24C269;
}

.mid-info:nth-last-child(2)>.icon {
    color: #ff6464;
}

.mid-info:nth-last-child(2)>.title-skil {
    color: #ff6464;
}

.mid-info:nth-last-child(3)>.icon {
    color: #7E7EF6;
}

.mid-info:nth-last-child(3)>.title-skil {
    color: #7E7EF6;
}

.icon {
    font-size: 30px;
    color: #fff;
}

.title-skil {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #fff;
}

.title-skil-p {
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.999);
}


/*
* ----------------------------------------------------------------------------------------
* 10.GAP ONE SECTION WRAP
* ----------------------------------------------------------------------------------------
*/

.wrap-gaponesection {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wrap-gaponesection img {
    width: 100%;
    filter: saturate(1);
}

.wrap-gapinfo {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 30px 50px;
    background: rgba(0, 0, 0, .8);
}

.wrap-gapinfo h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 30px;
}
.wrap-gapinfo h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 30px;
}

.wrap-gapinfo p {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.button-contact {
    display: inline-block;
    padding: 20px 30px 20px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
    font-weight: bold;
    transition: all .3s;
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    position: relative;
}

.button-contact span {
    padding-right: 10px;
}

.button-contact:after {
    content: "\f105";
    font-family: FontAwesome;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    font-size: 10px;
    line-height: 33px;
    text-align: center;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    top: 10px;
    left: 0;
}

.button-contact:hover {
    color: #fff;
    text-decoration: none;
}

.button-download {
    display: inline-block;
    padding: 20px 30px 20px 30px;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
    font-weight: bold;
    transition: all .3s;
    color: #fff;
    margin-top: 20px;
    position: relative;
}

.button-download span {
    padding-right: 10px;
}

.button-download:after {
    content: "\f107";
    font-family: FontAwesome;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    font-size: 10px;
    line-height: 33px;
    text-align: center;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    top: 10px;
    left: 0;
}

.button-download:hover {
    color: #fff;
    text-decoration: none;
}


/*
* ----------------------------------------------------------------------------------------
* 11.PROJECT SECTION WRAP
* ----------------------------------------------------------------------------------------
*/

#project-section {
    position: relative;
    height: auto;
}

.title-wrap {
    margin-top: 100px;
}

.title-wrap .title-headvproject {
    padding-left: 100px;
    display: inline-block;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.title-wrap h3 {
    padding-left: 100px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
    letter-spacing: 2px;
}

.title-wrap .title-headvproject:before {
    content: "";
    height: 1px;
    background: #fff;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    left: 50px;
    right: auto;
    width: 250px;
    top: 130px;
}

.title-wrap .title-v-project {
    font-size: 150px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    position: absolute;
    color: transparent;
    top: 100px;
    left: 20%;
    width: 100%;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
}


/*
* ----------------------------------------------------------------------------------------
* 11.PROJECT SECTION WRAP
    - ITEM PROJECT WRAP
* ----------------------------------------------------------------------------------------
*/

.wrapper-project {
    padding: 30px;
    margin-top: 100px;
    text-align: center;
}

.project-gal {
    transition: all .5s ease-in-out;
    column-gap: 30px;
    column-fill: initial;
    column-count: 2;
}

.project-gal .wrp-project {
    margin-bottom: 30px;
    display: inline-block;
    overflow: hidden !important;
    vertical-align: top;
    position: relative;
}

.project-gal .wrp-project img {
    width: 100%;
    position: relative;
    transition: all .5s ease-in-out;
    backface-visibility: hidden;
    opacity: .70;
}

.project-gal .wrp-project:hover img {
    opacity: .30;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.indent {
    display: block;
    font-size: 18px;
    font-weight: normal;
}

.project-gal .wrp-project .item-name h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    font-weight: bold;
}

.project-gal .wrp-project:hover .item-name h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.project-gal .wrp-project .item-name a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.project-gal .wrp-project .item-name a:hover {
    color: rgba(255, 255, 255, 1);
}

.project-gal .wrp-project .item-name a>p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

.project-gal .wrp-project:hover .item-name a>p {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0);
}

.item-name {
    position: absolute;
    left: 50%;
    padding: 25px 15px 30px;
    width: 270px;
    text-align: center;
    color: #fff;
    z-index: 2;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.button-project {
    display: inline-block;
    padding: 20px 30px 20px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
    font-weight: bold;
    transition: all .3s;
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    position: relative;
}

.button-project span {
    padding-right: 10px;
}

.button-project:after {
    content: "\f067";
    font-family: FontAwesome;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    font-size: 10px;
    line-height: 33px;
    text-align: center;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    top: 10px;
    left: 0;
}

.button-project:hover {
    color: #fff;
    text-decoration: none;
}


/*
* ----------------------------------------------------------------------------------------
* 12.RESUME SECTION WRAP    
* ----------------------------------------------------------------------------------------
*/

#resume-section {
    background-position: center;
    background: url(../image/asset/halftone.png);
    background-repeat: no-repeat;
    position: relative;
    height: auto;
}

#skill-container {
    background-position: center;
    background: url(../image/asset/halftone.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.title-wrap {
    margin-top: 100px;
}

.title-wrap .title-headvresume {
    padding-left: 100px;
    display: inline-block;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
}

.title-wrap h3 {
    padding-left: 100px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
    letter-spacing: 2px;
}

.title-wrap .title-headvresume:before {
    content: "";
    height: 1px;
    background: #fff;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    left: 50px;
    right: auto;
    width: 250px;
    top: 70px;
}

.title-wrap .title-v-resume {
    font-size: 150px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    position: absolute;
    color: transparent;
    top: 10px;
    left: 20%;
    width: 100%;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
}

.detail-resume {
    margin-top: 150px;
    padding: 0 80px 0 80px;
    color: #fff;
}

.detail-resume h2 {
    font-weight: bold;
}

.mini-info {
    color: rgba(255, 255, 255, 0.5);
}

.mini-info:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
}

.main-detailinfo {
    padding: 20px 80px 0;
}

.main-detailinfo h2 {
    font-size: 20px;
    color: #fff;
}

.main-detailinfo .date-p {
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.main-detailinfo .detail-p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.v-wrap {
    position: relative;
}


/*
* ----------------------------------------------------------------------------------------
* 12.RESUME SECTION WRAP  
    - SKILL GRAPH LIST  
* ----------------------------------------------------------------------------------------
*/

.skill {
    margin-top: 30px;
    position: relative;
    padding: 30px;
    padding-bottom: 50px;
}

.skill h4 {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
}

.round {
    transform: rotate(-90deg);
    transition: all 1s ease-in-out;
    fill: none;
    stroke: #7E7EF6;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
}

.round1 {
    transform: rotate(-90deg);
    transition: all 1s ease-in-out;
    fill: none;
    stroke: #ff6464;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
}

.round2 {
    transform: rotate(-90deg);
    transition: all 1s ease-in-out;
    fill: none;
    stroke: #24C269;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
}

.counts {
    font-size: 25px;
    position: absolute;
    top: 150px;
    display: block;
    text-align: center;
    left: 0;
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    color: rgba(255, 255, 255, 0.5);
}

.r-2 {
    background: #141211;
}

.wrap-skilgrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.detail-skil h4 {
    color: #fff;
}

.detail-skil p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    width: 80%;
    margin: 0 auto;
}


/*
* ----------------------------------------------------------------------------------------
* 13.CLIENT BRAND SECTION    
* ----------------------------------------------------------------------------------------
*/

#client-brand {
    background: #141211;
}

.owl-item img {
    width: 50% !important;
    transition: all .4s;
    filter: opacity(0.5);
    margin-left: 50px;
    object-fit: contain;
    height: 90px;
}

.owl-item img:hover {
    filter: opacity(1);
}

.wrp-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 90px;
}

.brand-carousel {
    margin-bottom: 30px;
    margin-top: 100px;
}

.brand-carousel .owl-dots .active span {
    width: 20px !important;
    transition: all .2s;
    background: #253759 !important;
}


/*
* ----------------------------------------------------------------------------------------
* 14.REVIEW SECTION
* ----------------------------------------------------------------------------------------
*/

#client-review {
    position: relative;
    background: #141211;
    padding-bottom: 50px
}

#slide-review {
    padding-top: 50px;
}

.item-review {
    padding: 50px;
    padding-left: 100px;
    height: auto;
    position: relative;
}

.item-review .qut:before {
    content: "\201C";
    -ms-flex-item-align: start;
    align-self: flex-start;
    left: 30px;
    top: -10px;
    opacity: .5;
    font-size: 130px;
    position: absolute;
}

.item-review .qut:after {
    content: "\201D";
    -ms-flex-item-align: end;
    align-self: flex-end;
    right: 30px;
    bottom: -80px;
    font-size: 130px;
    opacity: .5;
    position: absolute;
}

.item-review p {
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 1.7;
}

.client-warpdetail {
    width: 80px;
    height: 80px;
    padding-top: 30px;
    float: left;
}

.item-review img {
    display: block;
    height: 80px;
    width: 80px !important;
    object-fit: cover;
    margin-left: 0;
    border-radius: 50%;
}

.detail-w {
    padding-left: 30px;
    display: inline-block;
    padding-top: 20px;
}

.qut p {
    color: #fff;
}

.detail-w h3 {
    font-size: 18px;
    color: #fff;
}

.detail-w p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}


/*
* ----------------------------------------------------------------------------------------
* 15.CONTACT SECTION
* ----------------------------------------------------------------------------------------
*/

#contact-section {
    position: relative;
    padding-bottom: 100px;
    background-position: center;
    background: url(../image/asset/halftone.png);
    background-repeat: no-repeat;
    position: relative;
    height: auto;
}


/*
* ----------------------------------------------------------------------------------------
* 15.CONTACT SECTION
    - ITEM CONTACT DETAIL
* ----------------------------------------------------------------------------------------
*/

.wrap-contactmini {
    padding-left: 80px;
    padding-top: 150px;
}

.wrap-contactmini h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.icons {
    font-size: 20px;
}

.listdetailcontact {
    padding-left: 0;
}

.listdetailcontact li {
    padding-bottom: 30px;
    list-style: none;
}

.listdetailcontact li .text-info {
    padding-left: 25px;
    font-size: 18px;
    color: #fff;
    display: inline-block;
    position: absolute;
}


/*
* ----------------------------------------------------------------------------------------
* 15.CONTACT SECTION
    - CONTACT FROM WARP 
* ----------------------------------------------------------------------------------------
*/

#name {
    margin-bottom: 30px;
}

#email {
    margin-bottom: 30px;
}

#message {
    height: 200px;
    margin-bottom: 30px;
    resize: none;
}

#submit {
    background: #141211;
    width: 100%;
    padding: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 5px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
}

.error {
    color: #FF6464;
}


/*
* ----------------------------------------------------------------------------------------
* 16.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/

#footer-page {
    padding-top: 50px;
    padding-bottom: 20px;
}

.wrp-footer {
    padding-left: 20px;
}

.wrp-footer p {
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

.logowrapfoot {
    right: 35px;
    top: 10%;
    color: #fff;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', cursive;
    font-size: 35px;
    padding-bottom: 10px;
}

.logowrapfoot img {
    width: 80px;
}

.sosmed-wrap {
    text-align: right;
    padding-top: 60px;
}

.sosmed li {
    display: inline-block;
    margin-left: 30px;
}

.sosmed li i {
    font-size: 30px;
    color: rgba(255, 255, 255, .5);
}

.wrap-botomfot {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    border-top: 1px solid rgba(255, 255, 255, .3);
}


/*
* ----------------------------------------------------------------------------------------
* 17.RIGHT SIDE WRAP
* ----------------------------------------------------------------------------------------
*/

#right-sidewrap {
    background: #141211;
    width: 30%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
}

.line-bg>div {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, .1);
}

.line-bg>div:nth-child(1) {
    left: 20%;
}

.line-bg>div:nth-child(2) {
    left: 65%;
}

.menu-bar span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin: 10px auto;
    margin-left: 0;
    width: 100%;
    transition: all .1s;
}

.menu-bar h4 {
    font-family: 'Karla', sans-serif;
    letter-spacing: 1px;
    font-size: 12px;
}

.cross {
    position: absolute;
    top: 32px;
    width: 10px;
    height: 10px;
}

.cross:before,
.cross:after {
    position: absolute;
    left: 10px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.cross:before {
    transform: rotate(0);
}

.cross:after {
    transform: rotate(90deg);
}

.rotated {
    writing-mode: vertical-rl;
    position: absolute;
    top: 100px;
    height: 200px;
    left: 0px;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.wrapmini-secright {
    position: absolute;
    left: 0;
}

.scrollindicator {
    width: 2px;
    position: absolute;
    right: 0;
}

#main-navwrap {
    position: absolute;
    bottom: 80px;
    padding-left: 35px;
}

.listnavigation {
    list-style: none;
}

.listnavigation li {
    padding: 10px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.listnavigation li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

.listnavigation li a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.listnavigation li.active>a {
    color: rgba(255, 255, 255, 1);
}

.listnavigation li.active>a:after {
    content: '';
    width: 50%;
    border-bottom: solid 1px #fff;
    position: absolute;
    left: -100px;
    top: 50%;
    z-index: 1;
}

.wrapmini-right {
    position: absolute;
    right: 35px;
    top: 10%;
    color: #fff;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
}

.logowrap {
    padding-top: 50px;
}

.logowrap img {
    width: 120px;
}

.counter {
    font-size: 100px;
    position: absolute;
    font-weight: bold;
    right: 30px;
    bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Bebas Neue', cursive;
}

.v-project {
    left: 50%;
}


/*
* ----------------------------------------------------------------------------------------
* 18.MEDIA QUERY
* ----------------------------------------------------------------------------------------
*/

@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .aboutme-wrap {
        height: 60vh;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .aboutme-wrap {
        height: 50vh;
    }
    .wrapmini-right {
        right: 20px;
    }
    .wrap-contactmini {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
    }
    .button-download,
    .button-contact,
    .button-project {
        padding: 10px 15px 10px 15px;
        letter-spacing: 1px;
        font-size: 13px;
        margin-top: 20px;
    }
    .wrap-gapinfo h2 {
        font-size: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .indent {
        font-size: 15px;
    }
    .project-gal .wrp-project .item-name h2 {
        font-size: 20px;
    }
    .project-gal .wrp-project .item-name a {
        font-size: 15px;
    }
    .skill {
        padding: 0;
        padding-bottom: 50px;
    }
    .counts {
        top: 120px;
    }
    .sosmed-wrap {
        padding-top: 30px;
        text-align: left;
    }
    .sosmed {
        padding-left: 0;
    }
    .counter {
        right: 13px;
    }
    #main-navwrap {
        bottom: 150px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1080px) {
    .title-hero h1 {
        font-size: 120px;
    }
    .title-hero h2 {
        font-size: 120px;
    }
    .title-hero p {
        font-size: 15px;
    }
    .wrapmini-right {
        right: 20px;
    }
    .the-wrapper p {
        font-size: 15px;
        line-height: 1.3;
    }
    .icon {
        font-size: 30px;
    }
    .main-detailinfo h2 {
        font-size: 25px;
    }
    .main-detailinfo .detail-p {
        color: rgba(255, 255, 255, 0.5);
    }
    .title-skil-p {
        line-height: 1.5;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.5);
    }
    .button-download,
    .button-contact,
    .button-project {
        padding: 10px 15px 10px 15px;
        letter-spacing: 1px;
        font-size: 13px;
        margin-top: 20px;
    }
    .wrap-gapinfo h2 {
        font-size: 30px;
        line-height: 1.3;
        padding-bottom: 10px;
    }
    .wrap-gapinfo p {
        line-height: 1.6;
        font-size: 15px;
    }
    .counter {
        right: 13px;
    }
    .counts {
        top: 120px;
    }
    .skill {
        margin-top: 30px;
        padding: 0;
        padding-bottom: 50px;
    }
    .title-skil {
        font-size: 15px;
    }
    .wrap-contactmini {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
    }
    .sosmed-wrap {
        padding-top: 30px;
        text-align: left;
    }
    .sosmed {
        padding-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .masonry {
        column-count: 1;
    }
    .sosmed li {
        margin-left: 20px;
    }
    .cursor-center {
        display: none;
    }
    #left-sidewrap {
        width: 100%;
    }
    .cursor-center-outline {
        display: none;
    }
    #right-sidewrap {
        display: none;
    }
    .mobile-head {
        display: block;
    }
    .logowrap-mobile {
        position: absolute;
        left: 20px;
        top: 30px;
    }
    .logowrap-mobile img {
        width: 150px;
    }
    .aboutme-wrap {
        height: 70vh;
    }
    .mid-info {
        margin: 50px;
    }
    .detail-skil {
        padding: 10px;
        padding-top: 10px;
    }
    .round2,
    .round1,
    .round {
        width: 200px;
        height: 200px;
    }
    .counts {
        top: 110px;
        font-size: 40px;
    }
    .button-download,
    .button-contact,
    .button-project {
        font-size: 15px;
        margin-top: 20px;
    }
    .the-wrapper {
        width: 80%;
    }
    .the-wrapper h3 {
        line-height: 35px;
        font-size: 20px;
    }
    .item-review p {
        font-size: 20px;
        line-height: 1.6;
    }
    .title-v-project,
    .title-v-resume {
        font-size: 130px !important;
    }
    .icons {
        font-size: 30px;
    }
    .listdetailcontact li .text-info {
        padding-left: 40px;
        font-size: 20px;
        padding-right: 20px;
    }
    .wrap-tool {
        margin-top: 20%;
    }
}

@media only screen and (max-width: 890px) {
    .button-download,
    .button-contact,
    .button-project {
        padding: 20px 30px 20px 30px;
    }
    .poto-hero {
        height: 200px;
        width: 200px;
        margin: 10px auto;
    }
    .poto-hero img {
        height: 200px;
        width: 200px;
    }
    .aboutme-wrap {
        height: 100vh;
    }
    .the-wrapper {
        top: 20%;
    }
    .the-wrapper h3 {
        line-height: 35px;
        padding-top: 100%;
    }
    .aboutme-wrap h2 {
        top: 80%;
    }
    .the-wrapper p {
        font-size: 15px;
    }
    .mid-info:nth-last-child(3) {
        margin-top: 30%;
    }
    .main-detailinfo h2 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 680px) {
    .title-hero h2 {
        font-size: 80px;
    }
    .title-hero p {
        font-size: 13px;
    }
    .poto-hero {
        height: 200px;
        width: 200px;
        margin: 10px auto;
    }
    .poto-hero img {
        height: 200px;
        width: 200px;
    }
    .aboutme-wrap {
        height: 100vh;
    }
    .wrap-gapinfo p {
        line-height: 1.6;
        font-size: 13px;
    }
    .indent {
        font-size: 13px;
    }
    .main-detailinfo .detail-p {
        font-size: 13px;
        line-height: 1.5;
    }
    .project-gal .wrp-project .item-name h2 {
        font-size: 20px;
    }
    .project-gal .wrp-project .item-name a {
        font-size: 15px;
    }
    .the-wrapper {
        width: 80%;
        top: 50%;
    }
    .wrap-gapinfo h2 {
        font-size: 25px;
        padding-top: 10px;
    }
    .the-wrapper h3 {
        line-height: 35px;
        font-size: 25px;
        padding-top: 100%;
    }
    .the-wrapper p {
        font-size: 13px;
    }
    .listdetailcontact li .text-info {
        font-size: 15px;
    }
    .item-review p {
        font-size: 15px;
    }
    .title-skil-p {
        font-size: 13px;
    }
    .wrap-tool {
        margin-top: 0;
    }
}

@media only screen and (max-width: 590px) {
    .wrap-gapinfo {
        position: relative;
        width: 100%;
        background: rgba(0, 0, 0, 1);
        right: 0;
        top: -100px;
        margin: 30px;
    }
    .mid-info {
        margin: 20px;
    }
    .project-gal {
        column-count: 1;
    }
    .title-skil {
        font-size: 15px;
    }
    .title-skil-p {
        font-size: 13px;
    }
    .aboutme-wrap h2 {
        top: 35%;
        font-size: 100px;
    }
    .the-wrapper {
        top: 50%;
    }
    .the-wrapper h3 {
        line-height: 30px;
        font-size: 20px;
        padding-top: 50%;
    }
    .wrap-gapinfo h2 {
        font-size: 25px;
        padding-top: 10px;
    }
    .wrap-gapinfo p {
        line-height: 1.5;
        font-size: 13px;
    }
    .detail-resume {
        padding: 0 80px 0 30px;
    }
    .title-v-project,
    .title-v-resume {
        font-size: 90px !important;
    }
    .main-detailinfo {
        padding: 20px 30px 0;
    }
    .wrap-gaponesection img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .item-review {
        padding-left: 30px;
    }
    .icons {
        font-size: 20px;
    }
    .mid-info:nth-last-child(3) {
        margin-top: 20%;
    }
}

@media only screen and (max-width: 480px) {
    .poto-hero {
        height: 150px;
        width: 150px;
    }
    .the-wrapper h3 {
        line-height: 30px;
        font-size: 20px;
        padding-top: 50%;
    }
    .the-wrapper p {
        font-size: 13px;
        line-height: 20px;
    }
    .poto-hero img {
        height: 150px;
        width: 150px;
    }
    .title-hero h1 {
        font-size: 60px;
    }
     .title-hero h2 {
        font-size: 60px;
    }
    .title-hero p {
        font-size: 12px;
    }
    .client-warpdetail {
        width: 50px;
        height: 50px;
    }
    .item-review img {
        height: 50px;
        width: 50px !important;
    }
    .detail-w h3 {
        font-size: 13px;
        color: #fff;
    }
    .title-wrap h3 {
        font-size: 40px;
    }
    .item-review p {
        font-size: 13px;
        line-height: 1.6;
    }
}