@import url("https://fonts.googleapis.com/css?family=Open+Sans|Titillium+Web:600,700");
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
html {
    overflow-x: hidden;
}

body {
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #abacae;
    line-height: 25px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-size: 38px;
    color: #222222;
    font-weight: 700;
    font-family: 'Titillium Web', sans-serif;
}

a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    a:hover {
        text-decoration: none;
    }

    a a:focus {
        outline: none;
    }

p {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
    font-size: 14px;
}

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

    ul li, ol li {
        list-style: none;
    }

a:not([href]):not([tabindex]) {
    color: #fff;
}

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

    .section-header p {
        
        font-weight: 400;
        line-height: 26px;
    }

.section-title {
    font-size: 30px;
    color: #222222;
    display: inline-block;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.1px;
    margin-bottom: 0;
}

.padding-none {
    padding: 0px;
}

.bg-gray {
    background: #f9f9f9;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(15, 17, 27, 0.8);
}

.btn {
    font-size: 14px;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: 400;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: inline-block;
}

    .btn:focus,
    .btn:active {
        box-shadow: none;
        outline: none;
        color: #fff;
    }

.btn-common {
    background-color: #3d60f4;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

    .btn-common:hover {
        color: #fff;
        background-color: #222;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
    }

.btn-border {
    color: #3d60f4;
    background-color: transparent;
    border: 1px solid #3d60f4;
    border-radius: 30px;
    text-transform: uppercase;
}

    .btn-border:hover {
        color: #fff;
        border-color: #3d60f4;
        background-color: #3d60f4;
    }

    .btn-border:focus {
        color: #fff;
        border-color: #3d60f4;
        background-color: #3d60f4;
    }

.btn-lg {
    padding: 14px 33px;
    text-transform: uppercase;
    font-size: 16px;
}

.btn-rm {
    padding: 7px 18px;
    text-transform: capitalize;
}

button:focus {
    outline: none !important;
}

.icon-close, .icon-check {
    color: #3d60f4;
}



/* ScrollToTop */
a.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
    text-decoration: none;
}

    a.back-to-top i {
        display: block;
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        background: #3d60f4;
        border-radius: 30px;
        text-align: center;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    }

    a.back-to-top:hover, a.back-to-top:focus {
        text-decoration: none;
    }

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before, #loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: #3d60f4;
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after {
    border: 7px solid #f2f2f2;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

.section-padding {
    padding: 60px 0;
}

hr {
    border-top: 1px dotted #ddd;
}

.feature-bg {
    background: #3d60f4;
}

.text-wrapper {
    height: 100%;
    display: table;
    padding-left: 140px;
}

    .text-wrapper > div {
        vertical-align: middle;
        display: table-cell;
    }

.feature-thumb {
    padding: 40px 0;
}

.feature-item {
    padding: 30px;
}

    .feature-item .icon {
        float: left;
        border: 1px solid #fff;
        width: 80px;
        height: 80px;
        text-align: center;
        border-radius: 50%;
        transition: all .6s ease;
        -moz-transition: all .6s ease;
        -webkit-transition: all .6s ease;
    }

        .feature-item .icon i {
            font-size: 36px;
            color: #fff;
            line-height: 80px;
        }

.feature-content {
    color: #fff;
    margin-left: 100px;
}

    .feature-content h3 {
        color: #fff;
        text-transform: uppercase;
        font-size: 18px;
    }

.feature-item:hover .icon {
    background: #fff;
}

    .feature-item:hover .icon i {
        color: #3d60f4;
    }

/* Services Item */
.services-item {
    background: #fff;
    margin: 0;
    padding: 0px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    margin-bottom: 30px;
}
.services-content h3 {
    text-align: center;
    color: #000;
}
a.navbar-brand img {
    height: 40px;
}
nav.navbar.navbar-expand-md.bg-inverse.fixed-top.scrolling-navbar {
    background: #fff;
}
.services-content p {
    color: #000;
    font-size: 14px;
    padding: 20px 15px;
    line-height: 26px;
}

    .services-item .icon i {
        font-size: 42px;
        color: #3d60f4;
    }

    .services-item .services-content h3 {
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

        .services-item .services-content h3 a {
            font-size: 18px;
            color: #222;
        }

            .services-item .services-content h3 a:hover {
                color: #3d60f4;
            }

    .services-item:hover {
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
    }

#service {
    position: relative;
}

/* Container Outside Shape */
.container-outside {
    position: absolute;
    top: 0;
    right: 0;
    width: 47.1%;
    height: 100%;
    background: #3d60f4;
    overflow: hidden;
}

.heading {
    padding-left: 30px;
}

.d-table {
    display: table;
    width: 100%;
    height: 100%;
}

.dt-cell {
    display: table-cell;
    vertical-align: middle;
}

.skill-area img {
    border-radius: 4px;
}

.skills-section {
    margin-top: 30px;
}

    .skills-section .progress-box h5 {
        color: #222222;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .skills-section .progress {
        background: #f9f9f9;
        height: 10px;
        margin-bottom: 30px;
    }

        .skills-section .progress .progress-bar {
            background: #3d60f4;
        }

.navbar-brand {
    position: relative;
    padding: 0px;
}

.top-nav-collapse {
    background: #fff;
    z-index: 999999;
    top: 0px !important;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    background: #fff !important;
}

    .top-nav-collapse .navbar-brand {
        top: 0px;
    }

    .top-nav-collapse .navbar-nav .nav-link {
        color: #585b60 !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

        .top-nav-collapse .navbar-nav .nav-link:hover {
            cursor: pointer;
            color: #3d60f4 !important;
        }

    .top-nav-collapse .navbar-nav li.active a.nav-link {
        color: #3d60f4 !important;
    }

.indigo {
    background: transparent;
}

.menu-bg {
    background: transparent;
}

.navbar-expand-md .navbar-nav .nav-link i {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-expand-md .navbar-nav .nav-link {
    font-family: 'Titillium Web', sans-serif;
    color: #585b60;
    font-weight: 600;
    padding: 8px 20px;
    line-height: 40px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-expand-md .navbar-nav li a:hover,
.navbar-expand-md .navbar-nav li .active > a,
.navbar-expand-md .navbar-nav li a:focus {
    color: #3d60f4;
    outline: none;
}

.navbar-expand-md .navbar-nav .active > .nav-link,
.navbar-expand-md .navbar-nav .nav-link.active,
.navbar-expand-md .navbar-nav .nav-link.open,
.navbar-expand-md .navbar-nav .open > .nav-link {
    color: #3d60f4 !important;
}

.navbar-expand-md .navbar-nav .nav-link:focus,
.navbar-expand-md .navbar-nav .nav-link:hover {
    color: #3d60f4 !important;
}

.navbar {
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #eee;
}

    .navbar li.active a.nav-link {
        color: #3d60f4;
    }

.menu-white .navbar-nav .nav-link {
    color: #fff;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 210px;
    background-color: #fff;
    white-space: nowrap;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    animation: fadeIn 0.4s;
    -webkit-animation: fadeIn 0.4s;
    -moz-animation: fadeIn 0.4s;
    -o-animation: fadeIn 0.4s;
    -ms-animation: fadeIn 0.4s;
}

    .dropdown-menu:before {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 100%;
        left: 20%;
        margin-left: -5px;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }

.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    text-align: left;
    top: 100%;
    border: none;
    animation: fadeIn 0.4s;
    -webkit-animation: fadeIn 0.4s;
    -moz-animation: fadeIn 0.4s;
    -o-animation: fadeIn 0.4s;
    -ms-animation: fadeIn 0.4s;
}

.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    display: inline-block;
    float: left;
    clear: both;
    position: relative;
    outline: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

    .dropdown .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .dropdown .dropdown-menu .dropdown-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
    color: #3d60f4;
    background: #f7f7f7;
}

.dropdown-item.active, .dropdown-item:active {
    background: transparent;
}

.fadeInUpMenu {
    -webkit-animation-name: fadeInUpMenu;
    animation-name: fadeInUpMenu;
}

/* ==========================================================================
3. Hero Area
========================================================================== */
#hero-area {
    color: #fff;
    overflow: hidden;
    position: relative;
    background: rgba(228, 230, 250, 0.5) url(../img/slider-1.png);
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 86% 73px;
    padding: 50px 0;
    background-attachment: fixed;
    margin-top: 56px;
}
    #hero-area .contents {
        width: 55%;
        float: left;
        padding-left: 0;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
    }
