
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.eot');
    src: url('../fonts/Poppins-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff'),
        url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight:bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}












html,
body {
    height: 100%;
    font-family: 'Poppins';
    
}



body {
    
}

p {
    color: #fff;
    padding: 16px;
    font-family: 'Poppins';
    font-weight: normal;
}




h1{
    font-family: 'Poppins';
    font-weight: bolder;
    font-size: 40px;
}


h2{
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 30px;
}

h3{
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

/*==============================
            Home
===============================*/

#home {
    height: 100%;
}

#home-cover {
    height: 100%;
    /* background: url("../img/bg-home.jpg") center/cover no-repeat fixed;
    overflow-x: hidden; */

    background-image: url("../img/bg-home.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

#about-cover {
    height: 100%;
    /* background: url("../img/bg-about.jpg") center/cover no-repeat fixed;
    overflow-x: hidden; */


    background-image: url("../img/bg-about.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

#services-cover {
    height: 100%;
    /* background: url("../img/bg-services.jpg") center/cover no-repeat fixed;
    overflow-x: hidden; */

    background-image: url("../img/bg-services.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

#contact-cover {
    height: 100%;
    /* background: url("../img/bg-contact.jpg") center/cover no-repeat fixed;
    overflow-x: hidden; */

    background-image: url("../img/bg-contact.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

#inner-cover {
    height: 100%;
    
    overflow-x: hidden;
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
}

#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;
    /*text-align: center;*/
}

#home-heading h3 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin: 20px 0 20px 0;
}


/*=============================*/


/*==============================
        Parallax (Generic)
===============================*/

.bg-parallaxX {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size:contain;
    background-position: center;
    background-attachment: fixed;
}


/*=============================*/


/*==============================
        Buttons (Generic)
===============================*/

.btn-general {
    border-color: #fff;
    border-width: 2px;
    border-radius: 5px;
    padding: 12px 30px 12px 30px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: normal;
}

.btn-white {
    border-color: #fff;
    color: #323232;
    background-color: #fff;
    transition: all .5s;
}

.btn-white:hover,
.btn-white:focus {
    background-color: transparent;
    color: #fff;
}

.btn-blue {
    border-color: #34c6d3;
    color: #34c6d3;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #34c6d3;
    color: #fff;
}




.btn-black {
    border-color: #222222;
    color: #fff;
    background-color: #222222;
    transition: all .5s;
}

.btn-black:hover,
.btn-black:focus {
    background-color: transparent;
    color: #222222;
}


/*=============================*/


/*==============================
            Animate
===============================*/

#home-cover,
#home-heading,
#home-btn {
    animation-duration: .5s;
}

#home-cover {
    animation-delay: .1s;
}

#home-heading {
    animation-delay: .5s;
}

#home-btn {
    animation-delay: 1s;
}


/*=============================*/


/*==============================
        Content (Generic)
===============================*/

.content-box {
    padding: 60px 0 60px 0;
}

.content-box-midUp {
    padding: 90px 0 40px 0;
}

.content-box-bigUp {
    padding: 100px 0 40px 0;
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
}

.content-title-white h3 {
    color: #fff;
}

.content-title-underline {
    width: 30px;
    height: 3px;
    background-color: #34c6d3;
    margin: 30px auto 30px auto;
}

#services .container {
    margin-top: 30px;
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 3px 15px;
    border-radius: 0;
    display: none;
}


/*=============================*/


/*==============================
           Services
===============================*/

.service-item {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-item-icon i {
    color: #34c6d3;
    float: left;
    padding: 15px;
    margin-right: 25px;
    width: 75px;
    height: 75px;
    text-align: center;
}

.service-item:hover .service-item-icon i {
    color: #fff;
    background-color: #34c6d3;
}

.service-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 0 0;
}

.service-item-desc p {
    margin: 0;
    padding-left: 98px;
}


/*=============================*/


/*==============================
             About
===============================*/

