@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

html,
body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 170%;
    background-color: #030303;
}

.layout-fixed {
    padding-right: 17px;
}

::-moz-selection {
    background: #fff;
    color: #333;
    text-shadow: none;
}

::selection {
    background: #fff;
    color: #333;
    text-shadow: none;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

a {
    display: inline-block;
    -webkit-transition: .25s;
    transition: .25s;
}

a:hover,
a:active {
    text-decoration: none;
    outline: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   03. COMMON CSS
========================================================================== */

.wrapper {
    padding: 100px 0;
}

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

.overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: -1;
    opacity: .5;
}

.vegas-overlay {
    background: #000;
    opacity: .7;
}

.landing_wrapper {
    height: 100%;
    background-color: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.text_no_select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.section_title {
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 130px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #fff;
    letter-spacing: 1px;
    line-height: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_title::before,
.section_title::after {
    position: absolute;
    content: "";
    height: 50px;
    width: 2px;
    background: rgb(0, 123, 255);
    background: linear-gradient(180deg, rgba(0, 123, 255, 1) 0%, rgba(0, 123, 255, 0.05644255993412994) 100%);
    left: 50%;
    margin-left: -6px;
    z-index: -1;
    top: calc(100% + 25px);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.section_title::before {
    height: 35px;
    left: calc(50% + 6px);
}

.section_intro {
    max-width: 760px;
    margin: -12px auto 58px;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
    overflow-wrap: break-word;
    word-break: normal;
}

.blog-sec .section_intro,
.skills .section_intro {
    margin-top: -12px;
}

.section_intro p,
.section_intro div,
.section_intro span,
.section_intro h1,
.section_intro h2,
.section_intro h3,
.section_intro h4,
.section_intro h5,
.section_intro h6,
.section_intro li {
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-align: inherit !important;
}

.section_intro p:last-child,
.section_intro div:last-child,
.section_intro li:last-child {
    margin-bottom: 0 !important;
}

.section_intro ul,
.section_intro ol {
    display: inline-block;
    margin: 0 auto !important;
    padding-left: 18px !important;
    text-align: left !important;
}

.section_intro:empty {
    display: none;
}

.button {
    padding: 8px 25px 0 25px;
    background-color: #007bff;
    border: 1px solid transparent;
    margin-top: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    font-weight: 600;
}

.button::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background-color: #111111;
    top: 0;
    right: 0;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: -1;
}

.button:hover::after {
    width: 100%;
    top: 0;
    right: auto;
    left: 0;
}

.button:hover {
    color: #fff;
    border: 1px solid #fff;
}

/* ==========================================================================
   04. LANDING WRAPPER
========================================================================== */

/* -- PRELOADER start */

#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 99999999;
    display: flex
}

#preloader::before,
#preloader::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background: #111;
    top: 0;
    left: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s
}

#preloader::after {
    top: auto;
    bottom: 0
}

#preloader.loaded::before,
#preloader.loaded::after {
    height: 0%
}

.scroll-static {
    position: relative;
    width: 50%;
    height: 1px;
    overflow: hidden;
    margin: auto;
    transition: all .8s;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    z-index: 555
}

.scroll-static::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    background: #666;
    animation: showLine 700ms ease-in-out 0s forwards;
    -o-animation: showLine 700ms ease-in-out 0s forwards;
    -webkit-animation: showLine 700ms ease-in-out 0s forwards;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%)
}

@keyframes showLine {
    0% {
        width: 0;
        opacity: 0
    }

    100% {
        width: 100%;
        opacity: 1
    }
}

@-o-keyframes showLine {
    0% {
        width: 0;
        opacity: 0
    }

    100% {
        width: 100%;
        opacity: 1
    }
}

@-webkit-keyframes showLine {
    0% {
        width: 0;
        opacity: 0
    }

    100% {
        width: 100%;
        opacity: 1
    }
}

