

body {
    font-family: 'Poppins', sans-serif;
}

a {
    color: #50d8af;
    transition: 0.5s;
}

    a:hover,
    a:active,
    a:focus {
        color: #51d8af;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #F15636;
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
}

    .back-to-top:focus {
        background: #f4743b;
        color: #fff;
        outline: none;
    }

    .back-to-top:hover {
        background: #000;
        color: #fff;
    }

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #d84e30;
    /*background-color:rgba(0,0,0,0.3);*/
    padding: 10px 0;
    /*border-bottom: 1px solid #eee;*/
    font-size: 14px;
    color: #FFF;
}

    #topbar .contact-info a {
        line-height: 1;
        color: #FFF !important;
    }

        #topbar .contact-info a:hover {
            color: #50d8af;
        }

    #topbar .contact-info i {
        color: #FFF;
        padding: 4px;
    }

    #topbar .contact-info .fa-phone {
        padding-left: 20px;
        margin-left: 20px;
        border-left: 1px solid #e9e9e9;
    }

    #topbar .social-links a {
        color: #FFF !important;
        padding: 4px 5px;
        display: inline-block;
        line-height: 1px;
        border-left: 1px solid #e9e9e9;
    }

        #topbar .social-links a:hover {
            color: #f15636;
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 20px 0;
    height: 84px;
    transition: all 0.5s;
    z-index: 997;
    /*background: #f15636;*/
    background:#fff !important;
    /*background: rgb(241,86,54);
    background: -moz-linear-gradient(160deg, rgba(241,86,54,1) 0%, rgba(245,128,61,1) 100%);
    background: -webkit-linear-gradient(160deg, rgba(241,86,54,1) 0%, rgba(245,128,61,1) 100%);
    background: linear-gradient(160deg, rgba(241,86,54,1) 0%, rgba(245,128,61,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f15636",endColorstr="#f5803d",GradientType=1);
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);*/
}

    #header #logo h1 {
        font-size: 42px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
    }

        #header #logo h1 a {
            color: #0c2e8a;
            line-height: 1;
            display: inline-block;
        }

            #header #logo h1 a span {
                color: #50d8af;
            }

    #header #logo img {
        padding: 0;
        margin: 0;
        width:200px;
    }

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/




#intro {
    position: relative;
    background-image: url(../img/bannerpattern.png),linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    height: 81vh;
    /*background-color: #f15636;*/
    /*background: ;*/
}

    #intro .intro-content {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

        #intro .intro-content h2 {
            color: #0c2e8a;
            margin-bottom: 30px;
            font-size: 64px;
            font-weight: 700;
        }

            #intro .intro-content h2 span {
                color: #50d8af;
                text-decoration: underline;
            }

        #intro .intro-content .btn-get-started,
        #intro .intro-content .btn-projects {
            font-family: "Raleway", sans-serif;
            font-size: 15px;
            font-weight: bold;
            letter-spacing: 1px;
            display: inline-block;
            padding: 10px 32px;
            border-radius: 2px;
            transition: 0.5s;
            margin: 10px;
            color: #fff;
        }

        #intro .intro-content .btn-get-started {
            background: #0c2e8a;
            border: 2px solid #0c2e8a;
        }

            #intro .intro-content .btn-get-started:hover {
                background: none;
                color: #0c2e8a;
            }

        #intro .intro-content .btn-projects {
            background: #50d8af;
            border: 2px solid #50d8af;
        }

            #intro .intro-content .btn-projects:hover {
                background: none;
                color: #50d8af;
            }

    #intro #intro-carousel {
        z-index: 8;
    }

        #intro #intro-carousel::before {
            content: '';
            background-color: rgba(255, 255, 255, 0.7);
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            z-index: 7;
        }

        #intro #intro-carousel .item {
            width: 100%;
            height: 60vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition-property: opacity;
        }

.bannerbg img {
    width: 100%;
    max-width: 500px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu li:hover > ul,
    .nav-menu li.sfHover > ul {
        display: block;
    }

    .nav-menu ul ul {
        top: 0;
        left: 100%;
    }

    .nav-menu ul li {
        min-width: 180px;
    }

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 22px;
}

    .sf-arrows .sf-with-ul:after {
        content: "\f107";
        position: absolute;
        right: 8px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 10px 8px;
    text-decoration: none;
    display: inline-block;
    /*color: #FFF;*/
    color:#000 !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.025em;
    font-size: 14px;
    outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
    /*color: #FFF;*/
    color:#000 !important;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 13px;
            text-transform: none;
        }

        .nav-menu ul li:hover > a {
            color: #50d8af;
        }

    .nav-menu ul ul {
        margin: 0;
    }