#about-bg-diagonal {
    width: 60%;
    height: 700px;
    float: right;
    background-image: url(../img/bg-about.jpg);
    border-top: 700px solid transparent;
    border-left: 200px solid #fff;
}

#about-content-box {
    float: left;
    height: 700px;
}

#about-content-box-outer {
    width: 100%;
    height: 100%;
    display: table;
}

#about-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#about .content-title h3 {
    text-align: left;
}

#about .content-title .content-title-underline {
    margin: 0 0 30px 0;
}

#about-desc p {
    margin-left: -15px;
    margin-bottom: 30px;
}


/*=============================*/


/*==============================
             Work
===============================*/

.no-gutters {
    padding-left: 0;
    padding-right: 0;
}

.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

.img-wrapper img:hover {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    cursor: zoom-in;
}

#work .container-fluid {}


/*=============================*/


/*==============================
             Team
===============================*/




/*=============================*/


/*==============================
             Social
===============================*/



.social-icon i {
    font-size: 17px;
}

.icon-gray i {
    color: #64707b;
}

.icon-white i {
    color: #fff;
}

.social-icon i:hover {
    color: #34c6d3;
}


/*=============================*/


/*==============================
         Testimonials
===============================*/

#testimonials-cover {
    background-image: url("../img/bg-testimonials.jpg");
}

#testimonials .content-box {
    background-color: rgba(0, 0, 0, 0.1);
}

#customers-testimonials {
    padding: 50px 0;
}

.testimonial img {
    max-width: 120px;
    margin: 0 auto 0 auto;
}

.testimonial blockquote {
    border: 0;
    font-family: Georgia, sans-serif;
    font-style: italic;
    color: #fff;
    padding: 6px 150px;
    position: relative;
}

.testimonial blockquote p {
    color: #fff;
}

.testimonial blockquote::before {
    content: "\201c";
    top: 0;
    left: 100px;
}

.testimonial blockquote::after {
    content: "\201d";
    bottom: 0;
    right: 100px;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    font-size: 80px;
    font-style: normal;
    line-height: 1;
    width: 30px;
    height: 30px;
    position: absolute;
}

.testimonial-author p {
    color: #fff;
    font-size: 17px;
}

.testimonial-author p strong {
    display: block;
}


/*=============================*/


/*==============================
             Pricing
===============================*/

.pricing-box {
    border: 3px solid #34c6d3;
    padding: 50px 0;
    margin: 40px 0;
}

h4.pricing-title {
    background-color: #34c6d3;
    color: #fff;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

h3.pricing-value {
    font-size: 60px;
    font-weight: 700;
}

h3.pricing-value sup {
    font-size: 28px;
    font-weight: normal;
    vertical-align: super;
}

ul.pricing-spec {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 60px 0;
}

ul.pricing-spec li p {
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-box-lg {
    padding: 90px;
    margin: 0;
    background-color: #34c6d3;
}

.pricing-box-lg h4.pricing-title {
    color: #34c6d3;
    background-color: #fff;
}

.pricing-box-lg ul.pricing-spec li p {
    color: #fff;
}


/*=============================*/


/*==============================
             Stats
===============================*/

#stats-cover {
    background-image: url("../img/bg-stats.jpg");
}

#stats .content-box {
    background-color: rgba(0, 0, 0, 0.8);
}

.stats-item {
    padding: 100px 0;
}

.stats-item i {
    color: #34c6d3;
}

.stats-item h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 1px;
}

.stats-item p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 0;
}


/*=============================*/


/*==============================
             Clients
===============================*/

.client {
    padding: 40px 0;
}

#contact p {
    padding: 0;
}


/*=============================*/


/*==============================
             Contact
===============================*/



#contact-left h3,
#contact-right h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

#contact-left p {
    color: #fff;
    margin-bottom: 30px;
}

#contact-info {
    background-image: url("../img/world-map.png");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

address {
    color: #fff;
}

address strong {
    font-size: 16px;
}

address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}

