/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian
Template Name : Oyag - Portfolio, CV, Resume, vCard
Version       : 1.0
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - ENTER & EXIT ANIMATION
    - MENU ANIAMTION
* 02.LOADDER
* 03.NAVIGATION
    - MENU NAVIGATION LEFT
    - MENU NAVIGATION RIGHT
    - MENU BIG
* 04.SECTION HOME PROFILE
    - HERO PICTURE
    - RIGHT SIDE SECTION
    - DETAIL HERO
    - HERO ACTIVITIES
* 05.SECTION PORTFOLIO
    - LIST PORTFOLIO
    - LIST CLIENT
* 06.SECTION CASESTUDY PORTFOLIO
    - HEAD CASESTUDY
    - CASESTUDY ITEM
* 07.SECTION RESUME
    - HEAD RESUME
    - SKILL SECTION
* 08.BLOG SECTION
    - HEAD BLOG
* 09.CONTACT SECTION
    - HEAD CONTACT
    - MAP CONTACT
    - FORM CONTACT
* 10.FOOTER SECTION
* 11.GLOBAL MEDIA QUERY
* ----------------------------------------------------------------------------------------
*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/

html * {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

html,
body {
    background: #101010;
    font-family: 'Work Sans', sans-serif;
    padding: 0;
    margin: 0;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

section {
    height: 100vh;
    background: #101010;
    z-index: unset;
}

iframe {
    border-width: 0px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: normal;
    color: #fff;
}

input,
textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 15px 8px 16px;
    color: #969696;
    border: 1px solid #969696;
    height: 50px;
    background-color: transparent;
    transition: .3s;
}

a {
    color: #6d6e71;
    transition: .3s;
}

a:focus {
    outline: none !important;
    box-shadow: unset !important;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

.wrap-oyag-content {
    height: 100vh;
    width: calc(100% - 240px);
    max-width: 100%;
    position: relative;
    border-left: 1px solid #31363a;
    border-right: 1px solid #31363a;
}

#oyagmain-site-wrap {
    width: calc(100% - 200px);
    max-width: 100%;
}

.blurry {
    filter: blur(10px);
}

.mfp-bg {
    z-index: 1000000;
}

.mfp-wrap {
    z-index: 1000000;
}


/* ------------------------------- */
/* ENTER & EXIT ANIAMTION */


.fade {
    -webkit-animation: fade-in-bottom 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-out {
    -webkit-animation: fade-out .2s ease-out both;
    animation: fade-out .2s ease-out both;
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadetop {
    -webkit-animation: fade-in-top 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .3s both;
    animation: fade-in-top 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .3s both;
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeoT {
    -webkit-animation: fade-out-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-out-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}



/* ------------------------------- */
/* MENU ANIAMTION */

@-webkit-keyframes menu-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes menu-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 02.LOADDER
* ----------------------------------------------------------------------------------------
*/

/* -- start preloader style */

#warperloader {
    background-color: #777777;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    display: table;
    text-align: center;
}

.spinner {
    margin: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.liness {
    width: 0;
    background: #212121;
    height: 100vh;
    position: relative;
    z-index: 1;
}

#precent {
    color: #212121;
    text-align: center;
    line-height: 1;
    font-size: 8vw;
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    mix-blend-mode: difference;
}


/* end preloader style */




/*
* ----------------------------------------------------------------------------------------
* 03.NAVIGATION
* ----------------------------------------------------------------------------------------
*/

/* - NAVIGATION LEFT */

.oyag-mainlogo {
    text-align: center;
    display: inline-block;
    padding-top: 30px;
}

.oyag-mainlogo img {
    width: 50%;
}

.oyag-logo-mb {
    position: absolute;
    text-align: center;
    display: none;
    padding-top: 30px;
    z-index: 20;
}

.oyag-logo-mb img {
    width: 50%;
}

.navigation-bar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 140px;
    z-index: 9;
    padding-left: 0;
    padding-right: 15px;
    overflow-y: auto;
}

#menu-list {
    width: 200px;
    height: 15px;
    position: absolute;
    -webkit-transform-origin: left top;
    -webkit-transform: rotate(-90deg) translateX(-100%);
    bottom: 170px;
    left: 30px;
    padding-left: 0;
}

#menu-list li {
    margin-right: 0;
    float: right;
    height: 100%;
    list-style: none;
    line-height: 45px;
}