.estimate {
    border: solid 2px #000 !important;
    padding: 8px 12px !important;
    border-radius: 3px !important;
}

.packages {
    border: solid 2px #FFF;
    padding: 8px 12px !important;
    border-radius: 3px !important;
    color: #FFF !important;
    display: inline-block;
    margin-bottom: 50px;
}

.bannertext {
    margin-top: 100px;
}

    .bannertext h1 {
        font-size: 60px;
        font-weight: 700;
        color: #FFF;
    }

    .bannertext h3 {
        font-size: 40px;
        font-weight: 500;
        color: #FFF;
        margin-bottom: 20px;
    }

    .bannertext p {
        font-size: 14px;
        font-weight: 500;
        color: #FFF;
        margin-bottom: 50px;
    }

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

    #mobile-nav-toggle i {
        color: #000;
    }

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

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

        #mobile-nav ul li {
            position: relative;
            padding:0px 15px;
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 16px;
                overflow: hidden;
                padding: 10px 22px 10px 15px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
            }

                #mobile-nav ul li a:hover {
                    color: #fff;
                }

            #mobile-nav ul li li {
                padding-left: 30px;
            }

        #mobile-nav ul .menu-has-children i {
            position: absolute;
            right: 0;
            z-index: 99;
            padding: 15px;
            cursor: pointer;
            color: #fff;
        }

            #mobile-nav ul .menu-has-children i.fa-chevron-up {
                color: #50d8af;
            }

        #mobile-nav ul .menu-item-active {
            color: #50d8af;
        }

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

    body.mobile-nav-active #mobile-nav {
        left: 0;
    }

    body.mobile-nav-active #mobile-nav-toggle {
        color: #fff;
    }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


.maintitle {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #212121;
    margin: 50px 10px 40px;
}

.whatcan {
    background-color: #f6f6f6;
    text-align: center;
    color: #212121;
    padding-bottom: 50px;
}

.whatcantitle {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #212121;
    margin: 60px 10px 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.font20 {
    font-size: 20px;
}

.whatcan-box {
    text-align: center;
}

    .whatcan-box img {
        width: auto;
        max-height: 80px;
        margin-bottom: 25px;
    }

    .whatcan-box h1 {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        color: #212121;
    }



/* Sections Header
--------------------------------*/

.section-header {
    margin-bottom: 30px;
}

    .section-header h2 {
        font-size: 32px;
        color: #0c2e8a;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding-bottom: 20px;
    }

        .section-header h2::before {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #50d8af;
            bottom: 0;
            left: 0;
        }

    .section-header p {
        padding: 0;
        margin: 0;
    }




/* what we offer
--------------------------------*/

.we-offer {
    /*background-color: #f4743b;*/
    background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
    padding-bottom: 50px;
}

.we-offer-title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #FFF;
    margin: 70px 10px 50px;
}

.we-offer-box {
    background-color: #f4743b;
    color: #FFF;
    text-align: center;
}