.skill-area.section-padding .site-heading p {
    font-size: 17px;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
}
.skill-area.section-padding h2 {
    font-size: 17px;
    margin-bottom: 6px;
}
/*.skill-area.section-padding {
    background: #f9f9f9;
}*/
.Running-div ul li img.icon-svg {
    width: 18px;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 5px;
}
div#feature.section-padding {
    padding-bottom: 40px;
}
div#feature .feature-thumb {
    padding: 0;
}

div#feature .feature-item.wow.fadeInDown {
    padding: 0;
}

.Running-div h4, h2.sec-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    letter-spacing: 0.1px;
    font-weight: 600;
}

.Running-div ul li {
    width: 50%;
    float: left;
    color: #000;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    padding-left: 27px;
    vertical-align: middle;
    text-align: left;
}
.Running-div {
    text-align: center;
}
    .Running-div a.btn.btn-common {
        margin-top: 15px;
    }
    .Running-div ul li span {
        font-weight: 600;
    }
.col-lg-6.col-md-12.col-sm-12.padding-none.feature-bg {
    background: #f2f3f7;
}
.site-heading.overlap-test {
    margin-left: -200px;
    padding: 18px 30px;
    background: #fff;
    border: 1px solid #eee;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    box-shadow: 0 0 30px rgba(134, 134, 134, 0.3);
}
.skill-area.section-padding h4 {
    font-size: 17px;
    /* font-weight: 600; */
    color: #444;
}
.right-slider {
    width: 35%;
    float: right;
}