#menu-list li a {
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

#menu-list li a.actives {
    color: #F27C3C;
    border-bottom: 1px solid;
    padding-bottom: 37px;
}


/* ------------------------------- */
/* - NAVIGATION RIGHT */

.oyag-wrap-headder {
    background: transparent;
    width: 100%;
    height: 100px;
    position: absolute;
    z-index: 900;
}

.oyag-burger-menu {
    width: 35px;
    height: 32px;
    margin: auto;
    cursor: pointer;
    right: 25px;
    position: absolute;
    z-index: 999999;
    top: 30px;
}

.oyag-burger-menu:before,
.oyag-burger-menu span,
.oyag-burger-menu:after {
    width: 100%;
    height: 2px;
    display: block;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}

.oyag-burger-menu:before,
.oyag-burger-menu:after {
    transition: top .35s cubic-bezier(.23, 1, .32, 1), transform .35s cubic-bezier(.23, 1, .32, 1), opacity .35s cubic-bezier(.23, 1, .32, 1), background-color 1.15s cubic-bezier(.86, 0, .07, 1);
    -webkit-transition: top .35s cubic-bezier(.23, 1, .32, 1), -webkit-transform .35s cubic-bezier(.23, 1, .32, 1), opacity .35s cubic-bezier(.23, 1, .32, 1), background-color 1.15s cubic-bezier(.86, 0, .07, 1);
    content: "";
}

.oyag-burger-menu:before {
    top: 4px;
}

.oyag-burger-menu span {
    top: 15px;
}

.oyag-burger-menu:after {
    top: 26px;
}

.oyag-burger-menu:hover:before {
    top: 7px;
}

.oyag-burger-menu:hover:after {
    top: 23px;
}

.oyag-burger-menu.cross span {
    opacity: 0;
}

.oyag-burger-menu.cross:before,
.oyag-burger-menu.cross:after {
    top: 40%;
}

.oyag-burger-menu.cross:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.oyag-burger-menu.cross:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

.oyag-burger-menu:focus {
    outline: none;
}

.oyag-sosmed {
    position: absolute;
    z-index: 9;
    right: 40px;
    bottom: 10px;
    cursor: pointer;
    list-style: none;
}

.oyag-sosmed li {
    margin-top: 20px;
}

.oyag-sosmed li i {
    color: #6d6e71;
    font-size: 1.5rem;
    transition: .3s;
}

.oyag-sosmed li i:hover {
    color: #F27C3C;
}


/* ------------------------------- */
/* - MENU BIG DESKTOP */


.oyag-manunavi-wrap {
    width: calc(100% - 240px);
    height: 100vh;
    background: rgba(16, 16, 16, 0.9);
    z-index: 10000;
    margin: auto;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 1px solid #31363a;
    border-right: 1px solid #31363a;
}

.oyag-mainmenu {
    padding-top: 8%;
}

.oyag-mainmenu ul li {
    color: #6d6e71;
    font-size: 4rem;
    list-style: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

.oyag-mainmenu ul li:hover {
    color: #fff;
}

.oyag-mainmenu ul li .activex {
    color: #fff;
}

.oyag-mainmenu ul li:nth-child(1) {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .1s both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .1s both;
}

.oyag-mainmenu ul li:nth-child(2) {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .2s both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .2s both;
}

.oyag-mainmenu ul li:nth-child(3) {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .3s both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .3s both;
}

.oyag-mainmenu ul li:nth-child(4) {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .4s both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .4s both;
}

.oyag-mainmenu ul li:nth-child(5) {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .5s both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) .5s both;
}

.langlist {
    margin-bottom: 0;
    display: none;
}

.sosmed-lnk {
    margin-bottom: 0;
    display: none;
}




/*
* ----------------------------------------------------------------------------------------
* 04.SECTION HOME PROFILE
* ----------------------------------------------------------------------------------------
*/


#headme {
    padding-left: 30px;
    padding-right: 30px;
}

.detail-list {
    padding: 30px;
    padding-top: 40px;
    background-color: #1d1d1d;
    margin-bottom: 30px;
    border: 1px solid #424242;
    color: #fff;
}