form .form-control {
    background: transparent;
    border-radius: 0;
    border-color: #fff;
    font-size: 17px;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #fff;
}


/*=============================*/


/*==============================
             Footer
===============================*/

#footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-top: 60px;
}

#footer-copyrights p {
    margin: 0;
    padding: 0;
    color: #fff;
}

#footer-menu {
    float: left;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-menu ul li {
    display: inline-block;
}

#footer-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}

#footer-menu a:hover {
    color: #34c6d3;
}


/*=============================*/


/*==============================
             Navigation
===============================*/

.navbar {
    padding: 20px 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.vesco-top-nav {
    background: rgba(0, 0, 0, 0.7);
    padding: 7px 0;
}

.vesco-top-nav2 {
    background: rgba(0, 0, 0, 0.7);
    padding: 7px 0;
}

.vesco-nav-wrapper {
    padding: 0 85px;
}

.navbar-nav {
    float: right;
}

.navbar-nav>li>a {
    color: #fff;
    font-size: 15px;
    
    letter-spacing: 1px;
    font-weight: 700;

    font-family: 'Poppins';
    font-weight: normal;

    transition: all .5s;
}

.navbar-nav a:after{
    content: "/";
    padding-left: 30px;
    color: white !important;
}

.navbar-nav li:last-child a:after{
    content: "";
    padding-left: 0;
    color: white !important;
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus {
    background: none;
    color: #000;
    text-shadow: 0px 0px 1.5px white;
}

.navbar-nav>li>a:after:hover,
.navbar-nav>li>a:after:focus {
   
    color: #fff !important;
}


/* CSS for menu collapse icon */

.navbar-toggle {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 0;
    margin-top: 25px;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}


/* CSS for menu collapse remove max heght and scroll */

.navbar-collapse {
    max-height: none !important;
}


/* CSS for menu nav ScrollSpy bootstrap js */

.vesco-top-nav ul.navbar-nav>li.active>a {
    color: #34c6d3;
}


/*=============================*/































.navbar-brand>img{
    height: 60px;
}

.navbar-brand{
    height: 90px;
}

.navbar-nav{
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-heading{
    text-align: left;
}

#home-heading h1{
    font-family: 'Poppins';
    font-weight: bolder;
    font-size: 40px;
    color: white;
}

#home-heading p{
    padding-left: 0;
    width: 600px;
    padding-top: 0px;
}

.intro-buts {
    float: left;
    margin-right: 20px;
}

#arrow-down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    color: #fff;
    font-size: 32px;
    width: 66px;
    height: 66px;
    text-align: center;
    margin-left: -33px;
    z-index: 1;
}

#arrow-down img {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;

    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

#team h2{
    padding-left: 15px;
    color: #222222;
    padding-bottom: 20px;
}


#services h2{
    padding-left: 15px;
    color: #222222;
    padding-bottom: 20px;
}



.team-member {
    margin: 15px 15px;
    /* border: 1px solid #000; */
    /* border-bottom: 3px solid #000; */
    border-radius: 20px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;

}

.team-member img {
    padding: 30px;
}

.team-member-info {
    padding: 0px 0 30px 0;
}

h4.team-member-name {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 300;
    padding-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 0;
    color: #000;
}

h4.team-member-designation {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #000;
    text-transform:uppercase;
}


.readMore-btn {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #000;
}

.team-member{
    position: relative;
    min-height: 420px;
}


.team-member-action {
    /* text-decoration: none !important; */
    
  }


.video-waw p{
    color: #222222;
    padding-left: 0;
}

.videoCon-in img{
    width: 100%;
}

.video-waw{
    padding-left: 30px;
    padding-right: 30px;
}

#video-section h2{
    padding-left: 15px;
}

.play-btn-out{
    position: absolute;


        top: 50%;
        transform: translateY(-50%);
        position: absolute; 


}

.videoCon{
    position: relative;
}

.play-btn-out{
    width: 100%;
    text-align: center;
}

