/*
Body / Typography
==========================================================
*/


body {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
}

blockquote {
    position: relative;
    margin-left: 30px;
    margin-bottom: 0;
    padding-left: 50px;
    font-size: 18px;
    font-style: normal;
    border-left-width: 0;
    color: #1a1a1a;
    line-height: 1.7;
}

blockquote:before {
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: '\f10d';
    font-size: 50px;
    top: -30px;
    left: 20px;
    color: #f5f5f5;
    z-index: -1;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.background-image {
    background-position: center center;
    background-size: cover;
}

.persoh-shrink {
    position: relative;
    max-width: 92%;
    margin: 0 auto;
}

.section-heading-wrapper {
    position: relative;
}

.section-heading {
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 500;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
}

.section-description {
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.grid-sizer.cols-1,
.grid-item.cols-1 {
    width: 100%;
    height: 100vh;
}

.grid-sizer.cols-2,
.grid-item.cols-2 {
    width: 50%;
}

.grid-item--width2.cols-2 {
    width: 100%;
}
.grid-sizer.cols-3,
.grid-item.cols-3 {
    width: 33.33%;
}

.grid-item--width2.cols-3 {
    width: 66.66%;
}

.grid-sizer.cols-4,
.grid-item.cols-4 {
    width: 25%;
}
.grid-item--width2.cols-4 {
    width: 50%;
}

.grid-sizer.cols-5,
.grid-item.cols-5 {
    width: 20%;
}

.grid-item--width2.cols-5 {
    width: 40%;
}

.grid-sizer.cols-6,
.grid-item.cols-6 {
    width: 16.6666%;
}

.grid-item--width2.cols-6 {
    width: 33.3333%;
}

div.persoh-ovh {
    overflow: hidden;
    display: block;
}

span.persoh-ovh {
    overflow: hidden;
    display: inline-block;
}

.ptb80 {
    padding: 80px 0;
}

.pt80 {
    padding-top: 80px;
}

.btn-circle {
    display: inline-block;
    position: relative;
    margin: auto;
    padding: 14px 22px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: rgba(255, 171, 157, 0.5);
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.btn-circle span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-transform: capitalize;
    vertical-align: middle;
}

.btn-circle svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.btn-circle:hover {
    color: #333;
    text-decoration: none;
}

.btn-circle:hover:before {
    width: 100%;
    background: #ffab9d;
}

.btn-circle:hover svg {
    transform: translateX(0);
}

.btn-circle:active {
    transform: scale(0.96);
}


/*
Preloader
==========================================================
*/

.table-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.persoh-preloader-area {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    z-index: 9999999;
    height: 100%;
    width: 100%;
}

.persoh-loader {
    animation-name: persoh-preload;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.86, 0, .07, 1);
    background-color: #000;
    height: 2px;
    margin: 0 auto;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes persoh-preload {
    0% {width: 0px;}
    100% {width: 150px;}
}

/* Standard syntax */
@keyframes persoh-preload {
    0% {width: 0px;}
    100% {width: 150px;}
}



/*
Breadcrumb
==========================================================
*/
.persoh-initial-breadcrumb {
    position: relative;
    padding: 50px 0;
    margin-top: 90px;
}

.breadcrumb-overlay {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.persoh-initial-breadcrumb h5 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
}

.persoh-initial-breadcrumb .breadcrumb {
    background-color: transparent;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.persoh-initial-breadcrumb .breadcrumb li {
    position: relative;
    display: inline-block;
}

.persoh-initial-breadcrumb .breadcrumb li,
.persoh-initial-breadcrumb .breadcrumb li a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.persoh-initial-breadcrumb .breadcrumb li:not(:first-child) {
    padding-left: 30px;
}

.persoh-initial-breadcrumb .breadcrumb li:not(:last-child) {
    padding-right: 30px;
}

.persoh-initial-breadcrumb .breadcrumb li:not(:last-child):before {
    content: '\f105';
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
}

.persoh-initial-breadcrumb .breadcrumb li:not(:last-child) a {
    font-weight: 400;
}

.persoh-initial-breadcrumb .breadcrumb li span.bread-current {
    display: block;
    word-break: break-word;
    -ms-word-break: break-word;
}


/*
Pagination
==========================================================
*/

.pagination {
    border-radius: 0;
    display: block;
    margin: 60px auto 0;
}

.pagination li {
    display: inline-block;
}

.pagination li:first-child a,
.pagination li:last-child a {
    border-radius: 0;
}

.pagination li a,
.pagination li span {
    color: #333;
    background-color: transparent;
    border: none;
    text-decoration: none;
}

.pagination li a {
    border: 1px solid #f5f5f5;
    margin: 0 5px;
    border-radius: 50%;
    padding: 10px 15px;
    -webkit-transition: all 320ms ease;
       -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
         -o-transition: all 320ms ease;
            transition: all 320ms ease;
}

.pagination li.active a {
    border-radius: 50%;
    pointer-events: none;
}

.pagination li a:hover,
.pagination li.active a {
    background: transparent;
    color: #333;
    border: 1px solid #cdcdcd;
    box-shadow: 3px 7px 20px #f5f5f5;
}

.pagination > .active > a:focus,
.pagination > .active > a:hover {
    background: #333;
}

.pagination li.prev a,
.pagination li.next a {
    border: transparent;
}

.pagination li.prev a:hover,
.pagination li.next a:hover {
    background: transparent;
    color: #333;
}


/*
Header Area
==========================================================
*/


/*
persoh Initial Menu
==========================================================
*/

.logged-in.admin-bar .persoh-initial-menu .fixed-header {
    top: 32px;
}

.persoh-initial-menu .navbar-header {
    padding-bottom: 30px;
}

.persoh-initial-menu {
    background: #fff;
    border: 0px solid transparent;
    border-radius: 0;
    margin-bottom: 0;
}

.persoh-initial-menu .navbar {
    padding: 9px 0;
}

.persoh-initial-menu .persoh-navbar-initial.fixed {
    box-shadow: 0 12px 40px 1px rgba( 0, 0, 0, .07 );
}

.persoh-initial-menu .navbar-nav li {
    position: relative;
    padding: 0 5px;
    z-index: 1;
}

.persoh-initial-menu .persoh-navbar-initial li.active a,
.persoh-initial-menu .persoh-navbar-initial li.current-menu-parent a,
.persoh-initial-menu .persoh-navbar-initial li.focus a {
    background-color: transparent;
    color: #000;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li.active a {
    color: #000;
}

.persoh-initial-menu .persoh-navbar-initial li.active a:hover,
.persoh-initial-menu .persoh-navbar-initial li.active a:active,
.persoh-initial-menu .persoh-navbar-initial li.active a:focus,
.persoh-initial-menu .persoh-navbar-initial li.focus a:hover,
.persoh-initial-menu .persoh-navbar-initial li.focus a:active,
.persoh-initial-menu .persoh-navbar-initial li.focus a:focus {
    background-color: transparent;
    color: #000;
}

.persoh-initial-menu .persoh-navbar-initial li .persoh-dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 5;
    background: #fff;
    display: none;
}

.persoh-initial-menu .persoh-navbar-initial li a {
    letter-spacing: 0.03em;
    font-size: 14px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    padding: 30px 8px;
    margin: 0;
    font-weight: 500;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
}

.persoh-initial-menu .persoh-navbar-initial .navbar-nav > li > a:before {
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    background-color: #000;
    -webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
}

.persoh-initial-menu .persoh-navbar-initial .navbar-nav > li:hover > a:before,
.persoh-initial-menu .persoh-navbar-initial .navbar-nav > li > a.active:before {
    width: 85%;
    left: 10px;
    right: auto;
}

.persoh-initial-menu .persoh-navbar-initial li:last-child a {
    padding-right: 0;
}

.persoh-initial-menu .persoh-navbar-initial li ul li a {
    padding: 15px 5px;
    text-decoration: none;
}

.persoh-initial-menu .persoh-navbar-initial li a {
    color: #333;
}

.persoh-initial-menu .navbar-default .navbar-brand,
.persoh-initial-menu .navbar-default .navbar-brand:hover {
    color: #333;
    padding-top: 30px;
    padding-left: 0;
}

.persoh-initial-menu .persoh-navbar-initial li:hover a {
    text-decoration: none;
    color: #000;
}

.persoh-initial-menu .persoh-navbar-initial li:hover > .persoh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.persoh-initial-menu .persoh-navbar-initial li:hover ul ul {
    left: 100%;
    top: 10px;
}

.persoh-initial-menu .persoh-navbar-initial li:hover ul ul ul {
    left: -100%;
}

.persoh-initial-menu .persoh-navbar-initial li.dropdown-right:hover ul ul {
    margin-left: -40px;
    top: -15px;
    left: -100%;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu {
    width: 210px;
    left: 0;
    margin-left: 0;
    list-style: none;
    border: 1px solid rgba( 0, 0, 0, .07 );
}

.persoh-initial-menu .persoh-navbar-initial li:hover ul ul ul ul ul ul ul ul {
    left: 100%;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li a {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-top: 0;
    display: block;
    font-size: 13px;
    color: #777;
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
    text-transform: capitalize;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu > li:first-child > a {
    padding-top: 15px;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li {
    position: relative;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li.menu-item-has-children:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    right: 35px;
    position: absolute;
    top: 9px;
    font-size: 14px;
    font-weight: 900;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li a:after {
    background: transparent;
    color: transparent;
}

.persoh-initial-menu .persoh-navbar-initial li ul.persoh-dropdown-menu li a:hover {
    color: #000;
}

.persoh-navbar-initial .initial-menu-social {
    display: inline-block;
}

.persoh-navbar-initial .initial-menu-social li {
    display: inline-block;
}

.persoh-navbar-initial .initial-menu-social li a {
    font-size: 14px;
}

.persoh-navbar-initial .initial-menu-social li:hover a {
    color: #1a1a1a;
}

.persoh-main-header-area,
.persoh-initial-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    height: 90px;
    background-color: #FFF;
    transition: top 0.2s ease-in-out;
}

.logged-in.admin-bar .persoh-main-header-area,
.logged-in.admin-bar .persoh-sidebar-menu,
.logged-in.admin-bar .persoh-initial-menu {
    top: 32px;
}

.persoh-main-header-area.nav-up,
.logged-in.admin-bar .persoh-main-header-area.nav-up,
.persoh-initial-menu.nav-up,
.logged-in.admin-bar .persoh-initial-menu.nav-up {
    background-color: #FFFFFF;
    top: -90px;
}

.persoh-main-header-area.nav-down,
.persoh-initial-menu.nav-down {
    background-color: #FFFFFF;
}

.persoh-main-header {
    padding: .5rem 0;
}

.persoh-main-header .navbar-brand,
.persoh-navbar-initial .navbar-brand {
    width: 135px;
}

.persoh-initial-menu .navbar-brand span,
.persoh-main-header .navbar-brand span,
.persoh-mobile-menu.not-set-menu .navbar-brand span,
.persoh-mobile-menu.slinky-theme-default.is-set-menu ul li a {
    font-size: 25px;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: lowercase;
}

.persoh-mobile-menu.not-set-menu .navbar-brand {
    padding-left: 0;
}

.persoh-sidebar-menu .navbar-brand span {
    margin-bottom: 15px;
    display: inline-block;
}

.persoh-humburger-icon {
    cursor: pointer;
    width: 36px;
    margin-top: 5px;
}

.persoh-humburger-icon span {
    background-color: #1a1a1a;
    height: 2px;
    width: 28px;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
}

.persoh-humburger-icon span:nth-child(2) {
    width: 35px;
}

.persoh-humburger-icon:hover span:not(:nth-child(2)) {
    width: 38px;
}

.persoh-humburger-icon:hover span:nth-child(2) {
    width: 25px;
}

.persoh-sidebar-menu {
    position: fixed;
    width: 330px;
    right: -330px;
    top: 0;
    background-color: #FFFFFF;
    padding: 15px 50px;
    height: 100vh;
    z-index: 3;
    clip-path: polygon(0% 0%,100% 100%,0 0%,0 0);
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1);
         -o-transition: all .8s cubic-bezier(.86,0,.07,1);
            transition: all .8s cubic-bezier(.86,0,.07,1);
}

.persoh-sidebar-menu img {
    margin-bottom: 40px;
}

.persoh-sidebar-menu.is-menu {
    right: 0;
    clip-path: polygon(100% 0%,100% 100%,0 100%,0 0);
}

.persoh-sidebar-menu nav ul,
.sidebar-menu-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px #ededed;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
}

.close-sidebar:hover {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg); 
}

.persoh-sidebar-menu nav ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    position: relative;
}

.persoh-sidebar-menu nav ul li a.active:before,
.persoh-sidebar-menu nav ul li a:before {
    width: 0;
    height: 2px;
    background-color: #000;
    content: '';
    left: 0;
    top: 50%;
    position: absolute;
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

.persoh-sidebar-menu nav ul li a.active:before {
    width: 50%;
}

.persoh-sidebar-menu nav ul li a:hover:before {
    width: 50%;
}

.sidebar-menu-social {
    margin: 40px 0 20px;
}

.sidebar-menu-social ul li {
    display: inline-block;
}

.sidebar-menu-social ul li:not(:last-child) {
    padding-right: 20px;
}

.persoh-initial-mobile-menu-area {
    display: none;
}

.persoh-mobile-menu .header {
    height: auto;
}

.persoh-mobile-menu > ul > li {
    display: inline-block;
}

.persoh-mobile-menu.is-set-menu > ul > li:first-child {
    width: 140px;
}

.persoh-mobile-menu.is-set-menu > ul > li:last-child {
    float: right;
    margin-top: 18px;
    width: 36px;
}


/*
Banner Area
==========================================================
*/

.persoh-banner-area,
.persoh-slider-area {
    position: relative;
}

.banner-left {
    position: relative;
    background-color: #FFF;
    padding: 230px 30px 230px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
       -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
         -o-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
            transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
}

.banner-left.animation-loaded {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.banner-left:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    background-color: #fff;
    -webkit-transform: skew(-3deg);
    -moz-transform: skew(-3deg);
    -ms-transform: skew(-3deg);
    -o-transform: skew(-3deg);
    transform: skew(-3deg);
}

.banner-left h2,
.banner-left p,
.banner-left a.persoh-btn,
.banner-circle {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
       -moz-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
         -o-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
}

.banner-left h2 {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) .8s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) .8s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) .8s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) .8s;
            transition: all .8s cubic-bezier(.86,0,.07,1) .8s;
}