.box {
    width: 100%;
    min-height: 250px;
    border-radius: 3px;
    background-color: #f4743b;
    transition: .3s all ease-in-out;
    position: relative;
    -webkit-box-shadow: 0px 5px 26px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 5px 26px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 5px 26px 0px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

    .box .boxContent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 15px 20px;
    }

        .box .boxContent .icon {
            color: #FFF;
            font-size: 48px;
            padding: 15px;
        }

        .box .boxContent .title {
            font-size: 23px;
            color: #FFF;
            font-weight: 500;
            padding: 10px;
            height: 70px;
            line-height: 30px;
        }

        .box .boxContent .titlesmall {
            font-size: 23px;
            line-height: 60px;
            color: #FFF;
            font-weight: 500;
            padding: 10px;
            height: 70px;
        }

        .box .boxContent .desc {
            color: #FFF;
            font-size: 14px;
            height: 20%;
            margin-bottom: 20px;
            font-family: 'Roboto', sans-serif;
        }

    .box a {
        text-align: center;
        color: #f4743b;
        font-size: 13px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .box:hover {
        background: #FFF;
        box-shadow: none;
    }

        .box:hover .icon,
        .box:hover .title,
        .box:hover .titlesmall,
        .box:hover .desc {
            color: #212121;
            transition: .3s all ease-in-out;
        }



.whitebg {
    background-color: #FFF;
}

.offwhitebg {
    background-color: #f6f6f6;
}

.awards {
    background-color: #f6f6f6;
    text-align: center;
    color: #212121;
    padding-bottom: 50px;
}

.awardstitle {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #212121;
    margin: 60px 10px 50px;
    display: inline-block;
}

.awardimg {
    text-align: center;
}

    .awardimg img {
        width: 100%;
        max-width: 250px;
        margin-bottom: 25px;
    }








/* About Section
--------------------------------*/

#about {
    padding: 60px 0 30px 0;
}

    #about .about-img {
        overflow: hidden;
    }

        #about .about-img img {
            margin-left: -15px;
            max-width: 100%;
        }

    #about .content h2 {
        color: #0c2e8a;
        font-weight: 700;
        font-size: 36px;
        font-family: "Raleway", sans-serif;
    }

    #about .content h3 {
        color: #555;
        font-weight: 300;
        font-size: 18px;
        line-height: 26px;
        font-style: italic;
    }

    #about .content p {
        line-height: 26px;
    }

        #about .content p:last-child {
            margin-bottom: 0;
        }

    #about .content i {
        font-size: 20px;
        padding-right: 4px;
        color: #50d8af;
    }

    #about .content ul {
        list-style: none;
        padding: 0;
    }

        #about .content ul li {
            padding-bottom: 10px;
        }

/* Services Section
--------------------------------*/

#services {
    padding: 30px 0 0 0;
}

    #services .box {
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
        background: #fff;
        transition: 0.4s;
    }

        #services .box:hover {
            box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
            transform: translateY(-10px);
            -webkit-transform: translateY(-10px);
            -moz-transform: translateY(-10px);
        }

        #services .box .icon {
            float: left;
        }

            #services .box .icon i {
                color: #444;
                font-size: 64px;
                transition: 0.5s;
                line-height: 0;
                margin-top: 34px;
            }

                #services .box .icon i:before {
                    background: #0c2e8a;
                    background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
                    background-clip: border-box;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

        #services .box h4 {
            margin-left: 100px;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 22px;
        }

            #services .box h4 a {
                color: #444;
            }

        #services .box p {
            font-size: 14px;
            margin-left: 100px;
            margin-bottom: 0;
            line-height: 24px;
        }

/* Clients Section
--------------------------------*/

#clients {
    padding: 30px 0;
}

    #clients img {
        max-width: 100%;
        opacity: 0.5;
        transition: 0.3s;
        padding: 15px 0;
    }

        #clients img:hover {
            opacity: 1;
        }

    #clients .owl-nav,
    #clients .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
    }

        #clients .owl-dot.active {
            background-color: #50d8af;
        }

/* Our Portfolio Section
--------------------------------*/

#portfolio {
    background: #fff;
    padding: 30px 0;
}

    #portfolio .portfolio-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        transition: all ease-in-out 0.4s;
    }

    #portfolio .portfolio-item {
        overflow: hidden;
        position: relative;
        padding: 0;
        vertical-align: middle;
        text-align: center;
    }

        #portfolio .portfolio-item h2 {
            color: #ffffff;
            font-size: 24px;
            margin: 0;
            text-transform: capitalize;
            font-weight: 700;
        }

        #portfolio .portfolio-item img {
            transition: all ease-in-out 0.4s;
            width: 100%;
        }

        #portfolio .portfolio-item:hover img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        #portfolio .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.7);
        }

    #portfolio .portfolio-info {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

/* Testimonials Section
--------------------------------*/

#testimonials {
    padding: 30px 0;
}

    #testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 30px 30px 0 30px;
        margin: 30px 15px;
        text-align: center;
        min-height: 350px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    }

        #testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0 auto;
        }

        #testimonials .testimonial-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #111;
        }

        #testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #999;
            margin: 0;
        }

        #testimonials .testimonial-item .quote-sign-left {
            margin-top: -15px;
            padding-right: 10px;
            display: inline-block;
            width: 37px;
        }

        #testimonials .testimonial-item .quote-sign-right {
            margin-bottom: -15px;
            padding-left: 10px;
            display: inline-block;
            max-width: 100%;
            width: 37px;
        }

        #testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    #testimonials .owl-nav,
    #testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
    }

        #testimonials .owl-dot.active {
            background-color: #50d8af;
        }

/* hww effact
--------------------------------*/

.number_effact {
    text-align: center;
    width:;
}