.play-btn-action{
    
    
    
}

.product-line-item-in img{
    width: 100%;
}

.products-out{
    padding-left: 30px;
    padding-right: 30px;
}

#projects-section h2{
    padding-left: 15px;
}

.product-line{
    margin-top: 30px;
}


.goals-main img{
    width: 100%;
}

.goals-bg{
    padding: 0;
}

.goals-item{
    
    
}

#goals h2{
    padding-left: 20px;
    color: #222222;
   
}

#goals p{
    color: #222222;
    padding-left: 20px;
    padding-top: 10px;
    
}

.goals-item img{
    height: 70px;
    width: auto;
}

#goals .goals-item h3{
    min-height: 45px;
    text-transform: uppercase;
}

#goals .goals-item p{
    color: #fff;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 14px;
    min-height: 180px;
}

.goals-item-in{
    padding: 40px;
    background-color: #222222;
}

.goals-items-row{
    padding-left: 15px;
    padding-right: 15px;
}

.goals-items{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: absolute; 
    width: 100%;
    text-align: left;
}

.goals-main{
    position: relative;
}


.goals-maintitle{
    text-align: left;
}



.clients-logos p{
    color: #222222;
    padding-left: 0;
}



.clients-logos{
    padding-left: 30px;
    padding-right: 30px;
}

#clients-section h2{
    padding-left: 15px;
}




.footer-up{
    background-color: #222222;
    padding-top: 30px;
    padding-bottom: 30px;
}

.left-up-footer-in li{
    float: left;
    margin-right: 20px;
}

.left-up-footer-in li a{
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins';
    font-weight: normal;
}

.footer-up-con{
    padding-left: 0;
    padding-right: 0;
}


.left-up-footer{
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.input-email-home input {
    height: 40px;
    width: 300px;
    background-color: transparent;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border: none;
    font-size: 12px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #1E384B !important;
}

.btn-newsletter-home {
    float: left;
    padding: 0;
    margin: 0;
    margin-left: -50px;
    background-color: transparent;
    
}

.btn-newsletter-home img {
    width: 36px;
    height: 20px;
    background-color: transparent;
    margin-top: 8px;
    
}

.input-email-home {
    float: left;
}

.error-message {
    color: #CE372F;
    font-size: 12px;
    clear: both;
    padding-top: 10px;
    padding-left: 10px;
}

.right-up-footer{
    text-align: right;
    padding-right: 30px;
}

.right-up-footer form{
    display: inline-block;
}


.col-item-1 img{
    height: 50px;
    padding-top: 20px;
}

.col-item-2 p{
    color: #000;
}

.col-item-3 p{
    color: #000;
}

.item-4-up h1{
    font-size: 14px;
    margin-top: 20px;
}

.social-list {
    padding-left: 0;
}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    margin-top: 0px;
}

.social-list i{
    color: #000;
    
}

.col-item-3{
    text-align: right;
}

.col-item-4{
    text-align: right;
}

.footer-middle{
    
    
}

.footer-middle-row{
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222222;
}

.footer-down p{
    color: #000;
}

.footer-down .right-down{
    text-align: right;
}

.footer-down .right-down p{
    padding-right: 0;
}


.container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow-x: hidden !important;
}

.elements-item{
    min-height: unset;
}

.elements-item .team-member-info {
    padding: 60px 0 60px 0;
}


#about-description .video-waw {
    padding-left: 0px;
    padding-right: 0px;
}

.about-description-in{
    padding-left: 30px;
    padding-right: 30px;
}

