/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian Sidik
Template Name : Dusti - multipurpose onepage wordpress theme version
Version       : 1.1
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 00.VARIABLE
    - color root
    - animation keyframe
* 01.BASE CSS 
    - preload
* 02.HEADDER
* 03.HERO SECTION
* 04.ABOUT SECTION
* 05.PROJECT SECTION
* 06.RESUME SECTION
* 07.TESTIMONIAL SECTION
* 08.GAP SECTION
* 09.CONTACT SECTION
* 10.FOOTER SECTION
/*
* ----------------------------------------------------------------------------------------
* 00.VARIABLE
    - color root
* ----------------------------------------------------------------------------------------
*/

:root {
    --color1: #c5a47e;
    --color2: #e7e7e7;
    --color3: #181818;
    --color4: #202020;
    --color5: rgba(231, 231, 231, 0.59);
    --color6: rgba(231, 231, 231, .02);
    --color7: rgba(76, 76, 76, .2);
}


/*
* ----------------------------------------------------------------------------------------
* 00.VARIABLE
   - animation keyframe
* ----------------------------------------------------------------------------------------
*/

@keyframes scroll-icon {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/

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

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    color: #e7e7e7;
    background-color: #181818;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
}

.no-pad {
    padding-right: 0;
    padding-left: 0;
}

.title-section {
    text-align: center;
}

.title-section h3 {
    font-size: 35px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.title-section h3 .light {
    color: #c5a47e;
}

.slide-wrap {
    height: auto;
    overflow: hidden;
    margin-bottom: 15px;
}

label {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    font-family: unset;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c5a47e;
}

label.error {
    font-family: inherit;
    padding-top: 10px;
    color: #ff0d00;
    letter-spacing: 1px;
    text-transform: inherit;
}

p.comment-form-author label {
    display: block;
}

p.comment-form-email label {
    display: block;
}

p.comment-form-url label {
    display: block;
}

p.comment-form-author input,
p.comment-form-email input,
p.comment-form-url input {
    padding: 10px;
    width: 100%;
    background: transparent;
    border: none;
    color: #e7e7e7;
    border-bottom: 2px solid rgba(231, 231, 231, 0.03);
    transition: all .3s;
}

p.comment-form-author input:focus-visible,
p.comment-form-email input:focus-visible,
p.comment-form-url input:focus-visible {
    outline: none;
}

p.comment-form-author input:focus,
p.comment-form-email input:focus,
p.comment-form-url input:focus {
    outline: none;
    border-bottom: 2px solid #e7e7e7;
}

.comment-form-cookies-consent {
    padding: 20px 0;
}

figure {
    margin: 3rem 0 3rem;
}

main {
    background: #202020;
}
a {
    text-decoration: none;
}
.flashinfo span {
    position: absolute;
    left: 20px;
    font-size: 30px;
    color: #202020;
    top: 18px;
}

.flashinfo {
    position: relative;
    padding: 20px;
    margin-top: 33px;
    background: #85d69f;
    letter-spacing: 1px;
    padding-left: 60px;
    font-size: 15px;
    display: none;
    color: #202020;
}

.go-top:hover {
    color: #202020;
}

.go-top {
    line-height: 40px;
    color: #202020;
    background-color: #c5a47e;
    display: block;
    position: fixed;
    bottom: 15px;
    width: 45px;
    z-index: 3;
    height: 45px;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    right: -60px;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.is-active {
    right: 20px;
    opacity: 1;
}

 ::-webkit-scrollbar {
    width: 5px;
}

 ::-webkit-scrollbar-thumb {
    background-color: #c5a47e;
}

#particles-js {
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

#headder-page {
    background-position: center !important;
    background-size: cover !important;
    z-index: 1;
    position: relative;
}

.headderpage-title {
    padding: 150px 0;
}

#headder-page:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #181818;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
}

.is-style-default img {
    width: 100%;
}

.wp-block-separator {
    border-top: 1px solid;
    border-bottom: none;
}

.swiper-slide,
.swiper-slide {
    opacity: .3 !important;
    margin: 30px 0;
    background-color: #181818;
    padding: 25px 50px 70px;
}

.swiper-slide-active {
    opacity: 1 !important;
    margin-right: 50px !important;
}


/* - preload
* ----------------------------------------------------------------------------------------
*/

.preload {
    background-color: #202020;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.spinner>div {
    width: 10px;
    margin: 5px;
    height: 10px;
    background-color: #c5a47e;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bounce 1.4s infinite ease-in-out both;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}


/*
* ----------------------------------------------------------------------------------------
* 02.HEADDER
* ----------------------------------------------------------------------------------------
*/

#header-main .container {
    position: relative;
}