.scroll-static::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -100px;
    top: 0;
    animation: scroll-static 2s cubic-bezier(.86, 0, .07, 1) infinite;
    -o-animation: scroll-static 2s cubic-bezier(.86, 0, .07, 1) infinite;
    -webkit-animation: scroll-static 2s cubic-bezier(.86, 0, .07, 1) infinite;
    animation-delay: 1200ms
}

@keyframes scroll-static {
    0% {
        left: -100%;
        background: #fff
    }

    100% {
        left: 100%;
        background: #fff
    }
}

@-o-keyframes scroll-static {
    0% {
        left: -100%;
        background: #fff
    }

    100% {
        left: 100%;
        background: #fff
    }
}

@-webkit-keyframes scroll-static {
    0% {
        left: -100%;
        background: #fff
    }

    100% {
        left: 100%;
        background: #fff
    }
}

.scroll-static.loaded {
    width: 100%;
    opacity: 0
}

.scroll-static.loaded::after {
    opacity: 0
}

.work-loader {
    color: #fff;
    font-size: 8px;
    margin: auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0)
}

@-webkit-keyframes load4 {

    0%,
    100% {
        box-shadow: 0 -3em 0 .2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 .2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
    }

    25% {
        box-shadow: 0 -3em 0 -.5em, 2em -2em 0 0, 3em 0 0 .2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 .2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 .2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 .2em, -3em 0 0 0, -2em -2em 0 -1em
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 .2em, -2em -2em 0 0
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 .2em
    }
}

@keyframes load4 {

    0%,
    100% {
        box-shadow: 0 -3em 0 .2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 .2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
    }

    25% {
        box-shadow: 0 -3em 0 -.5em, 2em -2em 0 0, 3em 0 0 .2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 .2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 .2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 .2em, -3em 0 0 0, -2em -2em 0 -1em
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 .2em, -2em -2em 0 0
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 .2em
    }
}

/* PRELOADER end */

/* HEADER STYLE start */

header {
    height: 85px;
    line-height: 85px;
    width: 100%;
    position: fixed;
    transition: background .3s;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -ms-transition: background .3s;
    -o-transition: background .3s;
    z-index: 1000;
}

.layout-fixed header {
    width: calc(100% - 17px);
}

.header_fixed {
    background-color: rgba(17, 17, 17, 0.9);
}

.logo {
    position: relative;
    z-index: 9999;
}

.logo a {
    color: #fff;
}

.logo img {
    height: 20px;
}

.nav-btn {
    display: none;
}

.menu_items {
    text-align: right;
}

.menu_items li {
    display: inline-block;
}

.menu_item {
    padding: 0 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.menu_items .menu_item::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 50%;
    top: 0;
    left: calc(50% - 25%);
    z-index: -1;
    border-radius: 50px;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.menu_items .menu_item.active::after {
    top: 34%;
    background: #007bff;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.menu_items li:last-child .menu_item {
    padding-right: 0;
}

.menu_items li:last-child .menu_item.active::after {
    left: calc(50% - 25% + 10px);
}

.back_to_home {
    text-align: right;
}

.back_to_home a {
    color: #fff
}

/* HEADER STYLE  end */

/* -- LANDING STYLE start */

.home_wrapper {
    height: 800px;
}

.home_wrapper .landing_content,
.home_wrapper .landing_content .container,
.home_wrapper .landing_content .container .row {
    height: 100%;
    position: relative;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
}

.landing_content {
    padding-top: 50px;
}

.no-bg-img {
    height: auto !important;
}

.no-bg-img .home_wrapper {
    height: auto;
    padding-top: 150px;
    padding-bottom: 40px;
}

.landing_content h1 {
    font-weight: 900;
    font-size: 70px;
    margin-top: 15px;
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
}

.landing_content h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.landing_content h5 {
    color: #ddd;
}

.landing_seo_text {
    max-width: 720px;
    margin: 22px auto 0;
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
    overflow-wrap: break-word;
}

.landing_seo_text p,
.landing_seo_text div,
.landing_seo_text span,
.landing_seo_text h1,
.landing_seo_text h2,
.landing_seo_text h3,
.landing_seo_text h4,
.landing_seo_text h5,
.landing_seo_text h6,
.landing_seo_text li {
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-align: inherit !important;
}

.landing_seo_text p:last-child,
.landing_seo_text div:last-child,
.landing_seo_text li:last-child {
    margin-bottom: 0 !important;
}

/* LANDING STYLE end */

/* -- SOCIAL LINKS STYLE start */

.social_links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    margin-top: 5px;
}