.num {
    font-size: 70px;
    font-weight: 700;
    color: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    vertical-align: middle;
    text-align: center;
}

.circle_orange {
    background-color: #f4743b;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}



/* Our Team Section
--------------------------------*/

#blog {
    background: #fff;
    padding: 0 0 40px 0;
}

    #blog .member {
        text-align: center;
        margin-bottom: 20px;
    }

        #blog .member .pic {
            overflow: hidden;
            text-align: center;
        }

            #blog .member .pic img {
                max-width: 100%;
            }

        #blog .member .details {
            background: #FFF;
            color: #212121;
            padding: 15px 0;
            border-radius: 0 0 3px 3px;
        }

        #blog .member h4 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 18px;
        }

        #blog .member span {
            display: block;
            font-size: 16px;
            margin-bottom: 30px;
        }


.text-xs-left {
    text-align: left;
}

.text-xs-right {
    text-align: right;
}

.text-xs-center {
    text-align: center;
}

.text-xs-justify {
    text-align: justify;
}

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }

    .text-sm-center {
        text-align: center;
    }

    .text-sm-justify {
        text-align: justify;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-justify {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left;
    }

    .text-lg-right {
        text-align: right;
    }

    .text-lg-center {
        text-align: center;
    }

    .text-lg-justify {
        text-align: justify;
    }
}



/* Contact Section
--------------------------------*/



.foot_contact {
    background-image: url(../img/contactbg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    color: #212121;
    padding: 60px 0px;
}

.con_t {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #FFF;
    margin: 0px 0px 30px;
}

.send-button {
    padding: 12px 30px !important;
    background-color: #ffbaab;
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
}

    .send-button:hover {
        padding: 12px 30px !important;
        background-color: #FFF;
        color: #000 !important;
        font-size: 14px;
        font-weight: 600;
    }

.input-lg {
    padding: 15px 20px !important;
    height: auto;
    border-radius: 3px;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #f2f5f8;
    padding: 80px 0 50px 0;
    font-size: 14px;
    border-top: solid 1px #d8d8d8;
}

.dark-logo {
    text-align: left;
}

    .dark-logo img {
        width: 100%;
        max-width: 200px;
        margin-bottom: 25px;
    }

    .dark-logo p {
        font-size: 12px;
        font-weight: 500;
    }

.footer-link ul {
    
    list-style-type: none;
    margin: 0 0 10px 0px;
    padding: 0;
}
/*.menu-social-media-container ul{display:flex;*/
/*    float:right;}*/
/*.menu-social-media-container ul li{padding:0 10px;}*/
    .footer-link ul li a {
        display: inline-block;
        color: #666666;
        padding: 5px 0px;
        font-size: 13px;
        font-weight: 500;
    }

        .footer-link ul li a:hover {
            display: inline-block;
            color: #212121;
            padding: 5px 0px;
        }

        .footer-link ul li a i {
            display: inline-block;
            color: #cdcdcd;
            padding: 5px 0px;
            font-size: 20px;
            font-weight: 500;
            transition: 0.5s;
        }

            .footer-link ul li a i:hover {
                display: inline-block;
                color: #212121;
                padding: 5px 0px;
                font-size: 28px;
                font-weight: 500;
                transition: 0.5s;
            }

		.footer-link .widget-title {
        display: inline-block;
        color: #212121;
        padding: 5px 0px;
        font-size: 14px;
        line-height: 1.2em;
        font-weight: 600;
        text-transform: uppercase;
        padding-bottom: 15px;
        margin: 0;
    }


@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }

    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    #intro {
        height: 30vh;
    }

    .bannertext {
        margin-top: 20px;
    }

    .back-to-top {
        bottom: 15px;
    }

    #header {
        padding: 0px 0;
        height: 84px;
        align-content:center;
    }

        #header #logo h1 {
            font-size: 34px;
        }

        #header #logo img {
            max-height: 100%;
        }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }

    #about .about-img {
        height: auto;
    }

        #about .about-img img {
            margin-left: 0;
            padding-bottom: 30px;
        }
}

@media (max-width: 767px) {
    .bannertext h1 {
        font-size: 50px;
        font-weight: 700;
        color: #FFF;
    }

    .bannertext p {
        font-size: 14px;
        font-weight: 500;
        color: #FFF;
        margin-bottom: 20px;
    }

    #intro {
        height: 90vh;
    }

    .bannertext {
        margin-top: 20px;
    }

    .bannerbg img {
        width: 100%;
        max-width: 300px;
    }

    #intro .intro-content h2 {
        font-size: 34px;
    }

    #services .box .box {
        margin-bottom: 20px;
    }

    #services .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #services .box h4,
    #services .box p {
        margin-left: 0;
        text-align: center;
    }

    #testimonials .testimonial-item {
        margin: 30px 10px;
    }
}