#hero-area .contents .head-title {
    color: #222;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

#hero-area .contents p {
    font-size: 16px;
    color: #000;
    max-width: 560px;
    margin-bottom: 20px;
}

#hero-area .contents h2.head-title.save-time {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}

a.btn.btn-border.video-popup {
    margin-left: 10px;
}


.client-item-wrapper {
    text-align: center;
    padding: 15px;
}
div#client-carousel {
    text-align: center;
}
.p-10.text-center.item {
    display: inline-block;
    padding: 10px;
    text-align: center;
}
.client-item-wrapper img.img-fluid {
    height: 80px;
}
.section-header {
    margin-bottom: 30px;
    width: 100%;
}
    .section-header.text-center h2.sec-heading.gst-heading {
        margin: 0;
    }
.owl-theme .owl-controls {
    display: none !important;
}
/*.client-item-wrapper img {
    opacity: 0.5;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    transition: all .6s ease;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
}

.client-item-wrapper:hover img {
    opacity: 1;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}*/

#latest .text-content {
    height: 100%;
    display: table;
    padding-left: 60px;
    padding-right: 120px;
}

    #latest .text-content > div {
        vertical-align: middle;
        display: table-cell;
    }

.contact-form-area h2.Register-now {
    color: #111;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 20px;
    border: 1px solid #ccc;
}
.skill-area.section-padding {
    clear: left;
}
.form-control:focus {
    border-color: #3d60f4;
    box-shadow: none;
    outline: none;
}

textarea {
    border-radius: 4px !important;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn.disabled, .btn:disabled {
    opacity: 1;
}

.contact-form-area h2 {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}

.contact-right-area {
    margin-left: 50px;
    float: left;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

    .contact-right-area .contact-title {
        margin-bottom: 20px;
    }

        .contact-right-area .contact-title h1 {
            font-size: 22px;
        }

.contact-right {
    padding: 4px;
}

    .contact-right .single-contact {
        margin: 10px 0px;
        padding: 1px 35px;
        position: relative;
        color: #abacae;
        float: left;
        width: 100%;
    }
ul.social-links {
    width: 100%;
    float: left;
}

    ul.social-links li {
        display: inline-block;
        margin-right: 10px;
    }

        ul.social-links li a {
            width: 40px;
            height: 40px;
            display: block;
            background: #fff;
            line-height: 40px;
            text-align: center;
            font-size: 18px;
            border-radius: 50%;
        }

.social-icons {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: block;
    float: left;
}
section#contact.section-padding {
    padding: 0;
}
.contact-block.text-wrapper {
    height: 100%;
    display: table;
    padding-left: 140px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.contact-right .single-contact p {
    margin-bottom: 0px;
    color: #fff;
    line-height: 19px;
}

    .contact-right .single-contact p a {
     color: #fff;
    }
.contact-right .contact-icon {
    /* background: #fff; */
    color: #fff;
    border-radius: 4px;
    font-size: 20px;
    /* height: 40px; */
    left: 0;
    /* padding-top: 8px; */
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    /* width: 40px; */
}

#contact {
    position: relative;
    overflow: hidden;
}

.text-danger {
    font-size: 14px;
    margin-top: 10px;
}

.list-unstyled li {
    color: #d9534f;
}

#conatiner-map {
    margin-top: 30px;
    text-align: center;
    background-color: #fff;
    height: 480px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 101;
    width: 100%;
}