.detail-list ul li {
    font-weight: normal;
    text-transform: none;
    color: #F27C3C;
    position: relative;
    padding-left: 30px;
    list-style: none;
    font-size: .9rem;
}

.detail-list ul li:before {
    font-family: FontAwesome;
    content: "\f0c8";
    position: absolute;
    left: 0;
    top: 0;
    color: #F27C3C;
}


/* ------------------------------- */
/* - HERO PICTURE */


#hero {
    width: 100%;
    height: 90vh;
    text-align: center;
    margin-top: 100px;
}

#hero img {
    width: 100%;
    opacity: .8;
}


/* ------------------------------- */
/* - RIGHT SIDE SECTION */


.text-warp {
    z-index: 2;
    position: absolute;
    margin: auto auto auto 0;
    top: -130px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-left: 0;
    width: 500px;
    height: 100px;
}

.text-warp h6 {
    font-size: 1.3rem;
    color: #fff;
}

.text-warp p {
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.6;
    color: #9f9f9f;
}

.text-warp h1 {
    font-size: 4.2rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.3;
    font-weight: bold;
    color: #fff;
}

.anilink {
    position: relative;
    border: 2px solid;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    transition: .3s;
    padding: 11px 45px 11px 45px;
}

.anilink:hover {
    color: #212528;
    background: #F27C3C;
}


/* ------------------------------- */
/* - DETAIL HERO */


.detail-profile {
    padding: 30px;
}

.n-detail {
    color: #fff;
    font-size: 1rem;
}


/* ------------------------------- */
/* - HERO ACTIVITIES */



.what-detail {
    padding: 30px;
}

.what-detail h6 {
    font-size: 1rem;
    color: #9f9f9f;
}

.what-detail h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.what-detail h3::after {
    position: absolute;
    content: '';
    top: 65%;
    transform: translateY(-50%);
    right: 15px;
    width: calc(100% - 350px);
    height: .1rem;
    z-index: -1;
    background: #31363a;
}

.detail-what-ido {
    padding: 30px;
}

.icon-featured {
    display: table-cell;
    float: left;
    width: auto;
    color: #F27C3C;
    margin-right: 20px;
    font-size: 3rem;
}

.detail-text-wrap {
    width: auto;
    display: table-cell;
    padding-left: 10px;
}

.detail-text-wrap p {
    font-size: .8rem;
    color: #9f9f9f;
}



/*
* ----------------------------------------------------------------------------------------
* 05.SECTION PORTFOLIO
* ----------------------------------------------------------------------------------------
*/



.porto-detail {
    padding: 30px;
    padding-top: 100px;
}

.porto-detail h6 {
    font-size: .8rem;
    color: #6d6e71;
}

.porto-detail h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.porto-detail h3::after {
    position: absolute;
    content: '';
    top: 65%;
    transform: translateY(-50%);
    right: 15px;
    width: calc(100% - 350px);
    height: .1rem;
    z-index: -1;
    background: #31363a;
}


/* - LIST PORTFOLIO */


.portowrap {
    padding: 30px;
}

.portfolio-img img {
    max-width: 100%;
    width: 100%;
}

.work-content.grid-gutter-md {
    margin-left: -8px;
    margin-right: -8px;
}

.work-content.grid-gutter-md .grid-item {
    padding: 8px;
}

.work-content.grid-gutter-lg {
    margin-left: -12px;
    margin-right: -12px;
}

.work-content.grid-gutter-lg .grid-item {
    padding: 12px;
}

.work-content .grid-item {
    float: left;
}

.portfolio-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.portfolio-img img {
    max-width: 100%;
}

.portfolio-box .portfolio-img img {
    -moz-transition: ease all 3s;
    -o-transition: ease all 3s;
    -webkit-transition: ease all 3s;
    transition: ease all 3s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.portfolio-box .portfolio-info {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.8);
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    opacity: 0;
}

.portfolio-box:hover .portfolio-info {
    opacity: 1;
}