#header-main {
    padding-top: 20px;
    padding-bottom: 20px;
    top: 0;
    transition: all 0.3s ease;
    position: fixed;
    z-index: 999;
    width: 100%;
}

#header-main.hide {
    top: -200px;
}

.navbar-brand { 
    padding: 20px;
}

.navbar-brand img {
    width: 100px;
}

#main-navigation {
    text-align: center;
    padding-top: 0;
}

button.menu {
    background: none;
    border: none;
    outline: none;
    color: #c5a47e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
}

button.menu:after {
    position: absolute;
    width: 10px;
    left: -20px;
    content: "";
    display: block;
    height: 2px;
    background: #c5a47e;
    top: 10px;
}

#menu-navigation-list {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 0;
}

#menu-navigation-list li {
    list-style: none;
    display: inline-block;
    letter-spacing: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 20px;
    position: relative;
}

.inner-sosmed {
    display: none;
}
.sosmed-list {
    padding-left: 0;
    margin-bottom: 0;
    text-align: right;
    padding-top: 0;
    padding-right: 20px;
}

.sosmed-list li {
    display: inline-block;
    list-style: none;
}

.sosmed-list li a i {
    background-color: rgba(154, 152, 150, .3);
    border-radius: 50%;
    color: #e7e7e7;
    display: inline-block;
    height: 28px;
    width: 28px;
    line-height: 28px;
    margin: auto 10px;
    font-size: 13px;
    text-align: center;
    transition: all .3s;
}

.sosmed-list li a:hover i {
    background-color: #c5a47e;
}

.fixi {
    background: rgba(24, 24, 24, .9);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.link-nav a {
    color: #e7e7e7;
    transition: all .3s;
    text-decoration: none;
}

.link-nav a:hover {
    color: #c5a47e;
    text-decoration: none;
}

.aktif a {
    color: #c5a47e;
    text-decoration: none;
}

.wrap-mobiltoggle {
    display: none;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 20px;
}

.wrap-mobiltoggle i {
    font-size: 30px;
    color: #e7e7e7;
}

.mobile-navwrap {
    top: 0;
    width: 100%;
    height: 0%;
    position: fixed;
    display: block;
    visibility: hidden;
    overflow: auto;
    z-index: 3;
    padding-top: 50px;
    background: rgba(32, 32, 32, .9);
    transition: all .3s;
}

.openmenu.mobile-navwrap {
    height: 100% !important;
    visibility: visible !important;
}

#navmobile {
    position: relative;
    top: 30%;
    padding-bottom: 30px;
}

#menu-navigation-listmobile {
    padding-left: 30px;
}

#menu-navigation-listmobile li {
    list-style: none;
    display: block;
    letter-spacing: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 10px;
}

#navmobile .sosmed-list {
    text-align: left;
    padding-top: 0;
    padding-left: 30px;
}


.navbar-toggler {
    width: 50px !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.burger {
    width: 32px;
    height: 24px;
    cursor: pointer;
    right: 2rem;
    top: 2rem;
    z-index: 20;
}

.burger span {
    width: 100%;
    height: 4px;
    background-color: var(--color2);
    border-radius: 12px;
    display: block;
    transition: background-color 0.5s ease-in-out;
}

.burger span::before,
.burger span::after {
    content: "";
    width: 100%;
    background-color: var(--color2);
    display: block;
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
    height: 4px;
}

.burger span::before {
    transform: translateY(-10px);

}

.burger span::after {
    transform: translateY(10px);
    margin-top: -4px;
}


.burger.active span {
    background-color: transparent;
}

.burger.active span::before {
    transform: rotateZ(45deg) translateY(0);
}

.burger.active span::after {
    transform: rotateZ(-45deg) translateY(0);
}

#menu-navigation-list li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#menu-navigation-list li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    min-width: 200px;
    background: var(--color3);
    margin: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -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;
    border-radius: 0;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

#menu-navigation-list li .sub-menu li {
    margin: 10px 20px;
}
/*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION
* ----------------------------------------------------------------------------------------
*/

#wrap-hero {
    height: auto;
}

.wrap-herocontent {
    width: 100%;
    height: 750px;
}