.about-right-pic img{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
















.about-landing-1-body-main {
    margin-bottom: 40px;
}


.wide-section-content {
    background-color: #f3f3f4;
}

.wide-section-content-inner {
}

.title-description-content {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

    .title-description-content h4 {
        margin-bottom: 10px;
    }

        .title-description-content h4 span {
            font-family: "HelveticaNeue";
            font-weight: normal;
        }

.history-one-item {
    text-align: center;
}

.timeline-main {
    width: 100%;
    height: 40px;
    position: relative;
}

.timeline-line {
    background-color: #dbdbdc;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.timeline-circle {
    background-color: #2c2a29;
    border: 2px solid white;
    height: 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 15px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0px 2px 0px 1px rgba(219, 219, 220, 1);
    box-shadow: 0px 2px 0px 1px rgba(219, 219, 220, 1);
}

.history-one-item p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    color: #686464;
}

#history-list-items .owl-item.active.center h2 {
    color: #d71920;
}

#history-list-items .owl-item.active.center p {
    color: white;
}

#history-list-items .owl-item.active.center .timeline-circle {
    background-color: #d71920;
}

.history-landing-btn {
    text-align: center;
}

#projects-section h2{
    
    padding-left: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}

.his-description .title-p{
    padding: 0;
    color: white;
}

.his-description p{
    padding: 0;
    color: white;
}

.his-description{
    
    padding: 10px;
    width: 228px;
    height: 160px;
}

.his-description-inner{
    padding: 20px;
    background-color: #000;
    border-radius: 20px;
}

.history-row{
    padding-left: 15px;
    padding-right: 15px;
}

.services-title-in p{
    color: #222222;
    margin-bottom: 0;
}

.service-item-in h3{
    color: #222222;
    margin-top: 10px;
    margin-bottom: 5px;
}

.service-item-in p{
    color: #222222;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
    padding-right: 40px;
}

.service-item{
    padding-left: 15px;
    padding-right: 15px;
}

.bgPara-out{
    background: url(../img/bgPara.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
}

.bgPara-inner p{
    margin-bottom: 0;
    font-weight: 300;
}

.bgPara-inner h3{
    margin-top: 5px;
    margin-bottom: 5px;
}

.bgPara-inner{
    text-align: center;
    display: inline-block;
    
    background-color: #222222;
    padding: 50px;
    border-radius: 30px;
}

.bgPara-in{
    text-align: center;
   
}

.bgPara-inner{
    
    margin-top: 75px;
    
   
}


#bgPara{
    margin-bottom: 100px;
}





.circle-item-inner{
    text-align: center;
}



.circle-wrap {
    
    width: 150px;
    height: 150px;
    background: #fefcff;
    border-radius: 50%;
    display: inline-block;
  }
  
  .circle-wrap .circle .mask,
  .circle-wrap .circle .fill1,
  .circle-wrap .circle .fill2,
  .circle-wrap .circle .fill3 {
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 50%;
  }
  
  .circle-wrap .circle .mask {
    clip: rect(0px, 150px, 150px, 75px);
  }
  
  .circle-wrap .inside-circle {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: #ffffff;
    line-height: 120px;
    text-align: center;
    margin-top: 14px;
    margin-left: 14px;
    color: #212221;
    position: absolute;
    z-index: 100;
    font-weight: 700;
    font-size: 2em;
  }
  
  /* color animation */
  
  /* 3rd progress bar */
  .mask .fill1,
  .mask .fill2,
  .mask .fill3 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: #212221;
  }
  
  .circle-item-1 .mask.full,
  .circle-item-1 .circle .fill1 {
    animation: fill1 ease-in-out 3s;
    transform: rotate(144deg);
  }

  .circle-item-2 .mask.full,
  .circle-item-2 .circle .fill2 {
    animation: fill2 ease-in-out 3s;
    transform: rotate(126deg);
  }

  .circle-item-3 .mask.full,
  .circle-item-3 .circle .fill3 {
    animation: fill3 ease-in-out 3s;
    transform: rotate(108deg);
  }
  
  @keyframes fill1{
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(144deg);
    }
  }

  @keyframes fill2{
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(126deg);
    }
  }

  @keyframes fill3{
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(108deg);
    }
  }




  #progress-cer h3{
    color: #222222;
  }

  #progress-cer p{
    color: #222222;
  }

  .circle-item-1, .circle-item-2, .circle-item-3{
      text-align: center;
  }

  #contact .content-title h3{
      color: #222222;
      font-size: 12px;
      text-align: left;
      margin-bottom: 10px;
  }

  #contact .content-title p{
    color: #222222;
    font-size: 12px;
    text-align: left;
}


