/* @font-face {
    font-family: BrittneySignature;
    src: url(../fonts/BrittneySignature.otf);
    src: url(../fonts/BrittneySignature.ttf);
} */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*
--------------------------------------------------------* 


    Color        : GOLDEN ( #00b5a9 )

    Name         : ABDUL REHMAN

    Version      : 1.0

    Author URI   : http://abdulrehmaan.net/

    Author Email : abdulrehmaan060@gmail.com


--------------------------------------------------------

--------------------------------------------------------

   TABLE OF CONTENTS:
  ====================

    1 ) Font Import From Google Fonts

    2 ) Preloader Styles

    3 ) General Rulas

    4 ) FIRST SCREEN  Styles
        4.1 Hamburger Menu 

    5 ) SECOND SCREEN  Styles

    6 ) THIRD SCREEN  Styles

    7 ) FOURTH SCREEN  Styles

    8 ) FIFTH SCREEN   Styles
    9 ) ADD LASTTEST STYLES


--------------------------------------------------------
*/

/*-----------------------------------
    1 ) Font Import From Google Fonts
-----------------------------------*/

/*----------------------
    2 ) Preloader Styles
----------------------*/

/*----------------------
                       2 ) Preloader Styles
                      ----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1b23;
    z-index: 10000;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -moz-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -o-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -webkit-animation: loader 1.2s infinite ease-in-out;
    animation: loader 1.2s infinite ease-in-out;
}

.loader span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    background-color: #00b5a9;
    -webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
    animation: loaderBlock 1.2s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    top: 0;
    left: 0;
}

.loader span:nth-child(2) {
    top: 0;
    right: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(3) {
    bottom: 0;
    left: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(4) {
    bottom: 0;
    right: 0;
}

@-webkit-keyframes loader {

    0%,
    10%,
    100% {
        width: 40px;
        height: 40px;
    }

    65% {
        width: 80px;
        height: 80px;
    }
}

@-webkit-keyframes loaderBlock {

    0%,
    30% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    55% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes loaderBlockInverse {

    0%,
    20% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    55% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes loader {

    0%,
    10%,
    100% {
        width: 40px;
        height: 40px;
    }

    65% {
        width: 80px;
        height: 80px;
    }
}

@keyframes loaderBlock {

    0%,
    30% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    55% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loaderBlockInverse {

    0%,
    20% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    55% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}



/*-------------------
    3 ) General Rulas
-------------------*/
body {
    
    
    
    height: 100%;
    
}

.transition,
button,
a,
.button,
.descr_author .button i {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

.clear_fix:after {
    display: table;
    clear: both;
    content: " ";
}

.clear_fix:before {
    display: table;
    content: " ";
}

body,
html {
    height: 100% !important;
    font-family: "Montserrat", sans-serif;
    font-size: 13px !important;
}



html,
body,
textarea,
button,
input {
    font-family: "Montserrat", sans-serif;
}

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

p {
    
}

h1 {
    font-size: 63px;
    font-weight: 500;
}

h2 {
    font-size: 36px;
    font-weight: 500;
}

h2.small-heading {
    padding: 60px 0 20px 0;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

/*-----------------------------------
    4 ) FIRST  SCREEN
-----------------------------------*/
.header_top {
    /*height: 100%;
    width: 100%;
    background: url(../img/bg_header/bg.jpg);
    background-size: 100% 100%;
    z-index: 1;
    background-repeat: repeat;
    position: relative;*/
    height: 100%;
    width: 100%;
    /* background: url(../img/bg_header/bg.jpg); */
    background: white;
    background-size: 100% auto;
    background-position-y: bottom;
    z-index: 1;
    background-repeat: repeat;
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* background: rgba(0, 0, 0, 0.7); */
    background: white !important;
}

.text_start_center {
    font-family: 'FontAwesome';
    text-align: center;
    position: relative;
    top: 35%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.text_start_center h1 {
    /* color: #fff; */
    color: #0c1f24;
    font-size: 40px;
    font-weight: bold !important;
    text-transform: unset;
    margin: 0;
    -webkit-text-stroke: 1px;
}

.cd-words-wrapper b i {
    color: #00b5a9;
    font-style: normal;
}

.social-media,
.social_media_footer {
    font-size: 25px;
    text-align: center;
    margin: 0;
    padding: 15px 0;
}

.social-media a,
.social_media_footer a {
    color: #fff;
    text-decoration: none;
    outline: 0 none;
    padding: 0 10px;
}

.social-media a:hover,
.social_media_footer a:hover {
    color: #00b5a9;
}

.social-media .tooltip.bottom .tooltip-arrow {
    border-bottom-color: transparent;
}

.social-media .tooltip-inner {
    background-color: transparent;
    color: #00b5a9;
    font-size: 16px;
}

#home .navbar-nav .nav-item {
    color: #0c1f24;
    text-decoration: none;
    padding: 10px 22px;
    display: inline-block;
    position: relative;
    font-size: 16px !important;
    font-weight: normal;
   
}

#home .navbar-nav .nav-item:hover {
    color: #69139b;
    /* -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #9968ff, #ff524e) !important; */
}

.menu_top {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 111;
    height: 50px;
    text-align: center;
}

.nav-bar {
    position: relative;
    z-index: 11;
}

.holder {
    position: relative;
    z-index: 11;
    background: rgba(0, 0, 0, 1);
    transform: translate(0, -55px);
    -webkit-transform: translate(0, -55px);
    /** Chrome & Safari **/
    -o-transform: translate(0, -55px);
    /** Opera **/
    -moz-transform: translate(0, -55px);
    /** Firefox **/
    -webkit-transition: all 0.20s ease-in-out;
    -moz-transition: all 0.20s ease-in-out;
    -ms-transition: all 0.20s ease-in-out;
    -o-transition: all 0.20s ease-in-out;
}

.holder.active {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    /** Chrome & Safari **/
    -o-transform: translate(0, 0);
    /** Opera **/
    -moz-transform: translate(0, 0);
    /** Firefox **/
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.43);
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.43);
}