.overlayed {
    z-index: 0;
    width: 100%;
    height: 750px;
    display: block;
    position: absolute;
    left: 0;
    background: linear-gradient(to right, rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, .3) 100%), linear-gradient(to top, rgba(32, 32, 32, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.content-info {
    display: table;
    height: 750px;
    padding-left: 20px;
    position: relative;
}

.content-innerinfo {
    display: table-cell;
    vertical-align: middle;
}

.content-innerinfo h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    color: #c5a47e;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 15px;
}

.content-innerinfo h2 {
    letter-spacing: 2px;
    line-height: 1;
    font-size: 16px;
    position: relative;
    font-family: unset;
    left: 100px;
    text-transform: uppercase;
}

.content-innerinfo h2:before {
    position: absolute;
    width: 60px;
    left: -100px;
    content: "";
    display: block;
    height: 2px;
    background: #e7e7e7;
    top: 10px;
}

.arrow {
    position: absolute;
    z-index: 0;
    width: 0;
    height: 0;
    border-bottom: none;
    animation-name: scroll-icon;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

.icons {
    position: absolute;
    left: -20px;
    top: -200px;
    font-size: 40px !important;
    color: #c5a47e;
}


/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION
* ----------------------------------------------------------------------------------------
*/

#wrap-about {
    height: auto;
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    background: #202020;
}

.arrow-title {
    position: absolute;
    background: #c5a47e;
    left: 50%;
    width: 1px;
    top: 0;
    height: 100px;
    border-bottom: none;
}

.wrap-pic {
    text-align: center;
    position: relative;
    z-index: 2;
}

.wrap-pic img {
    width: 400px;
    border-radius: 5px;
}

.what-ido,
.about-me {
    padding-left: 20px;
    padding-right: 20px;
}

.about-me p,
.what-ido p {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #c5a47e;
}

.what-ido h3,
.about-me h3 {
    font-weight: 800;
    margin-bottom: 30px;
}

.about-me>p.mini-detail {
    font-family: unset !important;
    font-size: 15px;
    letter-spacing: .2px;
    text-transform: unset !important;
    color: rgba(231, 231, 231, 0.4);
    line-height: 1.65;
}

.title-wrap {
    padding-left: 50px;
    position: relative;
}

.title-wrap .icons-detail {
    position: absolute;
    left: 0;
    z-index: 1;
}

.title-name {
    position: absolute;
    z-index: 2;
    font-weight: 800;
    font-size: 150px;
    line-height: 1;
    color: rgba(231, 231, 231, 0.04);
    top: 300px;
}

.what-ido>p.mini-detail {
    font-family: unset;
    font-size: 15px;
    letter-spacing: .2px;
    text-transform: unset;
    color: rgba(231, 231, 231, .4);
    line-height: 1.65;
}

.title-wrap>p.main-detail {
    font-family: unset;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #e7e7e7;
}

#skills {
    padding-top: 100px;
    position: relative;
}

#skills .title-name {
    top: -50px;
    right: 0;
    z-index: 0;
}

.wrap-laguagelist {
    padding-left: 0;
}

.wrap-laguagelist li {
    list-style: none;
    display: inline-block;
    margin-left: 70px;
    margin-right: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pie_progress {
    width: 130px;
    margin: 20px auto;
}

.pie_progress__svg svg ellipse {
    stroke: rgba(76, 76, 76, .2);
}

.pie_progress__number {
    font-size: 15px;
    letter-spacing: 1px;
    color: #c5a47e;
}

.wrap-language {
    text-align: center;
}

.label-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 400;
    color: #e7e7e7;
}

.more-skill {
    padding-left: 50px;
    padding-right: 50px;
}

.more-skill-name {
    letter-spacing: 2px;
    padding-top: 50px;
    padding-bottom: 10px;
    position: relative;
    color: #e7e7e7;
    font-size: 15px;
    font-weight: 400;
}

.more-skill-bar {
    height: 3px;
    background: rgba(76, 76, 76, .2);
    border-radius: 8px;
    letter-spacing: 1px;
    position: relative;
    color: #c5a47e;
    font-size: 13px;
    line-height: 50px;
    text-align: right;
}

.more-skill-per {
    height: 3px;
    background-color: #c5a47e;
    border-radius: 8px;
    width: 0;
    transition: all .3s linear;
    position: relative;
}

.download-button span {
    position: absolute;
    right: -30px;
}

.download-button {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 30px;
    width: auto;
    letter-spacing: 5px;
    position: relative;
    background: transparent;
    border: 1px solid;
    color: #c5a47e;
    transition: all .3s;
    font-weight: 800;
    cursor: pointer;
}

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

.wrap-about-section {
    line-height: 1.5;
}

.wrap-about-section h4 {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 400;
    font-size: 60px;
}

.card-service {
    background: #181818;
    position: relative;
    border-radius: 0px;
    border: none;
    border: 1px solid #181818;
    margin-bottom: 30px;
}