.contact-row{
    padding-left: 15px;
    padding-right: 15px;
}






.contact-filter-title {
    float: left;
}

.soflow2-main {
    float: left;
}

.contactusPage-filter-inner {
    padding-left: 15px;
    padding-right: 15px;
}


select#soflow2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-border-radius: 2px;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-image: url(../img/arrow-down.png);
    background-color: #f3f3f4;
    background-position: 97% center;
    background-repeat: no-repeat;
    /* border: 1px solid #AAA; */
    border: none;
    outline: none;
    color: #757575;
    font-size: inherit;
    margin-left: 15px;
    overflow: hidden;
    padding: 8px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    font-family: "HelveticaNeue";
    font-weight: normal;
    font-size: 14px;
}

    select#soflow2::-ms-expand {
        display: none;
    }

.contact-filter-title {
    padding-top: 5px;
}

.form-name-main {
    position: relative;
}

.required:after {
    content: "*";
    position: absolute;
    top: -5px;
    right: 6px;
    font-size: 20px;
    margin: 0;
    color: #d71920;
}



.inputForm-main input {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #222222;
    color: #2c2a29 !important;
    font-family: "HelveticaNeue";
    font-weight: normal;
    font-size: 14px;
    background-color: #fff;
}

    .inputForm-main input:focus {
        outline: none !important;
        border: 1px solid none;
        -webkit-box-shadow: 0 0 10px #b1b1b1;
        box-shadow: 0 0 10px #b1b1b1;
    }

select#soflow3 {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-border-radius: 2px;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-image: url(../img/arrow-down.png);
    background-color: #f3f3f4;
    background-position: 98% center;
    background-repeat: no-repeat;
    /* border: 1px solid #AAA; */
    border: 1px solid lightgray;
    outline: none;
    font-size: inherit;
    padding: 10px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    color: #757575 !important;
    font-family: "HelveticaNeue";
    font-weight: normal;
    font-size: 14px;
}

    select#soflow3::-ms-expand {
        display: none;
    }

.message-textarea {
    width: 100%;
}

    .message-textarea textarea {
        border: 1px solid #222222;
        resize: none;
        width: 100%;
        background-color: #fff;
        padding: 10px 10px;
    }

    .message-textarea * {
        vertical-align: top;
    }

    .message-textarea textarea:focus {
        outline: none !important;
        border: 1px solid none;
        -webkit-box-shadow: 0 0 10px #b1b1b1;
        box-shadow: 0 0 10px #b1b1b1;
    }

#form-message {
    height: 100px;
}

.contactusPage-form {
    padding-top: 10px;
    border-right: 3px solid #ffffff;
}



.form-ho-main-row {
    background-color: #f3f3f4;
    margin-top: 15px;
    margin-left: 0px;
    margin-right: 0;
}

.phone-company-row, .country-row, .message-row, .form-btn-row {
    margin-top: 20px;
}

.btn-form-contactus {
    font-family: "HelveticaNeue";
    font-weight: normal;
    color: white;
    border-radius: 5px;
    background-color: #222222;
    font-size: 14px;
    padding: 9px 22px 9px 22px;
    -webkit-transition: all .5s;
    transition: all .5s;

}

    .btn-form-contactus:hover {
        background-color: #2c2a29;
        color: white;
    }

.form-btn-row {
    margin-left: 0px;
    text-align: right;
    padding-right: 15px;
}

.contact-ho-inner h5 {
    font-size: 18px;
}

.contact-ho-inner p {
    padding: 0;
    margin: 0;
}