.h3 {
    font-size: 16px;
    margin-top: 26px;
}

.subscribes {
    background: #f8f9fb;
}

    .subscribes h4 {
        text-align: center;
        font-size: 40px;
    }

    .subscribes p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 30px;
    }

.subscribe {
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

    .subscribe .form-control {
        width: 100%;
        border-radius: 50px;
        position: relative;
        height: 52px;
        border: 1px solid #3d60f4;
    }

    .subscribe .btn-submit {
        border: none;
        cursor: pointer;
        background: transparent;
    }

        .subscribe .btn-submit i {
            width: 48px;
            height: 48px;
            background: #3d60f4;
            cursor: pointer;
            display: block;
            color: #fff;
            line-height: 48px;
            border-radius: 50%;
        }

/* Footer Area Start */
.footer-area {
    background: #34363a;
}

    .footer-area .footer-titel {
        font-size: 20px;
        color: #fff;
        font-weight: 700;
        padding-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .footer-area ul li {
        margin-bottom: 10px;
    }

        .footer-area ul li a {
            color: #ccc;
            font-size: 14px;
            font-weight: 400;
        }

            .footer-area ul li a:hover {
                color: #3d60f4;
            }

    .footer-area #subscribe-form {
        margin-top: 15px;
    }

        .footer-area #subscribe-form .form-group {
            position: relative;
        }

            .footer-area #subscribe-form .form-group .btn-common {
                position: absolute;
                top: 0;
                right: 0;
                padding: 7px 15px;
                height: 39px;
                border-radius: 0;
                background: transparent;
                color: #3d60f4;
                border-left: 1px solid #ddd;
            }

.copyright {
    background: #34363a;
    padding: 15px;
}




    .copyright p {
        line-height: 18px;
        color: #fff;
        text-align: center;
        margin: 0;
    }

        .copyright p a {
            color: #fff;
        }

            .copyright p a:hover {
                color: #3d60f4;
            }

header#header-wrap ul li {
    position: relative;
    display: inline-block;
}

header#header-wrap li.menu-alt a {
    padding: 6px 12px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    background: #3d60f4;
}

    header#header-wrap li.menu-alt a:hover {
        background-color: #222;
    }

header#header-wrap li.menu-alt {
    margin: 15px 0;
    margin-left: 10px;
}

header#header-wrap li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s,0s,.3s;
    background: #fff;
    box-shadow: 1px 1px 3px rgba(255,255,255,.3);
    border-top: 2px solid #727479;
}

header#header-wrap ul.sub-nav {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    transform: translateY(-2em);
    z-index: -1;
    transition: all .2s ease-in-out 0s,visibility 0s linear .2s,z-index 0s linear .01s;
}

header#header-wrap li:hover .sub-nav li {
    display: block;
}

    header#header-wrap li:hover .sub-nav li a {
        color: #444;
        padding: 5px;
        display: block;
        border-bottom: 1px solid #eee;
    }

header#header-wrap .sub-nav:after {
    border-bottom-color: #108fcf;
}

span.fa.fa-caret-down {
    padding-left: 4px;
    color: #3d60f4;
}

header#header-wrap .sub-nav:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-width: 5px;
    margin-left: -5px;
}

ul.sub-nav li, ul.sub-nav li a {
    display: block;
    width: 100%;
}

header#header-wrap li:hover .sub-nav li:last-child a {
    border: 0;
}

.slider-right2 {
    width: 45%;
    float: left;
    padding: 0 5px;
}

.slider-right1 {
    width: 100%;
}

.slider-right2 img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.slider-right2 {
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    margin-left: -20px;
    border-radius: 5px;
    overflow: hidden;
}

.slider-right1 img {
    width: 100%;
}

.slider-right3 {
    position: relative;
    width: 55%;
    float: right;
    margin-top: 20px;
}

    .slider-right3 img {
        width: 100%;
        border-radius: 5px;
        height: 220px;
    }

.skill-area.section-padding .site-heading p:before {
    content: " ";
    background: url(../img/left-quote.svg) no-repeat;
    font-size: 30px;
    top: 9px;
    font-weight: 700;
    padding-right: 30px;
    position: relative;
    background-size: 21px 17px;
}
.skill-area.section-padding .site-heading p:after {
    content: " ";
    background: url(../img/right-quote.svg) no-repeat;
    font-size: 30px;
    bottom: -12px;
    background-size: 21px 17px;
    font-weight: 700;
    padding-left: 30px;
    position: relative;
    margin-left: 6px;
}
section#Expertise .services-item {
    padding: 30px;
}
section#Expertise .services-content p,
.section-padding .feature-item.wow.fadeInDown, .section-padding .feature-thumb {
    padding: 0;
}
section#Expertise .services-content h3 {
    text-align: center;
}
.icon img {
    height: 50px;
}
.main-process, .process-img {
    width: 100%;
    float: left;
    text-align: center;
}
    .process-img img {
        height: 50px;
    }