.card-inner {
    transition: 0.7s;
    z-index: 10;
    text-align: center;
    padding: 60px 50px 30px 50px;
}

.card-service h4 {
    font-size: 18px;
    color: #c5a47e;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.card-service:hover h4 {
    color: #181818;
}

.card-service span {
    font-size: 70px;
    transition: all .3s;
    color: #c5a47e;
}

.card-service p {
    font-size: 18px;
    transition: all .3s;
    line-height: 1.75em;
    margin: 0 0 20px;
    color: rgba(231, 231, 231, 0.59);
}

.card-service:hover {
    background: #c5a47e;
}

.card-service:hover span {
    color: #181818;
}

.card-service:hover p {
    color: #000000;
}

.card-service:hover .card-inner {
    transform: translateY(-25px);
}


/*
* ----------------------------------------------------------------------------------------
* 05.PROJECT SECTION
* ----------------------------------------------------------------------------------------
*/

#wrap-work {
    height: auto;
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    background: #181818;
}

#wrap-work .download-button {
    margin-top: 50px;
    border: 1px solid;
    padding: 10px 30px;
    display: inline-block;
}

#wrap-work .title-name {
    width: 100%;
    top: -60px;
    z-index: 0;
}

#project-wraps {
    padding-top: 50px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    z-index: 0;
}

.masonry-item {
    cursor: pointer;
    margin: 0;
    position: relative;
    float: right;
    width: 33.3333%;
    height: 350px;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    transform-origin: 50% 65%;
    transition: transform 10s ease-in-out;
}

.masonry-item a:hover img {
    transform: scale(1.5);
}

.overlay-porto {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 30px
}