.holder a:nth-child(1) {
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    -webkit-transform: translateY(-12px);
    -o-transform: translateY(-12px);
    transform: translateY(-12px);
}

.holder a:nth-child(2) {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}

.holder a:nth-child(3) {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}

.holder a:nth-child(4) {
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
}

.holder a:nth-child(5) {
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}

.holder a:nth-child(6) {
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -webkit-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
}

.holder a:nth-child(7) {
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -o-transform: translateY(-70px);
    transform: translateY(-70px);
}

.holder.active a:nth-child(1) {
    transition: all 0.40s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(2) {
    transition: all 0.50s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(3) {
    transition: all 0.60s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(4) {
    transition: all 0.7s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(5) {
    transition: all 0.8s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(6) {
    transition: all 0.9s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.holder.active a:nth-child(7) {
    transition: all 1s ease-in-out;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.scroll_icon {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 5%;
    z-index: 11;
    width: 38px;
    height: 63px;
    border-radius: 25px;
    box-shadow: inset 0 0 0 1px #020102;
}

.scroll_icon:before {
    content: '';
    position: absolute;
    left: 50%;
    background-color: #020102;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px !important;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

@keyframes scroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(36px);
    }
}

/*-------------------
    4.1 Hamburger Menu 
-------------------*/
button.menu-toggle.opened {
    transform: translate(0, -1px);
    -webkit-transform: translate(0, -1px);
    -o-transform: translate(0, -1px);
    -moz-transform: translate(0, -1px);
    color: #00b5a9;
}

button.menu-toggle {
    position: relative;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 12px 13px;
    text-transform: uppercase;
    border-radius: 0 0 3px 3px;
    transform: translate(0, -51px);
    -webkit-transform: translate(0, -51px);
    -o-transform: translate(0, -51px);
    -moz-transform: translate(0, -51px);
    -webkit-box-shadow: 0px 6px 26px 0px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 0px 6px 26px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 6px 26px 0px rgba(0, 0, 0, 0.28);
    -webkit-transition: all 0.20s ease-in-out;
    -moz-transition: all 0.20s ease-in-out;
    -ms-transition: all 0.20s ease-in-out;
    -o-transition: all 0.20s ease-in-out;
}

.menu-toggle:hover {
    color: #00b5a9;
}

.menu-toggle {
    font-size: 0.875em;
    padding: 1em;
}

.menu-toggle:focus {
    outline: none;
    outline-offset: 0;
}

.icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    width: 1em;
    vertical-align: middle;
    position: relative;
    top: -0.0625em;
}

.icon-menu-toggle {
    width: 2em;
    height: 2em;
    top: 0;
}

.svg-menu-toggle .line {
    opacity: 1;
    transform: rotate(0) translateY(0) translateX(0);
    transform-origin: 1em 1em;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.svg-menu-toggle .line-1 {
    transform-origin: 1em 2.5em;
}

.svg-menu-toggle .line-3 {
    transform-origin: 10px 67px;
}

.menu-toggle.opened .svg-menu-toggle .line-1 {
    transform: rotate(45deg) translateY(0) translateX(0);
}

.menu-toggle.opened .svg-menu-toggle .line-2 {
    opacity: 0;
}

.menu-toggle.opened .svg-menu-toggle .line-3 {
    transform: rotate(-45deg) translateY(0em) translateX(0em);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}


/*-----------------------------------
    5 ) SECOND SCREEN  Styles
-----------------------------------*/
.wrap_about {
    background: #e6ecf6;
}

.descr_author p {
    color: white;
    line-height: 27.8px;
    margin-top: 25px;
    margin-bottom: 0;
}

.single-project-done i {
    font-size: 35px;
    color: #000;
    margin-top: 37px;
    padding-bottom: 10px;
    border-radius: 50%;
    -webkir-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-project-done h2 {
    font-size: 35px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.single-project-done p {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0;
}

.descr_author h3 {
    background: #00b5a9;
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    margin: 7px 0;
    clear: both;
}

.wrap_about img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.single-project-done:hover i {
    color: #00b5a9;
}

.counter-num {
    position: relative;
}

.counter-num:after {
    content: "+";
    margin-left: 6px;
    top: 0;
}

.descr_author h3 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 28px;
}

.left_about h4 {
    font-size: 25px;
    color: #111;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.left_about p {
    /* font-family: 'Roboto', sans-serif; */
    color: #727272;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 300;
}

.skills_go h5 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    margin: 3px 0 9px;
}

.skills_go h5 span {
    float: right;
}

.title_go_about {
    text-align: center;
}

.title_go_about h1 {
    font-size: 36px;
    font-weight: 500;
}

.title_go_about h2 {
    background: #00b5a9;
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    margin: 7px 0;
    clear: both;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}

.progress_go {
    height: 4px;
    overflow: hidden;
    background-color: #eee;
    margin-bottom: 35px;
}

.progress_bar_go {
    float: left;
    width: 0;
    height: 100%;
    background-color: #00b5a9;
}

.descr_author {
    text-align: center;
}

.inline_block_go {
    display: inline-block;
    margin: 0 10px;
}

.image_center_about img {
    max-width: 300px;
    border: 8px solid #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.button_download {
    display: block;
    background: #00b5a9;
    color: #fff;
    border: 1px solid #00b5a9;
    color: #fff;
    margin: 10px 0;
    max-width: 220px;
    padding: 6px 19px;
    -webkir-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.button_download:hover {
    color: #fff;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

/*----------------------
    6 ) THIRD SCREEN  Styles
----------------------*/
.services {
    background: #10121b;
}

.services:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}

.title_section {
    margin-bottom: 30px;
}

.title_section h2 {
    text-align: center;
    position: relative;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
}

.title_section h2:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 8%;
    background: #00b5a9;
    height: 2px;
    bottom: -8px;
    border-radius: 100px;
}

.single-service i {
    position: relative;
    font-size: 40px;
    margin-bottom: 10px;
    color: #000;
    border-radius: 50%;
    margin: -10px;
    border: 1px solid transparent;
    width: 80px;
    height: 80px;
    line-height: 80px;
    overflow: hidden;
    -webkir-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-service i:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    border: 1px solid #00b5a9;
    transform: scale(.4);
    -webkit-transform: scale(.4);
}

.single-service:hover i:after {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.single-service:hover i,
.single-project-done:hover i {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
}

.single-service {
    text-align: center;
    padding: 0 13px;
}

.single-service h2 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px 0px;
    color: #000;
    letter-spacing: 1px;
    line-height: 20px;
}

.single-service p {
    margin-bottom: 56px;
    color: #000;
}

/*----------------------
    7 ) FOURTH SCREEN  Styles
----------------------*/
/* .project_controls {
    padding: 0 0 20px 0;
    margin-top: -7px;
    text-align: center;
} */
.project_controls {
    padding: 6px;
    margin: 20px 0 50px;
    text-align: center;
    background: white;
    display: inline-flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    display: inline-flex;
}

.filter {
    color: #0c0407;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: 0;
    background: transparent;
    
}

a:focus {
    outline: 0 !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0 !important;
}

.filter:focus {
    outline: 0 !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0 !important;
}

.filter.active {
    outline: 0 !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0 !important;
}

.isotopeFilters {
    text-align: center;
}

.container_filter {
    text-align: center;
}

.filter:hover {
    color: #fff;
    background: #0c0407;
}

.project img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project .ovrly {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.project:hover .ovrly {
    opacity: 1;
}

.project {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin: 15px 0;
    position: relative;
}

.filter-section {
    overflow: hidden;
}

.effect_bubba {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

.effect_bubba:before {
    position: absolute;
    top: 30px;
    right: 20px;
    bottom: 30px;
    left: 20px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.effect_bubba:after {
    position: absolute;
    top: 20px;
    right: 30px;
    bottom: 20px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.effect_bubba h2 {
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -40%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    letter-spacing: 1px;
    font-size: 21px;
    word-spacing: -0.15em;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

.items_portfolio .project:hover .effect_bubba:before,
.items_portfolio .project:hover .effect_bubba:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.items_portfolio .project:hover .effect_bubba h2 {
    opacity: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.project_controls button.active,
.filter.active,
.project_controls button.mixitup-control-active {
    background: #0c0407;
    color: #fff;
    border-radius: 10px;
}

/*----------------------
    7 ) FIFTH SCREEN   Styles
----------------------*/
.people_say {
    background: transparent;
}

.people_say:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 30px;
    top: 0;
    background: #fff;
}

.testimonial_items .item img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 3px solid #ffffff;
    margin: auto;
    display: block;
}

.testimonial_items .item p {
    line-height: 25px;
}

.testimonial_items .item h2 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 10px 0px;
}

.testimonial_items .item {
    padding: 0px 10%;
    text-align: center;
}

.testimonial_items .owl-controls .owl-page span {
    display: block;
    background: #00b5a9;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.testimonial_items .owl-controls .owl-page span:hover,
.testimonial_items .owl-controls .owl-page.active {}

.input_form {
    position: relative;
    margin-bottom: 25px;
}

.input_form i {
    font-size: 20px;
    color: #D8D8D8;
    position: absolute;
    top: 10px;
    z-index: 5;
    left: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input_form input,
.input_form textarea {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 50px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: transparent;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    border-bottom: 1px solid #00b5a9;
    margin-bottom: 25px;
}

.input_form textarea {
    max-width: 100%;
    min-height: 120px;
    color: #555;
    padding-top: 10px;
}

.input_form input:focus,
.input_form input:hover,
.input_form textarea:focus,
.input_form textarea:hover {
    border-color: transparent;
    outline: 0;
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(102, 175, 233, 0);
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(102, 175, 233, 0);
    border-color: #00b5a9;
    outline: 0;
    box-shadow: none;
}

.button_send {
    background: none;
    border-radius: 2px;
    border: 1px solid #00b5a9;
    color: #00b5a9;
    padding: 10px 20px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: bold;
    letter-spacing: 1px;
}

.button_send:hover {
    background: #00b5a9;
    color: #fff;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.input_form:hover i {
    color: #00b5a9;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: black;
}

.copy_my_text {
    font-size: 18px;
    color: white;
}

.copy_my_text a {
    font-weight: 700;
    color: white;
}

.copy_my_text a:hover {
    color: #00b5a9;
    text-decoration: none;
}

.content_footer .social-media {
    padding: 10px 0 0;
}

footer .social-media a {
    color: #00b5a9;
    padding: 0 6px;
    font-size: 22px;
    padding-top: 0;
}

.social_media_footer a {
    padding: 0 3px;
    font-size: 23px;
    color: #000;
}

.social_media_footer a:hover {
    color: #00b5a9;
}

footer .tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}

footer .tooltip>.tooltip-inner {
    background-color: #343333;
    color: #00b5a9;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: 2px;
    border: 0 none;
}

footer .tooltip.top .tooltip-arrow {
    border-top-color: #343333;
}

.holder a.active {
    color: #00b5a9;
}

.sent_message {
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
}

.sent_message p {
    margin-bottom: 0;
}


/*----------------------
     ADD LASTTEST STYLES
----------------------*/


.top_header_go {
    padding: 50px 0px;
}

.top_header_go h2 {
    font-size: 60px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.top_header_go p {
    font-size: 30px;
}

.image_sig_go {
    padding: 20px;
}

.single_image img {
    width: 100%;
    transition: 1s;
}

a:hover {
    text-decoration: none;
}

.image_sig_go h2 {
    font-size: 20px;
    text-align: center;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 20px 0;
}

.image_sig_go a {
    display: block;
}

.image_sig_go a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.28s ease-in-out;
    -moz-transition: all 0.28s ease-in-out;
    -webkit-transition: all 0.28s ease-in-out;
    -o-transition: all 0.28s ease-in-out;
}

footer.footer-bottom-area {
    background: #fff;
    padding: 100px 0px;
}

.footer-text p {
    color: #000;
}

.footer-bottom-area p i {
    color: red;
    margin-left: 5px;
}

.footer-bottom-area p a {
    color: #000;
    border-bottom: 1px solid transparent;
}

.footer-bottom-area p a:hover {
    border-bottom: 1px solid #000;
}

.black_on_rgba {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .5);
}

.mix {
    display: none;
}

.social_media_footer {
    padding-bottom: 0;
}

.footer_pdd {
    padding: 75px 0;
}

.contact {
    padding: 150px 0 80px;
}

.people_say {
    padding: 63px 0 70px;
}

.portfolio {
    padding: 64px 0 67px;
}

.services {
    padding: 63px 0 23px;
    background: #1a1d2b;
}

.wrap_about {
    padding: 80px 0 50px;
}

/*********************** CUSTOM CSS ***********************/
.wrapper-loader {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.services-icons {
    width: 80px;
    display: block;
    margin: 0 auto;
}

.download-resume-link {
    border-radius: 0;
    background: #00b5a9;
    color: white;
    border: 0;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.our-pros-sec {
    width: 100%;
    position: relative;
    min-height: 460px;
    background: #1b1d2b url(../img/how/how-i-do.svg) no-repeat center;
    text-align: center;
    padding: 80px 0 30px;
}

#content .container {
    position: relative;
}

.topmargin-lg {
    margin-top: 80px !important;
}

.bottommargin-sm {
    margin-bottom: 30px !important;
}

.heading-block {
    margin-bottom: 50px;
}

.heading-block h2 {
    font-size: 30px;
}

.heading-block.center>span,
.heading-block.title-center>span,
.center .heading-block>span {
    max-width: 700px;
}

.heading-block>span:not(.before-heading) {
    display: block;
    margin-top: -20px;
    font-size: 20px;
    font-weight: 300;
    color: #777;
    word-spacing: 10px;
}

.heading-block h2+span {
    font-size: 22px;
}

.divcenter {
    position: relative !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.our-pros {
    position: relative;
    height: 320px;
    width: 960px;
    margin: 0 auto;
}

.our-pros-item {
    position: relative;
    margin: 0 20px;
    float: left;
    width: 178px;
    height: 295px;
}

.our-pros-img {
    position: relative;
    overflow: hidden;
    width: 178px;
    height: 178px;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.our-pros-img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.18s ease;
    -moz-transition: all 0.18s ease;
    -o-transition: all 0.18s ease;
    transition: all 0.18s ease;
}

.our-pros-img img {
    max-width: 100%;
    height: auto;
}

.our-pros-item h4 {
    font-weight: 400;
    font-size: 35px;
    margin-top: 20px;
    text-align: center;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.our-pros-item h4:before {
    content: "";
    position: absolute;
    border-bottom: 3px solid #00b5a9;
    border-radius: 100px;
    width: 40px;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.03);
}

.our-pros-item.item3pros .our-pros-img {
    margin-top: 25px;
}

.our-pros-item.big-pros {
    width: 267px;
    margin-left: 30px;
    margin-right: 0;
}

.our-pros-item.big-pros .our-pros-img {
    width: 267px;
    height: 267px;
}

.our-pros-img:hover:before {
    -webkit-box-shadow: inset 0 0 40px 14px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset 0 0 40px 14px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 40px 14px rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 1200px) {
    .our-pros {
        width: 1100px;
    }

    .our-pros-item {
        margin: 0 30px;
    }

    .our-pros-item.big-pros {
        margin-left: 80px;
    }

}