.social_links li {
    display: inline-block;
    font-weight: 600;
}

.social_links li a {
    display: inline-block;
    padding: 0 12px;
    font-size: 22px;
    color: #fff;
}

.social_links li:first-child a {
    padding-left: 0;
}

.social_links li a:hover {
    color: #007bff;
}

.social_links li a:hover span {
    display: inline-block;
    transform: rotateY(720deg) rotateZ(-20deg);
    -webkit-transform: rotateY(720deg) rotateZ(-20deg);
    -moz-transform: rotateY(720deg) rotateZ(-20deg);
    -ms-transform: rotateY(720deg) rotateZ(-20deg);
    -o-transform: rotateY(720deg) rotateZ(-20deg);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* SOCIAL LINKS STYLE end */

/* ==========================================================================
   05. ABOUT WRAPPER
========================================================================== */

.about_wrapper {
    background-color: #111;
    padding: 100px 0;
    color: #fff;
    border-radius: 5px;
    margin-top: 100px;
}

.about_img {
    padding-top: 75px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.about_img::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../img/dot-light.png);
    top: -110px;
    left: 0;
    transform: scale(.815);
    -webkit-transform: scale(.815);
    -moz-transform: scale(.815);
    -ms-transform: scale(.815);
    -o-transform: scale(.815);
    z-index: -3;
}

.about_img img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.about_img .about_img_2 {
    position: absolute;
    top: 20px;
    left: 0;
    transform: scale(.915);
    -webkit-transform: scale(.915);
    -moz-transform: scale(.915);
    -ms-transform: scale(.915);
    -o-transform: scale(.915);
    z-index: -1;
}

.about_img .about_img_1 {
    position: relative;
}

.about_img .about_img_2.top {
    top: 70px;
    left: 0;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    z-index: 0;
}

.about_img .about_img_1.bottom {
    top: -55px;
    left: 0;
    transform: scale(.915);
    -webkit-transform: scale(.915);
    -moz-transform: scale(.915);
    -ms-transform: scale(.915);
    -o-transform: scale(.915);
    z-index: -1;
}

.bottom {
    opacity: .7;
    cursor: pointer;
}

.about_img:hover .bottom {
    transform: scale(.96);
    -webkit-transform: scale(.96);
    -moz-transform: scale(.96);
    -ms-transform: scale(.96);
    -o-transform: scale(.96);
}

.about_img .bottom:hover {
    opacity: 1;
}

.about_info .social_links {
    display: inline-block;
    margin-top: 25px;
}

.about_info h4 {
    font-size: 30px;
    font-weight: 600;
    text-shadow: 0 0 15px #000;
    line-height: 1.5;
}

.about_info p.about_desc {
    line-height: 1.8;
    font-size: 17px;
    color: #ddd;
}