.overlay-porto:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #181818;
    opacity: .7;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.project-title {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1px;
    z-index: 1;
    color: #e7e7e7;
    text-transform: uppercase;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.project-category {
    position: absolute;
    color: #e7e7e7;
    bottom: 30px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    z-index: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.zoomico {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9em;
    height: 9em;
    margin: -4.5em;
    border-radius: 50%;
    background-color: rgba(24, 24, 24, .9);
    overflow: hidden;
    opacity: 0;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

.masonry-item a:hover .project-title {
    top: 30px;
    opacity: 0;
}

.masonry-item a:hover .project-category {
    bottom: 30px;
    opacity: 0;
}

.masonry-item a:hover .overlay-porto:after {
    opacity: 0;
}

.masonry-item a:hover .zoomico {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.zoomico .icon-proto {
    color: #e7e7e7;
    font-size: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.filter-portowrap {
    padding: 50px;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.wraplistfilter {
    position: relative;
    z-index: 1;
}

.wraplistfilter ul {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.wraplistfilter ul li {
    list-style: none;
    float: left;
}

.wraplistfilter ul li a:nth-last-child(1) {
    margin-left: 0;
    padding-left: 0;
}

.wraplistfilter ul li a.aktip {
    color: #c5a47e;
}

.wraplistfilter ul li a:hover {
    text-decoration: none;
    color: #c5a47e;
}

.wraplistfilter ul li a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: inline-block;
    color: rgba(231, 231, 231, 0.59);
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}


/*
* ----------------------------------------------------------------------------------------
* 06.RESUME SECTION
* ----------------------------------------------------------------------------------------
*/

#resume-wrap {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    background: #202020;
    height: auto;
}

#resume-wrap .title-name {
    position: absolute;
    z-index: 0;
    font-weight: 800;
    font-size: 150px;
    line-height: 1;
    right: 0;
    color: rgba(231, 231, 231, 0.04);
    top: -100px;
}

.filter-resumewrap {
    padding: 50px;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.wraplistresume ul {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.wraplistresume ul li {
    list-style: none;
    float: left;
}

.wraplistresume ul li a.aktip {
    color: #c5a47e;
}

.wraplistresume ul li a:hover {
    text-decoration: none;
    color: #c5a47e;
}

.wraplistresume ul li a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: inline-block;
    color: rgba(231, 231, 231, 0.59);
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.wraplistresume ul li a:nth-last-child(1) {
    margin-left: 0;
    padding-left: 0;
}

.wrap-resumedetail {
    margin-top: 50px;
    display: none;
    width: 100%;
}

.inner-detail {
    display: inline-block;
    width: 100%;
    padding-left: 100px;
}

.leftside {
    padding: 30px 10px;
    background: rgba(76, 76, 76, .2);
    border: 1px solid rgba(76, 76, 76, .2);
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.leftside .number {
    text-align: center;
    position: absolute;
    z-index: 1;
    left: -60px;
    top: 25%;
}

.leftside .number:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    top: 45px;
    background-color: #c5a47e;
}

.leftside .number:before {
    content: "";
    position: absolute;
    left: -27px;
    top: 30px;
    width: 30px;
    height: 30px;
    background-color: #c5a47e;
    border: 10px solid #2f2f2f;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: -1;
    border-radius: 50%;
}

.leftside .date {
    padding-left: 0;
    color: rgba(231, 231, 231, 0.59);
}

.leftside .date li {
    list-style: none;
    display: inline-block;
    margin-left: 20px;
    font-size: 13px;
    width: auto;
    margin-right: 20px;
    letter-spacing: 1px;
}

.inner-content-l {
    width: 30%;
    padding: 0 30px 0px 0;
    float: left;
    position: relative;
}

.inner-content-l:after {
    content: '';
    position: absolute;
    height: 100px;
    right: 0;
    width: 1px;
    top: 0;
    background: rgba(231, 231, 231, 0.59);
}

.inner-content-r {
    float: right;
    width: 65%;
    padding-right: 20px;
}

.inner-content-r h3 {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #e7e7e7;
    font-family: unset;
}

.inner-content-r p {
    font-size: 15px;
    letter-spacing: .2px;
    text-transform: unset;
    color: rgba(231, 231, 231, 0.59);
    line-height: 1.65;
}

.wrap-detaildata {
    padding-left: 20px;
    color: rgba(231, 231, 231, 0.59);
}

.date li p {
    font-size: 13px;
    font-weight: 600;
    color: #e7e7e7;
}

.active-tab {
    display: block;
}

.wrap-detaildata span {
    position: absolute;
    left: 20px;
}

.inside-inner {
    padding-left: 50px;
}

.wrap-detaildata h4 {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #e7e7e7;
    font-family: unset !important;
}

.wrap-detaildata p {
    font-size: 13px;
    margin-bottom: 0;
}


/*
* ----------------------------------------------------------------------------------------
* 07.TESTIMONIAL SECTION
* ----------------------------------------------------------------------------------------
*/

.left_wrap {
    width: calc(50% - 595px);
}

.right_wrap {
    width: calc(50% + 595px);
    overflow: hidden;
}

#wrap-testimonial {
    position: relative;
    padding-top: 0;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px;
    height: auto;
    background: #202020;
}

#wrap-testimonial .title-name {
    position: absolute;
    z-index: 3;
    font-weight: 800;
    font-size: 150px;
    line-height: 1;
    color: rgba(231, 231, 231, 0.04);
    top: -100px;
}

.slick-slide:focus {
    outline: none;
}

.testimonial_slider {
    margin-bottom: 0px !important;
}

.testimonial_slider .slick-list {
    padding-left: 35px !important;
    margin-left: -20px;
}

.testimonial_slider .item {
    padding: 70px 35px 90px 0px;
    width: 50%;
}

.testimonial_slider .item .testimonial_content {
    border-radius: 2px;
    background-color: #181818;
    opacity: 0.3;
    padding: 25px 100px 70px;
    transition: opacity 0.3s linear;
}

.quote_icon {
    border-radius: 50%;
    background: #c5a47e;
    text-align: center;
    color: #e7e7e7;
    line-height: 100px;
    display: inline-block;
    position: relative;
    top: -50px;
}

.testimonial_slider .item.slick-center .testimonial_content {
    opacity: 1;
}

.testimonail_text strong {
    font-weight: 600;
}

.user-wrap {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a47e;
    margin-top: 50px;
}

.user-wrap .img {
    width: 70px;
    height: 70px;
    margin-right: 30px;
}

.user-wrap .img img {
    border-radius: 100%;
}

.swiper-pagination-bullet {
    background: #c5a47e;
    width: 10px;
    height: 10px;
}

.swiper-pagination {
    position: relative !important;
    text-align: left;
    margin: 20px 0;
}

@media screen and (max-width: 999px) {
    .swiper-pagination {
        text-align: center;
    }
}

@media screen and (min-width: 576px) {
    .swiper-container {
        width: 576px;
    }
}

@media screen and (min-width: 768px) {
    .swiper-container {
        width: 768px;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 08.GAP SECTION
* ----------------------------------------------------------------------------------------
*/

#gapsection {
    padding: 200px 0;
}

.title-detail h3 {
    font-size: 35px;
    line-height: 60px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.title-detail span {
    display: inline-block;
    color: #cf9c63;
}

.title-detail p {
    color: rgba(231, 231, 231, 0.59);
    font-size: 20px;
}


/* client image */

#clientsection {
    padding: 100px 0 0 0;
}

.clientlist {
    margin: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.imgclient {
    padding: 0;
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
}

.imgclient a {
    padding: 0 20px;
    height: 150px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.imgclient a img {
    max-width: 80%;
    vertical-align: middle;
    height: auto;
}

@media screen and (max-width: 999px) {
    .imgclient {
        -webkit-box-flex: 0;
        max-width: 33.33%;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    }
}

@media screen and (max-width: 576px) {
    .imgclient {
        -webkit-box-flex: 0;
        max-width: 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 08.BLOG SECTION
* ----------------------------------------------------------------------------------------
*/

#wrap-blog {
    padding: 100px 0;
    background: #202020;
    position: relative;
}

#wrap-blog .title-name {
    top: 0;
    right: 0;
}

.link-ablog {
    color: #e7e7e7;
}

.link-ablog:hover {
    text-decoration: none;
    color: #e7e7e7;
}

.wrap-blogimg {
    height: 350px;
}

.wrap-blogimg img {
    width: 100%;
    object-fit: cover;
    height: 350px;
}

.wrap-blogcontent p.date {
    word-spacing: 5px;
    letter-spacing: 2px;
    font-size: 13px;
}

.wrap-blogcontent p.date span {
    color: #272727;
}

.wrap-blogcontent h3.titleblog {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    padding: 50px 0 10px 0;
    color: #c5a47e;
}

.wrap-blogcontent p.contentblog {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
}

.wrap-blogcontent p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
}

.wrap-blogcontent .author {
    letter-spacing: 2px;
    display: block;
    font-size: 13px;
    padding: 30px 0 0 0;
    text-transform: uppercase;
}

.blogitem {
    padding: 30px;
    background: rgba(76, 76, 76, .2);
}


/*
* ----------------------------------------------------------------------------------------
* 09.CONTACT SECTION
* ----------------------------------------------------------------------------------------
*/

#contact-wrap {
    position: relative;
    padding-top: 200px;
    padding-bottom: 50px;
    background-image: url(../image/asset/subtle.png);
    height: auto;
    background: #181818;
    z-index: 1;
}

.wrap-contact {
    background: #202020;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-place {
    padding: 30px;
    padding-top: 50px;
    position: relative;
}

.contact-place p {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #c5a47e;
}

.contact-place h3 {
    font-weight: 800;
    margin-bottom: 30px;
}

.contact-place>p.mini-detail {
    font-family: unset;
    letter-spacing: .2px;
    text-transform: unset;
    color: rgba(231, 231, 231, 0.59);
    line-height: 1.65;
}

.form-contact, .wpforms-form {
    padding: 20px;
    padding-left: 0;
    padding-top: 50px;
    display:block;
}

.half-sidel {
    width: 45%;
    float: left;
    margin-bottom: 50px;
    display: inline-block;
}

.half-sider {
    width: 45%;
    float: right;
    margin-bottom: 50px;
    display: inline-block;
}

.textarea {
    height: 200px;
}

div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea{
   width: 100% !important;
    padding: 10px !important;
    padding-left: 0 !important;
    background: transparent !important;
    border: none !important;
    color: #e7e7e7 !important;
    border-bottom: 2px solid rgba(231, 231, 231, 0.03) !important;
    transition: all .3s !important;
}
 
div.wpforms-submit-container button.wpforms-submit, div.wpforms-container-full input[type=submit]:hover, div.wpforms-container-full input[type=submit]:active, div.wpforms-container-full button[type=submit]:hover, div.wpforms-container-full button[type=submit]:active, div.wpforms-container-full .wpforms-page-button:hover, div.wpforms-container-full .wpforms-page-button:active{
  margin-top: 20px !important;
    padding: 10px 30px !important;
    width: auto !important;
  text-transform: uppercase;
    letter-spacing: 5px !important;
    position: relative !important;
    background: transparent !important;
    border: 1px solid !important;
    color: #c5a47e !important;
    transition: all .3s !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}
div.wpforms-layout-column :focus,
div.form-input textarea:focus,
div.form-input input:focus {
    box-shadow: unset !important;
    outline: none !important;
    border-bottom: 2px solid #e7e7e7 !important;
}
div.wpforms-layout-column label,
div.form-input label{
      font-weight: 400  !important;
    letter-spacing: 1px  !important;
    font-size: 13px  !important;
    font-family: unset  !important;
    text-transform: uppercase  !important;
    letter-spacing: 1px  !important;
    color: #c5a47e  !important;
}

.wpforms-container::-webkit-input-placeholder { /* Chrome and Safari */
   color: #e7e7e7 !important;
}
 
.wpforms-container:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #e7e7e7 !important;
   opacity: 1 !important;
}
 
.wpforms-container::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #e7e7e7 !important;
   opacity: 1 !important;
}
 
.wpforms-container:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #e7e7e7 !important;
}
 
.wpforms-container::-ms-input-placeholder { /* Microsoft Edge */
   color: #e7e7e7 !important;
}
 
.wpforms-container ::placeholder {
   color: #e7e7e7 !important;
}
.wpforms-container .wpforms-field {
    margin: 0 0 50px;
}
.input-text,
.textarea {
    width: 100%;
    padding: 10px;
    padding-left: 0;
    background: transparent;
    border: none;
    color: #e7e7e7;
    border-bottom: 2px solid rgba(231, 231, 231, 0.03);
    transition: all .3s;
}

.input-text:focus,
.textarea:focus {
    outline: none;
    border-bottom: 2px solid #e7e7e7;
}

.input-text.error {
    color: #ff0d00;
    border-bottom: 2px solid #ff0d00;
}

.textarea.error {
    color: #ff0d00;
    border-bottom: 2px solid #ff0d00;
}

.half-sidel p {
    margin-bottom: 0;
    font-size: 13px;
}

.half-sider p {
    margin-bottom: 0;
    font-size: 13px;
}

.gap-label {
    width: 100%;
}

.button-l {
    margin-top: 20px;
    padding: 10px 30px;
    width: auto;
    letter-spacing: 5px;
    position: relative;
    background: transparent;
    border: 1px solid;
    color: #c5a47e;
    transition: all .3s;
    font-weight: 800;
    cursor: pointer;
}

.button-l:hover {
    color: #e7e7e7;
}

.button-l:focus {
    outline: none;
}

.button-l span {
    position: absolute;
    right: -30px;
    top: 10px;
}

.list-detailcontact {
    padding-left: 0;
    padding-top: 20px;
}

.list-detailcontact li {
    list-style: none;
    margin-bottom: 10px;
}

.list-detailcontact h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    color: #c5a47e;
}

.list-detailcontact p {
    font-family: unset;
    letter-spacing: initial;
    text-transform: inherit;
    font-size: 13px;
}

.wrap-placedetail p {
    margin-bottom: 0;
}


/*
* ----------------------------------------------------------------------------------------
* 09.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/

#wrap-footer {
    padding: 50px 0 0 0;
    background-image: url(../image/asset/subtle.png);
    background: #181818;
}

.text-footer {
    padding-bottom: 20px;
    text-align: center;
}

.text-footer h3 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.text-footer img {
    width: 80px;
    margin-bottom: 5px;
    opacity: .3;
}

.text-footer p {
    font-size: 12px;
    color: rgba(231, 231, 231, 0.59);
}

.text-footer .sosmed-list-foot {
    padding-left: 0;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
    padding-right: 0;
}

.text-footer .sosmed-list-foot li {
    display: inline-block;
    list-style: none;
}

.text-footer .sosmed-list-foot li a i {
    background-color: rgba(154, 152, 150, .3);
    border-radius: 50%;
    color: #e7e7e7;
    display: inline-block;
    height: 28px;
    width: 28px;
    line-height: 28px;
    margin: auto 10px;
    font-size: 13px;
    text-align: center;
    transition: all .3s;
}

.text-footer .sosmed-list-foot li a:hover i {
    background-color: #c5a47e;
}


/* archive blog */

#wrapblog-page {
    padding: 200px 0 100px 0;
    position: relative;
}