.portfolio-box:hover .portfolio-img img {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.overlay-porto {
    position: absolute;
    z-index: 20;
    left: -20px;
    bottom: 20px;
    -webkit-transition: .4s all ease-out;
    transition: .4s all ease-out;
    opacity: 0;
    visibility: hidden;
}

.portfolio-box:hover .overlay-porto {
    visibility: visible;
    left: 20px;
    opacity: 1;
    visibility: visible;
}

.portfolio-box h2 {
    color: #fff;
    font-size: 1rem;
}

.portfolio-box h6 {
    font-size: .8rem;
    color: #6d6e71;
    font-weight: normal;
}

.portfolio-box:hover h6,
.portfolio-box:hover h2 {
    left: 20px;
    opacity: 1;
    visibility: visible;
}




/* ------------------------------- */
/* - LIST CLIENT */


#client-wrap {
    padding: 30px;
    padding-bottom: 50px;
}

.owl-item img {
    width: 50% !important;
    transition: all .4s;
    filter: opacity(0.5);
    margin-left: 50px;
}

.owl-item img:hover {
    filter: opacity(1);
}

.partners-carousel {
    margin-bottom: 30px;
}

.partners-carousel .owl-dots .active span {
    width: 20px !important;
    transition: all .2s;
    background: #253759 !important;
}


/*
* ----------------------------------------------------------------------------------------
* 06.SECTION CASESTUDY PORTFOLIO
* ----------------------------------------------------------------------------------------
*/


/* - HEAD CASESTUDY */


.porto-casestudy {
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 50px;
}

.porto-casestudy h6 {
    font-size: 1rem;
    color: #6d6e71;
}

.porto-casestudy h3 {

    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}


/* ------------------------------- */
/* - CASESTUDY ITEM */


.casestudy {
    padding: 30px;
}

.casestudy .item {
    margin-bottom: 30px;
}

.casestudy .item img {
    padding: 0 !important;
    display: block;
    max-width: 100%;
    height: auto;
    outline: transparent solid 2px;
    outline-offset: 0px;
    width: 100%;
}

#detailcase {
    padding-top: 100px;
    padding-bottom: 100px;
    color: #9f9f9f;
}

#bigitem img {
    width: 100%;
    margin-bottom: 100px;
}

.video {
    width: 100%;
    position: relative;
}

.video i {
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    color: red;
    transform: translate(-50%, -50%);
}

#bigitemvideo {
    width: 100%;
    height: 450px;
    background: url('../image/porto/img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.5);
}

#bigitemvideo img {
    width: 100%;
    margin-bottom: 100px;
}

.mini-text {
    margin-bottom: 100px;
}

.mini-text h3 {
    color: #fff;
}

.mini-text p {
    color: #9f9f9f;
}

#nextproject {
    margin-top: 50px;
}

.nextprev {
    padding-left: 0;
    padding-right: 0;
}

.nextprev a:hover .arrow-right {
    background-color: #31363a;
}

.arrow-left,
.arrow-right {
    width: 100%;
    height: 80px;
    z-index: 51;
    line-height: 100px;
    border-top: 1px solid #31363a;
    transition: all .3s;
}

.arrow-left {
    border-right: 1px solid #31363a;
}

.arrow-right i {
    font-size: 2rem;
    color: #fff;
}

.arrow-left i {
    font-size: 2rem;
}



/*
* ----------------------------------------------------------------------------------------
* 07.SECTION RESUME
* ----------------------------------------------------------------------------------------
*/



#wrap-oyag-resume {
    padding-bottom: 50px;
}

.detail-resume {
    padding: 30px;
}

.resume-list {
    padding: 30px;
    padding-top: 40px;
    background-color: #1d1d1d;
    color: #fff;
}

.resume-list:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #F27C3C;
    right: 15px;
    top: 0;
    z-index: 1;
}

.resume-list:hover:before {
    background-color: #F27C3C;
}

.resume-list:before {
    content: "";
    position: absolute;
    right: -10px;
    top: -8px;
    width: 50px;
    height: 50px;
    background-color: #1d1d1d;
    border: 5px solid #101010;
    transition: all .3s;
    z-index: 100;
    margin-left: -7px;
    border-radius: 50%;
}


/* - HEAD RESUME */


.resume-detail {
    padding: 30px;
    padding-top: 100px;
}

.resume-detail h6 {
    font-size: .8rem;
    color: #6d6e71;
}