@media (max-width: 576px) {
    .bannertext h1 {
        font-size: 40px;
        font-weight: 700;
        color: #FFF;
    }

    #contact #google-map {
        margin-top: 20px;
    }
}

.font-w600 {
    font-weight: 600;
}


.modal-header {
    background: #ffbaab;
    padding: 15px 25px;
    border-radius: 0px;
    color: #000;
}

    .modal-header .close {
        background-color: transparent;
        padding: 22px 25px;
        border-radius: 0px;
        font-size: 29px;
        outline: none;
    }

    .modal-header .modal-title {
        color: #000;
    }

label {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.popup-button {
    padding: 12px 30px !important;
    background-color: #ffbaab;
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
}


/*=== Contact Page ===*/

.banner-connect {
    height: auto;
    padding-bottom: 10%;
	background-size:cover !important;
}
.banner-connect .v-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    font-size: 130px;
}
.banner-connect h1 .font-w {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .3rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.banner-connect h1 .big-siz {
    font-size: 98px;
    display: block;
    padding-bottom: 40px;
}
.banner-connect h1 .butm {
    font-size: 30px;
}
.banner-connect h1 {
    color: #fff;
    line-height: 65px;
    margin-top: 12%;
    width: 800px;
}
.contact-page-form-section .career-contact-left{padding-top: 70px;}
.contact-page-form-section .rs-about.about-style1 {position: relative;padding-top: 80px;}
.contact-page-form-section .content-wrap-left h2{
  font-size: 30px;
  color: #000;
  padding-bottom: 15px;
}
.contact-page-form-section .contact-bx {
    background: #fcf9ff;
    border-radius: 10px 90px 10px 10px;
    position: relative;
    padding: 43px 29px;
    text-align: left;
    font-weight: 600;
}
.contact-page-form-section .contact-bx .full-linkbx {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contact-page-form-section .contact-bx .full-linkbx .contact-ico img {
    max-width: 100%;
    height: auto;
}
.contact-page-form-section .col-lg-4 .career-contact-col a.career-link{color: #000;}
.career-sub-title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
    display: block;
}
.contact-ico {
    position: absolute;
    right: -25px;
    top: -18px;
    transition: 0.3s;
    -webkit-transition: 0.3s !important;
}
.contact-page-form-section .contact-bx:hover .contact-ico {
    top: -35px;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}
.contact-page-form-section .rs-contact.contact-style2.contact-modfiy1 .content-wrap {
    border-radius: 30px 30px 30px 30px;
}
.content-wrap-connect {
    /*background-color: #fcf9ff !important;*/
    border:1px solid #000;
    padding: 20px !important;
/*     height: 500px; */
}
.content-wrap-connect p.dscf7captcha{color:#000;}
.content-wrap-connect p.dscf7captcha img{cursor:pointer;filter:brightness(0) invert(0);height:30px;width:30px;}
.content-wrap-connect p.dscf7captcha input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {border: 1px solid;height: 40px;}
.content-wrap-connect input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.last-name{margin-left:0px;width:1005;}
.content-wrap-connect input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{width:100%;border-bottom:1px solid #000;}
.content-wrap-connect input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.email{margin-left:0px;}
.content-wrap-connect input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel.phone-number{margin-left:0px;}
.content-wrap-connect textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required{width:100%;border-bottom:1px solid #000;height:100px;}
.page-id-283 input.wpcf7-form-control.wpcf7-submit.btn.send-button{margin-left:0px !important;}
input.wpcf7-form-control.wpcf7-submit.btn.send-button:hover{border:1px solid #000;}
.form-textArea{padding:0px;}
.contact-Headquarter{margin-top: 50px;}

.contact-Headquarter .card-shadow {
    background-color: #fff;
    border-radius: 30px;
    width:100%;
}
.contact-Headquarter .country-flag-icon {
    height: 70px;
    width: 100px;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    margin: 0 0 25px;
}
.contact-Headquarter .contact-map-bg article h3 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
}
.contact-Headquarter .map-area {
    max-height: 345px;
    overflow: hidden;
    border: solid #dfdfdf 1px;
    border-radius: 20px;
}
.contact-Headquarter .map-area iframe, .contact-Headquarter .map-area-sm iframe {width: 100%;}
.contact-Headquarter ul {list-style: outside none none;margin: 0;padding: 0;}
.contact-Headquarter ul li{margin:10px 0;}
.contact-Headquarter .contact-map-bg article li a {color: #000;font-weight: 500;}
.contact-Headquarter .contact-map-bg article li a:hover {color: #f37f2e;}
.contact-Headquarter p{color: #000;}
.contact-Headquarter .contact-map-bg article li i {margin: 0 7px 0 0;color: #000;}
/*.contact-Headquarter .contact-map-bg article .phone-volume i{transform: rotate(-22deg);}*/
.where-r-we-located {
    padding-top: 4%;
    padding-bottom: 8%;
    background: #f3f3f3;
    margin-bottom: 5%;
}
.contact-where-r-we-located{margin-top: 50px;padding-top: 4%;padding-bottom: 5%;background: #f3f3f3;margin-bottom: 0%;position: relative;}
.contact-where-r-we-located h2.text-title {
  margin-bottom: 3%;
  font-weight: 600;
  color: #000;
  font-size: 36px;
  line-height: 50px;
}
.animated-row .location-area .row>*{padding-left: 0px !important;}
.contact-where-r-we-located .cont-prt {
  background-color: #fff;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: right bottom;
  border: 1px solid #d4d4d4;
  padding: 8%;
  min-height: 300px;
  width: 100%;
  border-radius:10px;
}
.contact-where-r-we-located .cont-prt:hover{background:linear-gradient(-60deg, #ff5858 0%, #f09819 100%);}
.contact-where-r-we-located .cont-prt:hover h3{color:#fff;}
.contact-where-r-we-located .cont-prt:hover .text{color:#fff;}
.contact-where-r-we-located .cont-prt h3 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 9%;
}
.contact-where-r-we-located .location-area .cont-prt-row{margin-left:0px;}
.contact-where-r-we-located .location-area .col-md-10 {width: 92% !important;}
.contact-where-r-we-located .cont-prt .text {
    line-height: 25px;
    color: #000;
    font-weight: 500;
}
/*.contact-page-form-section .career-contact-row .career-contact-col-mobile:nth-child(2) .career-phone .career-linkbx:nth-child(1):after{*/
/*  content:'|';margin-right:5px;color:#000;margin-left:5px;}*/
/*.contact-page-form-section .career-contact-row .career-contact-col-mobile:nth-child(3) .career-phone .career-linkbx:nth-child(1):after{content:'|';margin-right:5px;color:#000;margin-left:5px;}*/
.career-phone{display:flex;}

.footer-copyright{color:#000;text-align:left;align-content:center;padding:10px 0;border-top:1px solid #000}
.footer-copyright a{color:#000;}
.footer-copyright a:hover{color:#f37f2e;}

.team-style1.img4 {
    background-image: url(https://www.traffikare.com/wp-content/uploads/2025/07/service-details-new.jpg);
}
.rs-banner.banner-style7, .bg5, .img4 {
    background-size: cover !important;
}
.pb-80 {
    padding-bottom: 80px;
}
.pt-80 {
    padding-top: 80px;
}
.y-middle {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.sec-title {
    position: relative;
}
.mb-100 {
    margin-bottom: 100px;
}
.sec-title .sub-text.primary-color {
    color: #f89100;
}
.sec-title .sub-text {
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    color: #f89100;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    margin: 0 0 10px;
    display: block;
}
.sec-title .title {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    color: #19082d;
    margin: 0;
}
.mt--85 {
    margin-top: -47px;
}
.sec-title .desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #3e3e3e;
    margin: 0;
}
.pb-30 {
    padding-bottom: 30px;
}
.rs-counter.counter-style1.counter-modify4 .rs-counter-list {
    position: relative;
}
.rs-counter.counter-style1.counter-modify4{text-align:center;}
.rs-counter.counter-style1
  .rs-counter-list
  .count-text
  .count-number
  .rs-count {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #f89100;
}
.rs-counter.counter-style1 .rs-counter-list .count-text .count-number .prefix {
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    color: #f89100;
}
.rs-counter.counter-style1.counter-modify4 .rs-counter-list .count-text .title {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #413f3f;
}
.mb-30 {
    margin-bottom: 30px;
}
.rs-team.team-style1 .team-item .team-inner-wrap {
    padding: 35px 20px 25px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}
.rs-team.team-style1 .team-item .team-inner-wrap .image-wrap {
    overflow: hidden;
    border-radius: 50%;
    max-width: 135px;
    margin: 0 auto;
}
.rs-team.team-style1 .team-item .team-inner-wrap .image-wrap {
    max-width: 100px !important;
    border-radius: unset !important;
}
.rs-team.team-style1 .team-item .team-inner-wrap .team-content {
    padding-top: 10px;
    opacity: 1;
    text-align: center;
}
.rs-team.team-style1 .team-item .team-inner-wrap .team-content .team-name {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    margin-top: 20px;
}
.page-template-aboutus-tpl .whatcan-box{box-shadow:38px 45px 93px -10px #f5f0ee;padding:20px;height:100%;border-radius:10px;}
.page-template-aboutus-tpl #core-value h3{font-size:50px;}
.page-template-aboutus-tpl #core-value p{font-size:18px;}

.rs-team .box {
  position: relative;
  width: 30rem;
  height: 30rem;
  margin: 4rem;
}

.rs-team .box:hover .imgBox {
  transform: translate(-3.5rem, -3.5rem);
}

.rs-team .box:hover .content {
  transform: translate(3.5rem, 3.5rem);
}

.rs-team .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.rs-team .imgBox img {
  width: 30rem;
  height: 30rem;
  object-fit: cover;
  resize: both;
}

.rs-team .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  background-color: #fff;
  z-index: 1;
  align-items: flex-end;
  text-align: center;
  transition: 0.5s ease-in-out;
}

.rs-team .content h2 {
  display: block;
  font-size: 2rem;
  color: #111;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 1px;
}

.rs-team .content span {
  color: #555;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/*services section*/
.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: rgba(0,0,0,0) !important;
}
	.p-tb-80 {
    padding-bottom: 80px;
    padding-top: 80px;
	}
	.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: rgba(0,0,0,0) !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.bg-light-box {
    background-color: #f6f6f6;
}
.all-services-tabs a:before {
    content: '';
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/active-tab-arrow.svg);
    position: absolute;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    right: 20px;
    bottom: 20px;
    filter: invert(1);
    opacity: 0;
}
.all-services-tabs a.active:before {
    filter: invert(1);
    opacity: 1;
}
.our-services .tab-content {
    background-imag:e url(https://www.hyperlinkinfosystem.com/assets/img/mobile-app-dev-serv-bg.jpg);
    background-size: cover;
    background-position: center;

}
.all-services-tabs a.mobile-app-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/mobile-app-dev-tab.jpg);
}
.all-services-tabs a.web-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/web-dev-tab.jpg);
}
.all-services-tabs a.ecommerce-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/ecommerce-dev-tab.jpg);
}
.all-services-tabs a.blockchain-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/blockchain-dev-tab.jpg);
}
.all-services-tabs a.game-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/game-dev-tab.jpg);
}
.all-services-tabs a.salesforce-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/salesforce-dev-tab.jpg);
}
.all-services-tabs a.ai-ml-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/ai-ml-dev-tab.jpg);
}
.all-services-tabs a.iot-dev-tab {
    background-image: url(https://www.hyperlinkinfosystem.com/assets/img/iot-dev-tab.jpg);
}
.all-services-tabs a.mobile-app-dev-tab:hover, .all-services-tabs a.web-dev-tab:hover, .all-services-tabs a.ecommerce-dev-tab:hover, .all-services-tabs a.blockchain-dev-tab:hover, .all-services-tabs a.game-dev-tab:hover, .all-services-tabs a.salesforce-dev-tab:hover, .all-services-tabs a.ai-ml-dev-tab:hover, .all-services-tabs a.iot-dev-tab:hover {
    background-size: 140%,140%;
    background-repeat: no-repeat;
    background-position: center;
    transition: ease-in-out .7s;
}
.all-services-tabs a.active {
    background-color: #fff !important;
    /*background-image: url(https://www.hyperlinkinfosystem.com/assets/img/tab-active-bg.jpg);*/
    background-size: cover;
    background-position: center;
    transition: ease-in-out .7s;
    border: 1px solid #ededed !important;
}
.all-services-tabs a {
    color: #fff;
    background-color: #fff !important;
    border: 1px solid #ededed !important;
    border-radius: 15px !important;
    min-height: 270px;
    overflow: hidden;
    transition: ease-in-out .7s;
    background-size: cover;
    background-position: center;
}
.all-services-tabs a .title-h6 {
    font-size: 21px;
    color: #fff;
}
.all-services-tabs a.active span {
    color: #fff;
}
.all-services-tabs a .sub-txt {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
}
.our-services .tab-content .card {
    min-height: 670px;
    border-radius: 0;
}
.c-black {
    color: #191919 !important;
}
a{text-decoration: none !important;}
.list-gp-circle {
    margin-bottom: 0;
    list-style: none;
}
.list-gp-circle li {
    position: relative;
    margin: 5px 0;
}
.list-gp-circle li:before {
    content: '';
    position: absolute;
    border-radius: 100px;
    border: 3px solid #fff;
    opacity: .15;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}
.our-services .tab-content .list-gp-circle li:before {
    border: 3px solid #191919;
}
.desc {
    font-size: 16px;
    line-height: 32px;
    color: #191919;
}
/*end services section*/

/*What can we do section*/

.what-can-do-section{background: #eee;}
.cards-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cards__item {
  height: 400px;
  width: 100%;
  border-radius: 10px;
}

.card-two {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 50%;
    height: 100%;
    background-color: rgba(#ffffff, 0.1);
    pointer-events: none;
  }
  
  &:nth-child(1) {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  
  &:nth-child(2) {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  
  &:nth-child(3) {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  /*&:nth-child(1) {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }*/
}

.card__frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card__picture {
  margin-bottom: 12px;
  filter: invert(0);
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

.card__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.card__overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(#000000, 0.2);
  transition: 0.5s;
  cursor: pointer;
  
  &::before {
    content: "Read";
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
  }
  
  &:hover,
  &:focus {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0;
    opacity: 0.9;
    
    &::before {
      content: none;
    }
  }
  
  .card-two:nth-child(1) & {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  
  .card-two:nth-child(2) & {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  
  .card-two:nth-child(3) & {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }
  /*.card-two & {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
  }*/
}

.card__content {
  z-index: 1;
  padding: 20px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  pointer-events: none;
  transition: 0s;
  
  .card__overlay:hover ~ & {
    opacity: 1;
    visibility: visible;
    transition: 0.2s 0.3s;
    color: #fff;
  }
  
  h2 {
    margin: 0;
    margin-bottom: 16px;
  }
}

/*end What can we do section*/
@media only screen and (min-width: 900px) and (max-width: 1100px){
.rs-counter.counter-style1.counter-modify4
    .rs-counter-list
    .count-text
    .title {
    font-size: 14px !important;
    
}
}
@media only screen and (min-width: 992px) and (max-width: 1198px){
.sec-title .title {
    font-size: 44px;
    line-height: 54px;
}
}

#core-value{padding:50px;}

@media only screen and (min-width: 320px) and (max-width: 480px){
	* {
        margin: 0;
        padding: 0;  
        box-sizing: border-box;
    }
    .banner-connect{height:auto !important;}
    .content-wrap-connect{height:auto;margin-top:25px;padding:10px !important;}
	.contact-where-r-we-located .cont-prt{margin-bottom:10px;width:100%;min-height:auto;padding:5%;}
	.banner-connect h1 .big-siz{line-height:125px;font-weight:700;font-size:48px;padding-bottom:0px;}
	.banner-connect h1 .font-w{font-size:25px;line-height:40px;letter-spacing:0.8rem;margin-bottom:0px;}
	.banner-connect h1 .butm{font-size:26px;line-height:40px;font-weight:500;}
	.banner-connect h1 .butm br{display:none;}
	.banner-connect h1{margin-top:25%;width:unset;}
	.contact-page-form-section .rs-about.about-style1{padding-top:0px;}
	.contact-page-form-section .content-wrap-left h2{padding-top:20px;font-size:28px;}
	.content-wrap-connect input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{width:100%;}
	.content-wrap-connect input.wpcf7-form-control.wpcf7-text{width:100%;}
	.content-wrap-connect input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.last-name{width:100%;}
	.animated-row .location-area .row>*{padding-left:10px !important;}
	.career-phone{display:block;}
	.col-lg-8.rs-contact.contact-style2.contact-modfiy1.pr-0.content-wrap-left{width:96%;}
.rs-counter.counter-style1.counter-modify4{margin-bottom:30px;}
#core-value {padding: 20px;}
.page-template-aboutus-tpl .bannerbg img{max-width:unset;}
.page-template-aboutus-tpl #core-value .col-md-6 .col-md-12.wow.fadeInLeft{margin-top:20px;}
}