.pagination {
    padding: 10px 30px;
    margin: 100px auto 0;
}

.pagination .prev {
    padding: 10px;
    background-color: #c5a47e;
}

.pagination .page-numbers:hover {
    text-decoration: none;
    background: #987e5f;
}

.pagination .page-numbers {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 10px 30px;
    background-color: #c5a47e;
    color: #181818;
}

.pagination span.current {
    background: #987e5f;
}


/* single post blog */

#post-single {
    padding: 200px 0 100px 0;
    position: relative;
}

.post-navigation {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    background-color: #c5a47e;
    padding: 0px;
}

.nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    font-size: 18px;
    display: flex;
}

.nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
    color: #181818;
}

.nav-previous a,
.nav-next a {
    color: #181818;
}

.nav-previous,
.nav-next {
    padding: 30px;
    color: #181818;
}

.nav-previous:hover,
.nav-next:hover {
    background-color: #987e5f;
}

.nav-previous:hover a:link,
.nav-next:hover a:link {
    color: #181818;
}

.tag-wrap span.tag {
    padding: 8px 10px;
    background: #272727;
    margin: 0 5px;
}

.tag-wrap span.tag a {
    color: #e7e7e7;
}

.tag-wrap span.tag:first-child {
    margin-left: 0;
}

.widget {
    padding: 30px;
    background: #272727;
    margin: 3rem 0;
    border: 1px solid rgba(76, 76, 76, .2);
}