.about_info p.about_desc span {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.zigzag {
    margin: 25px 0;
    transform: rotateX(-180deg);
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
}

/* ==========================================================================
   06. SERVICE WRAPPER
========================================================================== */

.services {
    padding: 100px 0;
    background-color: #030303;
}

.services .section_title {
    margin-bottom: 100px;
}

.service_single_item {
    padding: 35px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #222;
    margin-top: 30px;
}

.service_single_item i {
    display: block;
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.service_single_item i::after {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    top: 0;
    left: 0;
    background-color: #181818;
    z-index: -1;
    border-radius: 52% 48% 23% 77% / 44% 68% 32% 56%;
    -webkit-border-radius: 52% 48% 23% 77% / 44% 68% 32% 56%;
    -moz-border-radius: 52% 48% 23% 77% / 44% 68% 32% 56%;
    -ms-border-radius: 52% 48% 23% 77% / 44% 68% 32% 56%;
    -o-border-radius: 52% 48% 23% 77% / 44% 68% 32% 56%;
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.service_single_item:hover i::after {
    left: -5px;
    top: -15px;
    transform: scale(5) rotate(35deg);
    -webkit-transform: scale(5) rotate(35deg);
    -moz-transform: scale(5) rotate(35deg);
    -ms-transform: scale(5) rotate(35deg);
    -o-transform: scale(5) rotate(35deg);
}

.service_single_item h6 {
    font-size: 22px;
    display: inline-block;
    cursor: pointer;
    color: #007bff;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    margin: 10px 0;
}

.service_single_item h6::after {
    position: absolute;
    content: attr(data-hover);
    height: 100%;
    width: 0;
    color: #fff;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    transition: .1s;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    -ms-transition: .1s;
    -o-transition: .1s;
}

.service_single_item:hover h6::after {
    width: 100%;
    transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service_single_item p {
    color: #ccc;
    font-size: 15px;
}

/* ==========================================================================
   07. WORKS WRAPPER
========================================================================== */

.work_wrapper {
    background-color: #111;
    padding: 100px 0;
    text-align: center;
    border-radius: 5px;
}

.work_wrapper_page {
    margin-top: 85px;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 50px;
}

.filter-buttons button {
    border: 0;
    background: transparent;
    color: #555;
    font-weight: 600;
    padding: 0 15px;
    cursor: pointer;
    outline: 0;
}

.filter-buttons button.active {
    color: #fff;
    cursor: default;
}

.work_single_item {
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
}

.work_info {
    background-color: #fff;
    padding: 20px;
    padding-left: 40px;
    margin-left: 22px;
    text-align: left;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.work_info a {
    font-size: 24px;
    color: #fff;
    position: absolute;
    height: 44px;
    width: 44px;
    background: #111;
    line-height: 44px;
    text-align: center;
    left: -22px;
    top: 50%;
    margin-top: -22px;
    z-index: 1;
}

.work_info a:hover {
    color: #111;
}

.work_info a::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background-color: #fff;
    top: 0;
    right: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    z-index: -1;
}

.work_info a:Hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.work_info h6 {
    font-weight: 600;
    font-size: 17px;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.work_info p {
    font-size: 15px;
    margin-top: 5px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
    color: #000;
}

.work_info p::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    top: 49%;
    left: 0;
    background-color: #000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.work-popup {
    position: relative;
    background: #111;
    padding: 80px 30px;
    width: auto;
    max-width: 1200px;
    margin: 50px auto;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    opacity: 0;
    visibility: hidden;
    transition-delay: .2s;
    box-shadow: 0 0 25px #000;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mfp-ready .work-popup {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.work-popup .work-info {
    margin-bottom: 60px;
}

.work-popup .work-info h4 {
    font-size: 35px;
    font-weight: 700;
}

.work-popup .work-info p {
    margin-top: 15px;
    color: #888;
}

.mfp-close-btn-in .mfp-close {
    color: #fff;
}

.work-info-card {
    margin-bottom: 30px;
}

.work-info-card h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}

.work-info-card p,
.work-info-card p a {
    color: #888;
    position: relative;
    display: inline-block;
}

.work-info-card p a:hover {
    color: #fff;
}

.work-info-card a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    z-index: -1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.work-info-card a:hover::after {
    width: 100%;
    right: auto;
    background-color: #fff;
    left: 0;
}

.work-details {
    margin-top: 60px;
}

.work-details h4 {
    margin-bottom: 30px;
    font-weight: 600;
}

.work-image {
    margin-top: 30px;
}

.work-details-2 .work-details {
    margin-bottom: 40px;
    margin-top: 40px;
}

.work-popup .work-details-2 .work-info {
    margin-bottom: 80px;
}

/* ==========================================================================
   08. COUNTER WRAPPER
========================================================================== */

.counter {
    padding: 100px 0;
    background-color: #030303;
}

.counter i {
    display: inline-block;
    font-size: 30px;
    margin-bottom: 20px;
    background-color: #06386e;
    position: relative;
    z-index: 1;
    height: 60px;
    width: 60px;
    text-align: right;
    padding-right: 5px;
    padding-top: 5px;
    overflow: hidden;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.counter .col-md-3:hover i {
    background-color: #007bff;
}

.counter i::after {
    position: absolute;
    content: "";
    top: -23px;
    right: -44px;
    height: 100%;
    width: 95px;
    background-color: #030303;
    z-index: -1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.counter .col-md-3:hover i::after {
    top: 15px;
    right: -1px;
}

.counter span {
    display: block;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 3px;
}

.counter h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ==========================================================================
   09. TESTIMONIAL WRAPPER
========================================================================== */
/* 
.testimonials {
    padding: 100px 0;
    background-color: #111;
    border-radius: 5px;
}

.testimonial_single_item {
    text-align: center;
}

.testimonial_single_item img {
    height: 80px !important;
    width: 80px !important;
    border: 2px solid #fff;
    padding: 2px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    -webkit-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    -moz-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    -ms-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    -o-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
}

.testimonial_single_item h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 4px;
}

.testimonial_single_item p {
    margin-bottom: 30px;
    color: #ccc;
    line-height: 190%;
}

.testimonial_slider {
    padding-bottom: 50px;
}

.testimonial_slider .owl-dots {
    position: absolute;
    bottom: -3px;
    width: 100%;
    text-align: center;
}

.testimonial_slider .owl-dots .owl-dot {
    background: rgba(255, 255, 255, 0.5) !important;
    height: 13px !important;
    width: 13px !important;
    outline: 0;
    border-radius: 30px;
    border: 2px solid #fff;
    margin: 0 7px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.testimonial_slider .owl-dots .owl-dot.active {
    border: 2px solid #007bff;
    background: #007bff !important;
    width: 33px !important;
} */

/* ==========================================================================
   10. skills WRAPPER
========================================================================== */

/* ==========================================================================
   Blogs WRAPPER
========================================================================== */

section.blog-sec {
    padding: 100px 0;
}

.blog-card-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #fff;
}

.blog-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #fff;
}

.blog-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

/* ==========================================================================
   Blogs WRAPPER
========================================================================== */

.skills {
    padding: 100px 0;
    position: relative;
    background-color: #030303;
}

.skills img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.skills-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

/* ==========================================================================
   11. CONTACT WRAPPER
========================================================================== */

.contact_wrapper {
    background-color: #111;
    padding: 100px 0;
    color: #fff;
    border-radius: 5px;
}

.contact_item {
    margin-bottom: 30px;
    color: #b7b7b7;
}

.contact_item h5 {
    color: #fff;
    margin-bottom: 3px;
    text-transform: capitalize;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
}

.contact_item h5::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    bottom: 7px;
    left: 0;
    background: #007bff;
}

.input_field {
    width: 100%;
    background-color: transparent;
    color: #fff;
    margin-bottom: 30px;
    padding: 8px 12px;
    border: 0;
    border: 1px solid #888;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.input_field:focus {
    border: 1px solid #007bff;
}

textarea.input_field {
    resize: none;
    height: 120px;
}

button.button {
    outline: 0;
    margin-top: 0;
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* -- FORM Validation style start */

.error {
    color: #da321e;
    margin-bottom: 30px;
}

.success {
    color: #14ba3a;
    margin-bottom: 30px;
}

.inputEmpty {
    border-color: #da321e;
}

.inputNotEmpty {
    border-color: #fff;
}

.inputEmpty::-webkit-input-placeholder {
    color: #da321e;
    opacity: 1;
}

.inputEmpty::-moz-placeholder {
    color: #da321e;
    opacity: 1;
}

.inputEmpty:-ms-input-placeholder {
    color: #da321e;
    opacity: 1;
}

.inputEmpty:-moz-placeholder {
    color: #da321e;
    opacity: 1;
}

/* FORM Validation style end */

/* ==========================================================================
   12. FOOTER WRAPPER
========================================================================== */

footer {
    background-color: #111;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
    text-align: center;
    padding: 80px 15px;
    margin-top: 100px;
}

.go_top {
    position: absolute;
    color: #fff;
    font-size: 30px;
    height: 80px;
    width: 50px;
    left: 50%;
    margin-left: -25px;
    line-height: 80px;
    background: #007bff;
    text-align: center;
    z-index: 9;
    top: -40px;
}

.go_top:hover {
    background: #005dc0;
    color: #fff;
    line-height: 70px;
}

footer .social_links {
    margin-bottom: 35px;
    margin-top: 10px;
}

footer p {
    color: #666;
}

footer p span {
    color: #fff;
}
/* Dynamic resume, project, and detail sections */
.experience_wrapper {
    background-color: #111;
    padding: 100px 0 70px;
}

.experience_wrapper .section_title,
.work_wrapper .section_title,
.blog-sec .section_title {
    margin-bottom: 112px;
}

.experience_grid {
    align-items: stretch;
}

.timeline_panel {
    height: 100%;
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #161616;
    position: relative;
    overflow: hidden;
}

.timeline_panel::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    top: 0;
    left: 28px;
    background: #fff;
}

.timeline_heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.timeline_heading span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: #fff;
    font-size: 22px;
}

.timeline_heading h3,
.timeline_item h4,
.timeline_empty h4 {
    color: #fff;
    margin: 0;
}

.timeline_item {
    position: relative;
    padding: 0 0 28px 28px;
    margin-bottom: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline_item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.timeline_item::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    left: -6px;
    top: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.timeline_year {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    color: #111;
    background: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline_item h4 {
    font-size: 21px;
    margin-bottom: 12px;
}

.timeline_detail,
.timeline_detail p,
.timeline_empty p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.timeline_empty {
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.cv_download_wrap {
    margin-top: 42px;
}

.cv_download_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 34px;
    color: #111;
    background: #fff;
    border: 1px solid #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}

.cv_download_btn:hover,
.cv_download_btn:focus {
    color: #fff;
    background: transparent;
}

.project_card {
    display: block;
    color: inherit;
}

.project_card:hover {
    color: inherit;
}

.project_card .work_info a,
.project_card .work_info span {
    display: none;
}

.project_empty {
    text-align: center;
}

.project-detail-sec {
    background: #111;
    padding: 130px 0 100px;
    min-height: 100vh;
}

.project-detail-hero {
    text-align: center;
    margin-bottom: 45px;
}

.project-detail-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #111;
    background: #fff;
    padding: 7px 15px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.project-detail-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 100;
    margin-bottom: 12px;
}

.project-detail-hero p {
    color: #ccc;
}

.project-detail-image {
    margin-bottom: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #161616;
    padding: 12px;
}

.project-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-detail-body {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.project-detail-copy h3 {
    color: #fff;
    margin-bottom: 18px;
}

.project-detail-copy,
.project-detail-copy p,
.project-detail-copy li {
    color: #ccc;
    font-size: 16px;
    line-height: 1.85;
}

.project-detail-body .button {
    margin-top: 25px;
}

.blog-detail-form {
    margin-top: 45px;
    padding: 36px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blogs-form-heading h4 {
    color: #fff;
    margin-bottom: 24px;
}

.blogs-input-main {
    margin-bottom: 18px;
}

.blogs-input input,
.blogs-input textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    color: #fff;
    padding: 15px 18px;
    outline: none;
}

.blogs-input textarea {
    min-height: 150px;
    resize: vertical;
}

.blogs-input input::placeholder,
.blogs-input textarea::placeholder {
    color: #888;
    text-transform: capitalize;
}

.blogs-form-btn .theme1 {
    border: 0;
    color: #111;
    background: #fff;
    padding: 13px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-recaptcha {
    margin-bottom: 20px;
}

#homeContactInquiry .form-message {
    margin-bottom: 15px;
}

#homeContactInquiry .form-message.success {
    color: #8bdc8b;
}

#homeContactInquiry .form-message.error {
    color: #ff8f8f;
}

.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25d366;
    border: 1px solid #25d366;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: all 0.2s ease;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus {
    color: #fff;
    background: #1fb957;
    border-color: #1fb957;
    transform: translateY(-2px);
}

.whatsapp-widget-icon {
    width: 30px;
    height: 30px;
    display: block;
    fill: currentColor;
}

@media (max-width: 991px) {
    .timeline_panel {
        margin-bottom: 30px;
    }

    .project-detail-hero h1 {
        font-size: 34px;
    }
}

.detail-page-shell {
    position: relative;
    min-height: 100vh;
    background: #111;
    color: #f2f2f2;
    overflow-x: hidden;
}

.detail-particles-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #111;
}