.banner-left p {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) .9s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) .9s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) .9s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) .9s;
            transition: all .8s cubic-bezier(.86,0,.07,1) .9s;
}

.banner-left a.persoh-btn {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) 1.3s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) 1.3s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) 1.3s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) 1.3s;
            transition: all .8s cubic-bezier(.86,0,.07,1) 1.3s;
}

.banner-circle {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) 1.7s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) 1.7s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) 1.7s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) 1.7s;
            transition: all .8s cubic-bezier(.86,0,.07,1) 1.7s;
}

.banner-left h2 {
    margin-top: 0;
    font-size: 60px;
    font-weight: 700;
}

.banner-left.animation-loaded h2,
.banner-left.animation-loaded p,
.banner-left.animation-loaded a.persoh-btn,
.banner-left.animation-loaded .banner-circle {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.banner-left a.persoh-btn {
    display: inline-block;
    margin-top: 50px;
}

.banner-circle {
    position: absolute;
    left: -10%;
    top: 20%;
}

.b-scroll-wrapper,
.section-intro,
#contactF,
#contactC {
    position: absolute;
    top: 50%;
    writing-mode: vertical-rl;
}

.b-scroll-wrapper,
#contactF,
#contactC {
    right: -4%;
}

.section-intro {
    left: -4%;
}