.widgettitle {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin: 0 0 20px 0;
}

.widget ul {
    margin: 0;
    padding: 0;
}

.widget ul li {
    margin: 10px 0;
    display: inline-block;
    width: 100%;
}

.widget ul li a {
    color: #c5a47e;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#category-posts ul li {
    color: #c5a47e;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: right;
}

#category-posts ul li a {
    float: left;
    color: #c5a47e;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.commentlist {
    padding: 0;
}

.commentlist li {
    list-style-type: none;
    position: relative;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

#comments {
    margin: 20px 0;
    font-size: 18px;
}

#respond {
    margin: 50px 0 0 0;
    padding: 30px 50px;
    background: #272727;
}

cite {
    font-style: normal;
    line-height: 1.3;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
}

cite a {
    color: #cf9c63;
}

blockquote {
    padding: 20px;
    background: #272727;
}

.comment-form-comment textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #e7e7e7;
    border-bottom: 2px solid rgba(231, 231, 231, 0.03);
    transition: all .3s;
    padding: 10px;
}

.comment-form-comment textarea:focus-visible {
    outline: none;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-bottom: 2px solid #e7e7e7;
}

.comment-author .says {
    display: none;
}

.commentlist p {
    font-size: 16px;
    color: #bfbebe;
    line-height: 1.6;
    padding: 30px;
    background: #272727;
    margin-top: 8px;
}