.detail-page-shell .detail-home-header,
.detail-page-shell .project-detail-sec,
.detail-page-shell footer {
    position: relative;
    z-index: 2;
}

.detail-page-shell .whatsapp-widget {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    left: auto !important;
    top: auto !important;
    z-index: 99999 !important;
}

.detail-page-shell .detail-home-header {
    background: rgba(17, 17, 17, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.detail-page-shell .detail-home-header .menu_items {
    margin: 0;
}

.detail-page-shell .detail-home-header .menu_item {
    color: #fff;
}

.detail-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17, 17, 17, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.detail-nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.detail-brand {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-brand:hover,
.detail-menu a:hover,
.detail-meta a:hover,
.detail-footer a:hover {
    color: #fff;
}

.detail-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.detail-menu a,
.detail-meta a {
    color: #d8d8d8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.2s ease;
}

.detail-menu a:hover,
.detail-meta a:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.detail-page-shell .project-detail-sec {
    padding: 170px 0 86px;
    min-height: auto;
    background: transparent;
}

.detail-hero {
    max-width: 980px;
    margin: 0 auto 44px;
    text-align: center;
}

.detail-hero h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 100;
    margin: 0 0 22px;
}

.detail-seo-lead {
    max-width: 690px;
    margin: -2px auto 28px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    overflow-wrap: break-word;
    word-break: normal;
}

.detail-seo-lead p,
.detail-seo-lead div,
.detail-seo-lead span,
.detail-seo-lead h1,
.detail-seo-lead h2,
.detail-seo-lead h3,
.detail-seo-lead h4,
.detail-seo-lead h5,
.detail-seo-lead h6,
.detail-seo-lead li {
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-align: inherit !important;
}

.detail-seo-lead p:last-child,
.detail-seo-lead div:last-child,
.detail-seo-lead li:last-child {
    margin-bottom: 0 !important;
}

.detail-seo-lead ul,
.detail-seo-lead ol {
    display: inline-block;
    margin: 0 auto !important;
    padding-left: 18px !important;
    text-align: left !important;
}

.detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.detail-meta span {
    color: #c9c9c9;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.detail-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.detail-page-shell .project-detail-image {
    margin: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    overflow: hidden;
}

.detail-page-shell .project-detail-image img {
    width: 100%;
    min-height: 360px;
    max-height: 620px;
    object-fit: cover;
    background: #242424;
}

.detail-side-card,
.detail-page-shell .project-detail-body,
.detail-page-shell .blog-detail-form {
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.detail-side-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.detail-side-card span,
.blogs-form-heading span {
    color: #111;
    background: #e6e6e6;
    width: max-content;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-side-card h2 {
    color: #fff;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    margin: 22px 0 14px;
}

.detail-side-card p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-button,
.blogs-form-btn .theme1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 48px;
    color: #111;
    background: #e6e6e6;
    border: 1px solid #e6e6e6;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    transition: all 0.2s ease;
}

.detail-button:hover,
.blogs-form-btn .theme1:hover {
    color: #fff;
    background: transparent;
}

.detail-page-shell .project-detail-body {
    padding: 42px;
    overflow: hidden;
}

.detail-page-shell .project-detail-copy {
    max-width: 1080px;
    margin: 0 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-page-shell .project-detail-copy h1,
.detail-page-shell .project-detail-copy h2,
.detail-page-shell .project-detail-copy h3,
.detail-page-shell .project-detail-copy h4,
.detail-page-shell .project-detail-copy h5,
.detail-page-shell .project-detail-copy h6 {
    color: #fff;
    margin-top: 28px;
    margin-bottom: 14px;
    line-height: 1.22;
    font-weight: 600;
}

.detail-page-shell .project-detail-copy h3 {
    font-size: 34px;
    letter-spacing: 0;
}

.detail-page-shell .project-detail-copy h3:first-child {
    margin-top: 0;
    margin-bottom: 22px;
}

.detail-page-shell .project-detail-copy,
.detail-page-shell .project-detail-copy p,
.detail-page-shell .project-detail-copy li {
    color: #c7c7c7;
    font-size: 16px;
    line-height: 1.82;
    font-weight: 300;
    max-width: 100%;
    white-space: normal;
}

.detail-page-shell .project-detail-copy p {
    margin-bottom: 18px;
}

.detail-page-shell .project-detail-copy a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.detail-page-shell .project-detail-copy img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-page-shell footer {
    margin-top: 0;
    border-radius: 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.not-found-card {
    max-width: 720px;
    margin: 70px auto 0;
    padding: 58px 34px;
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.not-found-card span {
    display: inline-block;
    color: #111;
    background: #e6e6e6;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.not-found-card h1 {
    color: #fff;
    font-size: 54px;
    font-weight: 100;
    margin-bottom: 18px;
}

.not-found-card p {
    color: #c9c9c9;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.blog-detail-page .project-detail-image {
    margin-bottom: 28px;
}

.blog-detail-page .project-detail-image img {
    max-height: 560px;
}

.detail-page-shell .blog-detail-form {
    margin-top: 28px;
    padding: 40px;
}

.blogs-form-heading {
    margin-bottom: 26px;
}

.blogs-form-heading h4 {
    font-size: 32px;
    line-height: 1.2;
    margin: 18px 0 8px;
}

.blogs-form-heading p {
    color: #bdbdbd;
    margin: 0;
}

.detail-page-shell .blogs-input input,
.detail-page-shell .blogs-input textarea {
    background: #111;
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.detail-page-shell .blogs-input input:focus,
.detail-page-shell .blogs-input textarea:focus {
    border-color: rgba(255, 255, 255, 0.42);
}

.blog-recaptcha {
    margin-bottom: 20px;
    overflow: auto;
}

.blog-form-message {
    margin-bottom: 18px;
}

.blog-form-message.success {
    color: #8bdc8b;
}

.blog-form-message.error {
    color: #ff8f8f;
}

.detail-footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.detail-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.detail-footer a {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-footer span {
    color: #9f9f9f;
}

@media (max-width: 991px) {
    .detail-nav-inner {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-menu {
        justify-content: flex-start;
    }

    .detail-page-shell .project-detail-sec {
        padding: 145px 0 64px;
    }

    .detail-hero h1 {
        font-size: 38px;
    }

    .detail-showcase {
        grid-template-columns: 1fr;
    }

    .detail-page-shell .project-detail-image img {
        min-height: 260px;
    }
}

@media (max-width: 575px) {
    .detail-menu a,
    .detail-meta a,
    .detail-meta span {
        width: 100%;
        text-align: center;
    }

    .detail-menu,
    .detail-meta {
        width: 100%;
    }

    .detail-hero h1 {
        font-size: 31px;
    }

    .detail-side-card,
    .detail-page-shell .project-detail-body,
    .detail-page-shell .blog-detail-form {
        padding: 24px;
    }

    .detail-page-shell .project-detail-copy,
    .detail-page-shell .project-detail-copy p,
    .detail-page-shell .project-detail-copy li {
        font-size: 15px;
    }

}