.resume-detail h3 {

    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.resume-detail h3::after {
    position: absolute;
    content: '';
    top: 65%;
    transform: translateY(-50%);
    right: 15px;
    width: calc(100% - 400px);
    height: .1rem;
    z-index: -1;
    background: #31363a;
}

.resume-text-wrap {
    width: auto;
    display: table-cell;
    padding-left: 10px;
}

.resume-text-wrap p {
    font-size: .8rem;
    color: #9f9f9f;
}

.resume-text-wrap h6 {
    font-size: .7rem;
    font-weight: bold;
    color: #9f9f9f;
}

.resume-text-wrap h3 {
    font-size: 1.3rem;
}

.resume-text-wrap .first {
    color: #F27C3C;
    font-weight: bold;
}


/* ------------------------------- */
/* - SKILL SECTION */


#skill-wrap {
    margin-bottom: 30px;
}

.skill-circle {
    margin: 0 auto;
}

.skill {
    margin-top: 30px;
}

#skil-warp {
    padding-top: 80px;
    padding-bottom: 80px;
}

.circliful {
    position: relative;
}

.skill h3 {
    color: #F27C3C;
    font-size: 1rem;
}

.circle-text,
.circle-info,
.circle-text-half,
.circle-info-half {
    width: 100%;
    position: absolute;
    text-align: center;
    color: #F27C3C;
    font-weight: bold;
    display: inline-block;
}

.circle-info,
.circle-info-half {
    color: #F27C3C;
}

.circliful .fa {
    margin: -10px 3px 0 3px;
    position: relative;
    bottom: 4px;
}


/*
* ----------------------------------------------------------------------------------------
* 08.BLOG SECTION
* ----------------------------------------------------------------------------------------
*/


/* - HEAD BLOG  */


.blog-detail {
    padding: 30px;
    padding-top: 100px;
}

.blog-detail h6 {
    font-size: .8rem;
    color: #6d6e71;
}

.blog-detail h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.blog-detail h3::after {
    position: absolute;
    content: '';
    top: 65%;
    transform: translateY(-50%);
    right: 15px;
    width: calc(100% - 400px);
    height: .1rem;
    z-index: -1;
    background: #31363a;
}


/* ------------------------------- */
/* - BLOG ITEM */


.detail-blog {
    padding: 40px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #1e2225;
    background-clip: border-box;
    border: unset;
    border-radius: .25rem;
    color: #fff;
}

.card-body {
    border: 1px solid #31363a;
    border-top: none;
    padding-bottom: 30px;
}

.card-img {
    opacity: .8;
}

.card-text {
    margin-bottom: 30px;
}

.date-detail {
    font-size: .7rem;
    color: #9f9f9f;
}

.p-detail {
    color: #9f9f9f;
}

.text-muted {
    color: #F27C3C !important;
    border: 1px solid;
    padding: 10px;
    cursor: pointer;
}

.text-muted:hover {
    background: #F27C3C !important;
    color: #1e2225 !important;
}

.wrap-paggin {
    padding: 40px;
    border-top: 1px solid #31363a;
}

.loadmore {
    position: relative;
    border: 2px solid;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    transition: .3s;
    padding: 11px 45px 11px 45px;
}

.loadmore:hover {
    color: #212528;
    background: #F27C3C;

}



/*
* ----------------------------------------------------------------------------------------
* 09.CONTACT SECTION
* ----------------------------------------------------------------------------------------
*/


/* ------------------------------- */
/*  - HEAD CONTACT */


#contact-detail {
    padding-top: 100px;
}

#contact-detail h6 {
    font-size: .8rem;
    color: #6d6e71;
}

#contact-detail h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

#contact-detail h3::after {
    position: absolute;
    content: '';
    top: 65%;
    transform: translateY(-50%);
    right: 15px;
    width: calc(100% - 350px);
    height: .1rem;
    z-index: -1;
    background: #31363a;
}


/* ------------------------------- */
/* - MAP CONTACT - */


.map {
    border: unset;
    height: 450px;
    width: 100%;
    filter: grayscale(100%);
    opacity: .8;
    margin-bottom: 60px;
    margin-top: 60px;
}

.address-box {
    color: #fff;
}

.address-box h1 {
    font-weight: bold;
}

