.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-banner{
    height:580px;
    background-color: #111439;
    display: flex;
    align-items: center;
}

.inner-banner h1 {
    font-size: 80px;
    line-height: 70px;
    color: #fff;
    font-weight: 200;
    font-family: 'Gotham';
    margin: 120px 0 0 0;
}

p{
    font-size: 14px;
    line-height: 24px;
    font-family: 'metropolis-extralight';
    font-weight: 300;
}

img{
    max-width: 100%;
}

.header{
    width: 100%;
     height: auto;
     position: fixed;
     z-index: 9999;
     left: 0px;
     top: 40px;
     -webkit-transition: all 0.3s linear;
     -moz-transition: all 0.3s linear;
     -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
     transition: all 0.3s linear;
}

body.scroll-down .header{
    top: -180px;
}


body.scroll-up .header .logo {
  width: 70px;
}

body.scroll-up .header  .menu-icon .menu-bar span {
    background-color: #000 !important;
  }

body.scroll-up .header .logo img{
  filter: invert(1) !important;
}

body.scroll-up .header .menu-icon{
    margin-top: 10px;
}

body.scroll-up .header{
       top:0px;
       padding: 10px 0px;
       background-color: #fff;
       box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
   -webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
   -moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
}


body.menu-opn .header{
    background-color: transparent;
    box-shadow: none;
    padding: 0px;
    top: 40px;
    position: fixed !important;
}


body.menu-opn.scroll-up .header .logo {
    width: 101px;
  }

body.menu-opn.scroll-up .header .logo img{
    filter: none !important;
  }

  body.menu-opn.scroll-up .header  .menu-icon .menu-bar span {
    background-color: #fff !important;
  }

  body.menu-opn.scroll-up .header .menu-icon{
    margin-top: 15px;
}


.logo{
    width: 101px;
    height: auto;
    float: left;
    z-index: 99;
}

.menu-icon {
    width: 50px;
    height: 48px;
    position: relative;
    cursor: pointer;
    float: right;
    margin-top: 15px;
}