.process-content p {
    font-size: 14px;
    color: #000;
    line-height: 24px;
}
.process-content {
    width: 100%;
    float: left;
    padding-top: 20px;
}
.process-img {
    margin-top: 10px;
}
.process-content h4 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}

.main-process {
    border: 1px solid #eee;
    padding: 15px 10px;

}
.process-bg {
    width: 100%;
    position: relative;
    float: left;
}

.process-bg img {
    width: 100%;
}
.proress-section {
    width: 100%;
    float: left;
    padding: 60px 0 40px;
  
}

section#Expertise {
    clear: left;
    background: #eee;
    padding-bottom: 30px;
}
div#Commitment {
    padding-bottom: 40px;
}
section#services .services-item.wow.fadeInRight {
    margin-bottom: 0;
}
.top-process {
    margin-top:0px;
    float: left;
    width: 100%;
    position: relative;
    padding: 10px;
    padding-top: 30px;
}
.Started-button {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
div#clients .col-lg-3.col-md-3.col-xs-12 {
    width: 20% !important;
    flex: auto;
}
.services-content img {
    width: 100%;
}



/*--GST--*/
div#gst-area {
    background-image: -moz-linear-gradient(180deg,rgba(47, 47, 47, 0.2) 0%,rgba(6, 6, 6, 0.2) 100%),url(../img/gst_slider.png) !important;
    background-image: -webkit-linear-gradient(180deg,rgba(47, 47, 47, 0.2) 0%,rgba(6, 6, 6, 0.2) 100%),url(../img/gst_slider.png) !important;
    background-image: -o-linear-gradient(180deg,rgba(47, 47, 47, 0.2) 0%,rgba(6, 6, 6, 0.2) 100%),url(../img/gst_slider.png) !important;
    background-image: linear-gradient(180deg,rgba(47, 47, 47, 0.2) 0%,rgba(6, 6, 6, 0.2) 100%),url(../img/gst_slider.png) !important;
    margin-top: 55px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
}
/*.contents {
    width: 100%;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}*/
.contents {
    width: 100%;
    text-align: left;
    max-width: 570px;
}
.gst-area-bg h2.head-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4em;
    margin-bottom: 20px;
    color: #3d60f4;
}
div#gst-area p {
    color: #111;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
}
div#gst-area .btn-common, .btn.btn-gst {
    /*background-image: linear-gradient(to top left,#ff8a00,#da1b60);*/
    border: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}
.gst-btn {
    background: #1d93d0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}
.moneytime a.btn.btn-gst:hover, .gst-btn:hover {
    color: #fff;
    background-color: #222;
    box-shadow: 0 6px 22px rgba(0,0,0,.1);
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.moneytime h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3em;
}
li.menu-alt.gst-btn {
    background: none;
    letter-spacing: 0;
    font-weight: 400;
}

header#header-wrap li.menu-alt.gst-btn a {
    background: #1d93d0;
}

a.btn.btn-border.gst-btn {
    background: no-repeat;
    border-color: #1d93d0;
    color: #1d93d0;
    margin-left: 10px;
}
div#gst-area .btn-common {
    background: #1d93d0;
}
ul.ul-gst li img {
    width: 30px;
    position: absolute;
    left: 0;
}

ul.ul-gst li {
    position: relative;
    padding-left: 42px;
    font-size: 18px;
    margin-bottom: 25px;
    vertical-align: middle;
    color: #222;
    line-height: 28px;
}
.moneytime a.btn.btn-gst {
    margin-top: 15px;
}
ul.ul-gst {
    margin-top: 50px;
}
.facilities {
    background: #e8f2f7;
}
.moneytime {
    padding: 50px;
}
    .moneytime h2, h2.sec-heading.gst-heading, .gst-area-bg h2.head-title {
        /*background: linear-gradient(to right,#ff8a00,#da1b60);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;*/
        color: #1d93d0;
    }