.b-scroll,
.section-intro span,
#contactF {
    text-transform: uppercase;
    font-weight: 700;
}

.b-scroll {
    opacity: 0;
    visibility: hidden;
    writing-mode: vertical-rl;
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) 2.2s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) 2.2s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) 2.2s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) 2.2s;
            transition: all .8s cubic-bezier(.86,0,.07,1) 2.2s;
}

.b-scroll:before,
.section-intro span:before,
#contactF:before {
    background-color: #000;
    position: absolute;
    top: -60px;
    content: '';
    height: 2px;
    width: 100px;
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
}

.b-scroll:before,
#contactF:before {
    right: -113%;
}

.section-intro span:before {
    left: -113%;
}

.animation-loaded .b-scroll,
.persoh-about-area .b-scroll,
.persoh-services-area .b-scroll,
.persoh-portfolio-area .b-scroll,
.persoh-blog-area .b-scroll,
.persoh-slider-area .b-scroll,
.persoh-resume-area .b-scroll {
    opacity: 1;
    visibility: visible;
}

.b-scroll:hover:before,
#contactF:hover:before {
    top: 80px;
}

.banner-right {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-right ul {
    position: absolute;
    left: 20px;
    bottom: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-right ul li {
    display: inline-block;
}

.banner-right ul li a {
    color: #FFF;
}

.banner-right ul li:not(:last-child) {
    margin-right: 20px;
}

.intro-banner-area {
    padding: 100px 0;
}

.intro-banner-area p {
    margin-top: 30px;
    color: #666;
}

.intro-personal-image {
    width: 60%;
    float: right;
}

.intro-personal-image img,
.intro-banner-image img {
    -webkit-transform: translate3d(0,105%,0);
       -moz-transform: translate3d(0,105%,0);
        -ms-transform: translate3d(0,105%,0);
         -o-transform: translate3d(0,105%,0);
            transform: translate3d(0,105%,0);
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
         -o-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
            transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
}

.intro-personal-image img.animation-loaded,
.intro-banner-image img.animation-loaded {
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
         -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.introductory-text {
    position: absolute;
    left: 60px;
    top: 20%;
    z-index: 2;
}

.introductory-text h2 {
    font-size: 60px;
    margin: 0;
    -webkit-transform: translate3d(0,-105%,0);
       -moz-transform: translate3d(0,-105%,0);
        -ms-transform: translate3d(0,-105%,0);
         -o-transform: translate3d(0,-105%,0);
            transform: translate3d(0,-105%,0);
}

.introductory-text .persoh-ovh:nth-child(1) h2 {
    -webkit-transition: all .9s cubic-bezier(.86,0,.07,1) .9s;
       -moz-transition: all .9s cubic-bezier(.86,0,.07,1) .9s;
        -ms-transition: all .9s cubic-bezier(.86,0,.07,1) .9s;
         -o-transition: all .9s cubic-bezier(.86,0,.07,1) .9s;
            transition: all .9s cubic-bezier(.86,0,.07,1) .9s;
}

.introductory-text .persoh-ovh:nth-child(2) h2 {
    -webkit-transition: all 1.2s cubic-bezier(.86,0,.07,1) 1.2s;
       -moz-transition: all 1.2s cubic-bezier(.86,0,.07,1) 1.2s;
        -ms-transition: all 1.2s cubic-bezier(.86,0,.07,1) 1.2s;
         -o-transition: all 1.2s cubic-bezier(.86,0,.07,1) 1.2s;
            transition: all 1.2s cubic-bezier(.86,0,.07,1) 1.2s;
}

.introductory-text .persoh-ovh:nth-child(3) h2 {
    -webkit-transition: all 1.5s cubic-bezier(.86,0,.07,1) 1.5s;
       -moz-transition: all 1.5s cubic-bezier(.86,0,.07,1) 1.5s;
        -ms-transition: all 1.5s cubic-bezier(.86,0,.07,1) 1.5s;
         -o-transition: all 1.5s cubic-bezier(.86,0,.07,1) 1.5s;
            transition: all 1.5s cubic-bezier(.86,0,.07,1) 1.5s;
}

.introductory-text h2.animation-loaded {
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
         -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.personal-social-profile {
    margin-bottom: 20px;
}

.personal-social-profile ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.personal-social-profile ul li {
    display: inline-block;
}

.personal-social-profile ul li a {
    font-weight: 600;

}

.personal-social-profile ul li:not(:last-child) {
    margin-right: 15px;
}

.persoh-intro-banner-area .b-scroll-wrapper {
    left: 30%;
    right: auto;
    top: 70%;
}


/*
About Area
==========================================================
*/

.persoh-about-area {

}

.about-right {
    padding: 80px 60px 110px 20px;
    color: #717783;
}

.about-right h6,
.services-right h6,
.persoh-single-portfolio h6 {
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-block;
}

.about-right h6 {
    color: #FFF;
}

.about-right h6:after,
.services-right h6:after {
    position: absolute;
    left: 100%;
    top: 50%;
    content: '';
    height: 2px;
    width: 100px;
    margin-left: 5px;
    margin-top: -1px;
}

.about-right h6:after {
    background-color: #FFF;
}

.about-stories-counter {
    margin-top: 35px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.single-about-story-counter {
    text-align: center;
}

.single-about-story-counter span {
    font-weight: 100;
    font-size: 50px;
}

.single-about-story-counter p {
    line-height: 0;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.about-progress-wrapper {
    margin-top: 80px;
}

.persoh-progress {
    position: relative;
    width: 100%;
    height: 2px;
}

.persoh-progress:not(:last-child) {
    margin-bottom: 55px;
}

.persoh-progress-bar-1-1 svg,
.persoh-progress-bar-1-2 svg,
.persoh-progress-bar-1-3 svg,
.persoh-progress-bar-1-4 svg {
    position: absolute;
    bottom: 0;
}

.persoh-progress span {
    font-weight: 400;
    position: absolute;
    top: 5px;
    text-transform: uppercase;
}

/*
Services Area
==========================================================
*/

.single-service {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.single-service.even .services-right {
    order: 1;
}

.single-service.even .services-left {
    order: 2;
}

.single-service.even .services-left img {
    float: right;
}

.services-left, 
.services-right {
    flex-basis: 50%;
}

.services-right h6:after {
    background-color: #000;
}

.services-right {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 60px;
    padding-left: 35px;
}

.services-right {
    z-index: 0;
}

.services-left img {
    position: relative;
    z-index: 2;
}

.service-circle {
    z-index: -1;
    position: absolute;
    right: -30%;
    top: 60%;
}

.services-right h2 {
    position: absolute;
    font-size: 150px;
    margin-bottom: 0;
    color: rgba(102, 117, 122, .1);
    top: 25%;
    left: -8%;
    z-index: -1;
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}


/*
Portfolio Area
==========================================================
*/

.persoh-single-portfolio {
    position: relative;
}

.persoh-single-portfolio img {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1);
         -o-transition: all .8s cubic-bezier(.86,0,.07,1);
            transition: all .8s cubic-bezier(.86,0,.07,1);
}

.persoh-single-portfolio:hover img {
    -webkit-transform: scale(.8);
       -moz-transform: scale(.8);
        -ms-transform: scale(.8);
         -o-transform: scale(.8);
            transform: scale(.8);
}

.persoh-single-portfolio h6 {
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
       -moz-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
         -o-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
            transition: all .8s cubic-bezier(.86,0,.07,1) .5s;
}

.portfolio-details {
    position: absolute;
    bottom: 65px;
    left: 80px;
    text-align: left;
}

.portfolio-tags {
    position: absolute;
    left: -38px;
    bottom: 75px;
    -webkit-transform: rotate(-90deg);
       -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.portfolio-tag-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
       -moz-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
         -o-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1) .3s;
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1) .3s;
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1) .3s;
         -o-transition: all .8s cubic-bezier(.86,0,.07,1) .3s;
            transition: all .8s cubic-bezier(.86,0,.07,1) .3s;
}

.persoh-single-portfolio:hover .portfolio-tag-wrap {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.persoh-single-portfolio:hover h6 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}












.portfolio-content .grid-item {
    float: left;
    overflow: hidden;
}

.portfolio-content .grid-item.standard-with-space,
.portfolio-content .grid-item.masonary-with-space {
    border: 5px solid transparent;
}

.portfolio-content .grid-item.standard-without-space img,
.portfolio-content .grid-item.masonary-without-space img {
    width: 100%;
}

.persoh-portfolio-area .portfolio-nav ul {
    background-color: #fff;
    box-shadow: 0 0 40px #f5f5f5;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 30px;
}

.persoh-portfolio-area .portfolio-nav ul li {
    cursor: pointer;
    letter-spacing: 0.07em;
    display: inline-block;
    padding: 20px 25px;
}

.persoh-portfolio-area .portfolio-nav ul li.active {
    box-shadow: 0 0 40px #f5f5f5;
    border-radius: 50px;
}

.portfolio-content .grid-item,
.portfolio-content .grid-item img,
.portfolio-overlay {
    -webkit-transition: all .8s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .8s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .8s cubic-bezier(.86,0,.07,1);
         -o-transition: all .8s cubic-bezier(.86,0,.07,1);
            transition: all .8s cubic-bezier(.86,0,.07,1);
}

.portfolio-content .grid-item h3 {
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1) .3s;
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1) .3s;
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1) .3s;
         -o-transition: all .5s cubic-bezier(.86,0,.07,1) .3s;
            transition: all .5s cubic-bezier(.86,0,.07,1) .3s;
}