.comment .comment-meta a {
    display: inline-block;
    color: #dedddc;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
}

.reply .comment-reply-link {
    position: absolute;
    top: 18px;
    right: 0;
    color: #cf9c63;
    font-size: 15px;
    font-weight: 400;
}

.reply .comment-reply-link:before {
    content: "\f112";
    font-family: 'FontAwesome';
    font-weight: 500;
    margin-right: 7px;
}

#reply-title {
    margin: 20px 0 10px 0;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.comment-respond {
    position: relative;
}

#cancel-comment-reply-link {
    display: inline-block;
    outline: none;
    position: absolute;
    top: 4px;
    right: 0;
    color: #cf9c63;
    font-size: 15px;
    font-weight: 600;
}

#submit {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    padding: 20px 30px;
}

.logged-in-as {
    display: inline-block;
    color: #dedddc;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
}

.category-wrap {
    padding: 50px 40px;
    background: #272727;
}

.breadcumwrap ul {
    padding: 0;
}

.breadcumwrap {
    font-size: 15px;
    display: block;
}

.breadcumwrap span {
    position: relative;
    display: inline-block;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
}

.breadcumwrap span a {
    color: #c5a47e;
}

.wrap-error {
    padding: 100px 0 0 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
}

.wrap-error h3 {
    font-weight: 400;
}

.wrap-error i {
    font-size: 60px;
    margin: 30px 0;
}

span.search-instance {
    font-weight: bold;
    background: #c5a47e;
    padding: 2px 5px;
    color: #181818;
    display: inline-block;
    text-transform: capitalize;
}

.wrap-search {
    margin: 3rem 0;
}

.search-input {
    background-color: #272727;
    border: 1px solid #3a3737;
    width: 100%;
    height: 50px;
    color: #e7e7e7;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    padding: 12px;
    min-width: auto;
    vertical-align: middle;
    line-height: 1.9;
    letter-spacing: 0.5px;
}

.search-submit {
    position: absolute;
    bottom: 7px;
    right: 2%;
    width: 36px;
    height: 36px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    font-size: 19px;
    background: transparent;
    border: none;
    color: #cf9c63;
    cursor: pointer;
}

#porfolio-warp {
    padding-top: 50px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    z-index: 1;
}

.work-content.grid-gutter-md {
    margin-left: -8px;
    margin-right: -8px;
}

.masonry-items {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}

.content-porto {
    border-radius: 5px;
    height: 350px;
    width: 100%;
}

.masonry-items:hover .content-porto {
    opacity: .5;
}

.gallery-link i {
    position: absolute;
    z-index: 1;
    color: #fff;
    opacity: 0;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all .3s;
}

.masonry-items:hover i {
    opacity: 1;
}

.error-wrap {
    font-size: 35px;
    line-height: 30px;
    padding: 150px 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
}
