
body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Work Sans', sans-serif;
}

body a,
body button {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover,
body button:hover {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

html {
    scroll-behavior: smooth;
}

body a:focus,
a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: inherit;
}

p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    text-align: justify;
    letter-spacing: 0px;
    line-height: 1.9;
    color: #0e0e0e;
    font-family: 'Work Sans', sans-serif;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}

/* //Reset Code */
/* colors code */
.text-bl { 
    color: #2180ad;
    font-weight: 600;
    font-family: sans-serif;
    text-transform: uppercase;
}

.text-wh {
    color: #fff;
}

.text-li {
    color: #f8f9fa;
}

.bg-li {
    background: #f8f9fa;
}

/* //colors code */

/* bottom-to-top */
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat 0px 0px;
    display: inline-block;
}

/* //bottom-to-top */

/* header */
.main-top {
    position: relative;
}

header {
    position: absolute;
    width: 100%;
    z-index: 9;
}

/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    display: initial;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    font-family: 'Work Sans', sans-serif;
    padding: 0;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    text-transform: capitalize;
    display: inline-block;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    background: #fff;
    padding: 7px 20px;
    border-radius: 20px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}


nav ul li ul li:hover {
    color: #000;
    background: #f8f9fa;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Background color change on Hover */

.menu li a.active,
.menu li a:hover {
    color: #20085d;
    background: #fff;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 36px;
    background: #333;
    padding: 10px;
    border-radius: 4px;
    z-index: 9;
    /* has to be the same number as the "line-height" of "nav a" */
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

nav ul ul li:nth-child(4) {
    margin-bottom: 5px;
}

nav ul ul li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    background: transparent;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li>a:only-child:after {
    content: '';
}

a.reqe-button {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media(max-width: 1080px) {
    nav a {
        font-size: 14px;
        padding: 7px 15px;
    }
}

@media(max-width: 800px) {
    nav a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    nav a {
        padding: 6px 9px;
    }
}

@media all and (max-width : 736px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 8px 14px;
        font-size: 15px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #000;
        border-radius: 4px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        max-width: 105px;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #20085d;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    /* 
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    } */

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #fff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

    nav a {
        color: #000;
        font-size: 15px;
        padding: 0;
    }

    nav ul ul li a {
        color: #000;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    .menu li a.active,
    .menu li a:hover {
        color: #20085d;
        background: transparent;
    }
}

@media all and (max-width : 375px) {

    nav a,
    .menu .toggle {
        font-size: 14px;
    }

    .toggle {
        padding: 7px 10px;
        font-size: 14px;
    }
}

/*-- dropdown --*/
#demo {
    margin: 10px 0 0px 0;
    font-family: 'Lato', sans-serif;
}

#demo .wrapper {
    display: inline-block;
    position: relative;
}

#demo .parent {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 30px;
    height: 30px;
    color: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover~.parent {
    -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover~.parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#demo .content {
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 150px;
    padding-top: 30px;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content:hover {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}


#demo .content ul {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#demo .content ul a {
    text-decoration: none;
    padding: 0;
}

#demo .content li:hover {
    background: #f8f9fa;
}

#demo .content li {
    list-style: none;
    text-align: left;
    color: #999;
    font-size: 16px;
    line-height: 30px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */
/* //header */

