/*------------------------------------------------------------------
[Table of contents]

Agency Html Template 
Author - SLICEmyPAGE.com

A. Home
    1. Reset Css
    2. Core Css
    3. Buttons
    4. Header
        4.1 Navigation
        4.2 Search 
    5. Hero Container
    6. Body Content
    7. Footer
B. About 
C. Service
D. Case Studies
E. Blog
F. Faqs
G. Contact  
-------------------------------------------------------------------*/



/* =================reset css starts here=================  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
* {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
body,
html,
form,
fieldset {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0
}

img {
    border: 0;
}

a {
    text-decoration: none;
    border: 0;
    outline: 0;
}

.clear {
    clear: both;
    width: auto !important
}

ul {
    list-style: none;
}

a:focus,
input:focus,
textarea:focus,
*:focus {
    outline: 0 !important;
    box-shadow: none !important;
}



/* =================reset css ends here================= */


/* =================core css starts here================= */

body {
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    font-family: 'Poppins' !important;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
}
.form-cc {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
a,
input,
button {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

a img {
    border: 0px none;
}

a:hover {
    outline: none;
    color: #00bcb4;
    text-decoration: none;
}

a:active {
    outline: none;
    text-decoration: none;
}

a:focus {
    outline: none;
    outline-offset: 0px;
    text-decoration: none;
    color: inherit;
}

::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

::-moz-placeholder {
    color: #999;
    opacity: 1;
}

:-moz-placeholder {
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.os-animation {
    opacity: 0;
}

.os-animation.animated {
    opacity: 1;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: inherit;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
    line-height: 1.4;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
}

h6 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px
}

p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 25px;
    text-align: justify;
}

strong {
    font-weight: 600;
}

b {
    font-weight: 700;
}

p:last-child {
    margin-bottom: 0;
    text-align: justify;

}


.mar-40 {
    margin-bottom: 40px !important;
}

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

.no-mar {
    margin: 0 !important;
}
/* =================core css ends here================= */


/* =================btn css start here================= */


.btn {
    border-radius: 4px;
    font-weight: 700;
    padding: 12px 25px;
    min-width: 170px;
    font-size: 15px;
    box-shadow: none;
    text-transform: uppercase;
}

.btn-default,
.btn-default:focus {
    color: #fff;
    background-color: #00bcb4;
    border: solid 1px #00bcb4;
}

.btn-default:hover,
.btn-default:active {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-primary,
.btn-primary:focus {
    color: #00bcb4;
    background-color: #fff;
    border: solid 1px #fff;
}

.btn-primary:hover,
.btn-primary:active {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-second,
.btn-second:focus {
    color: #fff;
    background-color: transparent;
    border: solid 1px #fff;
}

.btn-second:hover,
.btn-second:active {
    color: #00bcb4;
    background-color: #fff;
    border-color: #fff;
}

.btn.btn-lg {
    padding: 18px 40px !important;
}

.btn.btn-xs {
    padding: 8px 15px !important;
    min-width: auto;
}

.btn+.btn {
    margin-left: 10px;
}

.color-text {
    color: #00bcb4 !important;
}

/* =================btn css end here================= */


/* ================= Header start ================= */

header {
    height: 60px;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 0;
    z-index: 9999;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

.fixed header {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
    color: #000;
}

.navbar-toggler {
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    border: 0;
    background: transparent;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-default .navbar-toggler:hover,
.navbar-default .navbar-toggler:focus {
    background: transparent;
}

.navbar-toggler:not([class="collapsed"]),
.navbar-toggler:not([class="collapsed"]):focus,
.navbar-toggler:not([class="collapsed"]):hover {
    background: #00bcb4;
}

.navbar-toggler.collapsed,
.navbar-toggler.collapsed:focus,
.navbar-toggler.collapsed:hover {
    background: #00bcb4;
}

.home .navbar-toggler.collapsed,
.home .navbar-toggler.collapsed:focus,
.home .navbar-toggler.collapsed:hover {
    background: transparent;
}

.navbar-toggler .icon-bar {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 3px;
    color: #243238;
    text-indent: -55px;
    margin-top: 0;
    background: transparent!important;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    vertical-align: middle;
}

.navbar-toggler .icon-bar:before,
.navbar-toggler .icon-bar:after {
    content: '';
    width: 23px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all .2s ease-out;
}

.navbar-toggler.collapsed .icon-bar {
    background: #fff!important;
}

.navbar-toggler.collapsed .icon-bar:before,
.navbar-toggler.collapsed .icon-bar:after {
    background: #fff;
}

.navbar-toggler.collapsed .icon-bar:before {
    top: -7px;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.navbar-toggler .icon-bar:before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.navbar-toggler.collapsed .icon-bar:after {
    bottom: -7px;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.navbar-toggler .icon-bar:after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.dropdown-menu {
    border: 0;
    border-radius: 0;
    font-size: 12px;
    line-height: 18px;
}

.dropdown-item {
    padding: 6px 15px;
}

.dropdown-menu>li:hover>a,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>li:focus>a,
.dropdown-menu>li:active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus,
.nav-item.active>a,
.dropdown-item.active,
.dropdown-item:active {
    background: transparent;
    color: #00bcb4;
}

@media only screen and (min-width: 1200px) {

    .navbar-nav>li>.dropdown-menu {
        display: block !important;
        top: 100% !important;
        margin-top: 10px !important;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
        transition: all 0.1s ease-in;
        -moz-transition: all 0.1s ease-in;
        -webkit-transition: all 0.1s ease-in;
        min-width:15rem;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0px !important;
        transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -webkit-transition: all 0.2s ease-in;
    }
}


.header-right {
    float: right;
    z-index: 20;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 40px;
    font-weight: 700;
right:30px;
}

.header-right a {
    float: left;
    padding: 0 10px;
    width: 40px;
    text-align: center;
    margin: 10px;
    margin-right: 0;
}

.header-search {
    float: left;
    position: relative;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.navbar-brand {
    width: 110px;
    position: relative;
    margin: 0;
}

.navbar-brand  img{
    float: left;
}

 

.logo-dark {
    display: none;
}

.fixed .logo-white {
    display: none;
}

.fixed .logo-dark {
    display: block;
}

.navbar-nav .nav-link,
.navbar-expand-xl .navbar-nav .nav-link {
    padding: 0 10px;
    line-height: 60px;
}



/* ================= Search start ================== */

.search-box-outer {
    position: fixed;
    width: 100%;
    height: 60px;
    opacity: 0;
    float: left;
    background: #fff;
    z-index: 99999999;
    left: 0;
    transition: all 0.2s ease-in;
    top: -60px;
}

.search-box {
    width: 100%;
    position: relative;
    padding-right: 60px;
}

.search-box .form-control,
.search-box .form-control:focus {
    height: 60px;
    border: 0;
    box-shadow: none !important;
    font-size: 24px;
    font-weight: 200;
    background-color: #fff;
}

.close-search {
    width: 60px;
    height: 60px;
    float: left;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
}

.show-search .search-box-outer {
    top: 0;
    opacity: 1;
}

.search-box-outer .container {
    padding: 0;
}

/* ================= Search end ================= */
.hero-outer, .hero-container{height: 650px;}
.hero-container{
    overflow: hidden;
    display: table;
    width: 100%;
    position: relative;
    color: #fff;
    background-color: #333;
    font-size: 15px;
    line-height: 1.6;
    background-size: cover;
    background-position: center center;}

.hero-container:before {
    content: '';
    width: 80%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background: #f0f2f3;
    background: -moz-linear-gradient(-45deg, rgba(240, 242, 243, 1) 0, rgba(125, 142, 141, .56) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(240, 242, 243, 1) 0, rgba(125, 142, 141, .56) 100%);
    background: linear-gradient(90deg, rgb(45, 45, 45) 0, rgba(125, 142, 141, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f2f3', endColorstr='#8f7d8e8d', GradientType=1);
}

.hero-container:after {
    content: '';
    width: 100%;
    height: 100px;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33000000', endColorstr='#00000000', GradientType=0);
}

.middle-container {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 9;
    padding: 50px 0;
    background: rgba(0, 0, 0, 0);
}

.hero-container h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    font-family: 'Poppins' !important;
}

.hero-container p {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Poppins' !important;
}

.content-container {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}
.content-container-2{
    padding: 50px 0;
}

.content-container h1{
    font-size: 32px;
    font-family: 'Poppins' !important;
}

.content-container h2{
    font-size: 24px;
    font-family: 'Poppins' !important;
}

.content-container h3{
    font-size: 22px;
    font-family: 'Poppins' !important;
}


.content-container.color-bg {
    background: #eef2f5;
}

.heading {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 80px;
}

.heading h2,
.heading h6 {
    color: #999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-family: 'Poppins' !important;
}

.heading h1,
.heading h3 {
    font-size: 40px;
    line-height: 1.3;
    font-family: 'Poppins' !important;
}

.hero-slider .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
}

.hero-slider .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
}

.hero-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span,
.hero-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.feature-box {
    width: 100%;
    display: flex;
}

.feature-box+.feature-box {
    margin-top: 150px;
}

.feature-box.reverse {
    flex-direction: row-reverse;
}

.feature-left {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0;
}

.feature-right {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0px 70px;
}

.feature-box .feature-left img {
    max-width: 1000px;
    width: 100%;
    margin-left: 0;
    border-radius: 6px;
    box-shadow: 0 10px 100px rgba(0, 0, 0, 0.2);
}

.feature-box.reverse .feature-left img {
    margin-left: auto;
    margin-right: 0;
}

.link {
  color: #00bcb4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.link:hover {
  letter-spacing: 2px;
}

.stat-container {
 width: 100%;
 display: inline-block;
 vertical-align: top;
 text-align: center;
}

ul.stat-list {
 width: 100%;
 display: inline-block;
 vertical-align: top;
}

ul.stat-list li {
 width: 33.3%;
 float: left;
}

ul.stat-list li h3 {
  font-size: 72px;
  line-height: 1;
}

ul.stat-list li h6 {
    font-size: 15px;
    color: #00bcb4;
}

.case-slider .owl-nav {
    position: absolute;
    top: 50px;
    right: 40px;
    text-align: right;
    margin: 0;
}

.owl-theme.case-slider .owl-nav [class*='owl-'] {
    font-weight: 700;
    background-color: transparent;
    color: #333;
    font-size: 18px;
}

.owl-theme.case-slider .owl-nav [class*='owl-']:hover {
    background-color: transparent;
    color: #00bcb4;
}

.recent-project-box{
    opacity: 0.5;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    flex-direction: inherit;
    margin: 40px;
}

.recent-project-image{
    width: 80%;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    float: left;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}

.recent-project-content {
    width: 400px;
    float: right;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    position: relative;
    margin: 100px 0 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.center .recent-project-box{
  opacity: 1;
}

ul.post-list {
    display: inline-block;
    vertical-align: top;
    width: calc(100% + 30px);
    margin-left: -15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.post-list>li {
    float: left;
    width: 33.3%;
    padding: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-box {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

.post-box-img {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.post-box-content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 30px 25px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    
}

.post-box:hover {
    -webkit-box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
}

.post-box-content .link {
    margin-top: inherit;
}

.post-box-content h6 {
    color: #999;
}



/* ================= Header end ================= */

ul.tick-list {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
}

ul.tick-list li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 20px;
}


 

ul.tick-list li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
     float: left;
    color: #00bcb4;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    line-height: 23px;
}


/* 

ul.tick-list li svg {
    float: left;
    color: #00bcb4;
    position: absolute;
    top: 7px;
    left: 0;
    font-size: 11px;
    line-height: 23px;
}
*/

ul.team-list {
    display: inline-block;
    vertical-align: top;
    width: calc(100% + 30px);
    margin-left: -15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.team-list>li {
    float: left;
    width: 33.3%;
    padding: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.member-box.team-img img{
    height: 214px;
    width: 354px;
min-height:214px;
    object-fit: cover;
}
.member-info {
    text-align: center;
    padding: 15px;
}

.member-info h5 {
    margin: 0;
}

.member-info p {
    margin-bottom: 5px;
height: 70px;
min-height: 70px;
}

ul.member-social {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

ul.member-social li {
    display: inline-block;
    padding: 5px 7px;
    font-size: 14px;
    line-height: 1.4;
}



.why-box {
    padding: 0 0 30px 0;
    height: 100%;
}

.why-inside {
    padding: 30px;
    height: 100%;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.icon {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 150px;
    line-height: 110px;
    height: 1;
    color: #00bcb4;
    opacity: 0.07;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

.why-inside:hover .icon {
    top: Calc(80% - 80px);
}

blockquote {
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    border: 0;
    font-style: italic;
    font-weight: 300;
}

.quote-by {
    font-size: 16px;
    text-align: center;
    display: block;
    margin-top: 20px;
    font-weight: 400;
    font-style: normal; 
    display: inline-block;
    width: 100%;
}

.testimonials {
    padding-bottom: 30px;
}

.client-container {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.client-container img {
    height: auto;
    width: auto !important;
}

.inner-banner {
    padding: 200px 0 200px;
    position: relative;
    background-color: #333;
    color: #fff;
    background-size: cover;
    background-position: center center;
}

.inner-banner:before {
    content: '';
    width: 80%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background: #f0f2f3;
    background: -moz-linear-gradient(-45deg, rgba(240, 242, 243, 1) 0, rgba(125, 142, 141, .56) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(240, 242, 243, 1) 0, rgba(125, 142, 141, .56) 100%);
    background: linear-gradient(90deg, rgb(45, 45, 45) 0, rgba(125, 142, 141, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f2f3', endColorstr='#8f7d8e8d', GradientType=1);
}

.inner-banner:after {
    content: '';
    width: 100%;
    height: 100px;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33000000', endColorstr='#00000000', GradientType=0);
}

.inner-banner h2 {
    margin: 0;
}

.cta-container {
    position: relative;
    padding: 140px 0;
    background-color: #333;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center center;
}

.cta-container:before {
    content: '';
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5)
}

footer {
    background-color: #f9f9f9;
}

.footer-upper {
    padding: 80px 0;
}

.footer-logo {
    width: 110px;
    margin-bottom: 20px;
}

.newsletter-form {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    position: relative;
    padding-right: 40px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.newsletter-form button[type="submit"] {
    width: 40px;
    height: 44px;
    background: #00bcb4;
    position: absolute;
    top: 0;
    right: 0;
    x;
    border: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 44px;
    border-radius: 0;
    z-index: 9;
    cursor: pointer;
}

.newsletter-form button[type="submit"]:hover {
    background-color: #000;
}

.newsletter-form .form-control {
    border: 0;
    box-shadow: none;
    height: 44px;
    border: 0;
    color: #000;
    background: #fff !important;
    border-radius: 0;
    font-size: 14px;
}

ul.footer-nav {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

ul.footer-nav li {
    position: relative;
    margin-bottom: 5px;
}

ul.social-links {
    display: inline-block;
    vertical-align: top;
}

ul.social-links li {
    float: left;
    margin-right: 15px;
}

ul.social-links li a {
    float: left;
    line-height: 20px;
    font-size: 14px;
}

.footer-lower {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.03);
    text-align: center;
}

.media-box {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    background-color: #333;
}

.media-box img {
    width: 100%;
}

.media-box+.media-box {
    margin-top: 30px;
}

.breadcrumb {
    padding: 0;
    margin: 5px 0;
    border-radius: 0;
    background: transparent;
    font-size: 12px;
}

.breadcrumb>li+li:before {
    padding: 0 2px;
}

.breadcrumb>.active {
    font-weight: 500;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    content: "/\00a0";
}


/* ============SERVICE PAGE START================= */

ul.service-list {
    display: inline-block;
    vertical-align: top;
    width: calc(100% + 30px);
    margin-left: -15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.service-list>li {
    float: left;
    width: 33.3%;
    padding: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.service-box {
    padding: 30px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}
.active .service-box {
    color: #fff;
    background: #00bcb4;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.active .service-box * {
    color: #fff;
}

.service-box:hover {
    color: #fff;
    background: #00bcb4;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.service-box:hover * {
    color: #fff;
}

.service-box .icon2 {
    font-size: 40px;
    text-align: center;
}

ul.other-service-list {
    display: inline-block;
    vertical-align: top;
    width: calc(100% + 10px);
    margin-left: -5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.other-service-list>li {
    float: left;
    width: 50%;
    padding: 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.other-service-list li a {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    font-weight: 700;
    line-height: 1.4;
    padding: 30px 5px;
    text-align: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
}

.service-list-icon {
    font-size: 24px;
    display: inline-block;
    vertical-align: top;
}

ul.other-service-list li a span {
    width: 100%;
    float: left;
    text-align: center;
}

ul.other-service-list li a:hover,
ul.other-service-list li a.active {
    background: #00bcb4;
    color: #fff;
}



/* ============SERVICE PAGE END================= */


/* ============CASE PAGE START================= */

.content-container.case-container {
    padding: 0;
    border: solid 2px #fff;
}

.case-box {
    width: 33.33%;
    height: 400px;
    float: left;
    background-color: #333;
    color: #fff;
    border: solid 2px #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    display: table;
}

.case-box-bg {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    position: absolute;
    z-index: 1;
    opacity: 1;
    background-color: #00bcb4;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

.case-box:hover .case-box-bg {
    opacity: 0.8;
}

.case-box-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: table-cell;
    vertical-align: middle;
}

.case-logo {
    width: 100%;
    max-width: 120px;
}

.detail-list {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px;
}

.detail-list li {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-list li h5 {
    color: #00bcb4;
    margin-bottom: 0;
    font-size: 15px;
}

.detail-list li:last-child {
    border-bottom: 0;
}

.sidebar-cta {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
    background-color: #00bcb4;
    color: #fff;
}


/* ============CASE PAGE END================= */


/* ============BLOG PAGE START================= */

.post-title {
    font-weight: 200;
    font-size: 54px;
}

.post-list.blog-post li {
    width: 33%;
    padding: 0 10px 15px;
    margin-bottom: 15px;
}

.pagination-container {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 30px 0;
}

.pagination {
    display: inline-block;
    vertical-align: top;
}

.pagination li {
    float: left;
    font-size: 40px;
}

.pagination>li>a,
.pagination>li>span {
    background: transparent;
    border: 0;
    color: #999;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 17px;
    margin: 3px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus,
.pagination .active,
.pagination .active,
.pagination .active:hover,
.pagination .active:hover,
.pagination .active:focus,
.pagination .active:focus {
    color: #00bcb4;
    background-color: transparent;
}

.sidebar {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.widget-box {
    width: 100%;
    display: inline-block;
    margin: 0 0 40px 0;
}

.widget-box h5 {
    color: #00bcb4;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.widget-box h5:before {
    content: '';
    width: 40px;
    height: 4px;
    float: left;
    background: #00bcb4;
    position: absolute;
    left: 0;
    top: 100%;
}

ul.list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

ul.list li a {
    display: inline-block;
    width: 100%;
    font-weight: 600;
}

ul.list li small {
    font-weight: 400;
    font-size: 11px;
    display: block;
}

.tag-box a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 5px 12px;
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    margin: 3px 3px 3px 0;
    font-weight: 600;
    border-radius: 4px;
    border: solid 1px rgba(0, 0, 0, 0.05);
}

.tag-box a:hover {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.06)
}

.comments {
    margin: 0;
    padding: 0;
    margin: 60px 0 15px;
}

.comments ul {
    margin-left: 0px
}

.comments ul li ul {
    margin-left: 65px;
    margin-top: 15px
}

.comments ul>li {
    padding: 0
}

.comments ul>li ul li {
    padding: 0
}

.comments ul>li .post-comment {
    margin: 0
}

.comment-body {
    min-height: 80px;
    position: relative;
    padding: 15px;
    margin-left: 30px;
    margin-bottom: 20px;
    padding-left: 40px;
}

.comment-body .comment-author img {
    width: 48px;
    height: 48px;
    left: -30px;
    top: 10px;
    z-index: 1;
    position: absolute;
    border-radius: 50%;
}

.comment-body .desc {
    position: relative
}

.comment-body .desc h5 {
    margin-bottom: 5px;
    font-size: 18px
}

.comment-body .desc .date {
    margin-bottom: 10px
}

.reply {
    text-align: right;
}

.comment-reply-link {
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
}

.comment-author {
    font-weight: 700;
    color: #00bcb4;
}

.comment-meta {
    font-size: 80%;
}

.post-thumbnail-container {
    margin-bottom: 40px;
}

.post-thumbnail-container img {
    width: 100%;
}

.share-post {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-top: 50px
}

.share-post h5 {
    line-height: 30px;
    float: left;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 20px
}

ul.share-post-list {
    float: left
}

ul.share-post-list li {
    float: left;
    padding-right: 20px
}

ul.share-post-list li a {
    float: left;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px
}

ul.bottom-nav {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-top: 60px;
    padding: 20px 15px;
    background: #f6f6f6;
    border-radius: 5px;
}

ul.bottom-nav li {
    width: 33.3%;
    float: left;
    overflow: hidden;
}

ul.bottom-nav li:nth-child(2) {
    text-align: center;
    font-size: 18px;
}

ul.bottom-nav li a {
    display: inline-block;
    position: relative;
}

ul.bottom-nav li:last-child {
    text-align: right;
}



/* ============BLOG PAGE END================= */


/* ============FAQS PAGE START================= */

.faq-container+.faq-container {
    margin-top: 40px
}

ul.faqs-list {
    width: 100%;
    display: inline-block;
    vertical-align: top
}

ul.faqs-list li {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px
}



/* ============FAQS PAGE END================= */


/* ============CONTACT PAGE START================= */

.contact-container {
    background-color: #333;
    color: #fff;
}

.icon2 {
    font-size: 30px;
    line-height: 1;
    color: #00bcb4;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: 700;
}

.form-control {
    border-radius: 4px;
    height: 48px;
    font-size: 14px;
    border-color: #eee;
    color: #222;
    box-shadow: none;
    -webkit-apperance: none;
    background: #f6f6f6;
    font-weight: 400;
}

.form-control:focus {
    border-color: #f1f1f1;
    background: #f6f6f6;
}

textarea.form-control {
    height: 220px;
    resize: none;
}

.contact-detail-container {
    padding: 100px 0;
    text-align: center;
}

.map-container {
    height: 100%;
    background-color: #333;
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    margin: 0;
    padding: 0;
}

#map-canvas {
    height: 100%;
}

ul.contact-list {
    text-align: center;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

ul.contact-list li {
    width: 100%;
    float: left;
}

ul.contact-list li:not(:last-child) {
    margin-bottom: 30px;
}

ul.landing {
    text-align: center;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

ul.landing li {
    width: 33.333%;
    float: left;
}

ul.landing li:not(:last-child) {
    margin-bottom: 30px;
}

.head-d{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.head-d-2{
    font-size: 25px;
}

label.error{font-size:14px; font-weight: 500; color:#f40d59;}
#success, #error {display: none;}
#success h4, #error h4{margin-bottom:10px;}
#success p {color: #019620; padding: 0;}
#error p {color: #f40d59; padding: 0; margin: 0;}
.loading{display:block; margin: 5px auto; width: 20px; vertical-align:middle;}
.loading img{width:20px;}
.messgaeOutput{padding: 30px; text-align: center;}
.decor{
    font-size: 30px !important;
    color: #333 !important;
    text-transform: capitalize !important;
}
.sidenav .form-control{ height: 40px; }
.sidenav textarea.form-control{ height: 70px; }
.sidenav html body .rc-anchor-normal{ width: 97% !important; }

/* ============CONTACT PAGE END================= */

.partner_logo h2 {font-size: 70px;font-weight: 600;}
        .partner_logo h2 span {display: block;font-weight: bold;color: #00bcb4;}
        .partner_logo .part1 {box-shadow: -9px 8px 20px 1px #ccc; height: 100%; border: 1px solid #e9e9e9; background: #ffffff; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; border-radius: 5px; overflow: hidden; text-align: center; margin-bottom: 15px;}
        .partner_logo:hover .part1 {box-shadow: 0 11px 24px -10px #00bcb4;}

/* ============================= 
! Screen size below 1201px
 ============================= */

@media only screen and (max-width: 1200px) {
    .navbar-brand {
         margin: 21px 15px; 
        padding: 0;
    }
    .header-right {
        position: absolute;
        top: 0;
        right: 70px;
    }
    
    .navbar-nav .nav-link,
    .navbar-expand-xl .navbar-nav .nav-link {
        line-height: 40px;
    }
    
    .dropdown-menu {
        padding: 0;
    }
    .dropdown-menu a {
        padding-left: 30px;
    }
    .navbar-nav.sm-collapsible .sub-arrow {
        border: 0;
        margin: 0;
        line-height: 40px;
        height: 40px;
        top: 0;
    }
}



/* ============================= 
! Layout for ipad lanscape 
 ============================= */

@media only screen and (max-width: 1048px) {
    .hero-container h1 {
        font-size: 40px;
    }
    .hero-container p {
        font-size: 14px;
    }
    .heading h1,
    .heading h3 {
        font-size: 36px;
    }
    .feature-right {
        padding: 0 50px;
    }
    ul.stat-list li h3 {
        font-size: 60px;
    }

    .feature-box+.feature-box {
        margin-top: 60px;
    }
    .content-container {
        padding: 70px 0;
    }
    .heading {
        margin-bottom: 40px;
    }
    blockquote {
        font-size: 30px;
    }
    .client-container {
        padding: 70px 0;
    }
    .post-title {
        font-size: 44px;
    }
    .footer-upper {
        padding: 60px 0;
    }
}



/*============================= 
! Layout for ipad portrait  
============================= */

@media only screen and (max-width: 991px) {
    ul.service-list>li,
    .case-box {
        width: 50%;
    }
}



/* =============================  
 ! Layout for mobile(lanscape) version  
 ============================= */

@media handheld,
only screen and (max-width: 767px) {
.service-items.hgt1 p, .service-items.hgt2 p {
    min-height: 100%!important;
}
.service-items.hgt1, .service-items.hgt2 {
    min-height: auto!important;
}
.service-wrap{
padding: 30px 25px!important;
height: auto!important;
min-height: auto!important;
}
    .mob-mar-30 {
        margin-bottom: 30px !important;
    }
     
    .header-right a {
        margin-left: 0;
    }
    .search-box .form-control,
    .search-box .form-control:focus {
        font-size: 14px;
        font-weight: 400;
    }
    .hero-container {
        text-align: center;
    }
    .hero-container p {
        display: none;
    }
    .hero-container h1 {
        font-size: 32px;
    }
    .heading h1,
    .heading h3 {
        font-size: 28px;
    }
    ul.stat-list li {
        width: 100%;
        margin: 15px 0;
    }
    ul.stat-list li h3 {
        font-size: 48px;
    }
    .feature-box {
        display: inline-block;
        vertical-align: top;
    }
    .feature-left,
    .feature-right {
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }
    .feature-right {
        padding: 40px 0 0;
    }
    .feature-box+.feature-box {
        margin-top: 40px;
    }
    .content-container {
        padding: 50px 0;
    }
    .heading {
        margin-bottom: 30px;
    }
    .recent-project-box {
        margin: 40px 0;
    }
    ul.post-list {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 0;
    }
    ul.post-list li {
        width: 100%;
        margin-bottom: 30px;
    }
    .post-list.blog-post li {
        width: 100%;
    }
    .post-box-content {
        min-height: 1px;
    }
    blockquote {
        font-size: 24px;
        line-height: 1.4;
    }
    .quote-by {
        font-size: 13px;
    }
    .client-container {
        padding: 50px 0;
    }
    .cta-container {
        padding: 70px 0;
    }
    .footer-upper {
        padding: 40px 0;
        text-align: center;
    }
    .hero-container:before {
        display: none;
    }
    .middle-container {
        background-color: rgba(0, 0, 0, 0.3);
    }
    .hero-outer,
    .hero-container {
        height: auto;
        min-height: 100vh;
    }
    .hero-container {
        background-position-x: 90%;
    }
    .owl-nav {
        display: none !important;
    }
    .recent-project-box {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }
    .recent-project-image {
        position: relative;
        height: 240px;
        border-radius: 0;
        width: 100%;
    }
    .recent-project-content {
        margin: 0;
        margin-top: -40px;
        border-radius: 0;
        padding: 30px 20px;
        width: 100%;
    }
    .feature-box .feature-left img {
        width: calc(100% + 30px);
        margin-left: -15px;
        border-radius: 0;
    }
    .feature-box.reverse .feature-left img {
        margin-left: -15px;
        margin-right: auto;
    }
    .inner-banner {
        padding: 160px 0 50px;
    }
    .media-box {
        width: Calc(100% + 30px);
        margin-left: -15px;
    }
    .content-container.contact-container {
        padding-bottom: 0;
    }
    .map-container {
        position: relative;
        left: auto;
        top: auto;
        height: 240px;
        width: 100%;
        margin-top: 50px;
    }
    .single-post-content {
        padding: 0;
    }
    .post-title {
        font-size: 36px;
    }
    .breadcrumb {
        display: none;
    }
    .inner-banner h2 {
        font-size: 28px;
    }
    ul.bottom-nav {
        margin: 30px 0;
        width: calc(100% + 30px);
        margin-left: -15px;
        border-radius: 0;
    }
    .media-box+.media-box {
        margin-top: 10px;
    }
    ul.service-list>li {
        width: 100%;
    }
    .case-box {
        width: 100%;
        height: 300px;
    }
    ul.team-list>li {
        width: 50%;
    }
    .pagination>li>a,
    .pagination>li>span {
        font-size: 15px;
        padding: 8px;
    }
    .dnone_flag {display: none;}
    .header-right a {margin: 10px !important;margin-right: 0!important;}
}


/* ============================= 
 ! Layout for mobile(portrait) version  
 ============================= */
@media only screen and (max-width: 1199px){
.member-info p {
    height: 100%;
    min-height: 100%;
}
.navbar-nav {
        background-color: #fff;
        color: #000;
    }
.navbar-collapse {
    position: fixed;
    left: 0;
    top: 60px;
    right: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
    max-height: calc(100% - 60px);
    overflow-y: auto;
}
}
@media only screen and (max-width: 500px) {

    ul.team-list>li {
        width: 100%;
    }
.member-info p {
    height: 100%;
    min-height: 100%;
}
.member-box img{width:100%}
.member-box.team-img img{width:100%;}
}

.navbar-nav:not([data-sm-skip]) .dropdown-item{
  position: relative;
}

.sm-nowrap{
  top: 0px !important;
}
.dropdown li{
  position: relative;
}
.modal-open .modal{
    z-index: 9999
}









/***************************************CAREER**************************************/

.block-vacancy {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 40px 9%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: -1px 0px 10px 0px rgba(42, 42, 42, 0.12);
    box-shadow: -1px 0px 10px 0px rgba(42, 42, 42, 0.12);
    margin-top: 30px;
}
.block-vacancy:hover {
    -webkit-box-shadow: -3px 5px 12px 0px rgba(42, 42, 42, 0.16);
    box-shadow: -3px 5px 12px 0px rgba(42, 42, 42, 0.16);
}
.career-height {
    min-height: 250px;
}

* + .block-vacancy__meta {
    margin-top: 17px;
}
.block-vacancy__meta {
    position: relative;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    margin-bottom: -5px;
    margin-left: -5px;
    margin-right: -5px;
}

.block-vacancy__meta > li {
    display: inline-block;
    line-height: 1.5;
}
.block-vacancy__meta > * {
    position: relative;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
.block-vacancy__meta .icon {
    position: relative;
    top: 1px;
    font-size: 19px;
    left: 0;
    right: inherit;
    opacity: 1;
    line-height: 0px;
}

.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 8px 10px;
    background: #e1e1e1;
    cursor: pointer;
    
}
.hvr-sweep-to-right::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00bcb4;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover::before, .hvr-sweep-to-right:focus::before, .hvr-sweep-to-right:active::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
 color: #fff !important;
}



.hvr-sweep-to-left {
   display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
position: relative;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
    padding: 8px 10px;
    background: #e1e1e1;
    cursor: pointer;
    
}
.hvr-sweep-to-left::before {
   content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #00bcb4;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;   
}

.hvr-sweep-to-left:hover::before, .hvr-sweep-to-left:focus::before, .hvr-sweep-to-left:active::before {
    -webkit-transform: scaleX(1);
transform: scaleX(1);
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
 color: #fff !important;
}



* + .group-xl {
    margin-top: 35px;
}






.carousel-control.left-1 {
    top: 45%;
    background: none;
}

.carousel-control.right-1 {
    top: 45%;
    background: none;
}






.modal-dialog{
    max-width: 600px;
}










.blog-4 ul.tick-list li{
    margin-bottom: 15px;
}

.blog-4 ul.tick-list li h5{
    margin-bottom: 5px; 
}

.right-1{ float: right; margin-top: 5px;}


.first-category li {
    -moz-transition: all,.3s,ease-in-out;
    -o-transition: all,.3s,ease-in-out;
    -webkit-transition: all,.3s,ease-in-out;
    transition: all,.3s,ease-in-out;
    margin: 0;
    box-shadow: inset 0 1px 0 0 #d3d3d4;
    position: relative;
    z-index: 1;
}

.first-category li:first-child{
	box-shadow: none;
}

.first-category li a {
    color: #262729;
    width: 100%;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    padding: 15px 20px;
    margin-left: -20px;
    border-bottom: none;
}
.first-category li:hover{
	box-shadow: none;
}
.first-category li:hover a {
    margin-left: 0px;
    color: #00bcb4;
    box-shadow: -3px 7px 30px 0px rgba(0,0,0,0.3);
    border-bottom: none;
}

.first-category li.active a {
    margin-left: 0px;
    color: #00bcb4;
    box-shadow: -3px 7px 30px 0px rgba(0,0,0,0.3);
    border-bottom: none;
}
.text-align-last{ text-align-last: center; }

.right-form {
    position: fixed;
    right: 0;
    top: 240px;
    z-index: 999;
    width: 0px;
}

.right-img-enquery {
    background: #00BCB4 none repeat scroll 0 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    float: right;
    font-family: Arial,Helvetica,sans-serif;
   font-size: 18px;
    font-weight: normal;
    margin-right: -55px;
    margin-top: 80px;
    padding: 5px 0 6px;
    text-align: center;
    transform: rotate(90deg);
    width: 155px;
}

.sidenav {
    background-color: #fff;
    border: 3px solid #00BCB4 ;
    overflow-x: hidden;
    padding-top: 20px;
    position: fixed;
    padding-bottom: 20px;
    right: 0;
    top: 100px;
    transition: all 0.5s ease 0s;
    width: 0;
    z-index: 999;
}

.sidenav .form-group{
    margin-bottom: 5px;
}

.sidenav .closebtn {
    font-size: 36px;
    margin-left: 0;
    padding: 0;
    position: absolute;
    right: 10px;
    z-index: 1111;
}

.sidenav a {
    color: #818181;
    display: block;
    font-size: 25px;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.heading-2{
    
    width: 100%;
    max-width: 100% 
}

/*************  case studies  *************/
    .testimonial_section {
  display: block;
  overflow: hidden;
  background: #0fc6be;
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: #0fc6be;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
}
.testimonial_section .about_content .background_layer {
  background-color: #0fc6be;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {
  /*font-family: "Titillium Web";*/
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}
.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}
.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  border-bottom-style: solid;
}
.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
}
.testimonial_section .about_content .layer_content .section_title p {
    color: #fff;
    margin: 0 0 15px;
    font-weight: 500;
    text-align: justify;
}
.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}
.testimonial_section .about_content .layer_content a:hover {
  color: #666a76;
}
.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: #ff5e14;
  margin-left: -170px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: #0fc6be;
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  /*border-top: 2px solid #fff;
  border-left: 2px solid #fff;*/
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #55e6c1;
  position: absolute;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content a {color: #00bcb4;    font-size: 17px;
    margin-top: 10px;}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 20px;
  top: 20px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #666a76;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: #0fc6be;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 0px;
  margin-top: -20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: #0fc6be;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 0px;
  margin-top: -20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:before,.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:before {

   font-family: "Font Awesome 5 Free";
   content: "\f104";
   display: inline-block;
   padding-right: 3px;
   vertical-align: middle;
   font-weight: 900;
   font-size: 23px;

}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:before {
   content: "\f105";
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #020d26;
}


.digital_banner_area {padding-bottom: 30px;background-image: url(../../include/images/ourservices.jpg) !important;}
.digital_banner_area::before{opacity: .65 !important;}
.digital_banner_area .hand-mockup  {position: fixed;right: 21px;max-width: 364px;}
.digital_banner_area .hand-mockup .wrap-login form {background: #607D8B !important;box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);}
.digital_banner_area .hand-mockup .wrap-login form .form-controls {
   
    border: 1px solid #ffffff!important;
    color: #ffffff;
    border-radius: 4px;
    height: 42px !important;
}
.digital_banner_area .hand-mockup .wrap-login form .select {
    border: 1px solid #ffffff!important;
    color: #ffffff;
    border-radius: 4px;
    height: 42px !important;
    background: #607d8b;
    margin-bottom: 15px;}

.digital_banner_area .hand-mockup .wrap-login form ::placeholder {color: #ffffff !important;opacity: 1 !important;}
.digital_banner_area .hand-mockup .wrap-login form .login100-form-btn {margin-top: 10px !important; background-color: #fff !important;color: #617e8b !important;border: 1px solid #fff !important;height: 45px !important;}
.digital_banner_area .hero-area-content {padding: 60px 0 170px !important;}
.digital_banner_area .hero-area-content h1  {font-size: 50px;}
.digital_banner_area .hero-area-content p {font-size: 20px;font-weight: 400;}
.our_digital_services {background: #ffffff;padding: 10px 0 50px 0 !important}
.our_digital_services .card {padding: 30px 20px;margin-bottom: 30px; border: none; text-align: center; box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);}
.our_digital_services .card:hover {background: #48d6ee none repeat scroll 0 0;color: #fff;}
.our_digital_services .card .box-icon {margin-bottom: 20px;}
.our_digital_services .card h3 {font-size: 21px;font-weight: 500;}
.our_digital_services .card p {text-align: justify;font-size: 14px;}
.sec-title h2 .sec-title-border span {margin: 18px 1px !important;}
.cstm_wdth {width: 100%;max-width: 933px;margin-left: 0;margin-right: 0;}
.digital_m_about {padding: 0 !important;}
.digital_m_about .single-showcase-box.seo2 {padding-top: 20px !important;padding-bottom: 20px !important;}
.digital_m_about .single-showcase-box .img-pdt {
    /*padding: 120px 0 40px;*/
    padding-top: 120px !important;
}
.digital_m_about .single-showcase-box h4 {font-size: 40px !important;color: #000;}
.digital_m_about .single-showcase-box p {color: #828282;font-size: 15px;font-weight: 400;}

.subpage-header {background: #00bcb4;text-align: center;}
.subpage-header .top_height {height: 400px;align-items: center;}
.subpage-header .top_height .subpage-title {color: #fff}
.subpage-header .top_height .page-subtitle {color: #fff}

.im-about.bg-right-bottom {padding-top: 100px;}
.im-about.bg-right-bottom .box-shadow {margin-top: 50px;}
.im-about.bg-right-bottom .heading-6 {font-size: 32px;font-weight: 700px;text-align: center;}
.im-about.bg-right-bottom .subheading {
    color: #656565;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.im-about.bg-right-bottom .center-dash:after {
    content: '';
    position: relative;
    background: #00bcb4;
    height: 3px;
    width: 30px;
    display: block;
    margin: 10px auto 0;
}
.flex-same-height.w-row {display: inline-block;
    vertical-align: top;
    width: calc(100% + 30px);
    margin-left: -15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;}
.cover-card {
    float: left;
    width: 33.3%;
    padding: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border:1px solid #00bcb4;
    padding: 50px 40px 25px;
    text-align: center;
    position: relative;
}
.cover-card img {width: 100%;height: 60px;}
.cover-card .heading-7 {font-size: 22px;padding-top: 40px;width: 100%;font-weight: 600;}

.big-width.margin-top-high {margin-top: 50px;}
.im-about.bg-right-bottom .vertical-dash-orange {font-size: 25px;font-weight: 600;text-align: left;}
.im-about.bg-right-bottom .head_strong {font-size: 15px;}
.im-about.bg-right-bottom .strategy-left .pera {padding-bottom: 20px;}
.logo-sliders .owl-item li img {
    /*display: block;
    width: 100%;
    box-shadow: 1.436px 0.294px 19px 1px rgba(233, 236, 241, .5);
    border-radius: 100%;
    width: 100px !important;
    height: 100px;
    padding: 12px;*/
    border: 1px solid #b5e0de;
    padding: 10px;
}
.right-cover:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 137px;
    background-image: url(../images/box-connector.svg);
    background-size: cover;
    right: -35px;
    top: 50%;
    z-index: 1;
    transform: translate(0, -50%) rotate(180deg);
}
.bottom-cover:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 137px;
    background-image: url(../images/box-connector.svg);
    background-size: cover;
    bottom: -81px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0) rotate(270deg);
}
.left-cover:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 137px;
    background-image: url(../images/box-connector.svg);
    background-size: cover;
    left: -35px;
    top: 50%;
    z-index: 1;
    transform: translate(0, -50%);
}
.logo_cont {background: #fff;margin-top: 50px;padding: 50px 0;}
.logo_heading {padding-bottom: 30px;text-align: center;position: relative;}
.logo_heading h2{position: relative;}
.logo_heading h2:before {content: '';bottom: -53px; position: relative; background: #00bcb4; height: 3px; width: 30px; display: block; margin: 10px auto 0; }
ul.service-list>li.wdt50 {width:50%;}
ul.service-list>li .service-box ul li {display: inline-block;
    /*background: #fff;*/
    margin: 0 8px 15px 0;
    /*padding: 10px 15px;*/
    /*border-radius: 80px;*/
    /*box-shadow: 0 0 15px rgba(0,0,0,.08);}*/}
ul.service-list>li .service-box ul li:before {
   font-family: "FontAwesome";
   content: "\f105";
   display: inline-block;
   padding-right: 10px;
   vertical-align: middle;
   font-weight: 900;

}
ul.service-list>li .service-box ul li:before:first-child {
    display:none;
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }
  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }
}

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

    .digital_banner_area .hand-mockup  {position: relative;right: inherit;max-width: inherit;}
    .digital_banner_area .hero-area-content  {padding: 60px 0 70px;}
    .digital_m_about .single-showcase-box .img-pdt {padding-top: 20px !important;}
}
@media all and (max-width: 767px) {


    .cover-card {width: 100%;}
    .cover-card:after {display: none;}
    .flex-same-height.w-row {padding: 0 30px;}
    .cover-card {border-bottom: 0;}
    .cover-card:last-child {border-bottom: 1px solid #00bcb4;}
    ul.service-list>li.wdt50 {width:100%;}
}

/***button & navigation***/
li.nav-item a.btn.btn-success
{
	font-weight: normal !important;
    padding: 4px 4px !important;
    min-width: 100px !important;
    margin-top: 12% !important;
}
/***accordian faq***/
 .homeaccrodian.bs-example{
        margin: 20px;
    }
    .homeaccrodian .accordion .fa{
        margin-right: 0.5rem;
        float: right;
    }
    .homeaccrodian .btn-link{
        width:100%;
        text-align: left;
         color: #00bcb4;
    font-weight: 500;
padding:0
    }
.homeaccrodian #accordionExample {
    padding-bottom: 25px;
}
    .homeaccrodian .btn-link:hover, 
.homeaccrodian .btn-link:active, 
.homeaccrodian .btn-link:focus  {
    text-decoration:none;
    outline: none;
    box-shadow:none;
}
    .homeaccrodian .row.rt{
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.homeaccrodian .accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.homeaccrodian .accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.homeaccrodian .accordion>.card {
    overflow: hidden;
}
.homeaccrodian {
    padding: 50px 0px;
}
.homeaccrodian .card-header{
    border-bottom: 0px;
padding:5px 20px;
}
@media only screen and (max-width: 600px){
    .homeaccrodian .btn-link{
        padding-right: 0px;
        padding-left: 0px;
        font-size: 14px;
    white-space: normal;
    }
    .homeaccrodian .card-header {
    padding: 5px 20px;
}
}

/***home slider***/

 .carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
            display: block;
            max-width: 100%;
        }
        .home-slider .cover {
          padding: 75px 0;
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          display: flex;
          align-items: center;
        }
           .slide1{
          background-image: url(/include/images/home-1bnner.jpg);
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center center;
        height: 550px;
        }
        .slide2{
          background-image: url(/include/images/development-bnner.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
    .slide5{
          background-image: url(/include/images/Banner-01N.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
    .slide6{
          background-image: url(/include/images/Banner-02N.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
    .slide4{
          background-image: url(/include/images/Banner-03N.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
.slide7{
          background-image: url(/include/images/iot_Banner.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
.slide3{
          background-image: url(/include/images/ai_Banner.jpg);
            height: 550px;
        position: relative;
        background-color: #333;
        color: #fff;
        background-size: cover;
        background-position: center;
        }
        .home-slider .cover .header-content {
          position: relative;
          padding: 70px 56px 0;
          overflow: hidden;
         text-align: center;
        }
        .home-slider .cover .header-content h2 {
       font-weight: 600;
        font-size: 35px;
        color: #000;
        text-transform: capitalize;
        margin: 25px auto;
        }
        .home-slider .cover .header-content h1 {
        font-weight: 500;
        word-spacing: 3px;
        color: #000;
        text-transform: capitalize;
        margin: 0px auto
    }
        .home-slider .cover .header-content h1 span.com
        {
          text-transform: uppercase;
        background: linear-gradient(to right, #127f80 8%, #401179 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 50px;
        font-weight: 600;
        }
        .home-slider .cover .header-content h1 span.texts{
         font-size: 19px;
        position: relative;
        top: -24px;
        font-weight: 700;
        line-height: 0px;
        }
        .home-slider .cover .header-content p {
         font-size: 16px;
            font-weight: 300;
            line-height: normal;
            color: #000;
            font-style: italic;
            display: flex;
        justify-content: space-around;
        padding-bottom: 35px;
        top:-100px;
        }
        .home-slider .cover .header-content p span a{
          color: #fff;
          text-decoration: none;
        }
        .home-slider .item.active h1 {
          -webkit-animation-duration: 2s;
          animation-duration: 2s;
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          animation-name: fadeInRight;
          animation-delay: 0.1s;
        }
        .home-slider .item.active h2 {
          -webkit-animation-duration: 3s;
          animation-duration:3s;
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          animation-name: fadeInLeft;
          animation-delay: 0.20s;
        }
        .content-h4 {
            width: 60%;
        position: relative;
        left: 0;
        right: 0;
        margin: 34px auto;
    }
        .home-slider .item.active p.p1 {
          -webkit-animation-duration:2s;
          animation-duration:2s;
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          animation-name: zoomIn;
          animation-delay:1s;
        }
         .home-slider .item.active p.p2 {
          -webkit-animation-duration: 2s;
          animation-duration: 2s
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          animation-name: zoomIn;
          animation-delay: 1.5s;
        }
        .home-slider .item.active p.p1 a, .home-slider .item.active p.p2 a
        {
          background: linear-gradient(to right, #c1383c 8%, #c75520 100%);
        color: #fff;
        font-style: normal;
        padding: 10px 0px;
        border-radius: 3px;
        -webkit-border-bottom-right-radius: 15px;
        -moz-border-bottom-right-radius: 15px;
        -o-border-bottom-right-radius: 15px;
        border-bottom-right-radius: 15px;
        -webkit-border-top-left-radius: 15px;
        -moz-border-top-left-radius: 15px;
        -o-border-top-left-radius: 15px;
        border-top-left-radius: 15px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-bottom-left-radius: 5px;
        -o-border-bottom-left-radius: 5px;
        border-bottom-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-top-right-radius: 5px;
        -o-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
        width: 190px;
       font-size:14px;
         animation-name: floating;
        animation-duration: 4s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        text-decoration: none;
        }
        @keyframes floating {
        from { transform: translate(0,  0px); }
        65%  { transform: translate(0, 10px); }
        to   { transform: translate(0, -0px); }    
    }
        
        @media only screen and (max-width: 1299px){
           .slide1, .slide2, .slide3, .slide4, .slide5, .slide6, .slide7{
            height: 480px!important;
          }
        }
        @media only screen and (max-width: 992px){
           .home-slider .cover .header-content{
            float: none;
            text-align: center;
          }
     .content-h4 {
        float: none;
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        transform: translate(0px, 0px);
    }
    .home-slider .cover .header-content p{
      padding-bottom: 0
    }
     .slide1, .slide2, .slide3, .slide4, .slide5, .slide6, .slide7{
            height: 420px!important;
          }
        }
        @media only screen and (max-width: 767px){
         .right-img-enquery{
           margin-top: 170px!important;}
          .home-slider  .cover .header-content h2{
            font-size: 22px;
           }
          .home-slider .cover .header-content p{
            font-size: 12px
           }
           .slide1, .slide2, .slide3, .slide4, .slide5, .slide6, .slide7{
            height: 320px!important;
background-position: right center;
    background-attachment: inherit;
    background-blend-mode: overlay;
          }
.home-slider .carousel-caption {
    right: 0%;
    left: 0px;
    padding-bottom: 30px;
    max-width: 100%;
    margin: 0 auto;
    padding: 23px;
    text-align: center;
}
         .home-slider .cover .header-content h2{
            font-size: 19px;
            margin:0;
           }
           .home-slider .cover .header-content h1{
            margin-bottom:10px;
            position: relative;
            top: 30px;
           }
           .home-slider .cover .header-content h1 span.texts {
        font-size: 13px;
             }
        .home-slider .item.active p.p1 a, .home-slider .item.active p.p2 a{
            width: 110px;
            font-size: 10px;
            padding: 5px 0;
           }
            .content-h4{
            margin:12px auto;
             }
          .home-slider .cover .header-content h1 span.texts{
             top:-32px;
              }
  .home-slider .cover .header-content{
            padding:0px;
          }
        }
         @media only screen and (max-width: 600px){
          .home-slider .cover .header-content p{
            font-size: 14px;
            margin-top: 5px;
            line-height: 1.4;
           }
           
           .home-slider .cover .header-content h1 span.com{
            font-size: 35px
           }
          
        }

.service-wrap {
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1);
    padding: 70px 25px;
    margin-bottom: 30px;
}
.service-wrap h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.service-wrap p {
    margin-bottom: 15px;
}
.service-wrap a {
    display:block;
    margin-top: 30px;
}
.service-items {
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1);
    padding: 21px 20px 26px 80px;
    margin-bottom: 30px;
    position: relative;
}
.service-items:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background: #00bcb4;
    height: 3px;
    content:"";
}
.service-items:hover:before {
    width: 100%;
      transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.service-items:hover h3{
  color: #00bcb4;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.service-items span {
    position: absolute;
    left: 20px;
    top: 22px;
}
.service-items span i{
  font-size: 40px;
  color: #00bcb4
}
.service-wrap span i{
  font-size: 40px;
  color: #fb5130
}
.read-more{
   color: #00bcb4;
   text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.service-items:hover .read-more i.fa, .service-wrap:hover .read-more i.fa{
  padding-left: 10px;
  transition: linear .3s;
  -webkit-transition: linear .3s;
  -moz-transition:linear .3s;
}
 .read-more i.fa{
   transition: linear .3s;
 }
.service-items h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.service-wrap span i {
    font-size: 40px;
    color: #00bcb4;
}
.service-items.hgt1 p {
    min-height: 210px;
}
.service-items.hgt2 p {
    min-height: 250px;
}
.service-wrap span {
    display: block;
    margin-bottom: 30px;
}
.service-wrap p {
    margin-bottom: 33px;
}
div#google_translate_element {
    width: 108px;
    position: relative;
    top: 8px;
    right: 30px;
}
#google_translate_element select.goog-te-combo {
    width: 108px;
    font-size: 11px;
    padding: 5px 0px;
    margin: 0;
background: #00bcb4;
    border: 0px;
    color: #fff;
}
#google_translate_element a.goog-logo-link {
    font-size: 11px!important;
}
@media only screen and (min-width: 768px) and (max-width: 1199px){
.header-right {
   top: 6px;
    right: 220px;
}
div#google_translate_element {
    width: 108px;
    position: relative;
    top: 0px;
    right: 109px;
}
}
@media only screen and (min-width: 376px) and (max-width: 767px){
#google_translate_element select.goog-te-combo {
    width: 102px;
    font-size: 10.5px;
}
    div#google_translate_element {
    width: 102px;
    position: relative;
    top: 0px;
    right: 43px;
}
.header-right {
    position: absolute;
   top: 0px;
    right: 150px;
}
.navbar-toggler {
    width: 40px;
    height: 40px;
    }
}
@media only screen and (max-width: 375px){
#google_translate_element select.goog-te-combo {
    width: 102px;
    font-size: 10.5px;
}
.navbar-toggler {
    width: 40px;
    height: 40px;
    }
    div#google_translate_element {
    width: 102px;
    position: relative;
    top: 12px;
    right: 43px;
}
.header-right {
    position: absolute;
   top: 7px;
    right: 143px;
}
.header-right a {
    margin: 0px !important;
    margin-right: 0!important;
}
.header-right a {
    padding: 0 5px;
    }
    .navbar-brand {
    margin: 5px 0px;
    padding: 0;
}
}
.stikcy-btn {
   position: fixed;
    right: -42px;
    top: 32%;
    background: #f39204 none repeat scroll 0 0;
    color: #ffffff;
    cursor: pointer;
    float: right;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px;
    font-weight: normal;
    margin-right: 0;
    margin-top: 0;
    padding: 10px 0 5px;
    text-align: center;
    transform: rotate(90deg);
    width: 120px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.stikcy-btn:hover, .stikcy-btn :focus{
color:#fff;
}
 @media only screen and (max-width: 767px){
         .stikcy-btn{
           top: 33%!important;}
}