.client-gst .client-item-wrapper {
    border: 1px solid #eee;
}
.client-item-wrapper.gst-client1 {
    padding: 8.5px 15px;
}
section.section-padding.gst-work .services-item {
    text-align: left;
}
section.section-padding.gst-work .services-item, section#Expertise.section-padding.gst-work .services-content h3 {
    text-align: left;
}
section#Expertise.section-padding.gst-work .services-content h3 {
    margin: 20px 0 5px;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 600;
    text-transform: inherit;
}
.facilities .col-lg-6.col-md-12.col-xs-12.wow.fadeInLeft {
    padding: 0;
}
.gst_pagedesign .navbar li.active a.nav-link {
    color: #1d93d0;
}
.gst_pagedesign .navbar-expand-md .navbar-nav .active > .nav-link, .navbar-expand-md .navbar-nav .nav-link.active, .gst_pagedesign .navbar-expand-md .navbar-nav .nav-link.open, .gst_pagedesign .navbar-expand-md .navbar-nav .open > .nav-link,
.gst_pagedesign .navbar-expand-md .navbar-nav .nav-link:focus, .gst_pagedesign .navbar-expand-md .navbar-nav .nav-link:hover {
    color: #1d93d0 !important;
}

.col-sm-full {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

    .col-sm-full .process-img {

        width: 80px;
        height: 80px;
        border: 1px solid #1d93d0;
        border-radius: 50%;
        line-height: 80px;
        margin: 0;
    }


    .col-sm-full .process-content {
        text-align: left;
        padding-left: 100px;
        padding-top: 10px;
        position: absolute;
    }

        .col-sm-full .process-content h4 {
            margin-bottom: 5px;
        }

        .col-sm-full .process-content p {
            line-height: 22px;
        }
    .col-sm-full .main-process {
        border: 0;
        margin-bottom: 30px;
        padding: 0;
    }

.main-gsttext {
    padding: 25px 0 0;
    width: 100%;
    float: left;
}
.col-sm-full .main-gsttext {
    text-align: center;
}

.main-gsttext p {
    margin-bottom: 5px;
    line-height: 20px;
    font-size: 14px;
    color: #000;
}

.testimonial_main {
    width: 100%;
    padding: 60px 15px;
    text-align: center;
    float: left;
}

    .testimonial_main .testimonal_content p {
        color: #111;
        font-weight: 500;
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.5px;
    }

.testimonal_content {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

    .testimonal_content img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 1px solid #eee;
    }
.client_nametest {
    float: left;
    width: 100%;
    margin-top: 20px;
}

    .client_nametest h4 {
        font-size: 16px;
        color: #1d93d0;
        margin-bottom: 0;
    }

    .client_nametest p {
        font-size: 6px;
    }

.testimonial_main .testimonal_content .client_nametest p {
    font-size: 14px;
    margin: 0;
}
.gst_pagedesign .proress-section {
    background: -moz-linear-gradient(to right,#e8f2f7,rgba(29, 147, 208, 0.2));
    background: -webkit-linear-gradient(to right,#e8f2f7,rgba(29, 147, 208, 0.2));
    background: -o-linear-gradient(to right,#e8f2f7,rgba(29, 147, 208, 0.2));
    background: linear-gradient(to right,#e8f2f7,rgba(29, 147, 208, 0.2));
}
section#Users_say, section#Users_says {
    width: 100%;
    padding: 60px 0;
    position: relative;
    clear: left;
}
.testimonial-quote {
    padding: 35px 0 0;
}
.user_marginauto {
    margin: 0 auto;
    max-width:850px;
}
section#Users_say .col-xs-12.col-sm-4.col-md-4 {
    width: 30%;
}
.user_bgimg {
    background-image: url(../img/about-skill-1.jpg);
    border-radius: 50%;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
section#Users_says .user_bgimg {
    background-image: url(../img/about-skill.png);
}

section#Users_say .col-xs-12.col-sm-8.col-md-8 {
    width: 70%;
}
.testimonial-quote p {
    font-size: 17px;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
}
.user-name {
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
    color: #222;
    margin-bottom: 2px;
}
.landing_pagedesign .proress-section.bg-gray .main-process {
    background: #fff;
}
.user-position {
    opacity: .5;
    font-size: .9em;
    color: #222;
}
.gst_pagedesign .proress-section .top-process-gst .col-sm-full .main-process {
    padding: 15px;
}
.gstsectiontdiv .services-content img {
    width: auto;
    height: 80px;
    margin-top: 25px;
}

input.error {
    border: 1px solid red;
}
.form-group label.error {
    display: block;
}