.contact-ho-inner {
    margin: 40px 30px;
    display: inline-block;
}

    .contact-ho-inner ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .contact-ho-inner ul li h5 {
            float: left;
            width: 70px;
        }

        .contact-ho-inner ul li p {
            float: left;
            padding: 0;
            margin: 0;
        }

        .contact-ho-inner ul li {
            clear: both;
        }


.g-recaptcha {
    position: relative;
    z-index: 999;
}

.top-innerPage-left{
    padding: 10%;
}

.top-innerPage-left-inner img{
    width: 100%;
    padding: 20px;
    
}

.top-innerPage-row{
    display: flex;
    
}

.top-innerPage-right{
    padding: 10% 10% 10% 0;
}

.bgColor1{
    position: relative;
    
}

.bgColor1Effect{
    background: linear-gradient(to right, rgba(227, 82, 75, 1) 0%, rgba(88, 53, 240, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bgColor1 p{
    /* color: #222222; */

}


.bgColor2{
    background-color: #DB1A21;
    
}

.bgColor2 p{
    color: #fff;

}


.bgColor3{
    background-color: #FFD400;
    
}

.bgColor3 p{
    color: #222222;

}


.bgColor4{
    background-color: #698E96;
    
}

.bgColor4 p{
    color: #fff;

}



.top-innerPage-right-inner{
    height: 100%;
    width: 100%;
}

#home-heading .top-innerPage-right-inner p{
    font-size: 40px;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    position: absolute; 
    padding-left: 10%;

}




.inner-waw p{
    color: #222222;
    padding-left: 0;
}


.inner-waw{
    padding-left: 30px;
    padding-right: 30px;
}

#inner .inner-waw {
    padding-left: 0px;
    padding-right: 0px;
}

.innerData-row{
    padding-left: 15px;
    padding-right: 15px;
}

.inner-waw .sub{
    font-size: 12px;
    padding-top: 0;
}

.inner-waw .head{
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 16px;
    text-transform: uppercase;

}

#inner .video-waw {
    padding-left: 0px;
    padding-right: 0px;
}




.owl-carousel .owl-item img{
    padding: 30px;
}




.videoCon-out{
    padding-top: 15px;
}


.space{
    opacity: 0;
}

.blackB{
    color: #222222;
}


.gredEffect{
    background: linear-gradient(to right, rgb(213, 213, 213), rgb(255, 255, 255));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    
}

#projects-section h2 {
    padding-left: 15px;
}

.goalsP{
    width: 480px;
}

.clientsP{
    width: 480px;
}



.down-header-but .linelong{
    height: 1px;
    background-color: #000;
    width: 110px;
    float: left;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
}


.down-header-but-out{
    text-align: right;
    padding-top: 40px;
}

.down-header-but{
    display: inline-block;
}

.down-header-but-out .intro-buts{
    margin-right: 0;
    
}

.down-header-but .down-header-text{
    float: left;
    text-align: left;
}


.head-team .elements-item .team-member-info {
    padding: 0;
}

.head-team .owl-carousel .owl-item img {
    padding: 0px;
}

.head-team .team-member {
    margin: 15px 15px;
    /* border: 1px solid #000; */
    /* border-bottom: 3px solid #000; */
    border-radius: 0px;
    padding: 0px;
    box-shadow:none
}

.head-team .team-member-info p{
    color: #000;
    padding: 0;
}

.head-team .team-member-info h3{
    color: #000;
    text-transform: uppercase;
}







.small-team .elements-item .team-member-info {
    padding: 0;
}

.small-team .owl-carousel .owl-item img {
    padding: 0px;
}

.small-team .team-member {
    margin: 15px 15px;
    /* border: 1px solid #000; */
    /* border-bottom: 3px solid #000; */
    border-radius: 0px;
    padding: 0px;
    box-shadow:none
}

.small-team .team-member-info p{
    color: #000;
    padding: 0;
}

.small-team .team-member-info h3{
    color: #000;
    text-transform: uppercase;
}

.sisterCom{
    padding-bottom: 0;
}