.p-add {
    margin-top: 10px;
    margin-bottom: 10px;
}

.add-p {
    color: #9f9f9f;
    font-size: 1.3rem;
}

.add-m {
    color: #9f9f9f;
    font-size: 1.3rem;
}



/* ------------------------------- */
/*  - FORM CONTACT */


.half {
    float: left;
    width: 50%;
    padding-right: 15px;
    margin-bottom: 18px;
}

.half-last {
    float: left;
    width: 50%;
    padding-left: 15px;
    margin-bottom: 18px;
}

.contact-form {
    margin-top: 50px;
}

.contact-form form {
    border-top: 1px solid #31363a;
    padding-top: 50px;
}

.btn-submit-form button {
    display: inline-block;
    border: 1px solid #828282;
    padding: 0px 25px 0 30px;
    height: 80px;
    width: 100%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 50px;
    background: transparent;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    transition: .3s;
}

.btn-submit-form button:hover {
    background: #F27C3C;
    color: #212528;
    border: 1px solid #F27C3C;
}

#comment {
    height: 100px;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid #F27C3C;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}


/*
* ----------------------------------------------------------------------------------------
* 10.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/


.detail-footer-wrap {
    width: auto;
    display: block;
}

.detail-footer-wrap p {
    font-size: .8rem;
    color: #9f9f9f;
}

.detail-list-me {
    margin-bottom: 30px;
}

.itemfot {
    padding-bottom: 30px;
    padding-top: 20px;
    font-weight: bold;
}



/*
* ----------------------------------------------------------------------------------------
* 13.GLOBAL MEDIA QUERY
* ----------------------------------------------------------------------------------------
*/


 

@media only screen and (min-width: 992px) {
    .work-content.grid-col-3 .grid-item {
        width: 25%;
    }
}


@media (min-width: 768px) {
    .work-content.grid-col-3 .grid-item {
        width: 33.3333%;
    }
}

 

@media only screen and (max-width: 1280px) {
    .text-warp {
        z-index: 2;
        position: absolute;
        margin: auto;
        top: -130px;
        right: 0;
        left: 0;
        bottom: 0;
        padding-right: 20px;
        width: 100%;
        height: 100px;
    }

    .text-warp h6 {
        font-size: 1.3rem;
    }

    .text-warp h1 {
        font-size: 3rem;
    }

    .text-warp p {
        font-size: 1rem;
    }

    .anilink {
        font-size: 1.3rem;
    }

    #hero {
        height: 80vh;
    }
}

@media only screen and (max-width: 1024px) {
    #oyagmain-site-wrap .wrap-oyag-content {
        width: 100%;
        max-width: 100%;
    }

    .navigation-bar {
        left: -1000px;
    }

    .oyag-logo-mb {
        display: inline-block;
    }

    .oyag-mainmenu {
        padding-top: 20%;
    }

    .oyag-wrap-headder {
        background: linear-gradient(180deg, #151812 0%, transparent 100%);
        z-index: 100000;
    }

    #hero {
        height: 60vh;
    }

    .oyag-manunavi-wrap {
        width: 100%;
        height: 100vh;
    }

    .oyag-sosmed {
        display: none;
    }
}