.portfolio-content .grid-item h3 {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    -webkit-transform: translate3d(0,100%,0);
       -moz-transform: translate3d(0,100%,0);
        -ms-transform: translate3d(0,100%,0);
         -o-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
}

.portfolio-content .grid-item h3 a {
    text-decoration: none;
    color: #333;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: url(../images/crosshair-dark.png), crosshair;
    opacity: 0;
}

.portfolio-content .grid-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content .grid-item:hover .portfolio-title h3 {
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
         -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.portfolio-content .grid-item:hover > img {
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
         -o-transform: scale(1.3);
            transform: scale(1.3);
}



.portfolio-load-more-wrapper {
    margin-top: 30px;
}

.single-portfolio-image img:not(:last-child) {
    margin-bottom: 15px;
}

.about-project {
    margin-bottom: 15px;
}

.about-project h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.project-details {
    display: flex;
    justify-content: space-between;
}

.project-details .single-details h5 {
    margin: 5px 0;
    font-size: 14px;
    font-weight: 500;
}

.project-details .single-details p {
    font-size: 12px;
}


/*
Services Area
==========================================================
*/

.persoh-services-wrapper {
    padding-top: 60px;
}

.single-service h5 {
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.single-service p {
    font-size: 14px;
}

/*
Resume Area
==========================================================
*/

.single-resume {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.single-resume:not(:last-child) {
    margin-bottom: 35px;
}

.single-resume-left {
    margin-right: 100px;
    padding-right: 100px;
}

.single-resume-left h6 {
    position: relative;
    margin-top: 10px;
    margin-bottom: 0;
}

.single-resume-left h6:after {
    width: 10px;
    height: 2px;
    background-color: #000;
    content: '';
    left: 200%;
    top: 50%;
    position: absolute;
}

.single-resume-right {
    border-bottom: 1px solid #ededed;
    padding-bottom: 35px;
}

.single-resume-right h4 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.7;
}

.single-resume-right h5 {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #717783;
    margin-bottom: 0;
}

.single-resume-right p {
    margin-bottom: 0;
}


/*
Testimonial Area
==========================================================
*/
.persoh-testimonial-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
    overflow: hidden;
}

.single-testimonial {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.persoh-testimonial-wrapper .owl-item {
    float: left;
}

.single-testimonial:before {
    position: absolute;
    content: '';
    background-color: #505160;
    width: 45vw;
    height: 70vh;
    top: -2.5vw;
    left: 0;
    z-index: -1;
}

.single-testimonial i {
    font-size: 20px;
}

.single-testimonial h3 {
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 22px;
}

.testimonial-details {
    position: relative;
    background-color: #FFF;
    margin-left: 4%;
    width: 46%;
    padding: 0 25px;
}

.testimonial-details-wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

.testimonial-img {
    width: 50%;
}

.testimonial-details p {
    margin-bottom: 0;
}

.persoh-testimonial-wrapper .owl-nav {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    text-align: center;
}

.persoh-testimonial-wrapper .owl-nav button {
    padding: 0;
    padding-right: 6px;
    font-size: 25px;
    outline: 0;
}

.persoh-testimonial-wrapper .owl-nav button,
.persoh-testimonial-wrapper .owl-nav button:hover {
    background-color: transparent !important;
}


/*
Blog Area
==========================================================
*/

.persoh-blog-posts article {
    border: transparent;
    overflow: hidden;
    position: relative;
    opacity: 0;
    margin-right: 30px;
    -webkit-transform: translateY(100px);
       -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
         -o-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
}

.persoh-blog-posts article.post-reveal {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
}

.blog .persoh-blog-posts article,
.archive .persoh-blog-posts article,
.search-results .persoh-blog-posts article {
    margin-bottom: 100px;
}

.search-results .entry-summary p {
    margin-bottom: 0;
}

.search-results .entry-footer {
    margin-top: 1rem;
}

.search-results .entry-footer span:first-child {
    margin-left: 0;
}

.single-post .persoh-blog-posts article {
    margin-bottom: 0; 
}

.entry-title {
    font-size: 20px;
    margin-top: 10px;
}

.entry-title a {
    text-decoration: none;
    color: #333;
}

.cat-links,
.tags-links {
    position: relative;
    padding-left: 20px;
    color: #717783;
}

.byline .author a {
    text-transform: capitalize;
}

.posted-by {
    color: #717783;
    margin-left: 5px;
}

.tags-links {
    margin-left: 15px;
}

.byline:before,
.cat-links:before,
.tags-links:before {
    position: absolute;
    left: 1px;
    top: -1px;
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
}

.cat-links:before {
    content: '\f07c';
    font-weight: 300;
    color: #717783;
}

.tags-links:before {
    content: '\f02b';
    font-weight: 900;
    color: #717783;
}

.posted-on i {
    margin-right: 5px;
    font-size: 12px;
}

.blog-right .posted-on i {
    margin-left: 1px;
}

.posted-on a,
.byline a,
.cat-links a,
.comments-link a,
.tags-links a {
    text-decoration: none;
    color: #717783;
    font-size: 14px;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
}

.posted-on a:hover,
.byline a:hover,
.cat-links a:hover,
.cat-links:hover:before,
.comments-link a:hover,
.tags-links a:hover {
    color: #1a1a1a;
}

.tags-links:hover:before {
    color: #1a1a1a;
}

.entry-meta {
    margin-bottom: 10px;
}

.single-post .entry-meta {
    text-align: right;
    clear: right;
    margin-bottom: 0;
}

.byline span.user-icon {
    margin-left: 10px;
    margin-right: 5px;
}

.entry-meta .like {
    margin-left: 7px;
    cursor: pointer;
    text-decoration: none;
}

.entry-meta .post-views {
    margin-left: 8px;
}

.entry-meta .like .fa-heart {
    color: #FF7777;
}

.entry-content {
    margin-top: 0;
}

.read-more {
    margin-top: 10px;
}

.read-more a {
    display: inline-block;
}

.entry-thumbnail {
    margin-bottom: 15px;
}

.blog .entry-thumbnail,
.archive .entry-thumbnail {
    margin-bottom: 0;
}

.entry-content p {
    margin-bottom: 15px;
    margin-top: 5px;
}

.blog .entry-content p,
.archive .entry-content p {
    margin-top: 0;
}

.persoh-btn,
.slide__link {
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.persoh-btn {
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
    -moz-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
    -ms-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
    -o-transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
    transition: all .5s cubic-bezier(.86,0,.07,1) .5s;
}

.persoh-btn:before,
.persoh-btn:after,
.slide__link:before,
.slide__link:after {
    background-color: #000;
    content: '';
    position: absolute;
    height: 2px;
}

.persoh-btn:after,
.slide__link:after {
    width: 50%;
    left: 50%;
    bottom: 5px;
}

.persoh-btn:before,
.slide__link:before {
    width: 0;
    left: 0;
    top: 50%;
    margin-top: -5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
    -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
    -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
    -o-transition: all .5s cubic-bezier(.86,0,.07,1);
    transition: all .5s cubic-bezier(.86,0,.07,1);
}

.persoh-btn:hover:before,
.slide__link:hover:before {
    width: 80%;
    opacity: 1;
    visibility: visible;
}

.persoh-btn:hover {
    text-decoration: none;
}

.comments-link {
    margin-left: 15px;
    color: #717783;
    font-size: 14px;
}

.edit-link {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.blog .entry-footer {
    margin-bottom: 20px;
}

.blog .persoh-format-video .entry-footer {
    margin-top: 0;
}


/*
Unit Test CSS
==========================================================
*/

.persoh-blog-posts article.sticky:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f005';
    position: absolute;
    left: 10px;
    top: 5px;
    color: #fff;
}

.persoh-blog-posts article.sticky:after {
    background-color: #000;
    width: 50px;
    height: 110px;
    left: -10px;
    top: -40px;
    content: '';
    z-index: -1;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.widget h5 {
    margin-top: 0;
}

.widget caption {
    padding-top: 5px;
    padding-bottom: 0;
}

.widget_calendar table {
    margin-bottom: 0;
}

.widget_rss ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_rss .widget-title .rsswidget {
    text-decoration: none;
    margin-left: 5px;
}

.widget_rss ul li a.rsswidget {
    color: #000;
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.widget_rss .rss-date {
    color: #717783;
    font-size: 13px;
}

.widget .tagcloud {
    margin-top: -7px;
}

.tagcloud a {
    position: relative;
    margin-right: 7px;
    padding-right: 7px;
    font-size: 13px !important;
    text-transform: capitalize;
    letter-spacing: 0.07em;
    line-height: 3;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.tagcloud a:not(:last-child):before {
    position: absolute;
    content: '|';
    font-family: "Font Awesome 5 Free";
    left: 100%;
    top: -12px;
    width: 100%;
    height: 100%;
}

.tagcloud a:hover {
    text-decoration: none;
}

.widget select {
    padding: 10px;
    margin-top: 7px;
    margin-bottom: 7px;
    background-color: transparent;
    outline: 0;
}

.calendar_wrap {
    margin-top: 7px;
}

.calendar_wrap th,
.calendar_wrap td {
    text-align: center;
    padding: 5px 0;
    font-size: 13px;
}

.comment-list .pingback {
    border-bottom: 1px solid #ededed;
    margin-bottom: 12px;
}

.pingback .edit-link {
    float: none;
    padding-top: 0;
}

/*
AJAX loadmore
==========================================================
*/

.load-more-wrapper  {
    margin-top: -50px;
}

.persoh_loadmore {
    cursor: pointer;
    margin-bottom: 30px;
}

.load-more-icon {
    display: none;
}


/*
Post Navigation
==========================================================
*/
.post-navigation {
    overflow: hidden;
}

.nav-previous a,
.nav-next a {
    position: relative;
    color: #333333;
    font-weight: 500;
    letter-spacing: -1px;
    -webkit-transition: all .35s ease;
       -moz-transition: all .35s ease;
        -ms-transition: all .35s ease;
         -o-transition: all .35s ease;
            transition: all .35s ease;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    position: relative;
    padding: 40px 5px;
}

.post-navigation .nav-previous:after {
    position: absolute;
    content: '';
    height: 1px;
    width: 20px;
    background-color: #0e1319;
    top: 50%;
    right: 0;
}

.post-navigation .nav-previous a {
    padding-left: 35px;
}

.post-navigation .nav-next a {
    padding-right: 35px;
}

.post-navigation .nav-previous a:before,
.post-navigation .nav-next a:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 30px;
    background-color: #000;
    top: 50%;
    -webkit-transition: all .35s ease;
       -moz-transition: all .35s ease;
        -ms-transition: all .35s ease;
         -o-transition: all .35s ease;
            transition: all .35s ease;
}

.post-navigation .nav-previous a:hover:before,
.post-navigation .nav-next a:hover:before {
    width: 45px;
}

.post-navigation .nav-previous a:before {
    left: 0;
}

.post-navigation .nav-next a:before {
    right: 0;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    text-decoration: none;
}

/*
Comment
==========================================================
*/

.comments-area {
    padding: 60px 0;
    margin-right: 30px;
}

.navigation.comment-navigation {
    padding-bottom: 70px;
}

.comment-list {
    padding-bottom: 30px;
    list-style: none;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.comment-list > ul,
.comment-list ul.children {
    list-style: none;
}

.comments-area .comments-title {
    text-align: left;
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
    margin-top: 0;
}

.comment-author {
    display: inline-block;
}

.comment-author a {
    color: #333;
    text-decoration: none;
}

.comments-area .comment-list .comment-body {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: transparent;
    padding: 0;
    box-shadow: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.comments-area .comment-list .content {
    padding: 0;
}

.comments-area .comment-list .edit-link {
    margin-top: 0;
}

.comment-content h4.comment-title {
    display: inline-block;
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.comment-reply-link {
    position: relative;
    float: right;
    padding: 8px 40px;
    text-transform: capitalize;
    -webkit-transition: all .35s ease;
       -moz-transition: all .35s ease;
        -ms-transition: all .35s ease;
         -o-transition: all .35s ease;
            transition: all .35s ease;
}

.comment-reply-link:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f3e5';
    font-weight: 900;
    top: 9px;
    left: 15px;
}

.comment-reply-link:hover {
    text-decoration: none;
}

.comment-metadata {
    display: inline-block;
    margin-left: 15px;
    color: #717783;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form input[type="url"],
.contact-form form textarea {
    background: transparent;
    border: 2px solid #ededed;
    padding: 15px 20px;
    font-family: 'Work Sans', sans-serif;
}

.comment-form textarea {
    height: 90px;
}

.contact-form label {
    margin-top: 15px;
}

.contact-form label:first-child {
    margin-top: 0;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border: 2px solid #ededed;
}

.comment-form-author {
    float: left;
    width: 49%;
}

.comment-form-email {
    float: left;
    width: 49%;
    margin-left: 2%;
}

.comments-area p.form-submit {
    margin-bottom: 0;
}

.contact-form input[type="submit"] {
    background: #FF7777;
    padding: 20px 40px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-top: 20px;
    font-size: 13px;
}

.comment-reply-title,
.comment-notes,
.comment-form label {
    padding-bottom: 10px;
}

.comment-reply-title {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #ededed;
    border-left: transparent;
    border-right: transparent;
    border-top: transparent;
    margin-bottom: 10px;
}

.comment-notes {
    font-size: 14px;
    margin-bottom: 30px;
}

.comment-form label {
    padding-bottom: 0;
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

.no-comments {
    margin-bottom: 0;
}


/* ============================================================================ */
/* ============================ Image Post Format ============================= */
/* ============================================================================ */

.single-post .persoh-format-image .entry-thumbnail {
    margin-top: 0;
    margin-bottom: 15px;
}

.persoh-format-image .entry-thumbnail img {
    width: 100%;
}


/* ============================================================================ */
/* ============================= Link Post Format ============================= */
/* ============================================================================ */

.persoh-blog-posts .persoh-format-link {
    padding: 50px 0;
    background: #1a1a1a;
}

.persoh-format-link .entry-title {
    line-height: 1.8;
}

.persoh-format-link .entry-title a {
    display: block;
    color: #FFF;
}

.persoh-format-link .link-icon {
    margin: 20px auto 0;
    display: block;
}


/* ============================================================================ */
/* ============================ Quote Post Format ============================= */
/* ============================================================================ */

.persoh-format-quote i.fa-quote-left {
    margin-bottom: 15px;
    font-size: 40px;
}

.quote-content {
    position: relative;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 0;
}

.quote-content a,
.persoh-format-quote .entry-footer a,
.persoh-format-quote .tags-links:before,
.persoh-format-quote .cat-links:before {
    color: #333;
    text-decoration: none;
}

.quote-content blockquote {
    margin: 0;
    padding: 0;
}

.quote-content blockquote:before {
    display: none;
}

.content-author {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
    position: relative;
}

.content-author:before {
    content: "-";
    position: absolute;
    right: 120px;
    top: -1px;
}

/* ============================================================================ */
/* ============================ Audio Post Format ============================= */
/* ============================================================================ */

.persoh-format-audio .entry-content iframe {
    width: 100%;
    height: 166px;
}

/* ============================================================================ */
/* ============================ Quote Post Format ============================= */
/* ============================================================================ */

.persoh-blog-posts .persoh-format-status,
.persoh-blog-posts .persoh-format-quote,
.persoh-blog-posts article.sticky {
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 0 40px #f5f5f5;
}

.persoh-format-status .entry-header {
    overflow: hidden;
}

.persoh-format-status .entry-title {
    float: left;
    margin-right: 15px;
}

.persoh-format-status .entry-meta {
    margin-top: 5px;
    float: left;
}

.persoh-format-status .entry-content {
    clear: left;
}

.persoh-format-status .entry-content p {
    margin-bottom: 0;
}


/* ============================================================================ */
/* ============================= Chat Post Format ============================= */
/* ============================================================================ */
.persoh-format-chat .entry-content p:nth-child(odd) {
    background: #f5f5f5;
    padding: 10px 8px;
}

.persoh-format-chat .entry-content p {
    margin-bottom: 5px;
}

/* ============================================================================ */
/* ============================ Aside Post Format ============================= */
/* ============================================================================ */

.persoh-format-aside .entry-content p,
.persoh-format-video .entry-content p {
    margin-bottom: 0;
}

.persoh-format-aside .post-social-share {
    top: 65%;
}



/*
Gallery Post Format
==========================================================
*/

.single-post .persoh-format-gallery .carousel-inner {
    margin-bottom: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    background-image: none;
    top: 50%;
    bottom: 50%;
}

.persoh-format-gallery .carousel-caption {
    bottom: -30px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    padding-bottom: 15px;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.persoh-format-gallery .carousel-caption p {
    margin-bottom: 0;
    color: #1a1a1a;
    position: relative;
    top: 35px;
    font-size: 16px;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.persoh-format-gallery .carousel-item:hover .carousel-caption {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.persoh-format-gallery .carousel-item:hover .carousel-caption p {
    top: 0;
}

/* ============================================================================ */
/* ================================== Widgets ================================= */
/* ============================================================================ */

.widget {
    background-color: #fff;
    border: transparent;
    margin-bottom: 50px;
    overflow: hidden;
}

.widget-area .widget:last-child {
    margin-bottom: 0;
}

.widget h5 {
    font-size: 20px;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}

.widget h5:after {
    background-color: #000;
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 5px;
    margin-top: -1px;
}

.widget li {
    margin-bottom: 8px;
}

.widget li a {
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.widget li a:hover {
    text-decoration: none;
}

.widget li:last-child {
    margin-bottom: 0;
}

.search-form {
    position: relative;
    margin-top: 7px;
}

.search-form input.search-field {
    font-family: 'Work Sans', sans-serif;
    float: left;
    width: 100%;
    display: block;
    border: 1px solid #ededed;
    background-color: transparent;
    padding: 15px 20px;
    font-size: 14px;
}

.search-submit {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    color: #676767;
    font-size: 14px;
}

.search-submit:hover,
.search-submit:active,
.search-submit:focus {
    background: transparent;
    outline: 0;
}

.widget_recent_comments .comment-author-link {
    font-weight: 700;
}

/*
About Widget
==========================================================
*/
.about-widget-des {
    margin-top: 5px;
    margin-bottom: 12px;
}

.about-signature {
    margin-bottom: 4px;
}

.persoh-about-img-wrapper {
    position: relative;
    margin-top: 7px;
}

.about-social-profile {
    width: 100%;
    background-color: rgba( 255, 255, 255, 0.7 );
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 3px;
}

.about-social-profile a {
    color: #4c4c4c;
    margin: 0 4px;
}

.about-signature img {
    display: block;
}

/*
Recent Posts
==========================================================
*/

.single-recent-post {
    overflow: hidden;
}

.single-recent-post:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 15px;
}

.recent-post-thumbnail {
    margin-right: 5%;
    width: 25%;
    float: left;
}

.recent-post-content {
    float: left;
    width: 70%;
}

.posts-slider {
    margin-top: 7px;
    margin-bottom: -7px;
}

.recent-post-content h4,
.post-carousel-content h4 {
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 14px;
}

.recent-post-content h4 a,
.post-carousel-content h4 a {
    text-decoration: none;
}

.recent-post-content h4 a:hover,
.post-carousel-content h4 a:hover {
    color: #333;
}

.post-slider-thumbnail {
    margin-bottom: 10px;
}

.widget_persoh_posts_carousel .carousel-control-prev,
.widget_persoh_posts_carousel .carousel-control-prev:hover,
.widget_persoh_posts_carousel .carousel-control-prev:focus,
.widget_persoh_posts_carousel .carousel-control-next,
.widget_persoh_posts_carousel .carousel-control-next:hover,
.widget_persoh_posts_carousel .carousel-control-next:focus {
    opacity: 1;
}

.persoh-btn img {
    margin-bottom: 5px;
    width: 16px;
    margin-right: 6px;
}

.persoh-btn.loading {
    cursor: default;
}

@-webkit-keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/*
Extra CSS
==========================================================
*/
.caption-heading {
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
}

.single-article {
    position: relative;
}

.article-left .article-details {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 80%;
    margin: auto;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

.article-left .article-details .cat-links:before,
.blog-right .article-details .cat-links:before {
    display: none;
}

.article-left .article-details span.posted-on {
    display: inline-block;
    margin-top: 10px;
}

.article-left .article-details span a {
    color: #717783;
}

.blog-right .article-details .cat-links {
    padding-left: 0;
}

.article-left .article-details .cat-links a,
.blog-right .article-details .cat-links a {
    font-size: 15px;
}

.article-left .article-details .cat-links a {
    color: #333;
}

.blog-right .article-details .cat-links a {
    color: #717783;
}

.single-article h4 {
    line-height: 1.7;
    letter-spacing: 0.03em;
    margin: 10px 0;
}

.article-left .article-details h4 {
    font-size: 28px;
}

.blog-right .article-details h4 {
    font-size: 18px;
}

.single-article h4 a,
.blog-right .article-details h6 a {
    text-decoration: none;
    color: #333;
    display: inline;
}

.blog-right img {
    float: left;
    margin-right: 2%;
    width: 28%;
}

.blog-right .single-article {
    overflow: hidden;
}

.blog-right .single-article:not(:last-child) {
    margin-bottom: 50px;
}

.blog-right .article-details h6 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
}

.blog-right .article-details p {
    margin-bottom: 0;
}

.blog-right .article-details span {
    font-size: 14px;
}


/*
Partners Area
==========================================================
*/

.persoh-partners-wrapper{
    padding-top: 60px;
}


/*
Contact Area
==========================================================
*/

.persoh-contact-area {
    position: relative;
}

.persoh-contact {
    width: 52%;
    margin: auto;
}

.persoh-contact > p,
.persoh-contact > h5,
.persoh-contact > h6,
.persoh-contact > h2 {
    text-align: center;
}

.persoh-contact > h5 {
    font-size: 18px;
}

.persoh-contact > h6 {
    margin-top: 55px;
    margin-bottom: 55px;
    font-weight: 500;
}

.persoh-contact > h2 {
    margin-bottom: 0;
    margin-top: 52px;
}

#contactF {
    writing-mode: vertical-rl;
}

#contactF:hover {
    text-decoration: none;
}

#contactC {
    width: 35px;
}

.contact-form-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 1;
    width: 60%;
    box-shadow: 0 0 15px #ededed;
    border: 1px solid #ededed;
    padding: 50px 50px 30px 50px;
    display: none;
}

#contactC {
    display: none;
}

.contact-form-wrapper form label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form-wrapper form p {
    margin-bottom: 15px;
}

.contact-form-wrapper form p:nth-child(2),
.contact-form-wrapper form p:nth-child(3) {
    float: left;
    width: 49%;
}

.contact-form-wrapper form p:nth-child(3) {
    margin-left: 2%;
}

.contact-form-wrapper form p:nth-child(4) {
    clear: left;
}

.contact-form-wrapper form p:nth-child(6) {
    margin-bottom: 0;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    background-color: #FFF;
    border: 2px solid #ededed;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    padding: 15px;
}

.contact-form-wrapper textarea {
    height: 80px;
}

.comments-area .comment-form .form-submit input.submit,
.contact-form-wrapper form input.wpcf7-submit {
    margin-top: 20px;
    width: 100%;
    background-color: #343434;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.09em;
    border: transparent;
}

.persoh-contact-wrapper form input.wpcf7-submit:hover,
.comments-area .comment-form .form-submit input.submit:hover {
    background-color: #000;
}


/*
Single Blog Area
==========================================================
*/

.persoh-breadcrumb-area {
    position: relative;
    background-image: url(../images/banner-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.persoh-breadcrumb-area:before {
    position: absolute;
    content: '';
    background-color: #FBE1B6;
    width: 50vw;
    height: 60vh;
    top: 0;
    right: 0;
    z-index: -1;
}

.persoh-breadcrumb {
    text-align: center;
}

.persoh-breadcrumb h2 {
    font-size: 5vw;
}

.persoh-breadcrumb h5 {
    text-transform: uppercase;
}

.persoh-single-blog-area {
    padding: 120px 0;
}

.single-blog-content h6 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fbac91;
}

.single-blog-content h3 {
    margin-top: 10px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.posted-info .date {
    color: #fbac91;
    margin-right: 20px;
}

.posted-info .categories a {
    text-transform: capitalize;
    font-weight: 500;
    color: #fbac91;
}

.post-extras {
    float: right;
}

.post-extras a {
    color: #fbac91;
    text-decoration: none;
}

.post-extras .comments {
    margin-right: 10px;
}

.post-share {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.post-share p,
.post-share ul {
    display: inline-block;
}

.post-share p {
    margin-bottom: 0;
    font-weight: 500;
}

.post-share ul {
    float: right;
}

.post-share ul li {
    display: inline-block;
}

.post-share ul li:not(:last-child) {
    margin-right: 10px;
}

.persoh-post-navigation {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 30px 0;
}

.single-post .persoh-post-navigation {
    margin-right: 30px;
    margin-top: 60px;
}

.single-portfolio .persoh-post-navigation {
    border-top: 0;
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 30px;
}

.persoh-post-navigation span.navigate-prev,
.persoh-post-navigation span.navigate-next {
    display: block;
    margin-top: 10px;
}

.persoh-post-navigation span img {
    width: 20px;
}

.persoh-post-navigation h6 span span {
    color: #7f7f7f;
    font-size: 14px;
}

.persoh-post-navigation h6 span.navigate-next span {
    margin-left: 7px;
}

.persoh-post-navigation h6 span.navigate-prev span {
    margin-right: 7px;
}

.persoh-post-navigation h6 {
    display: block;
    word-break: break-word;
    -ms-word-break: break-word;
}

.persoh-post-navigation a,
.persoh-post-navigation img {
    color: #333;
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

.persoh-prev-post:hover a,
.persoh-next-post:hover a {
    color: #1a1a1a;
    text-decoration: none;
}

.persoh-prev-post:hover img,
.persoh-next-post:hover img {
    opacity: 0.6;
}

.persoh-prev-post h6,
.persoh-next-post h6 {
    margin-top: 10px;
    margin-bottom: 0;
    vertical-align: middle;
    line-height: 1.5;
}

.blog-post-comments {
    margin-top: 40px;
}

.blog-post-comments h4 {
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.blog-post-comments ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-post-comments ul.children {
    padding-left: 40px;
}

.blog-post-comments .comment-content {
    margin-bottom: 40px;
}

.comment-content {
    position: relative;
    margin-left: 15px;
    width: 100%;
}

.comment-content h4 {
    margin: 0;
}

.comment-content h4 a {
    color: #333;
    text-decoration: none;
}

.comment-content .reply {
    position: absolute;
    right: 0;
    top: 0;
    letter-spacing: 0.07em;
}

.comment-content .reply a {
    color: #333;
    text-decoration: none;
}

/*
Footer Area
==========================================================
*/

.footer {
    text-align: center;
    padding: 80px 0;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.footer ul li {
    display: inline-block;
}

.footer ul li:not(:last-child) {
    margin-right: 15px;
}

.footer a {
    color: #333;
}

.footer p {
    margin-bottom: 0;
}

.footer p a {
    text-decoration: underline;
}


/*
Scroll Top
==========================================================
*/

.top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #000;
    padding: 5px;
    display: none;
    z-index: 99;
    width: 38px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    overflow: hidden;
}

.top .top-icon,
.top .top-icon-alt {
    -webkit-transition: all .5s cubic-bezier(.86,0,.07,1);
       -moz-transition: all .5s cubic-bezier(.86,0,.07,1);
        -ms-transition: all .5s cubic-bezier(.86,0,.07,1);
         -o-transition: all .5s cubic-bezier(.86,0,.07,1);
            transition: all .5s cubic-bezier(.86,0,.07,1);
}

.top .top-icon {
    -webkit-transform: translateY(0) translateX(6px);
       -moz-transform: translateY(0) translateX(6px);
        -ms-transform: translateY(0) translateX(6px);
         -o-transform: translateY(0) translateX(6px);
            transform: translateY(0) translateX(6px);
}

.top .top-icon-alt {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(26px) translateX(-4px);
       -moz-transform: translateY(26px) translateX(-4px);
        -ms-transform: translateY(26px) translateX(-4px);
         -o-transform: translateY(26px) translateX(-4px);
            transform: translateY(26px) translateX(-4px);
}

.top:hover .top-icon-alt {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) translateX(-4px);
       -moz-transform: translateY(0) translateX(-4px);
        -ms-transform: translateY(0) translateX(-4px);
         -o-transform: translateY(0) translateX(-4px);
            transform: translateY(0) translateX(-4px);
}

.top:hover .top-icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-35px) translateX(6px);
       -moz-transform: translateY(-35px) translateX(6px);
        -ms-transform: translateY(-35px) translateX(6px);
         -o-transform: translateY(-35px) translateX(6px);
            transform: translateY(-35px) translateX(6px);
}

.top, .top:hover, .top:active, .top:focus {
    color: #FFFFFF;
    text-decoration: none;
}

body.elementor-editor-active .elementor.elementor-edit-mode .elementor-element.elementor-section {
    z-index: 3;    
}

.elementor-1726 .elementor-element .elementor-progress-wrapper .elementor-progress-bar,
.elementor-progress-wrapper {
    height: 7px !important;
}

.elementor-progress-percentage {
    position: absolute;
    top: -25px;
    right: 0;
}

.error-404.not-found {
    padding: 100px 0;
}

.persoh-404-banner h2 {
    font-size: 10vw;
}

.persoh-404-btn {
    margin-top: 50px;
}

.persoh-404-btn a {
    display: inline-block;
}

.no-breadcrumb .content-area {
    margin-top: 120px;
}

.home.is-breadcrumb .content-area {
    margin-top: 40px;
}


/* Dark Mode CSS */

.is-dark {
    color: #FFF;
    background-color: #111924;
}

.is-dark .persoh-main-header-area {
    background-color: #111924;
}

.is-dark .persoh-sidebar-menu {
    background-color: #0e1319;
}

.is-dark .persoh-humburger-icon span,
.is-dark a:before,
.is-dark .b-scroll:before,
.is-dark .section-intro span:before,
.is-dark #contactF:before,
.is-dark .services-right h6:after {
    background-color: #FFF;
}

.is-dark .persoh-sidebar-menu nav ul li a,
.is-dark .sidebar-menu-social ul li a,
.is-dark .persoh-sidebar-menu p,
.is-dark a,
.is-dark a:hover,
.is-dark .single-article h4 a,
.is-dark .blog-right .article-details h6 a {
    color: #FFF;
}

.is-dark .close-sidebar {
    box-shadow: 0 0 20px #000;
}

.is-dark .persoh-sidebar-menu nav ul li a.active:before,
.is-dark .persoh-sidebar-menu nav ul li a:before,
.is-dark .persoh-btn:before,
.is-dark .persoh-btn:after,
.is-dark .slide__link:before,
.is-dark .slide__link:after {
    background-color: #FFF;
}

.is-dark .single-resume-right {
    border-bottom: 1px solid #0e1319;
}

.is-dark .article-left .single-article .article-details h4 a {
    color: #111924;
}

.is-dark .contact-form-wrapper {
    background-color: #0e1319;
    border: 1px solid #000;
    box-shadow: 0 0 15px #000;
}

.is-dark .persoh-main-header-area.nav-up,
.is-dark.logged-in.admin-bar .persoh-main-header-area.nav-up {
    background-color: #0e1319;
}

.persoh-elegant-banner img {
    position: absolute;
    top: 0;
    right: 0;
}

.elegant-banner-left {
    position: relative;
    z-index: 1;
    padding-top: 190px;
    padding-bottom: 270px;
}

.elegant-banner-left .tback {
    color: #f5f5f5;
    font-size: 80px;
    writing-mode: vertical-lr;
    position: absolute;
    left: -10px;
}

.elegant-banner-front {
    position: relative;
    z-index: 2;
    -webkit-transform: translateY(50%);
       -moz-transform: translateY(50%);
        -ms-transform: translateY(50%);
         -o-transform: translateY(50%);
            transform: translateY(50%);
}

.elegant-banner-left .tfront {
    color: #1a1a1a;
    font-size: 80px;
}

.elegant-banner-front p {
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    width: 48%;
}

.elegant-banner-social {
    position: absolute;
    right: -68px;
    padding: 14vh 26px;
    top: 10px;
}

.elegant-banner-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.elegant-banner-social ul li {
}

.elegant-banner-social ul li a {
    position: relative;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    display: inline-block;
    writing-mode: vertical-lr;
}

.elegant-banner-social ul li:not(:last-child) a {
    padding-bottom: 20px;
}

.alignfull {
    width: 99.5vw;
    margin-left: calc( 50% - 50vw );
    max-width: none;
}
.wp-block-image.alignfull img, .wp-block-image.alignwide img {
    width: 100%;
}

.blog .persoh-initial-breadcrumb .container-fluid,
.blog .content-area .container-fluid,
.single.single-post .persoh-initial-breadcrumb .container-fluid,
.single.single-post .content-area .container-fluid,
.archive .persoh-initial-breadcrumb .container-fluid,
.archive .content-area .container-fluid,
.search.search-results .persoh-initial-breadcrumb .container-fluid,
.search.search-results .content-area .container-fluid {
    width: 80%;
}