/*==============================================================================

 * Template Name: Zuman - Creative Personal Portfolio
 * Template URI: 
 * Author: ixtheme - (https://themeforest.net/user/ixtheme)
 * Description: Personal Portfolio Template
 * Version: 1.2
 * Copyright ixtheme


==============================================================================
    
    [Table of CSS contents]
    ===================
	
    01. GOOGLE FONTS
    02. DEFAULT CSS
    03. COMMON CSS
    04. LANDING WRAPPER
        -- PRELOADER start
        -- HEADER STYLE start
        -- LANDING STYLE start
        -- SOCIAL LINKS STYLE start
    05. ABOUT WRAPPER
    06. SERVICE WRAPPER
    07. WORKS WRAPPER
    08. COUNTER WRAPPER
    09. TESTIMONIAL WRAPPER
    10. CLIENTS WRAPPER
    11. CONTACT WRAPPER
        -- FORM Validation style start
    12. FOOTER WRAPPER

==============================================================================*/

/* ==========================================================================
    01. GOOGLE FONTS
========================================================================== */

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

/* ==========================================================================
    02. DEFAULT CSS
========================================================================== */

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: transparent;
    background-image: linear-gradient(to right, black, #0b1452);
}


.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: transparent;
    z-index: -1;
    opacity: .5;
}

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

.landing_wrapper {
    height: 100%;
    background-color: transparent;
    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;
}

.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);
}

.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 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: transparent;
    padding: 50px 0;
    color: #fff;
    border-radius: 5px;
    margin-top: 30px;
}

.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: auto;
    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: transparent;
}

.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: transparent;
    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: transparent;
    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: transparent;
    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: transparent;
}

.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. CLIENTS WRAPPER
========================================================================== */

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

.clients img {
    width: 200px;
    margin: 1px;
}

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

.contact_wrapper {
    background-color: rgb(0 0 0 / 25%);
    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: transparent;
    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;
}