@media only screen and (max-width: 999px) {

    #oyagmain-site-wrap {
        width: 100%;
    }

    .oyag-mainmenu ul li {
        font-size: 3rem;
    }

    #hero {
        height: 80vh;
    }

    .detail-profile {
        margin-top: 200px;
    }

    .detail-what-ido {
        margin-top: 50px;
    }

    .text-warp {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100px;
    }

    .menuitemnav {
        padding-left: 30px;
    }

    .langlist {
        display: block;
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .sosmed-lnk {
        display: block;
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .oyag-mainmenu .sosmed-lnk>li {
        display: inline-block;
        margin-top: 0;
    }

    .oyag-mainmenu .sosmed-lnk>li a.navlang {
        margin-right: 20px;
        font-size: 1.3rem;
        cursor: pointer;
    }

    .oyag-mainmenu .sosmed-lnk>li a:hover {
        color: #F27C3C;
    }


    .oyag-mainmenu .langlist>li {
        display: inline-block;
        margin-top: 0;

    }

    .oyag-mainmenu .langlist>li a.navlang {
        margin-right: 20px;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .oyag-mainmenu .langlist>li a.navlang.aktiflang {
        color: #F27C3C;
    }

    .oyag-mainmenu .langlist>li a:hover {
        color: #F27C3C;
    }

    .n-detail {
        font-size: .8rem;
    }
}

@media only screen and (max-width: 890px) {
    .text-warp {
        top: -100px;

    }

}

@media only screen and (max-width: 768px) {

    .detail-footer-wrap {
        text-align: center;
    }

    .blurry {
        filter: unset;
    }

    .detail-profile {
        margin-top: 200px;
    }

    .address-box h1 {
        font-size: 1.8rem;
    }

    .oyag-mainmenu {
        padding-top: 20%;
    }

    .what-detail h3 {
        font-size: 1rem;
    }

    .portowrap {
        padding: 0;
    }

    .porto-detail {
        padding-right: 10px;
        padding-left: 10px;
    }

    .porto-detail h3 {
        font-size: 1rem;
    }

    .porto-casestudy h3 {
        font-size: 1rem;
    }

    .video {
        padding-right: 30px;
        padding-left: 30px;
    }

    .resume-detail {
        padding-right: 10px;
        padding-left: 10px;
    }

    .resume-detail h3 {
        font-size: 1rem;
    }

   .resume-detail h3::after {
        width: calc(100% - 250px);
    }

    .blog-detail {
        padding-right: 10px;
        padding-left: 10px;
    }

    .blog-detail h3 {
        font-size: 1rem;
    }

   .blog-detail h3::after {
        width: calc(100% - 250px);
    }

    #contact-detail h3::after {
        width: calc(100% - 250px);

    }

    .porto-detail h3::after {
        width: calc(100% - 250px);
    }

    .what-detail h3::after {
        width: calc(100% - 250px);
    }

    .detail-resume {
        padding: 10px;
    }

    .detail-blog {
        padding: 20px;
    }

    .formcontactcol {
        padding: 10px;
    }

    #contact-detail h3 {
        font-size: 1rem;
    }

    .oyag-mainmenu ul li {
        font-size: 2rem;
    }

    .casestudy {
        padding: 10px;
    }

    #hero {
        width: 100%;
        height: 100%;
    }

    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .text-warp {
        position: relative;
        text-align: center;
        padding-left: 20px;
        margin-top: 100px;
    }

    .portowrap .item {
        padding: 0;
        margin-top: 30px;
    }

    .contact-form {
        padding-left: 50px;
        padding-right: 50px;
    }

    .n-detail {
        font-size: .8rem;
    }

    .text-warp h1 {
        font-size: 2rem;
    }

    .text-warp p {
        font-size: .9rem;
    }

    .detail-list-me {
        padding-left: 50px;
        padding-right: 50px;
    }

    .work-content.grid-col-3 .grid-item {
        width: 50%;
    }
}

@media only screen and (max-width: 680px) {
    .card-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .contact-form {
        padding-left: 0;
        padding-right: 0;
    }

    .detail-profile {
        padding: 0;
    }

    .detail-what-ido {
        padding: 0;
    }

    .detail-list ul {
        padding-left: 0;
    }

    #hero {
        height: 100%;
    }

    #headme {
        padding-left: 0;
        padding-right: 0;
    }

    .resume-detail h3::after {
        width: calc(100% - 230px);
    }

   .blog-detail h3::after {
        width: calc(100% - 200px);
    }

    #contact-detail h3::after {
        width: calc(100% - 200px);
    }

    .porto-detail h3::after {
        width: calc(100% - 200px);
    }

    .what-detail h3::after {
        width: calc(100% - 200px);
    }

    .detail-footer-wrap p {
        font-size: .6rem;
    }


}

@media only screen and (max-width: 575px) {
    #right {
        padding-top: 50px;
    }

    .what-detail .col-12 {
        padding-left: 0 !important;
    }

    .work-content.grid-col-3 .grid-item {
        width: 100%;
    }

}

@media only screen and (max-width: 480px) {
    .oyag-mainmenu {
        padding-top: 30%;
    }

    #right {
        padding-top: 50px;
    }

    .text-warp {
        margin-top: 50px;
    }
}