/* banner */
.main-w3pvt {
    background: url(../images/industry/slide2.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 900px;
}
.back{
    background: url(../images/industry/bh5.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}
.main-w3pvt3 {
    background: url(../images/banner-4.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}
.main-w3pvt1 {
    background: url(../images/conba2.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}
.main-w3pvt2 {
    background: url(../images/abl2.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}

.banner-img img {
    border-radius: 69% 31% 24% 76% / 53% 59% 41% 47%;
}

.banner-tops-style {
    padding-top: 12em;
}

.style-banner {
    padding-top: 3em;
}

.style-banner h3 {
    font-size: 48px;
    line-height: 1.3;
    position: relative;
}

.style-banner h3:after,
h4.middle-title-w3:after {
    content: "";
    background: #fff;
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.style-banner h3 span {
    color: #fff;
}

.button-style {
    padding: 12px 25px;
    border: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #4da0b3;
    background: #4da0b3;
}

.button-style:hover {
    opacity: .9;
    color: #fff;
}

.main-w3pvt {
    position: relative;
}
.main-w3pvt1 {
    position: relative;
}
.main-w3pvt2 {
    position: relative;
}
.main-w3pvt3 {
    position: relative;
}


/* ball animation effect */
.icon-effects-w3 {
    position: absolute;
    top: 6%;
}

@keyframes slide {
    0% {
        left: 0;
        top: 0;
    }

    50% {
        left: 400px;
        top: 60px;
    }

    100% {
        left: 800px;
        top: 0;
    }
}

@media(max-width: 900px) {
    @keyframes slide {
        0% {
            left: 0;
            top: 0;
        }

        50% {
            left: 200px;
            top: 60px;
        }

        100% {
            left: 500px;
            top: 0;
        }
    }
}

@media(max-width: 480px) {
    @keyframes slide {
        0% {
            left: 0;
            top: 0;
        }

        50% {
            left: 100px;
            top: 40px;
        }

        100% {
            left: 300px;
            top: 0;
        }
    }
}

@media(max-width: 320px) {
    @keyframes slide {
        0% {
            left: 0;
            top: 0;
        }

        50% {
            left: 100px;
            top: 40px;
        }

        100% {
            left: 250px;
            top: 0;
        }
    }
}

.stage {
    height: 150px;
    position: relative;
    min-width: 100%;
}

.stage .ball {
    animation-name: slide;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-delay: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.ball {
    background: #fff;
    border-radius: 50%;
    height: 20px;
    position: absolute;
    width: 20px;
}

/* //ball animation effect */

/* image animation effect */
.icon-effects-w3-2 {
    position: absolute;
    bottom: 38%;
    left: 3%;
}

.icon-effects-w3-2 img {
    -webkit-animation: fa-spin 5s infinite linear;
    -moz-animation: fa-spin 5s infinite linear;
    -ms-animation: fa-spin 5s infinite linear;
    -o-animation: fa-spin 5s infinite linear;
    animation: fa-spin 5s infinite linear;
}

/* //image animation effect */
/* //banner text */

/* what we do */
h3.title-w3 {
    font-size: 40px;
}

.bottom-gd h3 {
    font-size: 25px;
    letter-spacing: 1px;
}

.bottom-gd p {
    font-size: 15px;
}

.fetured-sec img {
    box-shadow: 14px 14px 50px -20px rgba(0, 0, 0, 0.75);
}

/* //what we do */

/* events */
.box16 {
    text-align: center;
    color: #fff;
    position: relative
}

.box16 .box-content,
.box16:after {
    width: 100%;
    position: absolute;
    left: 0
}

.box16:after {
    content: "";
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .08) 69%, rgba(0, 0, 0, .76) 100%);
    top: 0;
    transition: all .5s ease 0s
}

.box16 img {
    width: 100%;
    height: 311px;
}

.box16 .box-content {
    padding: 20px;
    margin-bottom: 20px;
    bottom: 0;
    z-index: 1
}

.box16 .title {
    font-size: 22px;
    font-weight: 700;
}

.box16 .post {
    display: block;
    padding: 8px 0;
    font-size: 15px
}

.box16 .social li a,
.box17 .icon li a {
    border-radius: 50%;
    font-size: 20px;
    color: #fff
}

.box16:hover .post,
.box16:hover .title {
    transform: translateY(0)
}

h3.title a {
    color: #fff;
}

h3.title a:hover {
    color: #4da0b3;
}

/* //events */

/* services */
.abt-block h3 {
    font-size: 23px;
    font-weight: 600;
    color: #4551a2;
    letter-spacing: 1px;
}

/* //services */

/* testimonials */
.clients {
    background: url(../images/industry/bh5.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}

.feedback-top p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #e4e4e4;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #ff6b6b;
}

.carousel-indicators {
    bottom: 0;
}

.img-pois-w3ls-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* //testimonials */

/* footer */
footer {
    background: url(../images/industry/footer-bg.png) no-repeat center;
    background-size: cover;
    background-position: initial !important;
    background-size: initial !important;
    background-repeat: initial !important;
    background-attachment: initial !important;
    background-origin: initial !important;
    background-clip: initial !important;
    background-color: rgb(21, 32, 41) !important;
}

.w3l-footer h2 a {
    /*font-size: 40px;*/
    color: #fff;
    /*letter-spacing: 1px;*/
}

.w3l-footer h3 {
    font-size: 26px;
}

.w3l-footer p,
.w3l-footer p a,
.w3l-footer ul li a {
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
}

.w3l-footer ul li i {
    color: #4da0b3;
    line-height: 2;
}

/* copyright */
p.copy-right-grids {
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
}

p.copy-right-grids a {
    color: #4da0b3;
}

p.copy-right-grids a:hover {
    color: #fff;
}

/* //copyright */
/* subscribe */
.n-right-w3ls input[type="email"] {
    padding: 14px;
    border: none;
    letter-spacing: 1px;
    font-size: 15px;
    background: #fff;
    color: #000;
    border-radius: 0px;
}

.n-right-w3ls button {
    background: #4da0b3;
    border: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 13px;
    width: 36%;
}

.n-right-w3ls button:hover {
    opacity: .9;
}

/* //subscribe */
/* social links */
.socila-bottom ul li {
    display: inline-block;
}

.socila-bottom ul li a {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.socila-bottom ul li a:hover {
    color: #4da0b3;
}

/* //social links */
/* //footer */

/* inner pages */
.banner-w3ls-2 {
    background-position: center;
    min-height: 500px;
}

/* page details */
.breadcrumb li a {
    color: #fff;
    background: #313131;
    padding: 8px 18px;
    display: inline-block;
    border-radius: 25px;
    font-size: 13px;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    padding-top: .5em;
    font-size: 15px;
    letter-spacing: 1px;
}

/* //page details */
/* about */
h4.about-left-agile {
    font-size: 21px;
    letter-spacing: 1px;
    line-height: 2em;
}

h4.about-left-agile span {
    color: #20085d;
}

/* //about */

/* team */
.bottom-banner-w3layouts {
    /*background: url(../images/b3.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;*/
}

.team-grid {
        width: 100%;
    cursor: pointer;
    height: 592px;
    overflow: hidden;
    border: 1px solid white;
    padding: 20px 10px;
    background: #0b0967;
    position: relative;
    margin-bottom: 2em;
}

.team-img {
    position: relative;
}

.team-img:after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 34%;
    content: " ";
    /*position: absolute;*/
    background: rgba(0, 0, 0, 0);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.team-img img {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.team-info {
    left: auto;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.team-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}

.team-info span {
    display: block;
    font-size: 0.9em;
    color: #fff;
    letter-spacing: 2px;
}

.team-grid:hover .team-img:after {
    background: #4da0b3;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.team-grid:hover .team-info {
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
}

.team-grid:hover .team-info {
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

ul.social-icons li {
    list-style-type: none;
}

ul.social-icons li a i {
    color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
}

.team-grid i.fab.fa-facebook-f:hover {
    background: #3b5998;
    border: 1px solid #3b5998;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-grid i.fab.fa-twitter:hover {
    background: #1da1f2;
    border: 1px solid #1da1f2;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-grid i.fab.fa-google-plus-g:hover {
    background: #dd4b39;
    border: 1px solid #dd4b39;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

/* //team */

/* gallery page */
/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 4px;
    max-width: 430px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em;
    z-index: 999;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #686de0;
}

/* //popup */
/* //gallery page */

/* contact */
.bunt-w3-link {
    padding: 11px 28px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    background: #4da0b3;
    border: none;
}

form.register-wthree .form-control {
    background: #eee;
    font-size: 1em;
}

textarea {
    height: 200px;
    resize: none;
}

form.register-wthree .form-control {
    background: #f3f3f3;
    padding: 13px 10px;
    border: none;
    border-left: 3px solid #20085d;
    -webkit-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
    -moz-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
    box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
}

button.btn-aasana-w3 {
    background: #20085d;
    color: #ffffff;
    padding: 11px;
    letter-spacing: 1px;
    margin-top: .8em;
}

.w3l-map iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* //contact */

/* responsive */

@media(max-width: 1680px) {}

@media(max-width: 1600px) {}

@media(max-width: 1440px) {
    .w3l-footer h2 a {
        font-size: 15px;
    }

    .w3l-footer h3 {
        font-size: 24px;
    }
}

@media(max-width: 1366px) {
    .banner-w3ls-2 {
        min-height: 250px;
    }

    .w3l-map iframe {
        min-height: 350px;
    }
}

@media(max-width: 1280px) {}

@media(max-width: 1080px) {
    .style-banner {
        padding-top: 29px;
    }

    .banner-img {
        margin-bottom: 4em;
    }

    .style-banner h3 {
        font-size: 42px;
    }

    .abt-block p {
        font-size: 14px;
    }

    .blog h5 a {
        font-size: 18px;
    }

    .n-right-w3ls input[type="email"] {
        font-size: 14px
    }

    .n-right-w3ls button {
        font-size: 15px;
    }

    .socila-bottom ul li a {
        font-size: 17px;
    }

    .banner-w3ls-2 {
        min-height: 200px;
    }

    .team-img:after {
        height: 42%;
    }

    .w3l-map iframe {
        min-height: 320px;
    }
}

@media(max-width: 1050px) {}

@media(max-width: 1024px) {
    form.register-wthree .form-control {
        font-size: .9em;
    }

    textarea {
        height: 170px;
    }
}

@media(max-width: 991px) {
    .banner-tops-style {
        padding-top: 10em;
    }

    h3.title-w3 {
        font-size: 38px;
    }

    .event-wthrees {
        padding: 0 .5em;
    }

    .box16 .title {
        font-size: 20px;
    }

    ul.social-icons li a i {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .team-info span {
        font-size: 0.8em;
    }

    .team-img:after {
        height: 53%;
    }
}

@media(max-width: 900px) {}

@media(max-width: 800px) {
    .style-banner h3 {
        font-size: 38px;
    }

    .banner-tops-style h4 {
        font-size: 20px;
    }

    .w3l-footer h2 a {
        font-size: 32px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 736px) {
    .bottom-gd p {
        font-size: 14px;
    }

    .feedback-top p {
        font-size: 14px;
    }

    .team-img:after {
        height: 34%;
        width: 69%;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    a.single-text.text-dark.font-weight-light {
        font-size: 20px;
    }
}

@media(max-width: 667px) {
    h3.title-w3 {
        font-size: 34px;
    }

    .w3l-footer p,
    .w3l-footer p a,
    .w3l-footer ul li a {
        font-size: 13px;
    }

    .banner-w3ls-2 {
        min-height: 180px;
    }
}

@media(max-width: 640px) {
    .banner-tops-style {
        padding-top: 8em;
    }
}

@media(max-width: 600px) {
    .bottom-gd h3 {
        font-size: 23px;
    }
}

@media(max-width: 568px) {
    .style-banner h3 {
        font-size: 32px;
    }

    p {
        font-size: 14px;
    }

    .blog {
        text-align: center;
    }

    p.copy-right-grids {
        letter-spacing: 1px;
    }

    .icon-effects-w3-2 {
        bottom: 47%;
    }

    .team-img:after {
        width: 67%;
    }

    .w3l-map iframe {
        min-height: 280px;
    }
}

@media(max-width: 480px) {
    .banner-img {
        margin-bottom: 3em;
    }

    .button-style {
        padding: 12px 20px;
        font-size: 13px;
    }

    #logo a {
        font-size: 34px;
    }

    .icon-effects-w3-2 {
        bottom: 43%;
    }

    .banner-w3ls-2 {
        min-height: 150px;
    }

    .team-img:after {
        width: 81%;
    }

    h5.card-title a {
        font-size: 22px;
    }

    h6.blog-first {
        font-size: 16px;
    }
}

@media(max-width: 440px) {
    .banner-img {
        margin-top: 2em;
    }

    .style-banner h3 {
        font-size: 30px;
    }

    h3.title-w3 {
        font-size: 30px;
    }

    .feedback-top p {
        font-size: 13px;
    }

    .team-img:after {
        width: 89%;
    }

    .popup {
        margin-left: 1em;
        margin-right: 1em;
    }
}

@media(max-width: 414px) {
    .socila-bottom ul li a {
        font-size: 16px;
    }

    p.copy-right-grids {
        font-size: 13px;
    }

    .team-img:after {
        width: 95%;
    }

    a.single-text.text-dark.font-weight-light {
        font-size: 18px;
    }
}

@media(max-width: 384px) {
    #logo a {
        font-size: 32px;
    }

    .bottom-gd h3 {
        font-size: 21px;
    }

    .icon-effects-w3-2 {
        bottom: 39%;
    }

    .banner-w3ls-2 {
        min-height: 130px;
    }

    .team-img:after {
        width: 100%;
    }

}

@media(max-width: 375px) {
    .style-banner h3 {
        font-size: 28px;
    }

    p {
        font-size: 13px;
    }

    .banner-tops-style h4 {
        font-size: 19px;
    }

    .socila-bottom li.mx-4 {
        margin: 0 .5em !important;
    }

    .breadcrumb li a {
        font-size: 12px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .category-story.tech-btm ul li a {
        font-size: 14px;
    }
}

@media(max-width: 320px) {
    .style-banner h3 {
        font-size: 25px;
    }

    .banner-tops-style h4 {
        font-size: 18px;
    }

    .main-w3pvt {
        min-height: 780px;
    }
    .main-w3pvt1 {
        min-height: 780px;
    }
    .main-w3pvt2 {
        min-height: 780px;
    }
    .main-w3pvt3 {
        min-height: 780px;
    }
    .banner-img {
        margin-bottom: 2em;
    }

    #logo a {
        font-size: 28px;
    }

    .banner-tops-style {
        padding-top: 6em;
    }

    .main-w3pvt {
        min-height: 740px;
    }
    .main-w3pvt1 {
        min-height: 740px;
    }
    .main-w3pvt2 {
        min-height: 740px;
    }
    .main-w3pvt3 {
        min-height: 740px;
    }

    .bottom-gd p {
        font-size: 13px;
    }

    h3.title-w3 {
        font-size: 28px;
    }

    .abt-block p {
        font-size: 13px;
    }

    .blog h5 a {
        font-size: 17px;
    }

    .socila-bottom ul li a {
        font-size: 15px;
    }

    .n-right-w3ls input[type="email"] {
        font-size: 13px;
    }

    .n-right-w3ls button {
        font-size: 14px;
        width: 40%;
    }

    .w3l-footer p,
    .w3l-footer p a,
    .w3l-footer ul li a {
        font-size: 12px;
    }

    .icon-effects-w3-2 {
        bottom: 36%;
    }

    .banner-w3ls-2 {
        min-height: 120px;
    }

    h4.about-left-agile {
        font-size: 20px;
    }

    .team-img:after {
        height: 42%;
    }

    .popup {
        padding: 2.5em 1.5em 2em;
    }

    textarea {
        height: 140px;
    }
}

/* //responsive */
.float1 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 104px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
/* faq */
.w3l-text-27 .text-main {
  padding: 60px 0 80px; }

.w3l-text-27 input[type="checkbox"] {
  display: none; }

.w3l-text-27 .faq-drawer__title {
  display: block;
  position: relative;
  margin-bottom: 0;
  color: #373737;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer; }

.w3l-text-27 .faq-drawer__title:hover {
  color: #747474; }

.w3l-text-27 .faq-drawer__title::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  right: 25px;
  float: right;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease-out;
  /* background-image: url(images/Border.png); */ }

.w3l-text-27 .faq-drawer__trigger:checked + .faq-drawer__title::after {
  transform: rotate(-180deg); }

.w3l-text-27 .faq-drawer__content-wrapper {
  overflow: hidden;
  max-height: 0px;
  font-size: 15px;
  line-height: 23px; }

.w3l-text-27 .faq-drawer__trigger:checked + .faq-drawer__title + .faq-drawer__content-wrapper {
  max-height: 350px; }

.w3l-text-27 .faq-drawer__trigger:checked + .faq-drawer__title {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.w3l-text-27 .faq-drawer__content-wrapper .faq-drawer__content {
  padding: 10px 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px; }

.w3l-text-27 .text-title {
  margin-bottom: 35px; }

.w3l-text-27 h6.peragraph {
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
  color: #000000;
  padding: 0 24px; }

.w3l-text-27 .faq-drawer {
  border-bottom: 1px solid #ffffff;
  background: #eeeeee; }

.w3l-text-27 .faq-drawer {
  padding: 20px 0; }

.w3l-text-27 p.text-text {
  font-size: 16px;
  line-height: 24px;
  color: #777777;
  width: 80%;
  padding: 10px 24px; }

.w3l-text-27 h1.user {
  font-size: 35px;
  line-height: 40px;
  color: #000000; }

@media (max-width: 992px) {
  .w3l-text-27 p.text-text {
    width: 100%; } }

@media (max-width: 800px) {
  .w3l-text-27 .form-28 {
    padding: 60px 0; }
  .w3l-text-27 .text-main {
    padding: 50px 0 60px; } }

@media (max-width: 568px) {
  .w3l-text-27 .form-28 {
    padding: 50px 0; }
  .w3l-text-27 h1.user {
    font-size: 30px;
    line-height: 35px; }
  .w3l-text-27 .text-main {
    padding: 50px 0 50px; } }

@media (max-width: 440px) {
  .w3l-text-27 .w3l-forms-28 h4.title-cont-foem28 {
    font-size: 30px;
    line-height: 35px; }
  .w3l-text-27 h1.user {
    font-size: 26px;
    line-height: 32px; } }

@media (max-width: 375px) {
  .w3l-text-27 .form-28 {
    padding: 40px 0; }
  .w3l-text-27 .text-main {
    padding: 40px 0 40px; } }

/*-- faq end --*/

.bll{
    color: white;
    font-size: 20px;
    font-weight: 600;
}
/* approach*/
section.about-us {
    padding:0px 0;
}
section.about-us h2.text-center {
    font-size:36px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    padding-bottom:30px;
    color: #1d1b82;
}
section.about-us p.text-center {
    font-size: 16px;
    padding-bottom: 50px;
    color: #1d1c1c;
}

section.about-us h2.text-center:before {
    content:'';
    background-color:#dcdcdc;
    height:2px;
    width:20%;
    left:40%;
    bottom:15px;
    display:block;
    position:absolute;
}

section.about-us h2.text-center:after {
    content:'';
    background-color:#2180ad;
    height:2px;
    width:10%;
    left:45%;
    bottom:15px;
    display:block;
    position:absolute;
}   
section.about-us h4 {
    font-size: 29px;
    font-weight: 600;
    text-align: left;
    /* margin-top: 20px; */
    /*padding: 7px 0;*/
    margin-left: 25px;
    color: #09085f;
    /* text-transform: uppercase;*/
}
section.about-us span.glyphicon,section.about-us i.glyphicon {
    font-size:20px;
}
.pa_italic span {
    display: none;
}
.pa_italic i,.collapsed span {
    left: 24em;
    color: #999;
}
.collapsed i {
    display: none;
}
.collapsed span {
    display: inline-block;
}
a.pa_italic {
    text-decoration: none;
}
.panel-body {
    padding: 2em;
    font-size: 14px;
    line-height: 2em;
}
.panel-default {
    border-color:transparent;
}
.panel-default>.panel-heading {
    background-color:transparent;
    border-bottom: 1px solid #e8e8e8;
}
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
    border:none;
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: none;
}
/*=================================================================
    Services
==================================================================*/

.service-icon {
    display: inline-block;
    height: 85px;
    width: 85px;
    border: 2px solid #2d0886;;
    line-height: 101px;
    /* -webkit-transform: rotate(47deg); */
    -moz-transform: rotate(47deg);
    -ms-transform: rotate(47deg);
    -o-transform: rotate(47deg);
    /* transform: rotate(47deg); */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#service{
      margin-top: 38px;
}
.bcc{
    background:url(img/27.jpg) 50% 50% / cover no-repeat;
}
.service-item:hover .service-icon {
    border: 3px solid #2180ad;
    margin-bottom: 20px;
    color: #fd8101;
}

.service-icon i {
    transform: rotate(1deg);
    color: #2180ad;
}

.service-item h3 {
    font-size: 20px;
    color: :gray;
    color: #1b066f;
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
}
.bpp{
    background: url(../images/industry/bh5.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 350px;
}
/*clients */
/* tabs style*/
.tab{
    border: 1px solid #2c567a;
    padding: 11px;
    border-radius: 6px;
    color: white;
    font-size: 17px;
    background: #2c567a;
}
.tabs{
    font-size: 1em;
}