.menu-icon .menu-bar {
    display: inline-block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.menu-icon .menu-bar span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    max-width: 34px;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    opacity: 1;
    left: 0px;
    -webkit-transform: rotate(
0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(
0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.menu-icon .menu-bar span:first-child {
    top: 15px;
    left: 9px;
}

.menu-icon .menu-bar span:nth-child(2) {
    top: 24px;
left: inherit;
max-width: 26px;
right: 8px;
}

.menu-icon .menu-bar span:nth-child(3) {
    top: 33px;
    left: 9px;
}

.main-nav{
    width: 100%;
    height: 0px;
    opacity: 0;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
       position: fixed;
       z-index: 999;
       background-color: #111439;
       background-image: url(../images/menu-bg.jpg);
       background-repeat: no-repeat;
       background-position: center;
       background-size: cover;
       overflow: hidden;
       top: 0px;
}

.menu-opn .main-nav{
       height: 100vh;
       opacity: 1;
       display: flex;
       flex-wrap: wrap;
}

.main-nav .container{ display: flex;  flex-wrap: wrap; }

.main-navigation{
    width: 100%;
    margin-top: 34%;
    display: none;
}

.menu-opn .main-navigation{
    display: block;
}

.menu-opn .header{
       position: fixed;
}

.main-navigation > ul{
       width: 100%;
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       flex-wrap: wrap;

}

.main-navigation > ul > li{
      list-style: none;
}


.main-navigation > ul > li a{
    font-size: 54px;
    color: #fff;
    font-family: 'metropolis-regular';
    font-weight: 500;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    position: relative;

}
/* 
.main-navigation > ul > li a::after{
       content: "";
       width: 12px;
       height: 19px;
       background-image: url(../images/arrow-white.png);
       position: absolute;
       top: 43%;
       right: -33px;
       transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;

}


.main-navigation > ul > li li a::after{
    content: "";
    width: 6px;
    height: 12px;
    background-image: url(../images/arrow-second-list.png);
    position: absolute;
    top: 43%;
    right: -10px;
    transition: all 0.2s linear;
 -webkit-transition: all 0.2s linear;
 -moz-transition: all 0.2s linear;
 -ms-transition: all 0.2s linear;
 -o-transition: all 0.2s linear;

}

.main-navigation > ul > li.dropdown a:hover::after{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
       transform: rotate(90deg);
       background-image: url(../images/arrow-black.png);
       
}

.main-navigation > ul > li a:hover::after{
    background-image: url(../images/arrow-black.png);
}

.main-navigation > ul > li.dropdown li a:hover::after{
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
       transform: rotate(0);
       background-image: url(../images/arrow-second-list-black.png);
} */



.main-navigation > ul > li a:hover{
    color: #000000;
    font-family: 'metropolis-bold';
}

.nav-bottom-content{
      width: 49%;
      
      display: flex;
      flex-wrap: wrap;
      bottom: 70px;
      opacity: 0;
      margin-top: auto;
      bottom: 0px; padding-bottom: 8%;
}

.main-navigation ul li:hover > ul{
            display: block;
}

.main-navigation ul ul{
      display: none;
      padding: 0px;
}

.main-navigation ul ul li{
    width: 100%;
    border-bottom: 1px solid #b8c1c4;
    max-width: 280px;
    padding-right: 20px;
  
}

.main-navigation ul ul li:last-child{
    border-bottom: none;
}

.main-navigation ul ul li a{
    font-size: 16px;
    display: block;
    line-height: 22px;
    color: #ffff;
    padding: 15px 0px;
}

.menu-opn .nav-bottom-content{
    opacity: 1;
}

.menu-opn .menu-bar span:first-child {
    display: none!important;
}

.menu-opn .menu-bar span:nth-child(2) {
    -webkit-transform: rotate(
45deg)!important;
    -ms-transform: rotate(45deg)!important;
    transform: rotate(
45deg)!important;
max-width: 34px;
top: 25px!important;
}

.menu-opn .menu-bar span:nth-child(3) {
    -webkit-transform: rotate(
-45deg)!important;
    -ms-transform: rotate(-45deg)!important;
    transform: rotate(
-45deg)!important;
    top: 25px!important;
}

.address-nav{
    width: 45%;
    box-sizing: border-box;
    padding-right: 50px;
}

.address-nav-second{
    width: 35%;
    box-sizing: border-box;
    padding-right: 50px;
}

.address-nav p{
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    font-family: 'metropolis-regular';
    font-weight: 300;
}

.address-nav-second a{
    color: #fff;
    font-size: 14px;
    /* line-height: 26px; */
    font-family: 'metropolis-regular';
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.address-nav-second a:hover{
    color: #000;
}

.social-nav{
      width: 20%;
}

.social-nav ul{
    display: flex;
}

.social-nav ul li{
      list-style: none;
      margin-right: 15px;
}

.social-nav ul li a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.social-nav ul li a:hover{
    color: #000;
}

.nav-bottom-content h3{
    font-size: 23px;
    line-height: 25px;
    color: #fff;
    font-family: 'metropolis-bold';
    margin-bottom: 15px;
}


.banner-main{
     width: 100%;
     height: 100vh;
     position: relative;
     display: flex;
     align-items: center;
     background-size: cover;
     background-repeat: no-repeat;
}

.banner-text{
    text-align: center;
    position: relative;
    z-index: 4;
}

.banner-text h3{
    font-size: 80px;
    line-height: 80px;
    font-family: 'Gotham';
    font-weight: 100;
    color: #fff;
    position: relative;
    z-index: 9;
    margin-bottom: 0px;
    margin: 0px;
}


.banner-text h1{
    font-size: 80px;
    line-height: 80px;
    font-family: 'Gotham';
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 9;
    margin: 0px;
}

.banner-text p{
    font-size: 24px;
    font-family: 'Gotham';
    font-weight: bold;
    margin-top: 20px;
    background: #2E71AA;
background: -webkit-linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
background: -moz-linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
background: linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.banner-text h2{
    font-size: 24px;
    line-height:25px;
    font-family: 'Gotham';
    font-weight: bold;
    margin: 0px;
    margin-top: 20px;
    background: #2E71AA;
background: -webkit-linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
background: -moz-linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
background: linear-gradient(to right, #2E71AA 15%, #54C5D0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black;
    background-position: center center;
    background-size: contain;
    object-fit: cover;
    z-index: 3;
}

.full-height{
     height: 880px;
}

.hme-abt-section{
    width: 100%;
    padding: 110px 140px;
    position: relative;
    background-image: url(../images/about-bottom-glow.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.hme-abt-section::before{
      content: "";
      background-image: url(../images/about-right-glow.png);
      background-repeat: no-repeat;
      width: 430px;
      height: 1050px;
      position: absolute;
      right: 0px;
      top: -200px;
}

.hme-about-main{
      width: 100%;
      height: auto;
      overflow: hidden;
      background-color: #21245b;
}

.hme-about-main::after{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    margin: auto;
       content: "";
       width: 1200px;
       height: 1930px;
       z-index: 2;
       background-image: url("../images/banner-bg-line.png");
       background-repeat: no-repeat;
}


.hme-about-inner{
       width: 100%;
       display: flex;
       flex-wrap: wrap;
       position: relative;
       z-index: 4;
}

.hme-about-content{
      width: 100%;
      box-sizing: border-box;
}

.hme-about-logo{
    width: 40%;
}

.hme-about-logo img{
    width: 100%;
}

.hme-about-content h3{
        font-size: 70px;
        line-height: 60px;
        color: #fff;
        font-family: 'Gotham';
        font-weight: 300;
        color: #111439;
}

.hme-about-content h3 span{
    color: #1b75bc;
}

.hme-about-content h4{
       font-size: 26px;
       line-height: 35px;
       color: #111439;
       font-family: 'Gotham';
       font-weight: 300;
       margin-bottom: 20px;
}

.hme-about-content p{
    font-size: 14px;
    line-height: 24px;
    color: #111439;
    font-family: 'Gotham-Book';
    font-weight:500;
}

.about-counter-main{
    width: 100%;
    height: auto;
    margin-top: 40px;
}

.about-counter-main ul{
     width: 100%;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     position: relative;
     z-index: 5;
}

.about-counter-main ul li{
      width: 21%;
      padding-right: 20px;
      box-sizing: border-box;
      list-style: none;
      margin-bottom: 40px;
      position: relative;
     
}

.about-counter-main ul li::after{
    content: "";
       width: 100%;
       height: 1px;
       background-color: #0d50a0;
       position: absolute;
       bottom: -20px;
       left: 0px;
}

.about-counter-main ul li h3{
    font-size: 70px;
    line-height: 65px;
    color: #1b75bc;
    font-family: 'Gotham';
    font-weight:bold;
}

.about-counter-main ul li label{
   font-size: 18px;
   line-height: 22px;
   color: #ffffff;
   font-family: 'Gotham';
   font-weight: 300;
}

.hme-work-section{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0px;
    background-color: #000;
    position: relative;
    z-index: 200;
}

.hme-work-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.hme_work_list .hme-work-section:nth-child(2n+2) .hme-work-inner{
            flex-direction: row-reverse;
}


.hme_work_list .hme-work-section:nth-child(2n+2) .hme-work-image{
      padding-right: 0px;
      padding-right: 25px;
      padding-left: 0px;
      right: inherit;
      left: 0px;
      text-align: right;
}

.hme-work-image{
    padding-left: 25px;
    box-sizing: border-box;
    width:55%;
    text-align: center;
    position: absolute;
    right: 0px;
    text-align: left;
    
}



.hme-work-content{
    box-sizing: border-box;
    width: 35%;
}

.hme-work-content h2{
       font-size: 48px;
       line-height: 50px;
       color: #fff;
       font-family: 'Gotham';
       font-weight: 200;
       margin-bottom: 20px;
       font-weight: 500;
}


.hme-work-section-hisense{
    position: relative;
}

.hme-work-section-hisense .hme-work-inner{
    flex-direction: inherit !important;
}

.work-section-hisense-mobils-inner{
    position: relative;
    width:100%;
    height:100%;
}

.hisense-mobils-top,
.hisense-mobils-left,
.hisense-mobils-bottom{
    position: absolute;
}

.hisense-mobils-top{
    top:0;
    left:20%;
}

.hisense-mobils-left {
    bottom: 0;
    left: 0;
}

.hisense-mobils-bottom {
    bottom: 0;
    right: 0;
}

.work-section-hisense-mobils{
    position: absolute;
    right:4%;
    bottom:0;
    width:44%;
    height:90%;
    /* background: url(../images/full-bg.jpg) no-repeat; */
    background-size: contain;
    background-position: bottom;
}

.main-title{
    font-size:48px;
    line-height: 55px;
    font-family: 'metropolis-thin';
    font-weight: 200;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.main-title span{
    font-family: 'metropolis-extrabold';
}

.hme-work-content p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

.view-wrk-btn{
     text-transform: uppercase;
     color: #fff;
     font-size: 13px;
     font-family: 'Gotham';
     font-weight: bold;
     margin-top: 90px;
     display: inline-block;
     position: relative;
     -webkit-transition: all 0.2s linear;
     -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
     transition: all 0.2s linear;
}

.view-wrk-btn:hover{
    color: #2ab894;
}

.view-wrk-btn::after{
       content: "";
       width: 20px;
       height: 14px;
       position: absolute;
       right: -30px;
       top: 0px;
       background-image: url(../images/wrk-btn-arw.png);
       background-repeat: no-repeat;
       background-position: center;
       transition: all 0.2s linear;
       -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
       -ms-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
}

.view-wrk-btn:hover::after{
    right: -40px;
    background-image: url(../images/wrk-btn-arw-hover.png);
}

.hme-what-wedo-section{
      padding: 150px 0px 150px;
      background-color: #111439;
}

.hme-what-we-do-first{
    width: 100%;
    max-width: 560px;
}

.hme-what-we-do-first p{
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}

.hme-clients-section{
    padding: 130px 0px;
    background: #0b0d2d;
    position: relative;
    z-index: 200;
}

.hme-clients-heading{
    text-align: center;
}

.hme-clients-heading .main-title{
     color: #2ba990;
     margin-bottom: 10px;
}

.hme-clients-heading p{
     font-size: 14px;
     line-height: 24px;
     color: #fff;
     font-family: 'Gotham';
     font-weight: 400;
}

.hme-clients-list{
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hme-clients-list ul{
       width: 100%;
       height: auto;
       display: flex;
       flex-wrap: wrap;
}

.hme-clients-list ul li{
      width: 19%;
      margin-right: 1.2%;
      height: 130px;
      box-sizing: border-box;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #263274;
      margin-bottom: 10px;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
}

.hme-clients-list ul li img{
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
}

.hme-clients-list ul li:nth-child(5n){
    margin-right: 0px;
}

.client-btn{
       padding: 12px 55px 12px 25px;
       line-height: 20px;
       display: inline-block;
       margin: 0 auto;
       border: 1px solid #20b994;
       margin: 0 auto;
       text-transform: uppercase;
       font-family: 'Gotham';
       position: relative;
       font-size: 13px;
       font-weight: 500;
       transition: all 0.2s linear;
       -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
       -ms-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
       border-radius: 30px;
       -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
       -ms-border-radius: 30px;
       -o-border-radius: 30px;
       overflow: hidden;
}

.client-btn:hover{
        color: #fff;
}

.client-btn::after{
       content: "";
       position: absolute;
       width: 0px;
       height: 100%;
       background-color: #20b994;
       left: 0px;
       top: 0px;
       transition: all 0.2s linear;
       -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
       -ms-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
}


.client-btn:hover::after{
      width: 100%;
}

.client-btn span{
    position: relative;
    z-index: 2;
}

.client-btn span::after{
    content: "";
    width: 20px;
    height: 14px;
    position: absolute;
    right: -30px;
    top: 0px;
    background-image: url(../images/wrk-btn-arw-hover.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.client-btn:hover span::after{
    background-image: url(../images/wrk-btn-arw.png);
}

.hme-contact-section{
     padding: 100px 0px 120px;
     width: 100%;
     background-color: #20b994;
     position: relative;
     z-index: 200;
}

.hme-contact-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-contact-content{
       width: 60%;
       padding-right: 150px;
       box-sizing: border-box;
}

.home-contact-content h4{
    font-size: 35px;
    line-height: 30px;
    color: #ffffff;
    font-family: 'Gotham';
    font-weight: 300;
    margin-bottom: 15px;
}

.home-contact-content p{
       font-size: 14px;
       line-height: 24px;
       color: #fff;
}

.home-contact-image{
    width: 40%;
}

.main-text-box{
    width: 100%;
    padding: 0px 15px;
    border: 1px solid #fff;
    background-color: transparent;
    height: 50px;
    line-height: 50px;
    color: #fff !important;
    font-size: 17px;
    font-family: 'Gotham';
    font-weight: 300;
    margin-bottom: 15px;
}

.main-text-box::placeholder { 
    color: #bdeadf;
    opacity: 1; 
  }

  .main-textarea-box{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #fff;
    background-color: transparent;
    height: 100px;
    line-height: 20px;
    color: #fff !important;
    font-size: 17px;
    font-family: 'Gotham';
    font-weight: 300;
    margin-bottom: 15px;
    resize: none;
  }

  .main-textarea-box::placeholder { 
    color: #bdeadf;
    opacity: 1; 
  }

  input.contact-btn{
    padding: 14px 55px 12px 25px;
    min-width: 190px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    border: 1px solid #fff;
    margin: 0 auto;
    text-shadow: none;
    text-transform: uppercase;
    background-color: transparent;
    font-family: 'Gotham';
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
    background-image: url(../images/wrk-btn-arw.png);
    background-repeat: no-repeat;
    background-position: top 16px right 60px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }

  input.contact-btn:hover{
    border: 1px solid #fff;
    background-color: #fff;
    color: #20b994;
    background-image: url(../images/wrk-btn-arw-hover.png);
  }

  .footer{
        background-color: #111439;
        padding-top: 110px;
        position: relative;
        z-index: 200;
  }

  .footer-top-section{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      padding-bottom: 80px;
  }

  .footer-top-section h3{
      font-size: 16px;
      font-weight: 500;
      font-family: 'Gotham';
      color: #fff;
      margin-bottom: 35px;
  }

  .footer-logo{
         width: 18%;
  }

  .footer-nav{
      width: 18%;
      padding-right: 15px;
      box-sizing: border-box;
  }

  .footer-nav ul{
      margin: 0px;
  }

  .footer-nav ul li{
      list-style: none;
      margin-bottom: 20px;
  }

  .footer-nav ul li a{
      line-height: 20px;
      color: #babac0;
      font-weight: 300;
      font-size: 14px;
      font-family: 'Gotham';
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
  
  }

  .footer-nav ul li a:hover{
    color: #20b994;
  }

  .footer-social{
      width: 10%;
  }

  .footer-social ul{
      width: 100%;
      display: flex;
  }

  .footer-social ul li{
        margin-right: 20px;
        list-style: none;
  }

  .footer-social ul li:last-child{
         margin-right: 0px;
  }

  .footer-social ul li a{
         color: #fff;
         font-size: 20px;
         transition: all 0.2s linear;
         -webkit-transition: all 0.2s linear;
         -moz-transition: all 0.2s linear;
         -ms-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
  }

  .footer-social ul li a:hover{
    color: #20b994;
  }

  .footer-bottom-section{
      width: 100%;
      padding: 20px 0px;
      border-top: 1px solid #414361;
  }

  .footer-bottom-inner{
      width: 100%;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  .footer-rights{
      font-size: 14px;
      color: #fff;
      line-height: 25px;
      font-weight: 300;
      font-family: 'Gotham';
  }

  .footer-bottom-inner ul{
      display: flex;
      justify-content: right;
  }

  .footer-bottom-inner ul li{
         list-style: none;
         margin-left: 25px;
  }

  .footer-bottom-inner ul li a{
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    font-weight: 300;
    font-family: 'Gotham';
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }

  .footer-bottom-inner ul li a:hover{
    color: #20b994;
  }

  .hme-what-we-do-tab{
      width: 100%;
      height: auto;
      padding-top: 50px;
      position: relative;
      
  }

  .page-section {
    height: auto;
    width: 45%;
    margin-left: 55%;
    padding-top: 100px;
  }

  .page-section h3{
       font-size: 35px;
       line-height: 30px;
       margin-bottom: 20px;
       color: #ffffff;
       font-weight: 300;
       font-family: 'Gotham';
  }

  .page-section p{
      font-size: 14px;
      line-height: 24px;
      color: #616480;
      font-weight: 400;
       font-family: 'Gotham';
  }
  
  .navigation {
    position: absolute;
    width: 55%;
    padding-right: 50px;
    border-left: 1px solid #484a67;
    box-sizing: border-box;
    top: 100px;
    background-color:transparent;
    color: #fff;
    z-index: 100;
   
  }

  .navigation.sticky{
      position: fixed;
  }



  .navigation__link {
    display: block;
    color: #4d4f71;
    text-decoration: none;
    font-size: 35px;
    margin-bottom: 30px;
    padding-left: 85px;
    font-weight: 300;
    font-family: 'Gotham';
    position: relative;
  }

  .navigation__link .do-icon{
      left: 20px;
  }

  .navigation__link:last-child{
      margin-bottom: 0px;
  }
  .navigation__link:hover {
    color: #fff;
  }

  .navigation__link:hover img{
    filter: brightness(0) invert(1);
  }

  .navigation__link.active {
    color: #fff;
    position: relative;
    
  }

  .navigation__link.active img{
    filter: brightness(0) invert(1);
  }

  .navigation__link.active::after{
      content: "";
      width: 4px;
      height: 100%;
      background-color: #fff;
      position: absolute;
      left: -2px;
      top: 0px;
  }


  /*what we do*/

  .what-we-do-banner{
      width: 100%;
      height: 100vh;
      background-color: #111439;
      display: flex;
      align-items: center;
  }

  .what-we-do-banner h1{
         font-size: 80px;
         line-height: 70px;
         color: #20b994;
         font-weight: 200;
         font-family: 'Gotham';
         margin-bottom: 0px;
         margin-top: 30px;
  }

  .what-we-do-first-section{
          padding: 130px 0px 10px;
  }

  .what-we-do-first-inner{
        max-width: 650px;
  }

  .what-we-do-first-section .main-title{
      color: #111439;
      line-height: 67px;
  }

  .what-we-do-first-section .main-title span{
               display: block;
  }

  .what-do-content-section{
      width: 100%;
      padding: 120px 0px;
      background-color: #fff;
  }

  .what-do-content-section:nth-child(2n){
      background-color: #2ab894;
  }

  .what-do-content-section:nth-child(4n){
    background-color: #111439;
}

  .what-do-content-section:nth-child(2n) h2{
        color: #fff;
  }

  .what-do-content-section:nth-child(2n) p{
    color: #fff;
}

  .what-do-content-inner{
         width: 100%;
         display: flex;
         flex-wrap: wrap;
  }

  .what-do-content-left{
        width: 55%;
        padding-right: 50px;
        box-sizing: border-box;
  }

  .what-do-content-left h2{
      font-size: 70px;
      line-height: 65px;
      color: #2ab894;
      font-weight: bold;
      font-family: 'Gotham';
  }

  .what-we-do-logo{
      margin-top: 50px;
      margin-left: 60px;
      max-width: 230px;
  }

  .what-do-content-right{
    width: 45%;
  }

  .what-do-content-right ul{
         margin-top: 35px;
         margin-bottom: 40px;
  }

  .what-do-content-right ul li{
      width: 100%;
      display: block;
      border: 1px solid #eaeaea;
      margin-bottom: 10px;
      position: relative;
  }

  .do-icon{
      width: 50px;
      height: auto;
      left: 10px;
      top: 0;
    bottom: 0;
      text-align: center;
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .do-icon img{
      max-width: 100%;
  }

  .what-do-content-right ul li a{
    width: 100%;
    padding: 15px 30px 15px 75px;
    display: inline-block;
    line-height: 30px;
    font-size: 20px;
    color: #111439;
    font-family: 'Gotham';
    font-weight: 300;
    background-color: #fff;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }

  .what-do-content-right ul li a:hover{
      background-color: #2ab894;
      color: #fff;
  }
  .what-do-content-right ul li a:hover img{
    filter: brightness(0) invert(1);
  }

  .what-do-content-right .client-btn{
         display: inline-block;
  }

  .what-do-content-section:nth-child(2n) .client-btn{
        border-color: #fff;
        color: #fff;
  }

  .what-do-content-section:nth-child(2n) .client-btn span::after{
             background-image: url(../images/wrk-btn-arw.png);
  }

  .what-do-content-section:nth-child(2n) .client-btn:hover{
         background-color: #fff;
         color: #2ab894;;
  }

  .what-do-content-section:nth-child(2n) .client-btn:hover span::after{
    background-image: url(../images/wrk-btn-arw-hover.png);
}

.what-do-client-section{
     padding: 130px 0px;
     background-color: #f4fbfa;
}

.what-do-client-slider{
    margin-bottom: 50px;
}



.client-image{
    width: 100%;
    height: 130px;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eeeeee;
}


/*-------------------------- about page --------------------------------*/

.white-btn {
    padding: 12px 55px 12px 25px;
    line-height: 20px;
    display: table;
    margin:60px 0 0 0;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-family: 'Gotham';
    font-size: 13px;
    font-weight: 500;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.white-btn:hover{
    background:#fff;
}

.white-btn span {
    color:#fff;
    position: relative;
}

.white-btn:hover span{
    color:#2ab894;
}

.white-btn span::after {
    content: "";
    width: 20px;
    height: 14px;
    position: absolute;
    right: -30px;
    top: 0px;
    background-image: url(../images/wrk-btn-arw.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.white-btn:hover span::after{
    background: url(../images/wrk-btn-arw-hover.png);
}


/* Abt We Build Section*/

.abt-webuild-section {
    padding: 150px 0 155px 0;
    position: relative;
}

.abt-webuild-section .abt-webuild-img{
    position: absolute;
    bottom:0;
    right:0;
}

.abt-webuild-section .main-title{
    color:#111439;
    font-weight:300;
    max-width:60%;
}

.abt-webuild-section .main-title span{
    color:#2ab894;
}

.abt-webuild-section p{
    color:#111439;
    font-weight:400;
    max-width:40%;
    margin-top:40px;
}


/* Abt We Build Section End*/



/* Abt Counter Section */

.abt-counter-section{
    padding:125px 0 0 0;
    background:#111439;
    position: relative;
    overflow: hidden;
    z-index:0;
}

.abt-counter-section::after {
    content: '';
    position: absolute;
    left: 11%;
    bottom: -15%;
    width: 682px;
    height: 682px;
    /* width: 35.8%; */
    /* height:78.5%; */
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.abt-counter-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.abt-counter-left-image{
    width:50%;
}

.abt-counter-content{
   width: 50%;
   padding:25px 0 0 0;
   box-sizing: border-box;
}

.abt-counter-content h3{
     font-size: 57px;
     line-height: 60px;
     color: #fff;
     font-family: 'Gotham';
     font-weight: 300;
}

.abt-counter-content > h3 span{
 color: #2ab894;
}

.abt-counter-content h4{
    font-size: 26px;
    line-height: 35px;
    color: #111439;
    font-family: 'Gotham';
    font-weight: 300;
    margin-bottom: 20px;
}

.abt-counter-content p{
 font-size: 14px;
 line-height: 24px;
 color: #fff;
 font-family: 'Gotham-Book';
 font-weight:500;
}

.abt-counter-main{
 width: 100%;
 height: auto;
 margin-top: 40px;
}

.abt-counter-main ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.abt-counter-main ul li{
   width: 50%;
   padding-right: 20px;
   box-sizing: border-box;
   list-style: none;
   margin-bottom: 50px;
}

.abt-counter-main ul li h3 {
    font-size: 50px;
    line-height: 40px;
    color: #fff;
    font-family: 'Gotham';
    font-weight: 300;
}

.abt-counter-main ul li label{
font-size: 17px;
line-height: 22px;
color: #fff;
font-family: 'Gotham';
font-weight: 300;
}



/* Abt Counter Section End */


/* Our Technology Stack */

.abt-technology-section{
    padding:136px 0;
    background:#2ab894;
}

.technology-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.technology-content-side{
    width:56%;
}

.technology-content-side h3{
    font-size:25px;
    color:#fff;
    font-weight: 300;
    font-family: 'Gotham';
    max-width:65%;
    margin:0;
}

.technology-content-side p {
    color: #fff;
    max-width: 89%;
    font-weight: 400;
    margin:30px 0 0 0;
}

.technology-icon-side{
    background-color:#fff;
    width: 488px;
    height: 457px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-left: auto;
}

.technology-icon-side ul{
    list-style:none;
    display:flex;
    flex-wrap: wrap;
    padding:40px 60px;
    height:100%;
}

.technology-icon-side li{
    width:33.33%;
    height:33.33%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.technology-icon-side li:nth-child(2),
.technology-icon-side li:nth-child(5),
.technology-icon-side li:nth-child(8){
    justify-content: center;
}

.technology-icon-side li:nth-child(3),
.technology-icon-side li:nth-child(6),
.technology-icon-side li:nth-child(9){
    justify-content: flex-end;
}

.technology-icon-side li:nth-child(4),
.technology-icon-side li:nth-child(5),
.technology-icon-side li:nth-child(6){
    align-items: center;
}

.technology-icon-side li:nth-child(7),
.technology-icon-side li:nth-child(8),
.technology-icon-side li:nth-child(9){
    align-items: flex-end;
}


/* join nuox */

.abt-joinnuox-section{
    padding:76px 0 96px 0;
    background:#eefaf7;
}

.joinnuox-inner{
    display:flex;
    flex-wrap: wrap;
}

.joinnuox-content-side{
    width:50%;
    padding-top:48px;
}

.joinnuox-content-side .main-title{
    color:#111439;
}

.joinnuox-content-side .main-title span{
    color:#2ab894;
}

.joinnuox-content-side p{
    color:#111439;
    font-weight:400;
    margin:0;
    font-size:13px;
}

.joinnuox-content-side .client-btn{
    margin-top:40px;
    margin-left:0;
}

.joinnuox-image-side{
    width:50%;
    display: flex;
    align-items: flex-start;
    padding:0 140px 0 0;
}

.joinnuox-image-side img{
    margin-left:auto;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


/* --------------------------------Blog Page------------------------------ */

.blogpage-section{
    padding:150px 0;
}

.blogitem-list{
    display: flex;
    flex-wrap: wrap;
    margin:0 -2%;
    row-gap:20px;
}

.blogitem-list__item{
    margin:0 2%;
    border:1px solid rgb(53, 53, 53);
    background-color:#fff;
    padding:85px 50px; 
    width:46%;
}

.blogitem-list__item h2{
    font-size:16px;
    color:#111439;
    font-weight: 300;
    font-family: 'Gotham';
    margin:0;
    line-height:1;
}

.blogitem-list__item h3{
    font-size:30px;
    font-weight: 300;
    font-family: 'Gotham';
    margin:25px 0 38px 0;
}

.blogitem-list__item h3 a{
    color:#111439;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.blogitem-list__item h3:hover a{
    color:#00a651;
}

.blogitem-list__item p{
    font-size:16px;
    color:#111439;
    font-weight: 300;
    font-family: 'Gotham';
    margin:0;
    max-width:96%;
}

/* --------------------------------Blog Page End------------------------------ */

.hme-clients-section.clients-page .main-title{
    text-align: left;
}


/* --------------------------------Blog Page End------------------------------ */

/* --------------------------------Blog-detail Page------------------------------ */

.blog-detail-page{
    padding:60px 0 90px 0;
}

.blog-detail-page .inner-wrap{
    max-width:865px;
    margin:0 auto;
}

.blog-detail-page .blog-date{
    display: block;
    color:#111439;
    font-size:18px;
    line-height:1;
    margin-bottom:20px;
    font-family: 'Gotham';
    font-weight: 200;
}

.blog-detail-page h1{
    font-size: 45px;
    line-height: 50px;
    font-family: 'Gotham';
    font-weight: 300;
    margin-bottom: 20px;
    color: #111439;
}

.blog-detail-page h2{
    font-size:36px;
    line-height:40px;
    font-family: 'metropolis-regular';
    font-weight: 400;
    margin-bottom: 15px;
    color: #111439;
}

.blog-detail-page img{
    margin-bottom:30px;
}

.blog-detail-page p{
    font-weight:300;
    font-size: 14px;
    line-height: 24px;
    margin-bottom:20px;
    font-family: 'metropolis-light';
}

.blog-detail-page .share{
    display:flex;
}

.blog-detail-page .share li{
    width:43px;
    height:43px;
    line-height:39px;
    border:1px solid #999;
    border-radius:50%;
    text-align: center;
    list-style:none;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.blog-detail-page .share li:hover{
    border-color:#20b994;
    background:#20b994;
}

.blog-detail-page .share li:hover img{
       filter: invert(1);
}

.blog-detail-page .share li img{
    margin:auto;
}

.blog-detail-page .share li + li{
    margin-left:10px;
}

/* Related Posts */


.relatedblog-section{
    padding-bottom:100px;
}

.relatedblog-section .main-title{
    color:#20b994;
}

.relatedblog-section .main-title span{
    color:#20b994;
}

.relatedblog-section .title{
    display: flex;
    padding:100px 0 30px 0;
    align-items: center;
    justify-content: space-between;
    border-top:1px solid #cfd0d7;
}

.relatedblog-section .title .client-btn{
    border-color: #000;
}

.relatedblog-section .title .client-btn:hover{
    border-color: #20b994;
}

.relatedblog-section .title .client-btn span{
     color: #000;
}

.relatedblog-section .title .client-btn:hover span{
    color: #fff;
}

.relatedblog-section .title > *{
    margin:0;
}


/* --------------------------------Blog-detail Page End------------------------------ */





/* --------------------------------Contact Page------------------------------ */

.contact-page{
    padding:130px 0 150px 0;
}

.contact-page-inner{
    display: flex;
    flex-wrap: wrap;
}

.company-detail h2{
    font-size:70px;
    font-family: 'Gotham';
    font-weight:300;
    margin:0 0 30px 0;
}

.company-detail h2 span,
.contact-form-side h2 span{
    color:#20b994;
}

.contact-form-side{
    max-width:900px;
    width:100%;
}

.contact-form-side p{
    font-size:16px;
    color:#111439;
    font-family: 'metropolis-light';
    font-weight:300;
    margin:0;
}

.contact-form-side > ul{
    display:flex;
    flex-wrap: wrap;
    margin:50px -1% 0 -1%;
}

.contact-form-side li {
    list-style: none;
    width:47%;
    display: block;
    margin:0 1.5% 30px 1.5%;
}

.contact-form-side li .fld-01{
    border: none;
    border-bottom: solid #dcdcdc 1px;
    height: 53px;
    padding: 0;
    width: 100%;
    font-size: 16px;
    font-family: 'metropolis-light';
}

.contact-form-side li.full-fld {
    width: 100%;
}

.contact-form-side li.full-fld:last-child {
    margin:0;
}

.contact-form-side li textarea.fld-01{
    min-height: 85px;
    resize:none;
    padding-top:20px;
    font-family: 'metropolis-light';
}

.contact-form-side li .form-submit {
    padding: 0;
    line-height: 20px;
    display: table;
    margin: 0 auto;
    font-size: 16px;
   border: none;
   margin-left: 1.5%;
   margin-top: 50px;
    text-transform: uppercase;
    font-family: 'metropolis-extrabold';
    font-size: 14px;
    text-shadow: none;
    color:#000000;
    background-color: transparent !important;
    float: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.contact-form-side li .form-submit:hover{
          color: #20b994 !important;
}

.contact-form-side li .form-submit:hover span::after{
       background-color: #20b994 !important;
}

.contact-form-side li .form-submit span {
    position: relative;
}

.contact-form-side li .form-submit span::after {
    content: "";
    width: 36px;
    height: 1px;
    background-color: #000000 !important;
    position: absolute;
    right: -48px;
    top: 9px;
    background-repeat: no-repeat;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}



.company-detail{
    margin:0 0 0 auto;
}

.company-detail li{
    color:#111439;
    list-style:none;
    margin:0 0 30px 0;
    font-family: 'Gotham';
    font-weight:400;
}

.company-detail li span{
    display:block;
    color:#111439;
    font-size:25px;
    font-family: 'Gotham';
    font-weight:400;
    margin:0 0 5px 0;
}

.company-detail li address{
    font-size:15px;
    line-height:23px;
    color:#111439;
    font-style: normal;
    font-weight:400;
}

.company-detail li a{
    color:#111439;
}

.company-detail .contact-social li{
    float:left;
    margin:0;
}

.company-detail .contact-social span{
    display: block;
    font-family: 'Gotham';
    font-weight:300;
    margin-bottom:20px;
    font-weight: 400;
}

.company-detail .contact-social li + li{
    margin-left:18px;
}


/* --------------------------------Contact Page End------------------------------ */



/* --------------------------------Careers Page------------------------------ */

.careers-page-details{
    padding:70px 0 90px 0;
}

.careers-page-details h2{
    font-size: 48px;
    line-height: 50px;
    font-family: 'metropolis-extrabold';
    margin-bottom: 10px;
    color: #111439;
}

.careers-page-details h4{
    display:block;
    font-size:18px;
    color: #111439;
    line-height:22px;
    text-transform: uppercase;
    font-family: 'metropolis-light';
    font-weight: 200;
}

.skills-required{
    margin:40px 0 0 0;
}

.summary h3,
.skills-required h3,
.experience h3{
    font-size:36px;
    line-height: 40px;
    color:#111439;
    font-family: 'metropolis-light';
    font-weight: 200;
    margin-top: 45px;
    margin-bottom: 20px;
}

.summary p{
    font-size:14px;
    line-height: 24px;
    font-family: 'metropolis-light';
    color:#111439;
    font-weight: 400;
}

.skills-required ul{
    padding:0 0 0 25px;
}

.skills-required ul li{
    font-size:14px;
    color:#111439;
    font-family: 'metropolis-light';
    font-weight:300;
    position: relative;
    list-style: none;
}

.skills-required ul li::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #20b994;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    position: absolute;
    left: -20px;
    top: 4px;
}

.skills-required ul li + li{
    margin:15px 0 0 0;
}

.experience{
    margin-top:65px;
}

.experience p{
    font-size:14px;
    color:#111439;
    font-family: 'metropolis-light';
    margin:0 0 5px 0;
}

.careers-page-details .client-btn{
    margin: 0px;
    margin-top: 50px;
}

.careers-page-details  .client-btn{
       background-color: #000;
       color: #fff;
       border-color: #000;
      
}

.careers-page-details  .client-btn:hover{
    border-color: #20b994;
    background-color: #20b994;
}

.careers-page-details  .client-btn span::after {
    background-image: url(../images/wrk-btn-arw.png);
}


/* --------------------------------Blockchain Development Page------------------------------ */

.blockchain-revolution{
    padding:100px 0;
}

.blockchain-revolution-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blockchain-revolution .content-side{
    width:60%;
}

.blockchain-revolution .content-side .main-title{
    color:#111439;
    margin:0 0 30px 0;
}

.blockchain-revolution .content-side .main-title span{
    display: block;
    margin-top:10px;
}

.blockchain-revolution .content-side p{
    color:#111439;
    font-weight:400;
}

.blockchain-revolution .image-side{
    width:40%;
    text-align: right;
}


/* Our Services */

.our-services{
    padding:120px 0 145px 0;
    background:#111439;
}

.our-services .main-title{
    margin:0 0 40px 0;
}

.services-list{
    display:flex;
    flex-wrap: wrap;
    row-gap:25px;
    margin:0 -1%;
}

.services-list__item {
    background: #fff;
    padding: 75px 35px;
    width: 31.33%;
    margin: 0 1%;
}

.services-list__item h3{
    font-size:28px;
    font-family: 'Gotham';
    font-weight: 300;
    margin:0 0 20px 0;
}

.services-list__item h3 a{
    color:#232648;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.services-list__item h3:hover a{
    color:#00a651;
}

.services-list__item p{
    color:#232648;
    font-weight:400;
    margin:0;
}

/* Tools and Technologies */

.tools-technologies{
    padding:140px 0 100px 0;
}

.tools-technologies .title{
    text-align: center;
    margin:0 0 50px 0;
}

.tools-technologies .title p{
    color:#012244;
    font-weight:400;
}

.tools-technologies .title .main-title{
    color:#012244;
}


/* Other Services */

.other-services{
    padding:110px 0 150px 0;
    background:#ecedef;
}

.other-services .title{
    margin:0 0 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.other-services .title .client-btn{
    margin:20px 0 0 0;
}

.other-services .title h2{
    font-size:30px;
    font-weight:300;
    font-family: 'Gotham';
}

.other-services .title h2 span{
    font-size:60px;
    color:#20b994;
    display: block;
}

.othersrvc-list{
    display:flex;
    flex-wrap: wrap;
    margin:0 -1%;
    row-gap:20px;
}

.othersrvc-list__item {
    background: #fff;
    padding: 65px 25px;
    width: 23%;
    margin: 0 1%;
}

.othersrvc-list__item h3{
    color:#232648;
    font-size:28px;
    font-family: 'Gotham';
    font-weight: 300;
    margin:0 0 20px 0;
}

.othersrvc-list__item h3 a{
    color:#232648;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.othersrvc-list__item h3:hover a{
    color:#00a651;
}

.othersrvc-list__item p{
    color:#232648;
    font-weight:400;
    margin:0;
}

.othersrvc-list__item .client-btn {
    margin: 30px 0 0 0;
}


/* --------------------------------Blockchain Development Page End------------------------------ */


/* --------------------------------Web Application Develop Page------------------------------ */


.development-options{
    padding:100px 0;
}

.dvp-ops-list__item{
    display: flex;
    flex-wrap: wrap;
}

.dvp-ops-list__item + .dvp-ops-list__item{
    margin-top:100px;
}

.dvp-ops-list__item .content-side,
.dvp-ops-list__item .image-side{
    width:50%;
}

.dvp-ops-list__item .content-side h2{
    color:#111439;
    font-family: 'Gotham';
    font-weight: 300;
}

.dvp-ops-list__item .content-side h2 span{
    color:#2ab894;
    display: block;
}

.dvp-ops-list__item .content-side p{
    font-weight:400;
}

.dvp-ops-list__item .content-side ul{
    padding-left:24px;
    display: flex;
    flex-wrap: wrap;
    margin:50px 0 0 0;
}

.dvp-ops-list__item .content-side ul li{
    font-size:18px;
    color:#111439;
    margin:0 0 12px 0;
    width:50%;
    line-height:1;
    font-family: 'Gotham';
    font-weight: 400;
}

.dvp-ops-list__item .content-side ul li::marker{
    font-size:30px;
    color:#2ab894;
}


/* Your app, ready to go */

.yourapp-ready{
    padding:140px 0 150px 0;
    background:#232648;
}

.yourapp-ready .title {
    margin: 0 0 45px 0;
    max-width: 77%;
}

.yourapp-ready .title p{
    margin:0;
    color:#fff;
}

.yourapp-ready-list {
    display: flex;
    flex-wrap: wrap;
    row-gap:35px;
    margin:0 -1%;
}

.yourapp-ready-list__item {
    padding: 50px 30px;
    width: 31.33%;
    margin:0 1%;
    border:1px solid #757798;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.yourapp-ready-list__item:hover {
    background:#fff;
}

.yourapp-ready-list__item:hover h3,
.yourapp-ready-list__item:hover p{
    color:#1e2143;
}

.yourapp-ready-list__item h3,
.yourapp-ready-list__item p{
    color:#fff;
    font-family: 'Gotham';
    font-weight: 300;
    margin:0 0 25px 0;
}

.yourapp-ready-list__item p{
    margin:0;
}


/* outstanding */

.outstanding{
    padding:150px 0 170px 0;
}

.outstanding .title {
    margin: 0 0 50px 0;
    max-width: 64%;
}

.outstanding .title .main-title{
    color:#000;
    line-height:57px;
}

.outstanding .title p{
    margin:0;
}

.outstanding-list {
    display: flex;
    flex-wrap: wrap;
    row-gap:35px;
    margin:0 -2%;
}

.outstanding-list__item {
    background: #f0faf7;
    padding: 65px 60px;
    width: 46%;
    margin:0 2%;
}

.outstanding-list__item h3{
    font-size:30px;
    margin:0 0 30px 0;
    font-family: 'Gotham';
    font-weight: 300;
}

.outstanding-list__item h3 a{
    color:#232648;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.outstanding-list__item h3:hover a{
    color:#00a651;
}

.outstanding-list__item p{
    color:#232648;
    margin:0;
    font-family: 'Gotham';
    font-weight: 300;
}


.blockchain-revolution .image-side img{
    -webkit-animation: spin 8s linear infinite;
    -moz-animation: spin 8s linear infinite;
    animation: spin 8s linear infinite;
}






/* --------------------------------Web Application Develop Page End------------------------------ */


.about-logo-content-wrapper{
        width: 100%;
        height: auto;
        position: relative;
}

.about-logo-title{
       width: 100%;
       position: absolute;
       left: 0px;
       top: 60px;
       font-size: 36px;
       font-family: 'Gotham';
       font-weight: bold;
       color: #fff;
       text-transform: uppercase;
}

.about-logo-content{
       width: 44%;
       float: right;
       margin-top: -150px;
       margin-right: 14%;
       position: relative;
       z-index: 9;
       margin-bottom: 100px;
}

.about-logo-content h2{
    font-size: 30px;
    line-height: 38px;
    color: #fff;
    font-family: 'Gotham';
    font-weight: 500;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(#5ac8d0, #0d50a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-logo-content h1{
    font-size: 30px;
    line-height: 38px;
    color: #fff;
    font-family: 'Gotham';
    font-weight: 500;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(#5ac8d0, #0d50a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-logo-content p{
       font-size: 14px;
       line-height: 27px;
       color: #fff;
       font-weight: 400;
}

.about-more-btn{
     height: 50px;
     line-height: 48px;
     display: inline-block;
     font-family: 'Gotham';
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to left,#4db0c0, #2b3091);
  border-radius: 8px;
  color: #122dff;
  display: inline-block;
  font-size: 20px;
     border-radius: 25px;
     -webkit-border-radius: 25px;
     -moz-border-radius: 25px;
     -ms-border-radius: 25px;
     -o-border-radius: 25px;
     font-size: 14px;
     margin-top: 75px;
     min-width: 200px;
     position: relative;
     overflow: hidden;
     padding: 1px;
}

.about-more-btn span{
    padding: 0px 30px;
    display: block;
    color: #fff;
    text-align: center;
    background-color: #21245b;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.about-more-btn:hover{
       color: #fff;
}

.about-more-btn span::after{
           content: "";
           position: absolute;
           width: 0px;
           height: 100%;
           background: #20b994;
           left: 0px;
           top: 0px;
           z-index: -1;
           border-radius: 25px;
           -webkit-border-radius: 25px;
           -moz-border-radius: 25px;
           -ms-border-radius: 25px;
           -o-border-radius: 25px;
           transition: all 0.2s linear;
           -moz-transition: all 0.2s linear;
           -webkit-transition: all 0.2s linear;
           -ms-transition: all 0.2s linear;
           -o-transition: all 0.2s linear;
}

.about-more-btn span:hover{
    padding: 0px;
}

.about-more-btn span:hover::after{
    width: 100%;
}


.bg-image{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hme-main-contact-section{
    width: 100%;
    height: auto;
    padding: 120px 0px;
    min-height: 850px;
    background-color: #fff;
    z-index: 200;
}

.hme-contact-left{
    width: 60%;
    height: auto;
    position: relative;
    z-index: 2;
   
}

.hme-contact-left .main-title{
    font-size: 48px;
    line-height: 40px;
    color: #2ab894;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 0px;
}

.hme-contact-left .main-title span{
      font-weight: bold;
}

.hme-contact-left h4{
    font-size: 27px;
    color: #000;
    font-family: 'Gotham-Book';
    font-weight: 400;
}

.hme-contact-left p{
    font-size: 16px;
    color: #000;
    font-family: 'Gotham-Book';
    font-weight: 400;
}

.hme-main-contact-section .hme-contact-form{
             margin-top: 50px;
             max-width: 450px;
}

.hme-main-contact-section {
    position: relative;
}

.hme-main-contact-section .main-text-box{
    width: 100%;
    padding: 0px 20px;
    border: 1px solid #d9d9d9;
    background-color: transparent;
    height: 50px;
    line-height: 50px;
    color: #000 !important;
    font-size: 15px;
    font-family: 'Gotham-Book';
    font-weight: 400;
    margin-bottom: 15px;
    
    box-sizing: border-box;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.hme-main-contact-section .main-textarea-box{
       height: 150px;
       border: 1px solid #d9d9d9;
       padding: 20px 15px;
       border-radius: 25px;
       -webkit-border-radius: 25px;
       -moz-border-radius: 25px;
       -ms-border-radius: 25px;
       -o-border-radius: 25px;
       box-sizing: border-box;
       color: #000 !important;
       font-size: 15px;
       line-height: 22px;
       font-family: 'Gotham-Book';
}

.hme-main-contact-section .main-text-box::placeholder{
    color: #000 !important;
}

.hme-main-contact-section .main-textarea-box::placeholder{
    color: #000 !important;
}

.hme-main-contact-section input.contact-btn{
    padding: 0px 50px 0px 35px;
    height: 52px;
    line-height: 52px;
    min-width: 150px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    margin: 0 auto;
    text-shadow: none;
    text-transform: uppercase;
    background-color: transparent;
    font-family: 'Gotham';
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
    background-color: #000;
    background-image: url(../images/wrk-btn-arw.png);
    background-repeat: no-repeat;
    background-position: top 17px right 36px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.hme-main-contact-section input.contact-btn:hover{
    background-color: #2ab894;
}


.hme-main-contact-section .container{
    
    right: 0px;
    top: 0px;
    display: flex;
}

.hme-contact-right{
      width: 53%;
      position: absolute;
      right: 0px;
      top: 0px;
      height: 100%;
}


.hme_service-new_section{
    width: 100%;
    height: auto;
    padding: 110px 0px 150px;
    background-color: #151847;
}

.service-tab-main-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.service-tab-left h2{
        font-size: 48px;
        color: #fff;
        font-family: 'metropolis-thin';
        margin-bottom: 15px;
        padding-left: 10px;
}

.service-tab-left h2 span{
    font-family: 'metropolis-bold';
}

.service-tab-left p{
        font-size: 18px;
        line-height: 28px;
        font-family: 'metropolis-medium';
        color: #fff;
        padding-left: 10px;

}

.service-tab-left{
      width: 50%;
      box-sizing: border-box;
      padding-right: 140px;
}

.service-tab-left .tabs{
    margin-top: 50px;
}

.service-tab-left .tabs li{
       width: 100%;
       min-height: 100px;
       list-style: none;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       padding-right: 0px;
       background-image: url(../images/tab-border.png);
       background-repeat: no-repeat;
       background-position: top left;
}

.service-tab-left .tabs li.active a{
    background-color: #161a55;
}

.service-tab-left .tabs li.active a::after{
    opacity: 1;
}

.service-tab-left .tabs li a:hover{
    background-color: #161a55;
}

.service-tab-left .tabs li a:hover::after{
      opacity: 1;
}

.service-tab-left .tabs li a{
      display: flex;
      flex-wrap: wrap;
      cursor: pointer;
      width: 100%;
      align-items: center;
      padding: 17px 10px;
      box-sizing: border-box;
      position: relative;
}

.service-tab-left .tabs li a::after{
        content: "";
        width: 11px;
        height: 21px;
        background-image: url(../images/service-arrow.png);
        background-repeat: no-repeat;
        position: absolute;
        right: 20px;
        opacity: 0.2;
}

.service-tab-left .tabs li h3{
    font-family: 'metropolis-bold';
    color: #fff;
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 0px;
}

.service-tab-left .tabs li h3 span{
    font-family: 'metropolis-thin';
}

.tab-icon{
      width: 100px;
      height: auto;
}

.service-tab-right{
    width: 50%;
      box-sizing: border-box;
      margin-left: auto;
}

.tab_drawer_heading {
    display: none;
    color: #fff;
    font-family: 'metropolis-bold';
    font-size: 17px;
  }

  .tab_content {
      padding-top: 70px;
  }

 .tab_content h2{
           font-size: 24px;
           line-height: 30px;
           font-family: 'metropolis-bold';
           color: #fff;
           margin-bottom: 20px;
 } 

 .tab_content p{
     color: #cfd2f1;
     font-size: 14px;
     line-height: 24px;
 }

 .tab_content ul{
     margin-top: 55px;
     width: 100%;
     display: flex;
     flex-wrap: wrap;
 }

 .tab_content ul li{
     width: 45%;
     box-sizing: border-box;
     padding-right: 40px;
     margin-bottom: 45px;
     margin-right: 10%;
     position: relative;
     list-style: none;
     font-size: 21px;
     line-height: 24px;
     color: #289784;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     font-family: 'metropolis-bold';
 }


 .tab_content ul li:nth-child(2n){
     margin-right: 0px;
 }

 .client-btn-container{
     width: 100%;
     text-align: center;
 }


 .tab_content ul li::after{
    content: "";
    width: 11px;
    height: 21px;
    background-image: url(../images/service-list-arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
 }

 .tab_content ul li span{
    font-family: 'metropolis-thin';
 }

 .tab_content .about-more-btn {
    margin-top: 20px;
   
 }

 .tab_content .about-more-btn span{
padding: 0px 70px 0px 40px;
background-color: #151847;
color: #289784;
font-size: 13px;
 }

 .tab_content .about-more-btn span::before {
    content: "";
    width: 20px;
    height: 14px;
    position: absolute;
    z-index: 9;
    right: 40px;
    top: 17px;
    background-image: url(../images/wrk-btn-arw-hover.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }

  .tab_content .about-more-btn span:hover{
      color: #fff;
  }

  .tab_content .about-more-btn span:hover::before{
    background-image: url(../images/wrk-btn-arw.png);
  }



  /*career page*/

  .career-first-section{
         padding: 150px 0px 110px;
  }

  .career-first-inner{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
  }

  .career-first-left{
         width: 48%;
         padding-right: 40px;
         box-sizing: border-box;
  }

  .career-first-left h2{
      color: #000000;
      font-family: 'metropolis-thin';
      font-weight: 200;
      font-size: 36px;
      line-height: 36px;
  }

  .career-first-left h2 span{
    font-family: 'metropolis-bold';
  }

  .career-first-right{
    width: 52%;
    box-sizing: border-box;
  }

  .career-first-right p{
    font-family: 'metropolis-light';
    line-height: 24px;
    font-size: 14px;
    color: #111439;
  }

  .career-current-opening-section{
         width: 100%;
         padding: 120px 0px 110px;
         background-color: #181c4c;
  }


  .career-current-opening-section .main-title span{
         color: #2ab894;
  }

  .job-listing{
      width: 100%;
  }

  .job-listing ul{
         width: 100%;
  }

  .job-listing ul li{
         display: flex;
         flex-wrap: wrap;
         padding: 90px 0px;
         align-items: center;
         background-image: url(../images/carrer-list-bg.png);
         background-repeat: no-repeat;
         background-position: bottom center;
  }


  .job-listing ul li:last-child{
         background: none;
  }

  .career-list-left{
         width: 45%;
         padding-right: 40px;
         box-sizing: border-box;
  }

  .career-list-left h3{
         font-size: 36px;
         color: #fff;
         font-family: 'metropolis-extralight';
         line-height: 40px;
         font-weight: 200;
         margin: 0px;
  }

  .career-list-left h5{
    font-family: 'metropolis-bold';
    font-weight: 500;
    font-size: 15px;
    margin: 0px;
    color: #fff;
  }

  .career-list-right{
    width: 55%;
    padding-right: 250px;
    box-sizing: border-box;
    position: relative;
  }

  .career-list-right p{
      font-size: 14px;
      color: #ffffff;
      line-height: 24px;
      font-family: 'metropolis-thin';
      margin-bottom: 0px;
  }

  .career-list-right .client-btn{
      position: absolute;
      right: 0px;
      top: 25%;
      margin: auto;
  }

  .pagination{
      width: 100%;
      height: auto;
      margin-top: 20px;
  }

  .pagination ul{
         display: flex;
         flex-wrap: wrap;
  }

  .pagination ul li{
      width: 52px;
      height: 52px;
      border: 1px solid #00b78e;
      list-style: none;
      margin-right: 15px;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
  }

  .pagination ul li:hover{
    background: #00b78e;
  }

  .pagination ul li.active{
      background: #00b78e;
  }

  .pagination ul li a{
         display: flex;
         width: 100%;
         height: 100%;
         justify-content: center;
         align-items: center;
         font-family: 'metropolis-medium';
         font-size: 15px;
         color: #fff;
  }

  .openingitem-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2%;
    row-gap: 15px;
}

.openingitem-list__item {
    width: 47%;
    margin: 0 1.5%;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 60px 80px;
}

.openingitem-list__item h2 {
    color: #111439;
    font-size: 36px;
    line-height: 36px;
    font-weight: 200;
    font-family: 'metropolis-light';
    margin: 0;
}

.openingitem-list__item h3 {
    font-size: 16px;
    font-family: 'metropolis-medium';
    font-weight: 400;
    color: #111439;
    margin: 10px 0 25px 0;
}

.openingitem-list__item h3:hover a {
    color: #00a651;
}
.openingitem-list__item h3 a {
    color: #111439;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.openingitem-list__item .client-btn{
    margin-top: 50px;
}

.openingitem-list__item .client-btn span{
       color: #000;
}

.openingitem-list__item .client-btn:hover span{
      color: #fff;
}

.openingitem-list__item p {
    font-size: 16px;
    color: #111439;
    font-weight: 300;
    font-family: 'Gotham';
    margin: 0;
    max-width: 96%;
}

.banner_section.career-detail-banner{
    background-color: #111439;
    height: 300px;
}

.banner_section.career-detail-banner p{
      margin-bottom: 30px;
}


/*blogs*/

.banner_section.blog-banner p{
      color: #000000;
}

.header-second .logo{
          display: none;
}

.menu-opn .header-second .logo{
      display: block;
}

.header-second .logo.second{
    display:block;
}

.menu-opn .header-second .logo.second{
    display:none;
}

.header.header-second .menu-icon .menu-bar span{
        background-color: #000;
}

.menu-opn .header.header-second .menu-icon .menu-bar span{
    background-color: #fff;
}


.blog-listing-section{
    padding: 85px 0px;
}

.blog-listing-inner{
    width: 100%;
    height: auto;
}

.blog-listing-inner ul{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
}

.blog-listing-inner ul li{
    width: 48%;
    margin-right: 4%;
    margin-bottom: 60px;
    list-style: none;
}


.blog-listing-inner ul li .blog-list-image{
    width: 100%;
    overflow: hidden;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      margin-bottom: 20px;
}

.blog-listing-inner ul li .blog-list-image img{
    width: 100%;
    background-size: cover;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.blog-listing-inner ul li .blog-list-image a:hover  img{
                  transform: scale(1.1,1.1);
                  -webkit-transform: scale(1.1,1.1);
                  -moz-transform: scale(1.1,1.1);
                  -o-transform: scale(1.1,1.1);
                  -ms-transform: scale(1.1,1.1);
}

.blog-listing-inner ul li:nth-child(2n){
        margin-right: 0px;
}

.blog-listing-inner ul li label{
    font-size: 12px;
    font-family: 'metropolis-light';
    color: #111439;
}

.blog-listing-inner ul li h3{
    line-height: 30px;
    font-size: 21px;
    margin-top: 10px;
    padding-right: 50px;
    box-sizing: border-box;
}

.blog-listing-inner ul li h3 a{
   font-size: 21px;
   line-height: 30px;
   color: #111439;
   font-family: 'metropolis-medium';
   font-weight: 400;
  
}

.blog-listing-inner ul li h3 a:hover{
    color: #20b994;
}

.blog-pagination{
    width: 100%;
    text-align: center;
}

.blog-pagination ul{
      display: inline-block;
}

.blog-pagination ul li{
     width: 45px;
     height: 45px;
     list-style: none;
     border: 1px solid #000000;
     border-radius: 100%;
     -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
     -ms-border-radius: 100%;
     -o-border-radius: 100%;
     margin: 0px 5px;
     display: inline-block;
     transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.blog-pagination ul li.active{
         background-color: #000;
}

.blog-pagination ul li.active a{
       color: #fff;
}

.blog-pagination ul li a{
      display: flex;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
      color: #000;
      font-size: 15px;
      font-family: 'metropolis-regular';
}

.blog-pagination ul li:hover{
     background-color: #20b994;
     border-color:#20b994;
}

.blog-pagination ul li:hover a{
      color: #fff;
}



/*blog detail*/

.blog-detail-title{
    width: 100%;
    max-width: 865px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.blog-detail-title h3{
    font-size: 48px;
    line-height: 52px;
    color: #fff;
    font-family: 'metropolis-medium';
    font-weight: 500;
    margin-top: 10px;
}

.blog-detail-title h1{
    font-size: 48px;
    line-height: 52px;
    color: #fff;
    font-family: 'metropolis-medium';
    font-weight: 500;
    margin: 0px;
    margin-top: 10px;
}

.blog-date{
    font-size: 14px;
    color: #fff;
    font-family: 'metropolis-regular';
    font-weight: 400;
}

.main-blog-detail-inner{
    width: 100%;
   padding-bottom: 25px;
}

.blogitem-slider-main{
    width: 100%;
}




.blogitem-slider-main .blog-list-image{
    width: 100%;
    overflow: hidden;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      margin-bottom: 20px;
}

.blogitem-slider-main .blog-list-image img{
    width: 100%;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.blogitem-slider-main .blog-list-image a:hover  img{
                  transform: scale(1.1,1.1);
                  -webkit-transform: scale(1.1,1.1);
                  -moz-transform: scale(1.1,1.1);
                  -o-transform: scale(1.1,1.1);
                  -ms-transform: scale(1.1,1.1);
}



.blogitem-slider-main label{
    font-size: 12px;
    font-family: 'metropolis-light';
    color: #111439;
}

.blogitem-slider-main h3{
    line-height: 30px;
    font-size: 21px;
    margin-top: 10px;
    padding-right: 50px;
    box-sizing: border-box;
}

.blogitem-slider-main h3 a{
   font-size: 21px;
   line-height: 30px;
   color: #111439;
   font-family: 'metropolis-medium';
   font-weight: 400;
  
}

.blogitem-slider-main h3 a:hover{
    color: #20b994;
}



/*our works*/

.our-works-main-wrapper{
    width: 100%;
    height: auto;
}


.load-more-works{
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    background-color: #111439;
}

.load-more-works .view-wrk-btn{
    margin-top: 0px;
    font-size: 16px;
}

.load-more-works .view-wrk-btn::after{
     top: 2px;
}

/*services*/

.other-service-section{
     padding: 130px 0px 110px;
     background-color: #f3f3f3;
}

.other-service-section .main-title{
       text-align: center;
       color: #000000;
}

.other-service-slider-main{
    width: 100%;
    height: auto;
    margin-top: 20px;
}


.service-slider .blog-list-image{
    width: 100%;
    overflow: hidden;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      margin-bottom: 20px;
}

.service-slider .blog-list-image img{
    width: 100%;
    border-radius: 30px;
    background-size: cover;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.owl-carousel .owl-item img{
    width: 100%;
}

.service-slider .blog-list-image a:hover  img{
                  transform: scale(1.1,1.1);
                  -webkit-transform: scale(1.1,1.1);
                  -moz-transform: scale(1.1,1.1);
                  -o-transform: scale(1.1,1.1);
                  -ms-transform: scale(1.1,1.1);
}

.service-slider h3{
    font-family: 'metropolis-extrabold';
         font-size: 27px;
         line-height: 34px;
         color: #000000;
}

.service-slider p{
       font-size: 15px;
}


.blockchain-service-section{
    width: 100%;
    height: auto;
    position: relative;
    background-color: #111439;
    padding: 120px 0px 300px;
}

.blockchain-service-section .main-title{
       text-align: center;
}

.blockchain-service-inner-line::after{
    content: "";
         max-width: 1200px;
         width: 100%;
         height: 100%;
         position: absolute;
         left: 0px;
         right: 0px;
         margin: 0 auto;
         top: 0px;
         background-image: url(../images/service-after-bg.png);
         background-repeat: no-repeat;
}


.block-chain-service-main{
       width: 100%;
       min-height: 690px;
       position: relative;
       display: flex;
       align-items: center;
       max-width: 1600px;
       margin: 0 auto;
       position: relative;
       z-index: 8;
}



.main-block-chain-service-content.service-right-detail{
    float: right;
}

.main-block-chain-service-content{
     max-width: 450px;
     height: auto;
     position: relative;
     z-index: 3;
}

.main-block-chain-service-content h3{
    font-size: 42px;
    line-height: 42px;
    color: #289784;
    font-family: 'Gotham';
    font-weight: bold;
    margin-bottom: 20px;
}

.main-block-chain-service-content h3 span{
              font-weight: 200;
}

.main-block-chain-service-content p{
           font-size: 15px;
           color: #9a9a9a;
           line-height: 24px;
           font-family: 'metropolis-extralight';
}

.block-service-image{
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    height: auto;
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
    display: flex;
    bottom: 0px;
    text-align: center;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.block-chain-service-main.service-right-detail .block-service-image{
           right: inherit;
           left: 0px;
           text-align: center;
           padding-right: 40px;
           padding-left: 40px;
}

.blockchain-service-section.blockchain-inner-pages .main-block-chain-service-content{
    max-width: 580px;
}

.blockchain-service-section .block-chain-service-main.service-right-detail .main-block-chain-service-content{
    float: right;
}

.blockchain-service-section.blockchain-inner-pages{
        padding-bottom: 100px;
}

.blockchain-service-inner-line-second::after{
        content: "";
        max-width: 1200px;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        right: 0px;
        margin: 0 auto;
        top: 0px;
        background-image: url(../images/service-after-second-bg.png);
        background-repeat: no-repeat;
    
}

.block-chain-tools-main{
    width: 100%;
    height: auto;
    padding-top: 110px;
}

.block-chain-tools-main h5{
      text-align: center;
      color: #fff;
      font-size: 14px;
      font-family: 'metropolis-light';
      font-weight: 300;
      margin-top: 10px;
      position: relative;
    z-index: 4;
}

.block-chain-tools-image{
    text-align: center;
    margin-top: 40px;
}


.block-chain-main{
      background-position: bottom center;
      background-image: url(../images/block-chain-bg.jpg);
      background-repeat: no-repeat;
}

.banner_section h4{
    font-size: 36px;
    color: #fff;
    font-family: 'metropolis-thin';
    font-weight: 300;
    width: 100%;
    text-transform: uppercase;
    position: absolute;
    top: 24%;
}

.banner_section h4 span{
    font-family: 'metropolis-extrabold';
}

.banner_section.service-banner .container{
         flex-wrap: wrap;
         position: relative;
}


/*web development*/

.web-sevelopment-main-section{
    padding: 200px 0px 0px;
    background-color: #111439;
    position: relative;
}

.web-top-glow{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.web-development-first-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.web-left-content{
         width: 50%;
         box-sizing: border-box; 
         padding-right: 30px;   
}

.web-right-content{
    width: 50%;
    box-sizing: border-box; 
}

.second-title{
    font-size: 42px;
    color: #289784;
    font-family: 'metropolis-bold';
    font-weight: bold;
    margin-bottom: 20px;
}

.second-title span{
    font-family: 'metropolis-thin';
    font-weight: 100;
}

.web-right-content p{
     font-size: 15px;
     line-height: 30px;
     color: #c0c0c0;
     margin-bottom: 25px;
}

.web-development-second-section{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 60px;
}

.web-second-content-left{
        width: 50%;
        padding-right: 30px;
        box-sizing: border-box;
}

.web-second-content-right{
    width: 50%;
}

.web-second-content-right img{
        width: 100%;
}

.web-second-content-left ul{
    margin: 0px;
    padding: 0px;
}

.web-second-content-left ul li{
    width: 100%;
margin-bottom: 20px;
font-size: 21px;
line-height: 24px;
font-family: 'metropolis-bold';
font-weight: bold;
color: #289784;
list-style: none;
background-image: url(../images/web-list.png);
background-repeat: no-repeat;
padding-left: 25px;
background-position: left 0px top 6px;
}


.web-development-third-section{
    padding: 65px 0px;
    display: flex;
    width: 100%;
    align-items: center;
}

.web-third-image-left{
      width: 60%;
}

.web-third-image-left img{
    width: 100%;
}

.web-third-content-right{
    width: 40%;
    padding-left: 40px;
    box-sizing: border-box;
}

.web-third-content-right p{
    color: 15px;
    color: #9a9a9a;
    line-height: 24px;
    font-family: 'metropolis-light';
}

.web-development-fourth-center{
        padding: 80px 0px 60px;
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
}

.web-fourth-center{
    width: 100%;
    max-width: 670px;
    text-align: center;
}

.web-fourth-center p{
    color: 15px;
    color: #9a9a9a;
    line-height: 24px;
    font-family: 'metropolis-light';
}

.web-development-line-image{
    width: 100%;
    height: auto;
    padding-top: 30px;
}

.web-development-line{
      width: 100%;
      height: auto;
      position: relative;
}

.web-development-line img{
    width: 100%;
}

.aos-animate .st1, .aos-animate .st2, .aos-animate .st0 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: dash 3s linear forwards  
}


.an2 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: dash 1s linear forwards  
}

@keyframes dash {
    to {
      stroke-dashoffset: 1000;
    }
  }
    
  
 .web-line-text{
     width: auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     position: absolute;
 } 

 .web-line-text h4{
     font-size: 21px;
     font-family: 'metropolis-bold';
font-weight: 500;
 line-height: 24px;
 width: 100%;
 color: #289784;
 text-align: center;
 }

 .line-icon{
     margin-bottom: 5px;
 }

 .line-icon img{
       width: auto;
 }

 .web-1{
     left: 10%;
     top: -45px;
 }

 .web-2{
    left: 15%;
    top: 55px;
}

.web-3{
    left: 8%;
    top: 145px;
}

.web-4{
    left: 15%;
top: 250px;
}

.web-5{
    right: 9%;
    top: 180px;
}

.web-6{
    right: 16%;
    top: 265px;
}

.web-contact-section{
     padding: 100px 0px 120px;
}

.web-contact-imagewrapper{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.web-contact-image-inner{
      width: auto;
      height: auto;
}

.main-web-contact-title{
      position: absolute;
      left: 0px;
      top: 43%;
      text-align: center;
}

.main-web-contact-title.second{
    left: inherit;
       right: 0px;
}

.web-contact-content{
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

.web-contact-content p{
       font-size: 15px;
       line-height: 22px;
       color: #000000;
       font-family: 'metropolis-light';
}

.about-more-btn{
    /* background: linear-gradient(to left,#fff, #fff); */
      margin-top: 25px;
    line-height: 48px;
}

.web-contact-content .about-more-btn{
    background: linear-gradient(to left,#fff, #fff); 
}

.web-contact-content .about-more-btn span{
    border: 1px solid #4db0c0;
    background-color: #fff;
    color: #000000;
    line-height: 46px;
}

.web-contact-content .about-more-btn:hover span{
     color: #fff;
}


.web-swipper-section{
    padding: 110px 0px 150px;
    background-color: #090b26;
}

.web-sevelopment-main-section .container{
      position: relative;
      z-index: 2;
}

.app-development-center-section{
       width: 100%;
       padding: 80px 0px 30px;

}

.app-development-center-inner{
       width: 100%;
       max-width: 480px;
       margin: 0 auto;
       text-align: center;
}

.app-development-center-inner h2{
            font-size: 36px;
            font-family: 'metropolis-thin';
    font-weight: 100;
            color: #fff;
            margin-bottom: 15px;
}

.app-development-center-inner h2 span{
    font-family: 'metropolis-bold';
    font-weight: 500;
}

.app-development-center-inner p{
     color: #fff;
     font-size: 15px;
     line-height: 24px;
     font-family: 'metropolis-light';
}

.load-more-works.app-load-work{
         background-color: #d1d1d6;

}

.load-more-works.app-load-work .view-wrk-btn{
      color: #090b26;
}

.load-more-works.app-load-work .view-wrk-btn::after{
    background-image: url(../images/wrk-btn-arw-blck.png);
}

.load-more-works.app-load-work .view-wrk-btn:hover{
    color: #2ab894;
}

.load-more-works.app-load-work .view-wrk-btn:hover::after{
      background-image: url(../images/wrk-btn-arw-hover.png);
}


.service-client-section{
    padding: 120px 0px;
    background-color: #0b0d2e;
    background-image: url(../images/client-line.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}

.service-client-section p{
    color: #fff;
    font-family: 'metropolis-light';
    font-size: 16px;
}

.service-client-section .main-title{
    margin-bottom: 0px;
}

.service-client-slider{
     width: 100%;
     height: auto;
     margin-top: 20px;
}

.client-logo{
    width: 100%;
    margin-right: 1.2%;
    height: 130px;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #263274;
    margin-bottom: 10px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.owl-carousel .owl-item .client-logo img{
    width: auto !important;
}


.blockchain-service-inner-third-line::after{
    content: "";
    max-width: 1200px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    background-image: url(../images/ecom-after-bg.png);
    background-repeat: no-repeat;
    z-index: 1;
}

.ecom-center-content{
      width: 100%;
      height: auto;
      text-align: center;
      position: relative;
      z-index: 10;
}

.ecom-center-content h2{
       text-transform: uppercase;
       color: #fff;
       font-size: 36px;
       font-family: 'metropolis-extrabold';
}

.ecom-center-content p{
    font-size: 15px;
    color: #9a9a9a;
    line-height: 22px;
}

.blockchain-service-section.ecom-after{
       padding-bottom: 30px;
} 

.hme-work-section.right-image .hme-work-image{
    padding-right: 0px;
padding-right: 25px;
padding-left: 0px;
right: inherit;
left: 0px;
text-align: right;
}

.hme-work-section.right-image .hme-work-inner {
    flex-direction: row-reverse;
  }


  .web-center-glow {
    position: absolute;
    top: 40%;
    right: 0px;
    z-index: 1;
  }

  .web-bottom-glow{
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
  }

  .ecom-line-section{
        width: 100%;
        background-color: #111439;
        padding-top: 30px;
  }

  .hme-clients-heading h2{
      font-size: 24px;
      line-height: 30px;
      text-align: center;
      color: #fff;
      font-family: 'metropolis-bold';
      font-weight: 500;
      margin: 0px;
  }

  .hme-clients-section.clients-page{
            padding: 100px 0px;
  }

  .clients-page .hme-clients-list{
          margin-top: 20px;
  }

  .clients-page .hme-clients-list ul{
        justify-content: center;
  }

  .clients-page{
      position: relative;
  }

  .client-testimonial-main{
      width: 100%;
      height: auto;
      padding: 150px 0px 50px;
      background-image: url(../images/tesimonial-bg.png);
      background-repeat: no-repeat;
      background-position: top center;
      background-repeat: repeat-y;
  }

  .client-testimonial-main .main-title{
        text-align: center !important;
        color: #2ab894;
        width: 100%;
  }

  .main-testimonial-slider{
      width: 100%;
      max-width: 550px;
      text-align: center;
      margin: 0 auto;
      padding-top: 45px;
  }

  .main-testimonial-slider p{
      font-size: 18px;
      line-height: 30px;
      color: #fff;
  }

  .testimonial-desg{
      margin-top: 60px;
  }

  .testimonial-desg h5{
      font-size: 16px;
      line-height: 24px;
      color: #2ab894;
      font-family: 'metropolis-regular';
      margin: 0px;
  }

  .testimonial-desg h3{
    font-size: 16px;
    line-height: 24px;
    color: #2ab894;
    font-family: 'metropolis-bold';
    margin: 0px;
  }

  .testimonial-slider .owl-dot{
           border: 1px solid #16b5ff !important;
           width: 8px;
           height: 8px;
           margin: 0px 5px;
           border-radius: 100%;
           -webkit-border-radius: 100%;
           -moz-border-radius: 100%;
           -ms-border-radius: 100%;
           -o-border-radius: 100%;
  }

  .testimonial-slider .owl-dot.active{
    border: 1px solid #16b5ff !important;
    background-color:#16b5ff;
  }

  .testimonial-slider .owl-dots{
       margin-top: 35px;
  }

  .contact-form-side h2{
       font-size: 48px;
       font-family: 'metropolis-thin';
       text-transform: uppercase;
  }

  .contact-form-side h2 span{
    font-family: 'metropolis-bold';
  }

  .contact-reach-section{
      padding: 100px 0px;
      background-color: #20b994;
  }

  .contact-reach-section h2{
      font-size: 48px;
      font-family: 'metropolis-thin';
      color: #fff;
      text-transform: uppercase;
  }

  .contact-reach-section h2 span{
    font-family: 'metropolis-bold';
  }

  .contact-reach-top{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      margin-top: 30px;
  }

  .contact-reach-top h2{
      font-size: 25px;
      line-height: 24px;
      font-family: 'metropolis-bold';
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 20px;
  }

  .contact-reach-top p{
         font-size: 15px;
         line-height: 23px;
         color: #fff;
         font-family: 'metropolis-light';
  }

  .contact-reach-first{
        width: 27%;
        box-sizing: border-box;
        padding-right: 30px;
  }

  .contact-link{
    font-size: 17px;
    line-height: 23px;
    color: #fff;
    font-family: 'metropolis-light';
    display: block;
  }

  .contact-link:hover{
      color: #111439;
  }

  .contact-reach-social{
        width: 16%;
  }

  .contact-reach-social ul{
        display: flex;
  }

  .contact-reach-social ul li{
      width: 50px;
      height: 50px;
      border: 1px solid #fff;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
      list-style: none;
      margin-right: 10px;
      list-style: none;

     
  }

  .contact-reach-social ul li:hover{
      border-color: #111439;
  }

  .contact-reach-social ul li a{
         display: inline-block;
         width: 100%;
         height: 100%;
         color: #fff;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
  }

  .contact-reach-social ul li a:hover{
    color: #111439;
  }

  .contact-reach-center{
      width: 100%;
      height: auto;
      padding: 30px 0px;
  }

  .contact-reach-first.contact-first a{
       margin-top: 40px;
  }

  .contact-reach-bottom{
      width: 100%;
      height: auto;
      display: flex;
      flex-wrap: wrap;
      margin-top: 30px;
  }

  .main-reach-bottom{
      margin-right: 35px;
  }

  .main-reach-bottom h3{
      font-size: 15px;
      line-height: 20px;
      font-family: 'metropolis-regular';
      font-weight: 400;
      color: #fff;
      margin: 0px;
  }

  .contact-reach-bottom  .contact-link{
    font-family: 'metropolis-bold';
    font-size: 15px;
  }

  .contact-icon{
        min-height: 55px;
  }

  .download-main{
      width: 100%;
      margin-top: 60px;
  }

  .download-main ul{
      display: flex;
      align-items: center;;
  }

  .download-main ul li{
         list-style: none;
         padding: 10px 0px;
  }

  .download-main ul li h3{
    font-family: 'metropolis-bold';
       font-size: 14px;
       color: #010101;
       margin: 0px;
       margin-right: 15px;
  }

  .download-main ul li:nth-child(2){
               padding-right: 20px;
               margin-right: 20px;
               border-right: 1px solid #ddd;
  }

  .office-main-wrapper{
        width: 100%;
        background-color: #11143a;
        padding: 180px 0px 0px;
        position: relative;
        background-image: url(../images/office-bottom-bg.png);
        background-repeat: no-repeat;
        background-position: bottom center;
  }

  .office-main-wrapper .ecom-line-section{
      background-color: transparent;
  }

  .office-main-wrapper .container{
        position: relative;
        z-index: 9;
  }

  .smart-office-first{
      padding-bottom: 50px;
  }

  .smart-office-first .second-title{
                   text-align: center;
  }

  .smart-office-first ul{
         display: flex;
         flex-wrap: wrap;
  }

  .smart-office-first ul li{
               background-color: #1b1d54;
               width: 32%;
               box-sizing: border-box;
               padding: 90px 50px 40px;
               border: 1px solid #224a74;
               list-style: none;
               -webkit-border-radius: 50px;
               -moz-border-radius: 50px;
               border-radius: 50px;
               margin-right: 2%;
  }

  .smart-office-first ul li h2{
      font-size: 26px;
      font-family: 'metropolis-bold';
      color: #fff;
      line-height: 30px;
      margin-bottom: 15px;
  }

  .smart-office-first ul li p{
      font-size: 15px;
      line-height: 22px;
      color: #8fc7ea;
      font-family: 'metropolis-regular';
      font-weight: 400;
  }

  .smart-office-first ul li:nth-child(3n){
      margin-right: 0px;
  }

  .office-icon{
        min-height: 72px;
        margin-bottom: 20px;
  }

  .office-bottom-section{
      width: 100%;
      height: auto;
      background-color: #0b0d2d;
  }

  .office-bottom-inside{
      width: 100%;
      height: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
  }

  .office-bottom-image{
       width: 50%;
       height: auto;
  }

  .office-bottom-content{
         width: 45%;
         height: auto;
         padding-left:4%;
  }

  .office-bottom-content .about-more-btn{
    background: linear-gradient(to left,#d5d5d5, #b7b7b7);
  }


  .office-bottom-content .about-more-btn span{
    background-color: #0b0d2d;
  }
  .office-bottom-content .about-more-btn span::after{
    background: #20b994;
  }

  .footer-nav.second{
        width: 54%;
  }

  .footer-nav.second ul:nth-child(3){
    width:60%;
  }

  .footer-nav.second ul{
        width:40%;
        float: left;
  }

  .product-inner-container{
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      position: relative;
  }

  .projects-banner{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; 
}


.section-design-first-image{
    width: 50%;
    text-align: right;
}

.section-design-second-image{
    width: 50%;
    text-align: left;
    margin-top: -360px;
}

.section-design-mobile-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.footer-rights p{
    margin-bottom: 0px;
    color: #fff;
}

/*security*/

.security-bubble-section{
             width: 100%;
             height: auto;
             padding-top: 240px;
             background-color: #111439;
}

.security-bubble-screen{
    position: relative;
    margin: 0 auto;
    width: auto;
    display: table;
}

.security-bubble-screen-inner{
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}

.first-bubble-image{
     width: 200px;
     height: 200px;
     position: absolute;
     top: -14%;
     left: 27%;
     
}

.second-bubble-image{
    width: 290px;
    height: 290px;
    position: absolute;
    top: 14%;
    left: -15%;
    
}

.third-bubble-image{
    width: 240px;
    height: 240px;
    position: absolute;
    bottom: -14%;
    left: 13%;
    
}

.fourth-bubble-image{
    width: 280px;
    height: 280px;
    position: absolute;
    bottom: 24%;
    right: 25%;
}


.fifth-bubble-image{
    width: 260px;
    height: 260px;
    position: absolute;
    top: 8%;
    right: -14%;
}

.six-bubble-image{
    width: 245px;
    height: 245px;
    position: absolute;
    bottom: -12%;
    right: -9%;    
}

.main-bubble{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      background-image: url(../images/bubble-image.png);
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     z-index: 99;
}

.main-bubble h3{
    font-family: 'metropolis-extrabold';
        font-size: 16px;
        line-height: 22px;
        text-transform: uppercase;
        color: #fff;
        width: 100%;
        box-sizing: border-box;
        padding: 0px 15px;
        text-align: center;
        margin-top: 10px;

}

.bubble-inside{
    text-align: center;
}

.security-main-section {
    width: 100%;
    position: relative;
    padding-top: 20px;
    background-color: #111439;
    z-index: 100;
    position: relative;
}

.careers-page-details ul li{
    font-size: 14px;
    color: #111439;
    font-family: 'metropolis-light';
    font-weight: 300;
    position: relative;
    list-style: none;
}

.careers-page-details ul li::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #20b994;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    position: absolute;
    left: -20px;
    top: 4px;
  }

  .careers-page-details  ul li + li {
    margin: 15px 0 0 0;
  }

  .careers-page-details  ul {
    padding: 0 0 0 25px;
  }

  .hme-main-contact-section.fancybox__content{
    width: 100% !important;
    max-width: 600px !important;
    min-height: auto;
  }

  .hme-main-contact-section.fancybox__content h2{
    font-size: 22px;
    color: #000;
    line-height: 26px;
    font-family: 'metropolis-bold';
  } 

  .hme-main-contact-section.fancybox__content h4{
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-family: 'metropolis-light';
  }

  .hme-main-contact-section.fancybox__content .wpcf7-form-control{
    width: 100%;
    padding: 0px 20px;
    border: 1px solid #d9d9d9;
    background-color: transparent;
    height: 50px;
    line-height: 50px;
    color: #000 !important;
    font-size: 15px;
    font-family: 'Gotham-Book';
    font-weight: 400;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
  }

  .hme-main-contact-section.fancybox__content textarea.wpcf7-form-control{
         min-height: 100px;
  }

  .hme-main-contact-section.fancybox__content > .carousel__button.is-close{
    top: 5px !important;
    right: 8px !important;
  }

  .hme-main-contact-section.fancybox__content .carousel__button svg {
    stroke: #000 !important;
    filter: none !important;
  }

  .contact-form-side .wpcf7-not-valid-tip{
      font-size: 12px;
      margin-top: 10px;
  }

  .contact-form-side .wpcf7-response-output{
    padding: 0px !important;
    font-size: 15px;
    font-family: 'metropolis-medium';
    color: #d25353;
    border: none !important;
  }

  .contact-form-side .wpcf7-form.sent .wpcf7-response-output{
    color: #37ac2d;
  }



  .hme-contact-form .wpcf7-response-output{
    padding: 0px !important;
    font-size: 15px;
    font-family: 'metropolis-medium';
    color: #d25353;
    border: none !important;
  }

  .hme-contact-form .wpcf7-form.sent .wpcf7-response-output{
    color: #37ac2d;
  }


  .wpcf7-spinner{
      display: none !important;
  }

  .header.sticky{
      position: fixed;
      top: 0px;
      padding: 10px 0px;
      background-color: #fff;
      box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
-webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
-moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.50);
  }

  .header.sticky .logo {
    width: 70px;
  }

  .header.sticky .logo img{
    filter: invert(1) !important;
  }

  .header.sticky .menu-icon{
      margin-top: 10px;
  }

  .header.sticky .menu-icon .menu-bar span{
    background-color: #000 !important;
  }

  .menu-opn .header.sticky .menu-icon .menu-bar span{
    background-color: #fff !important;
  }

  .menu-opn .header.sticky{
    background-color: transparent;
    top: 30px;
    box-shadow: none;
  }

  .menu-opn .header.sticky .logo img{
    filter: invert(0) !important;
  }

  .menu-opn .header.sticky .logo {
    width: 101px;
  }

  .menu-opn  .header.sticky .menu-icon{
    margin-top: 15px;
}

.page-template-page-blog  .header .menu-icon .menu-bar span{
    background-color: #000 !important;
  }

  .page-template-page-blog  .header .logo img{
    filter: invert(1) !important;
  }

  .hme-main-contact-section.fancybox__content .location-preferred .wpcf7-form-control{
         border: none !important;
         padding: 0px !important;
  }

  .hme-main-contact-section.fancybox__content p{
      margin-bottom: 0px;
  }

  
  .hme-main-contact-section.fancybox__content .location{
    margin-bottom: 10px;
  }

  .smart-office-line{
    margin-top: -178px;
  }

  .view-wrk-btn.service-btn{
      margin-top: 35px;
      margin-left: 10px;
  }

  .what_we_do_list ul li a:hover{
      color: #fff;
  }


  .block-chain-service-main .about-more-btn span{
    background-color: #111439;
    padding: 0px 70px 0px 40px;
    font-size: 13px;
  }



  .block-chain-service-main .about-more-btn span::before {
    content: "";
    width: 20px;
    height: 14px;
    position: absolute;
    z-index: 9;
    right: 40px;
    top: 17px;
    background-image: url(../images/wrk-btn-arw-hover.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }

  .block-chain-service-main .about-more-btn:hover span{
      color: #fff;
  }

  .block-chain-service-main .about-more-btn:hover span::before{
    background-image: url(../images/wrk-btn-arw.png);
  }

  .app-1{
    top: -9%;
left: 6%;
  }

  .app-2{
    top: 14%;
    left: 10%;
  }
  
  .app-3 {
    top: 44%;
    left: -3%;
  }
  
  .app-4 {
  top: 52%;
right: 10%;
  }

  .hme_service-new_section .solutiontitle h2{
      text-transform: uppercase;
  }

 .page-template-page-what-we-do  .banner_section p{
     text-transform: none;
 }

 .main-404-container{
     padding: 100px 0px;
 }

 .main-404-container h1{
    font-size: 38px;
    font-family: 'metropolis-light';
 }

 .main-404-container  h4{
        font-size: 17px;
        font-family: 'metropolis-medium';
        font-weight: 500;
 }

 .main-404-container  ul{
     margin-bottom: 20px;
 }

 .main-404-container  ul li{
    font-size: 15px;
    line-height: 24px;
    font-family: 'metropolis-light';
    color: #333;
    padding-left: 22px;
    list-style: none;
    position: relative;
    margin-bottom: 7px;
 }

 .main-404-container  ul li::after{
    content: "";
width: 7px;
height: 7px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
position: absolute;
left: 4px;
top: 9px;
background-color: #20b994;
 }

 .main-404-container  h3{
    font-size: 22px;
    font-family: 'metropolis-light';
 }


 .contact-form-side li .fld-01::placeholder{
               color: #9e9e9e;
 }

 .footer-rights a:hover{
    color: #289784;
}


/*security*/

.security-bubble-section{
    width: 100%;
    height: auto;
    padding-top: 240px;
    background-color: #111439;
}

.security-bubble-screen{
position: relative;
margin: 0 auto;
width: auto;
display: table;
}

.security-bubble-screen-inner{
position: absolute;
left: 0px;
bottom: 0px;
z-index: 1;
}

.first-bubble-image{
width: 200px;
height: 200px;
position: absolute;
top: -14%;
left: 27%;

}

.second-bubble-image{
width: 290px;
height: 290px;
position: absolute;
top: 14%;
left: -15%;

}

.third-bubble-image{
width: 240px;
height: 240px;
position: absolute;
bottom: -14%;
left: 13%;

}

.fourth-bubble-image{
width: 280px;
height: 280px;
position: absolute;
bottom: 24%;
right: 25%;
}


.fifth-bubble-image{
width: 260px;
height: 260px;
position: absolute;
top: 8%;
right: -14%;
}

.six-bubble-image{
width: 245px;
height: 245px;
position: absolute;
bottom: -12%;
right: -9%;    
}

.main-bubble{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
background-image: url(../images/bubble-image.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
z-index: 99;
}

.main-bubble h3{
font-family: 'metropolis-extrabold';
font-size: 16px;
line-height: 22px;
text-transform: uppercase;
color: #fff;
width: 100%;
box-sizing: border-box;
padding: 0px 15px;
text-align: center;
margin-top: 10px;

}

.bubble-inside{
text-align: center;
}

.security-main-section {
width: 100%;
position: relative;
padding-top: 20px;
background-color: #111439;
z-index: 100;
position: relative;
}

.search-main-wrapper{
    padding: 80px 0px;
}

.navigation.pagination{
      position: static;
      border: none;
}

.navigation.pagination .page-numbers{
       width: 100%;
       height: 100%;
       display: flex;
       justify-content: center;
       align-items: center;
       color: #000;
}

.navigation.pagination .page-numbers.current{
    background-color:#289784;
     color: #fff;
     -webkit-border-radius:100%;
     -moz-border-radius:100%;
     border-radius:100%;
}

.search-main-wrapper .page-title{
            font-size: 28px;
            line-height: 30px;
            color: #000;
            margin-bottom: 40px;
}

.search-main-wrapper h2.entry-title{
    font-size: 20px;
    line-height: 25px;
    color: #000;
    margin-bottom: 6px;
    font-family: 'metropolis-medium';
}

.search-main-wrapper h2.entry-title a{
    color: #333;
}

.search-main-wrapper p{
    font-size: 15px;
    line-height: 24px;
    font-family: 'metropolis-light';
    color: #333;
}

.search-main-wrapper .entry-content{
      margin-bottom: 40px;
}


.search-main-wrapper .more-link {
    height: 44px;
line-height: 42px;
display: inline-block;
font-family: 'Gotham';
font-weight: 500;
text-align: left;
background: #20b994;
border-radius: 8px;
color: #fff;
display: inline-block;
font-size: 20px;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
font-size: 14px;
margin-top: 10px;
position: relative;
overflow: hidden;
padding: 1px;
padding: 0px 50px 0px 30px;
transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
  }


  .search-main-wrapper .more-link:hover{
        background-color: #000;
  }

  .search-main-wrapper .more-link::before {
    content: "";
width: 20px;
height: 14px;
position: absolute;
z-index: 9;
right: 23px;
top: 15px;
background-image: url(../images/wrk-btn-arw.png);
background-repeat: no-repeat;
background-position: center;
transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
  }

  .security-list-main-wrapper{
         width: 100%;
         height: auto;
  }

  .web-fourth-center.security-center{
         max-width: 830px;
  }

  .security-list-main-wrapper ul{
         display: flex;
         flex-wrap: wrap;
  }

  .security-main-section .container{
      position: relative;
      z-index: 99;
  }

  .web-development-fourth-center.security{
      display: block;
      text-align: left;
  }

  .web-fourth-center.security{
           display: block;
           max-width: 870px;
           margin: 0 auto;
           text-align: center;
  }

  .security-list-main-wrapper{
      margin-top: 100px;
      width: 100%;
  }

  .security-list-main-wrapper ul{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
  }

  .security-list-main-wrapper ul li{
             width: 31%;
             box-sizing: border-box;
             padding: 70px 50px 70px;
             border: 1px solid #2e617b;
             border-radius: 30px;
             list-style: none;
             text-align: left;
             margin-right: 2%;
             margin-bottom: 25px;
  }

  .security-list-main-wrapper ul li:nth-child(3n){
          margin-right: 0px;
  }

  .security-list-main-wrapper ul li h3{
      font-size: 27px;
      line-height: 30px;
      color: #fff;
      font-family: 'metropolis-bold';
  }

  .security-list-main-wrapper ul li p{
      color: #8fc7ea;
      font-size: 14px;
      line-height: 23px;
  }

  .security-icon{
      min-height: 75px;
      margin-bottom: 10px;
  }

  .security-second-container{
      width: 100%;
      display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 75px 0px 100px;
  }

  .main-titles-ecurity-second{
           width: 50%;
           padding-right: 7%;
           box-sizing: border-box;
           text-align: left;
  }
  
  .main-content-ecurity-second{
    width: 50%;
  }

  .main-content-ecurity-second p{
      font-size: 15px;
      line-height: 24px;
      color: #9a9a9a;
      margin-bottom: 20px;
  }

  .security-third-section{
        width: 100%;
        padding: 120px 0px;
        background-color: #111439;
        background-image: url(../images/security-line.png);
        background-repeat: no-repeat;
        background-position: top right;
        position: relative;
  }

  .security-third-section .container{
        position: relative;
        z-index: 99;
  }

  .security-third-inner{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
  }

  .security-third-content{
      width: 60%;
      padding-right: 10%;
      box-sizing: border-box;
  }

  .security-third-content p{
               font-size: 15px;
               line-height: 24px;
               color: #9a9a9a;
               font-family: 'metropolis-light';
  }

  .security-third-image{
        width: 40%;
  }

  .security-client-section{
    background-color: #111439;
  }

  .security-client-section h4{
      font-size: 15px;
      color: #9a9a9a;
      line-height: 24px;
      text-align: center;
  }

  .security-client-section .hme-clients-list{
    margin-top: 15px;
  }

  .security-faq-section {
      padding: 80px;
      padding-bottom: 140px;
      background-color: #111439;
     position: relative;
  }

  .security-faq-section h2{
      font-size: 45px;
      line-height: 50px;
      color: #fff;
      font-family: 'metropolis-bold';
  }

  .security-faq-accordian{
         width: 100%;
         height: auto;
  }


  .accordion-container{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    margin: 10px auto;
  }
  .accordion-container > h2{
    text-align: center;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  .set{
    position: relative;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 1px solid #474a73;
    margin-bottom: 20px;
    padding: 20px 30px 20px 70px;
    box-sizing: border-box;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
  .set > a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-family: 'metropolis-bold';
    -webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    transition:all 0.2s linear;
    cursor: pointer;
    position: relative;
   
  }
  .set > a i{
    position: absolute;
    left: -35px;
    margin-top: 5px;
  }
  .set > a.active{
    color: #fff;
  }
  .content{
    background-color: transparent;
    display:none;
    padding-top: 20px;
  }
  .content p{
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-family: 'metropolis-light';
  }

  .security-faq-section .web-bottom-glow{
       left: inherit;
       right: 0px;
       bottom: -100px;
       -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
       transform: rotate(270deg);
  }


  .security-work-section{
      padding: 30px 0px 140px;
      background-color: #111439;
  }

  .security-work-inner{
         width: 100%;
         max-width: 740px;
         height: auto;
         position: relative;
         margin: 0 auto;
         margin-top: 55px;
  }

  .security-work-section .main-title{
         text-align: center;
  }

  .security-shedule-first{
    position: absolute;
    left: -24%;
    top: 1%;
    padding-bottom: 100px;
  }

  .security-shedule-second{
    position: absolute;
    left: 0%;
    bottom: 22%;
    padding-top: 100px;
  }

  .security-shedule-third {
    position: absolute;
    left: 64%;
    top: 10%;
  }

  .security-shedule-fourth{
    position: absolute;
    left: 64%;
    top: 10%;
    padding-top: 230px;
  }

  .security-shedule-fourth .security-shedule-icon{
    right: 60px;
    top: 0;
    margin: auto;
    position: absolute;
  }

  .security-shedule-third .security-shedule-icon{
    left: -127px;
    top: 16%;
    margin: auto;
    position: absolute;
  }

  .security-shedule-second .security-shedule-icon{
    left: 0px;
    top: 0px;
    right: 0px;
    margin: auto;
    position: absolute;
  }

  
  .security-shedule-first .security-shedule-icon{
    left: 0px;
    bottom: 0px;
    right: 0px;
    margin: auto;
    position: absolute;
  }

  .security-shedule-icon{
         width: 90px;
         height: 90px;
         background-color: #289784;
         -webkit-border-radius: 100%;
         -moz-border-radius: 100%;
         border-radius: 100%;
  }

  .security-work-main{
         width: 100%;
         max-width: 300px;

  }

  .security-work-main h3{
      line-height: 30px;
      color: #289784;
      font-size: 18px;
      font-family: 'metropolis-bold';
      margin-bottom: 10px;
  }

  .security-work-main p{
      color: #9a9a9a;
      font-size: 15px;
      line-height: 24px;
  }