html{
    overflow-x: hidden;  
      scroll-behavior: smooth;

}

body{
    margin: 0; 
    overflow-x: hidden;
    font-family: "Inter", sans-serif !important;    
    background-color: #fff;
}

/* width */
::-webkit-scrollbar {
 width:3px;
}

/* Track */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 0px #255bcc; 
 border-radius:0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
 background: #255bcc;
 border-radius:0px;
}



a{
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}
a:hover {
       text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}
button{
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}


/* Load Settings */


.loader {
  height: 3px;
  width: 250px;
  display: block;
    top: 43%;
  --c:no-repeat linear-gradient(#1d76bb 0 0);
  background: var(--c),var(--c),#ececec;
  background-size: 60% 100%;
  animation: l16 3s infinite;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    margin-right: auto;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}


.loaded .loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


#content {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 80%;
    max-width: 978px;
}

.entry-header {
  display:block;
  color: white;
  text-align: center;
  margin:0 auto 50px auto;
  width:978px;
  position: relative;
  z-index: 10001;
}

#demo-content {
    padding-top: 100px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f2f2f2;
  
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index:1001;   
}

    #loader:before {
    content:"";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f2f2f2;
    
      -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  }

      #loader:after {
    content:"";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f2f2f2;
    
     -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
               animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  }
  
      @-webkit-keyframes spin { 
           0%   { 
           -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(0deg);  /* IE 9 */
           transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }

            100% { 
           -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(360deg);  /* IE 9 */
           transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

         }
        }

        @keyframes spin {
           0%   { 
           -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(0deg);  /* IE 9 */
           transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */

       }

           100% { 
           -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(360deg);  /* IE 9 */
           transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

       }
    }
  
      #loader-wrapper .loader-section {
        position:fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #fff;
      z-index: 1000;
      
    }
    
    #loader-wrapper .loader-section.section-left {
      left:0;
    }
    
    #loader-wrapper .loader-section.section-right {
      right:0;
    }
    
    /* Loaded Styles */
    .loaded #loader-wrapper .loader-section.section-left {
           -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateX(-100%);  /* IE 9 */
                   transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }
    
    .loaded #loader-wrapper .loader-section.section-right {
           -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateX(100%);  /* IE 9 */
                   transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */ 

            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }   
    .loaded #loader {
      opacity: 0;
      
            -webkit-transition: all 0.3s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */     
    }
    .loaded #loader-wrapper {
      visibility: hidden;
           -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateY(-100%);  /* IE 9 */
                   transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */      
      
            -webkit-transition: all 0.3s 1s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.3s 1s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }

/* Copy-right by ARiyou2000 in May2020*/






/* home-page */

.logo-white{
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.active .logo-white{
  -webkit-filter: initial;
    filter: initial;
}


.active .mnu-arrow{
    -webkit-filter: initial;
    filter: initial;
}

.active .nav a{
  color:black !important;
}


#vdsl{
  float:left;
  width:100%;
  position: absolute;
  z-index: 1;
}

.pr12{
	padding-right: 12px !important;
}


div.wrapper {
  width: 100;
  height: 100vh;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  /* background: #ff4040; */
}
div.wrapper div.centerElement {
  width: 100%;
  height: 400px;
  position: relative;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* background: #6f81d6; */
}
div.wrapper div.centerElement div.intro-sld {
 position: relative;
    top: 54%;
    -webkit-transform: translateY(-50%);
    padding: 80px;
    text-align: center;
    padding-top: 0;
}

.intro-sld{
  float:left;
  width:100%;
  text-align:center;
}

.owl-banner{
  float:left;
  width:100%;
  font-size:67px;
  color:white;
  font-weight:300;
  line-height: 85px;
}

.owl-banner span{
    font-size: 59px;
    font-weight: 500;
    line-height: 63px;
    /* width: 667px; */
    float: left;
    padding-left: 180px;
    padding-right: 180px;
}


.mnu-arrow{
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.mnu-arrow-pg{
		
}

#ply-icon{
	float: right;
    width: auto;
    padding-right: 32px;
    position: relative;
    margin-top: -87px;
    z-index: 11;
}


#ply-icon img{
	width:45px;
}



.shining{
      position: relative;
    overflow: hidden;
}
.shining:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.shining:before {
    position: absolute;
    top: 0;
    left: -92%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 31%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}





#header{
  float:left;
  width:100%;
}

.logo{
  float:left;
}

.logo img{
  float:left;
  width:290px;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%; 
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
  background: white;
    padding-top: 15px;
    padding-bottom: 15px;
}

.active {
  background-color: white;

}

.test{
  color:red;
}

.align-rgt{
  float:right;
}

.rgt-hvr{
    float: left;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding-right:18px;
    margin-right: 18px;
    border-right:solid 1px #fff;
}

.rgt-hvr:hover{
  color:#e9b2f4;
}

.active .rgt-hvr{
  color:black
}

.active .rgt-hvr:hover{
  color:#b521d3;
}


.active .header_menu_area > ul > li > a{
  color:black !important; font-weight: 400;
}

.active .main-menu-sec{ border-top:solid 1px rgb(0 0 0 / 5%); padding-bottom: 14px; border-bottom: solid 1px rgb(0 0 0 / 6%);}






.cntr30{
  padding-right:32px;
  padding-left:32px;
}


.prm5{
  padding-right:5px !important;
}


#banner{
  float:left;
  width:100%;
  padding-top:25px;
  padding-bottom:25px;
  background-color:black;
  height:450px;
}

#panel-intro{
  float:left;
  width:100%;
  padding-top:45px;
  padding-bottom:35px;
}

#panel-intro h1{
    font-size: 48px;
    color: #000000;
    font-weight: 500;
    float: left;
    width: 100%;
    line-height: 60px;
    padding-bottom:30px;
}

#panel-intro h1 span{
  color:#0d6ab2;
}

#panel-intro p{
  float: left;
    width: 100%;
    padding-left: 278px;
    padding-right: 133px;
    font-size: 16px;
    color: #000000;
    line-height: 29px;
}

.technology{
  float:left;
  width:100%;
  padding-left:98px;
  padding-right:98px;
  padding-top:45px;
}

.owl-tech{
  float:left;
  width:100%;
}

.owl-tech .owl-next img {width: 40px;}
.owl-tech .owl-prev img {width: 40px;}
.owl-tech .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-75px; float:left;}
.owl-tech .owl-next{ float:right; position:relative; right:-75px; top:-75px;}

.tech-hvr{
  filter: grayscale(100%)
}

.tech-hvr:hover{
  filter: grayscale(0%)
}

.tech-hvr img{
  width:280px;
}

#panel-core{
  float:left;
  width:100%;
  background: #E4F0FE;
background: linear-gradient(0deg,rgba(228, 240, 254, 1) 0%, rgba(255, 255, 255, 1) 100%);
padding-top: 45px;
    padding-bottom: 35px;
}

#panel-core h2{
    font-size:40px;
    color: #000000;
    font-weight: 500;
    float: left;
    width: 100%;
    padding-bottom:45px;
}

.exprtsection{
  float:left;
  width:100%;
  padding-top:52px;
  padding-bottom:52px;
  border-top:solid 1px #fff;
}



.contc h5{
    float: left;
    /* width: 100%; */
    padding-top: 8px;
    color: #074c63;
    font-size: 15px;
    background: #f2f2f2;
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 6px;
    margin-bottom: 9px;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.contc:hover h5{
  color:white;
  background: rgb(12 79 151);
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}


.digital-transformation{
  float:left;
  width:100%;
  color:black;
  text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.digital-transformation h3{
  float:left !important;
  width:100% !important;
  font-size:25px !important;
  font-weight:bold !important;
  text-transform:uppercase;
  text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.digital-transformation p{
  float:left;
  width:100%;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  padding-top:18px;
  padding-bottom:18px;
}

.left{
  float:left;
}

.digital-transformation:hover h3{
  color:#183fd7;
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.discover-nav{
  color:#072a9b;
  font-weight:600;
  font-size:15px;
}

.discover-nav:hover{
  padding-left:8px;
}

.discover-nav img{
  width:20px;
  margin-left:8px;
}

.wht-rd{
  float:left;
  width:62px;
  height:62px;
  background-color:white;
  border-radius:50px;
   text-decoration: none;
   text-align:center;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.digital-transformation:hover .wht-rd{
  margin-top:8px;
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.wht-rd img{
   width: 22px;
    margin-top: 19px;
}

.vbg{
  margin-left: auto;
  margin-right: auto;
  width:114px;
  height:116px;
  border-radius:5px;
  background:#4166f4;
  margin-top:25px;
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  text-align: center;
  padding-top:22px;
}

.vbg img{
  width:65px;
  filter: brightness(0) invert(1);
}

.digital-transformation:hover .vbg{
  background:white;
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.digital-transformation:hover .vbg img{
  filter: brightness(1) invert(0);
    opacity: 0.7;
}

#panel-innovation{
  float:left;
  width:100%;
  padding-top:65px;
  padding-bottom:35px;
}

#panel-innovation h2{
    font-size: 40px;
    color: #000000;
    font-weight: 500;
    float: left;
    width: 100%;
    color:black;
    padding-bottom: 45px;
}

#panel-innovation h2 span{
  color: #0d6ab2;
}

.manufacture{
  float:left;
  width:100%;
  text-decoration: none;
  margin-bottom:40px;
text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.manufacture:hover .manufacture-details{
  opacity: 0.8;
  text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.manufacture img{
  width:100%;
}

.manufacture-details{
  float:left;
  width:100%;
  padding-left:13px;
  padding-right:13px;
  color:white;
  position: relative;
  margin-top: -140px;
  z-index: 111;
  /* padding-bottom: 10px; */
}

.manufacture-details h3{
  float:left;
  width:100%;
  color:white;
  font-size:22px;
  font-weight:600;

}

.manufacture-details p{
  float:left;
  width:100%;
  color:white;
  font-size: 16px;
  margin-bottom: 3px;
}


.arrow-sz{
  width: 26px !important;
  filter: brightness(0) invert(1);
  margin-top:10px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.manufacture:hover .arrow-sz {
    filter: brightness(0) invert(1);
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    transform: rotate(-45deg);
}


#team-panel{
  float:left;
  width:100%;
  padding-top:30px;
 background: url(../images/bgone.png);
 background-size:cover;
}

#team-panel h2{
  float: left;
    width: 100%;
    color: white;
    font-size: 41px;
    line-height: 54px;
    padding-bottom: 55px;
    padding-top: 50px;
    font-weight: 500;
}

.team-imgs{
  float:left;
  width:100%;
  text-align:center;
}

.tlp{
  float:left;
  width:100%;
  margin-bottom: 33px;
}

.tlpb{
  float:left;
  border-radius:50%;
  width:62px;
  height:62px;
  background-color:#eae9ff;
  text-align: center;
}

.tlpb img{
  width: 37px;
  padding-top: 12px;
}

.tlp p{
    color: white;
    font-size: 16px;
    line-height: 28px;
    padding-left: 82px;
    padding-top: 2px;
}

.pt15{
  padding-top:15px !important;
}


#panel-maps{
  float:left;
  width:100%;
  padding-top:55px;
  padding-bottom:55px;
   background: #E4F0FE;
  background: linear-gradient(180deg,rgba(228, 240, 254, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#panel-maps h2{
  float: left;
    width: 100%;
    font-size: 42px;
    color: #000000;
    font-weight: 500;
    line-height: 53px;
    margin-bottom: 54px;
}

.boxsix{
  float:left;
  width:100%;
  background-color:white;
  padding-left:19px;
  padding-right:19px;
  padding-top:32px;
  padding-bottom:20px;
  margin-bottom:40px;
}

.boxsix img{
  width:80px;
}


.boxsix:hover img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}



.count-cont{

}

.count-cont h4{
  float:left;
  width:100%;
color: #3c3c3d;
    font-size: 38px;
    font-weight: 600;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
  color: #3c3c3d;
    font-size: 38px;
    font-weight: 600;
}



.grey-bg{
  float:left;
  width:100%;
  background:#f7f7f7;
  float:left;
  padding-left:22px;
  padding-right:22px;
  padding-top:28px;
  margin-top:28px;
   transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.grey-bg h3{
  float:left;
  width:100%;
  color:black;
  font-size:19px;
  font-weight:600;
}


.grey-bg p{
    font-size: 16px;
    color: black;
    float: left;
    padding-top: 4px;
    width: 100%;
    line-height: 24px;
    margin-bottom: 25px;
}

.boxsix:hover .grey-bg{
  background:#ecf5ff;
   transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.map-list{
  float:left;
  width:100%;
  margin-top:25px;
}


.map-container {
  padding: 3.2rem 0.8rem;
  position: relative;
  display: inline-block;
  padding-top:0px;

}
.map-container img {
  width: 100%;
}
.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #2245d1;
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgb(27 27 203 / 40%);
  animation: pulse 3s infinite;
}
.map-container .point:hover {
  /* animation: none; */
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.map-container .venezuela {
  top: 54%;
  left: 24%;
}
.map-container .brasil {
  top: 64%;
  left: 28%;
}
.map-container .argentina {
  top: 77%;
  left: 27%;
}
.map-container .colombia {
  top: 55%;
  left: 21%;
}
.map-container .panama {
  top: 51%;
  left: 18%;
}
.map-container .mexico {
  top: 38%;
  left: 12%;
}
.map-container .usa {
  top: 26%;
  left: 17%;
}
.map-container .arabia {
  top: 40%;
  left: 53%;
}
.map-container .turquia {
  top: 31%;
  left: 57%;
}
.map-container .rusia {
  top: 16%;
  left: 67%;
}
.map-container .china {
  top: 40%;
  left: 72%;
}
.map-container .japon {
  top: 34%;
  left: 86%;
}
.map-container .australia {
  top: 72%;
  left: 86%;
}



.counters-list{
  float:left;
  width:100%;
  padding-top:35px;
}

.counters-list p{
  float:left;
  width:100%;
  font-size: 15px;
  color: #000000;
  line-height: 25px;
      margin-bottom: 0px;
}

.counters-list h4{
  float:left;
  width:100%;
  color:#3c3c3d;
  font-size:38px;
  font-weight:600;
}

.count-bor{
  float:left;
  width:100%;
  border-right:solid 1px #edeeef;
  padding-left: 50px;
}


#why-us{
  float:left;
  width:100%;
  padding-top:295px;
  padding-bottom:68px;
  background: url(../images/whyus-bg.png);
  background-size:cover;
  background-size: cover;
  background-attachment: fixed;
}

.bgw{
  float:left;
  width:100%;
  background:white;
  padding:25px;
}

.bgw h2{
  float:left;
  width:100%;
  font-size:15px;
  color:#1055a2;
  text-decoration:underline;
}

.owl-why{
  width:100%;
  float:left;
}

.owl-why h3{
  float:left;
  width:100%;
  color:#000000;
  font-size: 37px;
  font-weight:300;
  margin-top: 60px;
}

.owl-why h3 span{
  background:#dae9f9;
  margin-top: 5px;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.transp{
  float:left;
  width:100%;
}

.transp p{
  float:left;
  color:#5b5959;
  font-size:15px;
  margin-bottom:0px;
  padding-top: 11px;
}

.sch-call{
  float:right;
  width:145px;
  height:40px;
  text-align:center;
  font-weight:500;
  font-size:14px;
  color:white;
  background:#2245d1;
  line-height: 40px;
}

.sch-call:hover{
  background:black;
}

.zlogo{
    float: right;
    width: 40px;
    margin-top: -38px;
}

#blog-sections{
  float:left;
  width:100%;
  background:#2245d1;
  padding-top:60px;
  padding-bottom:0px;
}

#blog-sections h2{
float: left;
    width: 100%;
    font-size: 42px;
    color: white;
    font-weight: 500;
    line-height: 52px;
    margin-bottom:45px;
}

.blgbg{
  float:left;
  width:100%;
  background:#edf1f3;
  padding-left:30px;
  padding-right:30px;
  padding-top:50px;
}

.blgbg h3{
    float: left;
    width: 100%;
    font-size: 15px;
    color: #1055a2;
    text-decoration: underline;
    text-transform:uppercase;
}

.blgbg h4{
    float: left;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    color: #000;
    padding-right: 60px;
    line-height: 34px;
    padding-top: 18px;
    padding-bottom: 90px;
}

.blgbg h5{
  float:right;
  color:#38464d;
  font-size:14px;
  padding-bottom: 29px;
}

.blgig{
  float:left;
  width:100%;
  margin-top: -55px;
}

.blgig img{
  width:100%;
}

.whtd-rd{
     float: left;
    width: 55px;
    height: 55px;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    position: relative;
    top: -29px;
    left: 30px;
}

.whtd-rd img {
    width: 22px;
    margin-top: 19px;
}

.whtd-rd:hover{
  background-color:aliceblue;
}

.whtd-rd:hover .whtd-rd img{
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.bl2{
  background:#1a3293;
}


.bl2 h4{
  color:white;
  padding-right: 0;
  padding-bottom:65px;
}


.blgig2{
  float:left;
  width:100%;
}

.blgig2 img{
  width:100%;
}

.whtd-rd2{
     float: right;
     width: 55px;
     height: 55px;
     background-color: white;
     border-radius: 50px;
     text-decoration: none;
     text-align: center;
     transition: all ease-in-out .5s;
     -webkit-transition: all ease-in-out .5s;
     -o-transition: all ease-in-out .5s;
     -moz-transition: all ease-in-out .5s;
     position: relative;
     top: -73px;
     right: 30px;
}

.whtd-rd2 img {
    width: 22px;
    margin-top: 16px;
}

.whtd-rd3{
     float: left;
     width: 55px;
     height: 55px;
     background-color: white;
     border-radius: 50px;
     text-decoration: none;
     text-align: center;
     transition: all ease-in-out .5s;
     -webkit-transition: all ease-in-out .5s;
     -o-transition: all ease-in-out .5s;
     -moz-transition: all ease-in-out .5s;
     position: relative;
     top: -73px;
     left: 30px;
}

.whtd-rd3 img {
    width: 22px;
    margin-top: 16px;
}

.whtd-rd3:hover{
  background-color: aliceblue;
}


.whtd-rd2:hover{
  background-color: aliceblue;
}

.browntop{
  margin-top:-54px;
      background: #c57e04;
}


#case-studies{
  float:left;
  width:100%;
  background:#fafafa;
  padding-top:50px;
  padding-bottom:50px;
}


#case-studies h2 {
    float: left;
    width: 100%;
    font-size: 41px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 43px;
}

#case-studies span{
  float:left;
  width:100%;
  text-transform: none;
  color: #323337;
  font-size: 14px;
  padding-bottom: 10px;
}

.owl-cstudies{
  float:left;
  width:100%;
}


.bgc{
  float:left;
  width:100%;
  background:white;
}

.bgc img{
  width:100%;
}

.contc{
  float:left;
  width:100%;
  padding-top:25px;
  padding-left:25px;
  padding-right:25px;
  padding-bottom: 30px;
}

.contc h3{
  float:left;
  width:100%;
  font-size:20px;
  color:#000000;
  font-weight:600;
  line-height: 27px;
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.contc p{
    float: left;
    width: 100%;
    color: #3d3f40;
    font-size: 16px;
    line-height: 25px;
    padding-top: 4px;
}

.explore{
  float:left;
  color:#2245d1;
  font-size:15px;
  text-decoration:underline;
  font-weight:500;
}

.explore:hover{
  color:black;text-decoration:underline;
}

.contc:hover h3{
  color:#2245d1;
}

#customer-base{
  float:left;
  width:100%;
  padding-top:45px;
  background:white;
  padding-bottom: 40px;
}

#customer-base h2 {
    float: left;
    width: 100%;
    font-size: 42px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom:35px;
}

#customer-base h2  span{
      color: #0d6ab2;
      text-transform: none;
      font-size: 40px;
      padding-bottom: 0px;
}

#customer-base span{
  float:left;
  width:100%;
  text-transform:uppercase;
  color:#2245d1;
  font-size:15px;
  padding-bottom:11px;
}

.owl-custe{
  float:left;
  width:100%;
}

.owl-custe img{
  width:100%;
}


.owl-cstudies .owl-next img {width: 40px;}
.owl-cstudies .owl-prev img {width: 40px;}
.owl-cstudies .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-265px; float:left;}
.owl-cstudies .owl-next{ float:right; position:relative; right:-75px; top:-265px;}



#footer{
  float:left;
  width:100%;
  background:#f1f7fe;
  padding-top:65px;
  padding-bottom: 15px;
}

.footer-logo{
  float:left;
  width:100%;
}

.footer-logo img{
  width:250px;
}

#footer h2{
 	float: left;
    width: 100%;
    color: black;
    font-size: 39px;
    font-weight: 500;
    padding-top: 30px;
    line-height: 52px;
    padding-bottom: 8px;
}

#footer p{
  float:left;
  width:100%;
    color:#1c1919;
    font-size: 15px;
    margin-bottom: 0px;
    padding-top:0px;
    padding-bottom: 20px;
}


.sch-call-ftr{
  float:left;
  width:145px;
  height:40px;
  text-align:center;
  font-weight:500;
  font-size:14px;
  color:white;
  background:#2245d1;
  line-height: 40px;
}

.sch-call-ftr:hover{
  background:black;
}

.contact-titel{
    float: left;
    width: 100%;
    color: #2b2f3d;
    font-size: 20px;
    font-weight: 600;
    padding-top: 80px;
    padding-bottom:27px;
}

.ftr50{
  float:left;
  width:50%;
}

.ftr50 h3{
  float:left;
  width:100%;
  font-weight:600;
  color:#40464d;
  font-size:16px;
}

.tel{
  float:left;
  width:100%;
  color:#505154;
  font-size:16px;
}

.tel:hover{
  color:#2245d1;
}

.pm{
  float:left;
  width:100%;
  margin-bottom:35px;
}

.pm p{
 	float: left !important;
    width: 100% !important;
    color: #505154 !important;
    font-size: 16px !important;
    line-height: 28px;
}

#footer-menu{
  float:left;
  width:100%;
  background:white;
  padding-top:45px;
  padding-bottom:45px;
  background:white;
  text-align:center;
  border-bottom: solid 1px #e8e8e8;
}

.fs{
  color:#0f0a0a;
  font-size:14px;
  padding-right:50px;
  font-weight: 500;
}

.fs:hover{
  color:#2245d1;
}


#copyright{
  float:left;
  width:100%;
  padding-top:35px;
  padding-bottom:35px;
}

.cpr{
  float:left;
  font-weight:500;
  color:#252525;
  font-size:14px;
  padding-top: 9px;
}

.social{
  float:right;
}

.msd{
  float:left;
  width:35px;
  height:37px;
  text-align:center;
  border-radius:6px;
  margin-left:10px;
  background:#1f2b38;
}

.msd:hover{
  background:#2245d1;
}

.msd img{
  width: 18px;
    filter: brightness(0) invert(1);
    padding-top: 9px;
}


#video-section{
  float:left;
  width:100%;
  height:100vh;
  background-color:#010e26;
  float: left;
  width: 100%;
  height: 85vh;
  background-size: cover;
  background-position: 50% 50%;
}

#video-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(0 0 0 / 63%);
    opacity: 0.9;
     height: 85vh;
}

#myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    float: left;
    width: 100%;
    margin-top: 0px;
    /* background: red; */
    height: 85vh;
    width: 100% !important;
    object-fit: cover;
    width: 100vw;
}

#pagebnr{
  float:left;
  width:100%;
  background: url(../images/pagebnr.png);
  padding-top:85px;
  padding-bottom:85px;
  background-size:cover;
      margin-top: 95px;
}

#pagebnr h1{
  float:left;
  width:100%;
  color:#ffffff;
  font-size:44px;
  font-weight:500;
}

#pagebnr p{
    float: left;
    width: 100%;
    font-size: 14px;
    color: #ffffff;
    font-weight: normal;
    text-align: end;
    padding-top: 60px;
}

#pagebnr span{
  font-weight:500;
}

#pagebnr strong{
  font-weight:normal;
  padding-left:10px;
  padding-right:10px;
}

#desection{
  float: left;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 35px;
}

#desection h2{
  font-size: 45px;
    color: #000000;
    font-weight: 600;
    float: left;
    width: 100%;
    text-align: center;
}


#desection h3{
  float: left;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    padding-top: 9px;
    padding-left: 150px;
    padding-right: 150px;
    text-align: center;
    line-height: 34px;
}

#desection p{
  float:left;
  width:100%;
  font-size:16px;
  color:#000000;
  line-height:30px;
  margin-top: 30px;
}

#desection p img{
  float:right;
  margin-left:40px;
  margin-top: -35px;
}


#subservice{
  float:left;
  width:100%;
  background:#f1f7ff;
  padding-top:50px;
  padding-bottom:50px;
}

#subservice span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-size: 15px;
    padding-bottom: 11px;
}

#subservice  h2 {
    float: left;
    width: 100%;
    font-size: 41px;
    color: #000000;
    font-weight: 500;
    line-height: 51px;
    margin-bottom: 50px;
}

.subsbg{
  float:left;
  width:100%;
  background:white;
  padding-right: 75px;
  margin-bottom:45px;
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.subsbg h3{
  color:#2d0fb7;
  font-size:25px;
  font-weight:600;
  padding-top:34px;
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.subsbg:hover h3{
   color:#1f2b38;
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.subsbg img{
  float:left;
  margin-right:45px;
}

.subsbg p{
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  padding-top: 9px;
}

.sbnav{
  float:left;
  width:145px;
  height:45px;
  margin-top: 2px;
  text-align:center;
  font-weight:500;
  font-size:14px;
  color:white;
  background:#1f2b38;
  line-height: 42px;
}

.sbnav:hover{
  background:#2245d1 ;
}

#case-studiess{
  float:left;
  width:100%;
  padding-top:40px;
  padding-bottom:40px;
}

#case-studiess span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-size: 15px;
    padding-bottom: 11px;
    font-weight:500;
}

#case-studiess  h2 {
    float: left;
    width: 100%;
    font-size: 41px;
    color: #000000;
    font-weight: 500;
    line-height: 51px;
    margin-bottom: 50px;
}

.owl-cst{
  float:left;
  width:100%;
}

.owl-cst .owl-next img {width: 40px;}
.owl-cst .owl-prev img {width: 40px;}
.owl-cst .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-365px; float:left;}
.owl-cst .owl-next{ float:right; position:relative; right:-75px; top:-365px;}

.owl-cst h3{
  float:left;
  width:100%;
  font-size:23px;
  font-weight:500;
  color:#000000;
  padding-top:22px;
  padding-bottom:9px;
  padding-right:90px;
  line-height: 33px;
}

.pl60{
	padding-left:60px;
}

.published-sec{
  float:left;
  width:100%;
  color:#2245d1;
  font-size:15px;
  font-weight:400;
}

.published-sec strong{
  color:#000000;
  padding-left:14px; font-weight:400;
}



.csnav{
  float:left;
  width:145px;
  height:45px;
  margin-top: 2px;
  text-align:center;
  font-weight:500;
  font-size:14px;
  color:white;
  background:#2245d1 ;
  line-height: 42px;
  margin-top: 23px;
}

.csnav:hover{
  background:#1f2b38; 
}

.csr{
  float:left;
  width:100%;
}


#gtn{
  float:left;
  width:100%;
     padding-top: 70px;
    padding-bottom: 60px;
  background: url(../images/cst.png);
    background-size: cover;
  
}
 
#gtn span{
    float: left;
    width: 100%;
    text-transform: uppercase;
    color:#bbdafc;
    font-size: 15px;
    padding-bottom: 11px;
    font-weight:500;
} 

#gtn h2 {
    float: left;
    width: 100%;
    font-size: 41px;
    color: white;
    font-weight: 500;
    line-height: 49px;
    margin-bottom: 17px;
}

#gtn p{
  float: left;
    width: 100%;
    color: #e8e8e8;
    font-size: 16px;
    line-height: 29px;
}

.gmt{
  margin-top:8px;
  margin-bottom:25px;
}

.wh-bg{
  background:white !important;
}

.gr-bg{
  background:#f2f2f2;
}

.pb25{
  padding-bottom:25px !important;
}


#aboutzoft{
  float:left;
  width:100%;
  padding-top: 70px;
  padding-bottom: 75px;
}

.cntr-abt{
  float:left;
  width:100%;
  padding-left:150px;
  padding-right:150px;
}

.cntr-abt h2 {
    font-size: 45px;
    color: #000000;
    font-weight: 600;
    float: left;
    width: 100%;
    text-align: left;
}

.cntr-abt h3 {
    float: left;
    width: 100%;
    font-size: 29px;
    font-weight: 500;
    color: #000000;
    padding-top: 12px;
    text-align: left;
    line-height: 43px;
    padding-bottom: 12px;
}

.cntr-abt p{
    float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 32px;
    margin-top: 5px;
}

.thumbvd{
  float:left;
  width:100%;
  text-align:center;
  margin-top: -40px; 
}

.thumbvd img{
  width:100%;
}

.thumbvd h4{
  float:left;
  width:100%;
  color:white;
  font-size:20px;
  text-align:right;
  font-weight:normal;
  padding-right:20px;
  padding-left:20px;
  line-height: 28px;
  position: relative;
    margin-top: -85px;
}

.thumbvd h4 span{
  font-weight:700;
}

.thumbvd h5{
  float:left;
  width:100%;
  text-align:center;
  position: relative;
  bottom: -230px;
}

.thumbvd h5 img{
  width:65px;
}

#mission-statement{
  float:left;
  width:100%;
  height:100%;
  background: url(../images/mission.png);
    padding-top: 285px;
    background-size: cover;
    padding-bottom: 50px;
  
}


.msbg{
  float:left;
  width:100%;
  background:white;
  padding:30px;
}

.msbg h2{
  float:left;
  width:100%;
  color:#000000;
  font-size:30px;
  font-weight:500;
}


.msbg p{
  float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 27px;
    padding-top: 5px;
}

#inde{
  float:left;
  width:100%;
  padding-top:55px;
  padding-bottom:2px;
}

#inde span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-size: 15px;
    padding-bottom: 11px;
    font-weight: 500;
}

#inde h2 {
    float: left;
    width: 100%;
    font-size: 40px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 45px;
    margin-top: 5px;
}

.owl-iae{
  float:left;
  width:100%;
}

.manufactures{
  float:left;
  width:100%;   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.manufactures img{
  width:100%;
}

.manufactures h3{
  float:left;
  width:100%;
  color:#000000;
  font-size:25px;
  font-weight:500;
  margin-top: 23px;   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.manufactures p{
  float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 27px;
    padding-top: 6px;
}

.manufactures:hover h3{
  color:#2245d1;   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}


.manufactures:hover img{
  filter: grayscale(100%);
  text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}



.owl-iae .owl-next img {width: 40px;}
.owl-iae .owl-prev img {width: 40px;}
.owl-iae .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-265px; float:left;}
.owl-iae .owl-next{ float:right; position:relative; right:-75px; top:-265px;}


#olc{
  float:left;
  width:100%;
  background:#1f2b38;
  padding-top:65px;
  padding-bottom:65px;
}

#olc span{
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: rgb(187 218 252 / 82%);
    font-size: 15px;
    padding-bottom: 14px;
    font-weight:500;
}

#olc h2 {
  float: left;
    width: 100%;
    font-size: 40px;
    color: white;
    font-weight: 500;
    line-height: 51px;
    margin-bottom: 20px;
}


#olc p{
 float: left;
    width: 100%;
    padding-right: 243px;
    font-size: 16px;
    color: #e8e8e8;
    line-height: 28px;
    margin-top: 5px;
}


.owl-cntry{
  float:left;
  width:100%;
  margin-bottom: 40px;
  margin-top:40px;
}


.hvr-cntry{
  float:left;
  width:100%;
  text-align:center;
  color:white;
  font-size:16px;
  font-weight:600;
  text-transform:uppercase;
}

.hvr-cntry h3{
 color:white;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
    float:left;
  width:100%;
  text-align:center;
  padding-top:15px;
}

.box-cntry{
  float:left;
  width:100%;
  background:#172330;
  padding:22px; 
}

.box-cntry img{
  width:107px;
  height:108px;
  border-radius:50%;
  display: inline !important;
}


.hvr-cntry:hover .box-cntry img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.owl-cntry .owl-next img {width: 40px;}
.owl-cntry .owl-prev img {width: 40px;}
.owl-cntry .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-140px; float:left;}
.owl-cntry .owl-next{ float:right; position:relative; right:-75px; top:-140px;}


.cvlist{
  float:left;
  width:100%;
  margin-top:50px;
}

.cvlist h4{
 float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: #b1d5fd;
}

.cvlist p{
  float:left;
  width:100%;
  font-size:15px;
  color:white;
  line-height:27px;
  padding-right: 20px !important;
}


#discoverabt{
  float:left;
  width:100%;
  padding-top:115px;
  padding-bottom:115px;
  background: url(../images/dsv.png);
  background-size: cover;
}

#discoverabt h2{
 float: left;
    width: 100%;
    color: #000;
    font-size: 41px;
    font-weight: 500;
    padding-bottom: 18px;
    line-height: 52px;
}


#prtin{
  float:left;
  width:100%;
  background:#e7f2fe;
  padding-top:50px;
  padding-bottom:50px;
}


#prtin span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-weight:500;
    font-size: 15px;
    padding-bottom: 11px;
}

#prtin h2 {
    float: left;
    width: 100%;
    font-size: 40px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 50px;
}


.owl-crp{
  float:left;
  width:100% !important;
  margin-top:20px;
  margin-bottom: 20px;
}

.pcimgs{
  width:100% !important;  
}

.w820{
  margin-left:auto;
  margin-right:auto;
  width:820px;
}

.w820 h3{
    float: left;
    font-size: 38px;
    color: #000000;
    font-weight: 500;
    line-height: 49px;
    width: 50%;
    padding-top:40px;
}

.aws-hvr{
    float: left;
    width: 215px;
    height: 45px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: white !important;
    background: #2245d1;
    line-height: 43px;
    margin-left: 100px;
    margin-top:80px;
    cursor:pointer;
}

.aws-hvr:hover{
  background:black;
   cursor:pointer;
}

#ceo-insight{
  float:left;
  width:100%;
  background:#1f2b38;
  padding-top:65px;
  padding-bottom:65px;
}

.cntr-insight{
  float:left;
  width:100%;
  padding-left:150px;
  padding-right:150px;
}

.cntr-insight h2 {
    font-size: 45px;
    color: white;
    font-weight: 600;
    float: left;
    width: 100%;
    text-align: left;
}

.cntr-insight h3 {
    float: left;
    width: 100%;
    font-size: 21px;
    font-weight: 500;
    color: #cbcbcb;
    padding-top: 15px;
    text-align: left;
    line-height: 35px;
}

.cntr-insight p {
    float: left;
    width: 100%;
    font-size: 16px;
    color: white;
    line-height: 30px;
    margin-top: 9px;
}


#leadership{
  float:left;
  width:100%;
  background:#e5f0fe;
  padding-top:45px;
  padding-bottom:45px;
}


#leadership span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-size: 15px;
    padding-bottom: 11px;
    font-weight: 500;
}

#leadership h2 {
    float: left;
    width: 100%;
    font-size: 41px;
    color: #000000;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 47px;
}


.owl-leader{
  float:left;
  width:100%;
  padding-top:0px;
}


.ih-item.square {
    position: relative;
    width: 100%;
    height: 100%;

}

.ih-item.square.effect6 {
  overflow: hidden;
}
.ih-item.square.effect6.colored .info {
  background: #1a4a72;
  background: rgba(26, 74, 114, 0.6);
}
.ih-item.square.effect6.colored .info h3 {
  background: rgba(12, 34, 52, 0.6);
}
.ih-item.square.effect6 .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.ih-item.square.effect6 .info {
  background: #333333;
  background: rgb(31 43 56 / 80%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect6 .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  display:none;
  padding: 10px;
  /* background: #111111; */
  margin: 91px 0 0 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  text-align: center;
}
.ih-item.square.effect6 .info p {
  font-style: italic;
  font-size: 12px;
  position: relative;
  color: #bbb;
  padding: 20px 20px 20px;
  text-align: center;
  -webkit-transition: all 0.35s 0.1s linear;
  -moz-transition: all 0.35s 0.1s linear;
  transition: all 0.35s 0.1s linear;
}
.ih-item.square.effect6 a:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ih-item.square.effect6 a:hover .info {
  visibility: visible;
  opacity: 1;
}

.ih-item.square.effect6.from_top_and_bottom .info h3 {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.square.effect6.from_top_and_bottom .info p {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect6.from_top_and_bottom a:hover .info h3,
.ih-item.square.effect6.from_top_and_bottom a:hover .info p {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.ih-item.square .info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#leadership h4{
  float:left;
  width:100%;
  color:#000000;
  font-size:16px;
  font-weight:600;
  padding-top:15px;
  padding-bottom: 2px;
}

#leadership h5{
  float:left;
  width:100%;
  color:#464549;
  font-size: 14px;
  line-height:22px;
  font-weight:normal;
}

.teambg{
  float:left;
  width:100%;
  background: #e5f0fe;
  position: relative;
  z-index: 11;
}

.arw{
  display:inline !important;
}


#awards{
  float:left;
  width:100%;
  padding-top: 60px;
    padding-bottom: 12px;
}

#awards h2 {
    float: left;
    width: 100%;
    font-size:41px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 50px;
}

#awards span{
  float:left;
  width:100%;
  text-transform:uppercase;
  color:#2245d1;
  font-size:15px;
  padding-bottom:11px;
  font-weight:500;
}


.owl-awards{
  float:left;
  width:100%;
}

.owl-awards .owl-next img {width: 40px;}
.owl-awards .owl-prev img {width: 40px;}
.owl-awards .owl-prev {transform: rotate(180deg);float:left; position:relative; left:-75px; top:-250px; float:left;}
.owl-awards .owl-next{ float:right; position:relative; right:-75px; top:-250px;}

.awr-section{
  float:left;
  width:100%;
}

.awr-section h3{
  float:left;
  width:100%;
  color:black;
  font-size:20px;
  font-weight: 600;
  line-height: 27px;
  padding-top: 18px;
      padding-right: 25px;
}

.awr-section p{
  float: left;
    width: 100%;
        padding-right: 25px;
    font-size: 16px;
    color: #000000;
    line-height: 28px;
}


.zoom-in-out-element {
  animation: zoom-in-zoom-out 1s ease infinite;
}


#counter {
    padding: 25px;
    width: 100%;
    max-width: 100%;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    padding: 0px;
}
#counter li {
  flex: 1;
  text-align: left;
  font-size: 50px;
  list-style: none;
}
#counter span.percent:after {
  content: "+";
  display: inline-block;
}

#countabt{
  float:left;
  width:100%;
  border-bottom:solid 1px #dedede;
  display:none;
}

#counter li img{
  width:77px;
}

.lstimgs{
  float:left;
  width:100%;
}

#counter li span{
  font-weight:bold;
  font-size:60px;
  float:left;
  width:100%
}

.wfs{
  color:#1f2b38;
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
  float: left;
  width:100%;
}

.border-li{
  border-right:1px solid #dedede;
  padding-top:50px;
  padding-bottom:50px;
  float:left;
  width:100%;
  flex:100%;
}

.pl90{
  padding-left:85px !important;
}


.hmb{
  width:30px;
}

#mb-mst{
  float:left;
  width:100%;
}


.mtl{padding-left:0px; padding-right:0px;}

.peoplebg{
    float: left;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 11;
    /* background: #f2f2f2; */
    background: #F2F2F2;
    background: linear-gradient(179deg,rgb(231 236 241) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .peoplebg h4{
    float: left;
    width: 100%;
    text-align: left;
    color: black;
    font-weight: 500;
    padding-top: 17px;
    font-size: 22px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
  }

    .peoplebg h5{
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 16px;
    color: #073965;
    font-size: 13px;
    }




.people-sections{
  float:left;
  width:100%;
  margin-top:35px;
}

.left-push{
  float:left;
}




.ih-item.square.effect7 {
  overflow: hidden;
}
.ih-item.square.effect7.colored .info {
  background: #1a4a72;
  background: rgba(26, 74, 114, 0.6);
}
.ih-item.square.effect7.colored .info h3 {
  background: rgba(12, 34, 52, 0.6);
}
.ih-item.square.effect7 .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.ih-item.square.effect7 .info {
  background: #333333;
  background: rgb(31 43 56 / 80%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect7 .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  display:none;
  padding: 10px;
  /* background: #111111; */
  margin: 91px 0 0 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  text-align: center;
}
.ih-item.square.effect7 .info p {
  font-style: italic;
  font-size: 12px;
  position: relative;
  color: #bbb;
  padding: 20px 20px 20px;
  text-align: center;
  -webkit-transition: all 0.35s 0.1s linear;
  -moz-transition: all 0.35s 0.1s linear;
  transition: all 0.35s 0.1s linear;
}
.ih-item.square.effect7 a:hover .img {
 /* -webkit-transform: scale(1.2); 
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
   transform: scale(1.2); */
}
.ih-item.square.effect7 a:hover .info {
  visibility: visible;
  opacity: 1;
}

.ih-item.square.effect7.from_top_and_bottom .info h3 {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.square.effect7.from_top_and_bottom .info p {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect7.from_top_and_bottom a:hover .info h3,
.ih-item.square.effect7.from_top_and_bottom a:hover .info p {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.effect7 img{
 
}

.effect7:hover img{
   filter: grayscale(100%);
}


.tlt-hlp {
    float: left;
    width: 100%;
    color: black;
    font-size: 15px;
    padding-bottom: 6px;
    font-weight: 500;
}

.career-frmcnt {
    border: 1px solid rgb(0 0 0 / 47%) !important;
    color: black;
    display: block;
    padding-left: 15px !important;
    font-weight: 400;
    font-size: 15px;
    height: 55px;
    margin-bottom: 28px !important;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    /* border: solid 1px rgb(255 255 255 / 32%); */
    margin-top: 3px;
    width: 100%;
    /* font-family: 'Arial' !important; */
    float: left;
    padding: 7px 10px;
    margin-top: 3px;
    border-radius: 2px;
}

#aboutzoft form{
  float:left;
  width:100%;
  margin-top:30px;
}


.submit-btn{
    float: left;
    width: 180px;
    height: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: white;
    background: #2245d1;
    line-height: 40px;
    outline: none;
    border: none;
    cursor:pointer;
}

.submit-btn:hover{
  background:black;
}

.plf{
  float:left;
  width:100%;
  padding-left:0px;
  padding-right:0px;
}

.pb35{
  padding-bottom:35px !important;
}

#contact-statement{
  float:left;
  width:100%;
  height:100%;
  background: url(../images/mission.png);
    padding-top: 200px;
    background-size: cover;
    padding-bottom: 50px;
  }
  

#wrd-pres{
  float:left;
  width:100%;
  background: #E4F0FE;
    background: linear-gradient(180deg, rgba(228, 240, 254, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding-top: 45px;
    padding-bottom: 45px;
}


#wrd-pres h2 {
    font-size: 41px;
    color: #000000;
    font-weight: 500;
    float: left;
    width: 100%;
    padding-bottom: 45px;
}

.global-list{
  float:left;
  width:100%;
}

.global-bg{
  float:left;
  width:100%;
  background-color:white;
  padding:20px;
}

.global-bg h3{
  float:left;
  width:100%;
  padding-bottom: 5px;
  font-weight:bold;
  text-transform:uppercase;
  font-size:20px;
}

.global-bg p{
  float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 29px;
}

.vl-nav{
  float:left;
  width:100%;
  color:#2245d1;
  font-size:15px;
  font-weight:500;
}

.vl-nav:hover{
  color:black;
  padding-left:5px;
}

.csd-br{
    padding-bottom: 5px !important;
    margin-bottom: 10px;
}

.contc h4{
    float: left;
    /* width: 100%; */
    padding-top: 8px;
    color: #074c63;
    font-size: 15px;
    background: rgb(255 255 255 / 59%);
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 6px;
    margin-bottom: 9px;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.contc:hover h4{
  color:white;
  background: rgb(12 79 151);
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.mb40{
  margin-bottom:40px;
}

.mb20{
  margin-bottom:20px;
}

.cntr-csdt{
  float:left;
  width:100%;
  padding-left: 100px;
  padding-right: 100px;
}

.cntr-csdt h2 {
    font-size: 35px;
    color: #000000;
    font-weight: 600;
    float: left;
    width: 100%;
    text-align: left;
}

.cntr-csdt h3 {
    float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: #0f378c;
    padding-top: 9px;
    text-align: left;
    line-height: 38px;
}

.cntr-csdt p{
    float: left;
    width: 100%;
    font-size: 15px;
    color: #000000;
    line-height: 28px;
    margin-top: 5px;
}

.cntr-csdt span{
  float: left;
    /* width: 100%; */
    padding-top: 8px;
   color:white;
  background: rgb(12 79 151);
    font-size: 14px;
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 6px;
    margin-bottom:13px;
    border-radius: 3px;
    letter-spacing: 1px;
     text-decoration: none;
}

.csdtimg{
  float:left;
  width:100%;
  margin-top:20px;
}

.chl-csdt{
  float:left;
  width:100%;
  padding-top:15px;
  padding-bottom:3px;
}

.chl-csdt p{
    float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height:30px;
    margin-top: 5px;
}

.chl-ul{
  float:left;
  width:100%;
  padding-top:10px;
}

.chl-ul ul{
    float: left;
    width: 100%;
    padding: 0;
    background: #fafafa;
    padding-left: 40px;
    padding-right: 35px;
    padding-top: 25px;
    padding-bottom: 20px;
    border-radius: 20px;
}

.chl-ul li{
    margin-bottom: 10px;
    float: left;
    width: 100%;
    font-size: 15px;
    color: #000000;
    line-height: 28px;
}

.chl-ul li::marker {
  color: #746c6c;
}

.chl-ul ul li strong{
  padding-right: 6px;
  color: #121619;
}

.filters {
      position: relative;
    /* width: 200px; */
    /* margin: 30px auto; */
    margin-bottom: 30px;
    float: left;
}




.section-services .custom-select {
  height: inherit;
  padding: 0 20px;
  line-height: inherit;
  font-size: 14px;
  font-weight: bold;
  border-radius: 27px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #000;
}

.select-club-services {
  --max-scroll: 8;
  --text: #191919;
  --border: #687898;
  --borderActive: #fff;
  --background: #fff;
  --arrow: #6C7486;
  --arrowActive: #E4ECFA;
  --listText: #191919;
  --listBackground: #F5F9FF;
  --listActive: #E4ECFA;
  --listTextActive: #6C7486;
  --listBorder: none;
  --textFilled: #191919;
  width: 220px;
  position: relative;
}
.select-club-services select {
  display: none;
}
.select-club-services > span {
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 5px;
  display: block;
  position: relative;
  color: var(--text);
  border: 1px solid rgb(0 0 0 / 29%);
  background: var(--background);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.select-club-services > span:before, .select-club-services > span:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 15px;
  background: var(--arrow);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.select-club-services > span:before {
  margin-right: 4px;
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}
.select-club-services > span:after {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.select-club-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 42px);
  top: 42px;
  left: 0;
  z-index: 1;
  right: 0;
  background: var(--listBackground);
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  -webkit-transform: scale(0.8) translate(0, 4px);
  transform: scale(0.8) translate(0, 4px);
  border: 1px solid var(--listBorder);
}
.select-club-services ul li {
  opacity: 0;
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.select-club-services ul li a {
  cursor: pointer;
  display: block;
  padding: 10px 16px;
  color: var(--listText);
  text-decoration: none;
  font-size: 14px;
  outline: none;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.select-club-services ul li a:hover {
  color: var(--listTextActive);
}
.select-club-services ul li.active a {
  color: var(--listTextActive);
  background: var(--listActive);
}
.select-club-services ul li.active a:before, .select-club-services ul li.active a:after {
  --scale: .6;
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 17px;
  top: 50%;
  opacity: 0;
  background: var(--listText);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.select-club-services ul li.active a:before {
  -webkit-transform: rotate(45deg) scale(var(--scale));
  transform: rotate(45deg) scale(var(--scale));
}
.select-club-services ul li.active a:after {
  -webkit-transform: rotate(-45deg) scale(var(--scale));
  transform: rotate(-45deg) scale(var(--scale));
}
.select-club-services ul li.active a:hover:before, .select-club-services ul li.active a:hover:after {
  --scale: .9;
  opacity: 1;
}
.select-club-services ul li:first-child a {
  border-radius: 6px 6px 0 0;
}
.select-club-services ul li:last-child a {
  border-radius: 0 0 6px 6px;
}
.select-club-services.filled > span {
  color: var(--textFilled);
}
.select-club-services.open > span {
  border-color: rgb(29 118 187 / 47%);
}
.select-club-services.open > span:before, .select-club-services.open > span:after {
  background: var(--arrowActive);
}
.select-club-services.open > span:before {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.select-club-services.open > span:after {
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}
.select-club-services.open ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translate(0, 12px);
  transform: scale(1) translate(0, 12px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}
.select-club-services.open ul li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.select-club-services.open ul li:nth-child(1) {
  -webkit-transition-delay: 80ms;
  transition-delay: 80ms;
}
.select-club-services.open ul li:nth-child(2) {
  -webkit-transition-delay: 160ms;
  transition-delay: 160ms;
}
.select-club-services.open ul li:nth-child(3) {
  -webkit-transition-delay: 240ms;
  transition-delay: 240ms;
}
.select-club-services.open ul li:nth-child(4) {
  -webkit-transition-delay: 320ms;
  transition-delay: 320ms;
}
.select-club-services.open ul li:nth-child(5) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.select-club-services.open ul li:nth-child(6) {
  -webkit-transition-delay: 480ms;
  transition-delay: 480ms;
}
.select-club-services.open ul li:nth-child(7) {
  -webkit-transition-delay: 560ms;
  transition-delay: 560ms;
}
.select-club-services.open ul li:nth-child(8) {
  -webkit-transition-delay: 640ms;
  transition-delay: 640ms;
}
.select-club-services.open ul li:nth-child(9) {
  -webkit-transition-delay: 720ms;
  transition-delay: 720ms;
}
.select-club-services.open ul li:nth-child(10) {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

select {
  --text: #3F4656;
  --border: #2F3545;
  --background: #151924;
}
select.select-club-services {
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  line-height: 22px;
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
}

.slc{
    float: left;
    margin-right: 16px;
    font-weight: 600;
    color: #0a387a;
    padding-top: 8px;
}


.plr-none{
  padding-left:0px;
  padding-right:0px;
}


.ins-tab{
   position: relative;
    float: right;
    margin-top: -37px;
    background: #054c8b;
    padding: 10px;
    color: white;
    font-size: 14px;
}

.date{
    float: left;
    width: 100%;
    font-size: 14px;
    padding-bottom: 10px;
    color: #0d8bb5;
    font-weight: 500;
}

.date-dtl{
    float: left;
    width: 100%;
    font-size: 16px;
    padding-bottom: 10px;
    color: #0d8bb5;
    font-weight: 500;
    margin-top: 23px;
}

.blg-bld{
    float: left;
    width: 100%;
    font-weight: bold;
    font-size: 22px;
    color: black;
    margin-top: 8px;
    margin-bottom: 8px;
}

.related-titels{
  float: left !important;
    width: 100% !important;
    text-transform: uppercase !important;
    color: #2245d1 !important;
    font-size: 15px !important;
    padding-bottom: 11px !important;
    font-weight:500;
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 77777; /* Sit on top */
    padding-top: 10px; /* Location of the box */
    left: 0;

    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 30px;
    font-weight: 500;
    right: -46px;
    position: relative;
    top: -2px;
    padding: 0px !important;
    /* margin: 0px !important; */
    /* float: right; */
    /* width: auto;*/
  }

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 0px;
     /* background-color: #5cb85c; */
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.whych{
  float: left;
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    color: black;
    margin-top: 20px;
    margin-bottom: 30px;
}

.checklist {
  float:left;
  width:100%;
  margin-bottom:16px;
  border-bottom: solid 1px rgb(0 0 0 / 11%);
}



.checklist p::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: url(../images/checklist.png) no-repeat center center;
    background-size: 35px 35px;
    left: 13px;
    margin-top: 0px;
    top: 4px;

}

.checklist p {
  float:left;
  width:100%; padding-left: 50px;
  padding-bottom: 15px;
}

.checklist-new{
	float: left;
    width: 100%;
    margin-bottom: 16px;
    background: aliceblue;
    padding:20px;
}

.checklist-new p {
  float:left;
  width:100%;
  padding-bottom:0px;
      line-height: 28px !important;
}


.checklist-new h3{
	float: left !important;
    width: 100% !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #000000 !important;
    padding-top: 12px !important;
    text-align: left !important;
    line-height: 29px !important;
    padding-bottom: 0px !important;
}


.related-industries{
  float:left;
  width:100%;
  padding:10px;
  background-color:black;
}

.related-industries h4{
    float: left;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-bottom: 0px;
    background: #3d3939;
    padding: 10px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.related-nav{
    float: left;
    width: 100%;
    color: white;
    font-size: 14px;
    font-weight: normal;
    padding: 15px;
    border-bottom: solid 1px rgb(255 255 255 / 12%);
}

.related-nav:hover{
  padding-left:18px;
}

.relactive{
  background: #1e6bb9;
}

.cntlist{
  float:left;
  width:100%;
}


#countlist{
  float:left;
  width:100%;
  padding-top:40px;
  padding-bottom:40px;
}


.bglight{
    float: left;
    width: 100%;
    padding: 15px;
    background: aliceblue;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    margin-bottom:15px;
}


#countlist span {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #2245d1;
    font-size: 15px;
    padding-bottom: 11px;
    font-weight:500;
}

#countlist h2 {
    float: left;
    width: 100%;
    font-size: 40px;
    color: #000000;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 35px;
}

.left-algn{
  text-align: left !important;
}

.pl-left{
  padding-left:0px !important;
  text-align:left !important;
}

.topm{
  margin-top: 8px !important;
}

.micro-srv{
    float: left;
    width: 100%;
    padding: 25px;
    background-color: aliceblue;
    margin-bottom:20px;
}


.micro-srv h4{
    float: left;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-bottom: 0px;
    background: #1767a8;
    padding: 10px;
    /* letter-spacing: 1px; */
    margin-bottom: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.micro-srv h3{
    float: left;
    width: 100%;
    color: black;
    font-size: 17px;
    font-weight: 600;
}

.micro-srv p{
    float: left;
    width: 100%;
    font-size: 15px;
    color: #000000;
    line-height: 24px;
    margin-top:4px;
    margin-bottom: 2px;
}

.micro-srv h3 img{
      width: 20px;
    float: right;
}


.related-srv{
  float:left;
  width:100%;
  color: #0770e2;
  font-size:18px;
  font-weight:600;
  margin-bottom: 20px;
}


.enterprise-list{
  float: left;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    background-color: #f7f7f7;
    margin-top: 10px;
    margin-bottom: 10px;
}

.enterprise-list p{
    font-weight: 600;
    color: #074579;
    margin-bottom: 5px;
}

.disablesrv {
    pointer-events: none;
    opacity: 0.4;
}



.input-container {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 0px;
      padding: 5px 10px;
      width: 100%;
    }
    .input-container img {
      width: 20px;
      margin-right: 8px;
    }
    .input-container input {
      border: none;
      outline: none;
      font-size: 16px;
    }


@media only screen and (max-width:1000px) {
.header_menu_area{display:none;}
#pagebnr h1{font-size:25px; line-height:31px;}
.wd100{float:left; width:100%; flex:100%; max-width:100%;}
#pagebnr p{text-align:left; padding-top:12px;}
#desection p img{margin-top:0px;}
}

@media only screen and (min-width: 1001px) and (max-width: 2999px) {
.hide-desk{display:none;}
}

@media only screen and (max-width:991px) {
.subsbg{padding-left:15px; padding-right:15px;  padding-top:15px; padding-bottom:15px;}
.subsbg p {float:left; width:100%;}
.subsbg h3{float:left; width:100%; padding-top: 25px; font-size:20px; line-height:26px;}
.subsbg img{float:none; margin-right:0px;}
.cl-6{float:left; flex:50%; min-width:50%; max-width:50%;}
.owl-cst h3{font-size:19px; line-height:27px; padding-right:0px;}
.published-sec strong{float:left; width:100%; padding-top:5px; padding-left:0px;}
#desection h3{padding-left:8px; padding-right:8px;}

.cntr-abt{padding-left:0px; padding-right:0px;}
.cntr-insight{padding-left:0px; padding-right:0px;}

.pl90{padding-left:0px !important;}
.cont50{float:left; width:50%; min-width:50%; flex:50%; border:1px solid #dedede; border-bottom:none;}
#counter{display:block;}
.cont100{float:left; width:100%; min-width:100%; flex:100%; border:1px solid #dedede; border-bottom:none;}
#countabt{border-bottom:none;}
.border-li{border-right:none;}

.w820{padding-left:15px; padding-right:15px;}


.count-bor{padding-left:0px; text-align:center;}

.cnh50{float:left; flex:50%; min-width:50%; max-width:50%; padding-bottom:20px;}
.count-bor{    border-right:none;}

.owl-why h3{font-size:25px;}
.blgig{display:none;}
.blgig2{display:none;}
.blgbg h4{padding-bottom:20px; padding-right:0px;}
.blgo-100{float:left; width:100%; min-width:100%; flex:100%;}
.whtd-rd2{float:left; left:30px; top:-30px;}
.whtd-rd3{float:left; left:30px; top:-30px; top:145px;}
#blog-sections{padding-bottom:60px;}
.blgbg h4{font-size: 20px; line-height: 25px;}

.fs{float:left; padding-bottom:10px;}

.ftrmobile{float:left; flex:100%; min-width:100%; max-width:100%; }
.contact-titel{padding-top: 40px;}
}

@media only screen and (max-width:500px) {
.cl-6{float:left; flex:100%; min-width:100%; max-width:100%;}
.subsbg img{width:100%;}
.fs{float:left; width:50%; padding-right:0px !important; text-align:left;}
#footer-menu{padding-top:30px; padding-bottom:30px;}
}

@media only screen and (max-width:920px) {
#discoverabt{background-position: 50%;}
    
}

@media only screen and (max-width:470px) {
#counter li span{font-size:45px;}
    
}


@media only screen and (max-width:1230px) {
.header_menu_area > ul > li > a{padding-right:8px !important; font-size: 14px !important;}
}

@media only screen and (min-width: 1001px) and (max-width: 1077px) {
.logo{width:100%; float:left; text-align: center;}
.logo img{float:none;}
.header_menu_area{float:left; width:100%; text-align:center;}
.header_menu_area > ul > li > a{padding-right:15px !important;}
}

@media only screen and (max-width:1200px) {
.logo img{width: 240px;}
}

@media only screen and (max-width:767px) {
#discoverabt{background: #5284be; padding-top:45px; padding-bottom:45px;}
#discoverabt h2{color:white;}
#discoverabt h2{font-size:28px; line-height:38px;  margin-bottom:33px;}
#discoverabt h2{font-size:28px; line-height:38px; margin-bottom: 0px;}
.blgbg{padding-top:25px;}
.social{float:left; margin-top:20px;}
.msd{margin-left:0px; margin-right:8px;}
}


@media only screen and (max-width:418px) {
.whtd-rd3{top:185px;}
}

@media only screen and (max-width:768px) {

#panel-intro h1{font-size:28px; line-height:38px; margin-bottom:33px; margin-bottom:0px; padding-bottom:15px;}
#panel-core h2{font-size:28px; }
.digital-transformation h3{font-size:20px !important;}
.digital-transformation p{padding-top:10px !important;}

#panel-innovation h2{font-size:28px; line-height:38px;}
#team-panel h2{font-size:28px; line-height:35px;}

#panel-maps h2{font-size:28px; line-height:35px;}
#blog-sections h2{font-size:28px; line-height:35px;}
#customer-base h2{font-size:28px; line-height:35px;}
#customer-base h2 span{font-size:28px; line-height:35px;}



#subservice h2{font-size:28px; line-height:38px;  margin-bottom:33px;}
#subservice span{padding-bottom:8px;}
#case-studiess h2{font-size:28px; line-height:38px;  margin-bottom:33px;}
#case-studiess span{padding-bottom:8px;}
#case-studies h2{font-size:28px; line-height:38px;  margin-bottom:33px;}
#case-studies span{padding-bottom:8px;}
#gtn h2{font-size:28px; line-height:38px;  margin-bottom:10px;}
#gtn span{padding-bottom:8px;}

#inde h2{font-size:28px; line-height:38px;  margin-bottom:33px;}
#inde span{padding-bottom:8px;}

#olc h2{font-size:28px; line-height:38px;  margin-bottom:10px;}
#olc span{padding-bottom:8px;}
#olc p{padding-right: 15px;}
.cvlist{margin-top: 20px;}
#prtin h2{font-size:28px; line-height:38px;  margin-bottom:10px;}
#prtin span{padding-bottom:8px;}

#leadership h2{font-size:28px; line-height:38px;  margin-bottom:10px;}
#leadership span{padding-bottom:8px;}

#awards h2{font-size:28px; line-height:38px;  margin-bottom:10px;}
#awards span{padding-bottom:8px;}

.w820 h3 {font-size:28px; line-height:38px; float:left; width:100%;}
.w820{float:left; width:100%;}



.aws-hvr{margin-left:0px; margin-top:15px;}
.w820 h3{padding-top:10px;}

#footer h2{font-size:28px; line-height:38px;}

}


@media only screen and (max-width:370px) {

#footer h2{font-size:23px; line-height:38px;}

#panel-intro h1{font-size:23px; line-height:30px; margin-bottom:33px; margin-bottom:0px; padding-bottom:15px;}
#panel-core h2{font-size:23px; }
.digital-transformation h3{font-size:20px !important;}
.digital-transformation p{padding-top:10px !important;}

#panel-innovation h2{font-size:23px; line-height:30px;}
#team-panel h2{font-size:23px; line-height:30px;}

#panel-maps h2{font-size:23px; line-height:30px;}
#blog-sections h2{font-size:23px; line-height:30px;}
#customer-base h2{font-size:23px; line-height:30px;}
#customer-base h2 span{font-size:23px; line-height:30px;}


#subservice h2{font-size:23px; line-height:30px;  margin-bottom:33px;}
#subservice span{padding-bottom:8px;}
#case-studiess h2{font-size:23px; line-height:30px;  margin-bottom:33px;}
#case-studiess span{padding-bottom:8px;}
#case-studies h2{font-size:23px; line-height:30px;  margin-bottom:33px;}
#case-studies span{padding-bottom:8px;}
#gtn h2{font-size:23px; line-height:30px;  margin-bottom:10px;}
#gtn span{padding-bottom:8px;}


#inde h2{font-size:23px; line-height:30px;  margin-bottom:33px;}
#inde span{padding-bottom:8px;}

#olc h2{font-size:23px; line-height:30px;  margin-bottom:10px;}
#olc span{padding-bottom:8px;}
#olc p{padding-right: 15px;}
.cvlist{margin-top: 20px;}
#prtin h2{font-size:23px; line-height:30px;  margin-bottom:10px;}
#prtin span{padding-bottom:8px;}

#leadership h2{font-size:23px; line-height:30px;  margin-bottom:10px;}
#leadership span{padding-bottom:8px;}

#awards h2{font-size:23px; line-height:30px;  margin-bottom:10px;}
#awards span{padding-bottom:8px;}
}


@media only screen and (max-width:500px) {
.ftr50{width:100%; float:left;}
.pm{margin-bottom:20px;}
}

@media only screen and (max-width:1199px) {
#gtn{ background-position-x: 85%;}
#desection p img{margin-top:10px;}
.sch-call{float:left; margin-top:20px;}
.fs{padding-right: 25px;}
}

@media only screen and (max-width:900px) {
#gtn{background:#060f15;}
.techwd{float:left; width:100%; flex:100%; min-width:100%;}
}


@media only screen and (max-width:1070px) {
#why-us{padding-top:55px;}
.owl-why h3{margin-top:24px;}
}


@media only screen and (max-width:767px) {
#desection h2{font-size:30px;}
#desection h3{font-size:18px; line-height: 27px;}
.cntr-abt h3{font-size:20px; line-height:28px;}
.cv50{float:left; width:50%; flex:50%; min-width: 50%;}

.thumbvd h5 img{ width:39px;}
.thumbvd h5{bottom: -150px;}
.thumbvd{margin-top:-23px}

.indus-50{float:left; width:50%; flex:50%; min-width: 50%;}
.boxsix{padding-right:0px; padding-left:0px; padding-bottom:0px; padding-top:16px;}
.grey-bg{padding-left: 15px; padding-right: 15px; padding-top: 18px; margin-top: 14px;}
.boxsix img{width: 70px; margin-left: 15px; margin-bottom: 8px;}


.oce-hide{display:none;}
.exprtsection{padding-top: 36px; padding-bottom: 36px;}
.vbg{margin-left:0px; float:left; margin-bottom:20px; margin-top:0px;}
#panel-core h2{    padding-bottom: 15px;}
}

@media only screen and (max-width:350px) {
.indus-50{float:left; width:100%; flex:100%; min-width:100%;}
.boxsix{margin-bottom:24px;}
}

@media only screen and (min-width: 768px) and (max-width: 2999px) {
.oce-hided{display:none;}
}

@media only screen and (min-width: 1400px) and (max-width: 1400px) {
.loader{top:46% !important;}
}

@media only screen and (min-width: 1440px) and (max-width: 1440px) {
.loader{top:44% !important;}
}



@media only screen and (max-width:460px) {
.thumbvd h5 img{width: 25px;}
.thumbvd h5{bottom: -121px;}
#aboutzoft{padding-bottom: 50px;}
}

@media only screen and (max-width:460px) {
.thumbvd h4{font-size:15px; line-height: 18px; margin-top:-55px;}
}


@media only screen and (max-width:400px) {
.thumbvd h5 img{width:30px;}
.thumbvd h5{bottom:-99px;}
}


@media only screen and (max-width:1130px) {
#mission-statement{padding-top:160px;}
}

@media only screen and (max-width:500px) {
#desection p img{float:left; margin-left:0px;  width:225px; margin-right:20px;}
}


@media only screen and (max-width:890px) {
#mission-statement{background-position: 70%;}
.bmo{ flex: 65%; max-width: 65%;}
}


@media only screen and (max-width:530px) {
.bmo{flex: 100%; max-width: 100%; float:left;}
.msbg{background:#1858ac; padding: 0px; padding-top: 20px; padding-bottom:20px;}
#mission-statement {padding:0px; background:#1858ac;}
.msbg h2 {color:white;}
.msbg p {color:white;}
}

@media only screen and (min-width: 531px) and (max-width: 2999px) {
#mb-mst{display:none;}
}

@media only screen and (max-width:400px) {
#desection p img{float: none;margin-left:0px;width:225px;margin-right: auto;margin-left: auto;display: block;     margin-bottom: 20px;
    margin-top: 0px;}
}


@media only screen and (max-width:1170px) {
.pl90{ padding-left: 0px !important;}
#counter li{text-align:center;}
}


@media only screen and (max-width:1199px) {
#panel-intro p{ padding-left: 0px; padding-right: 0px;}
}


@media only screen and (max-width:1080px) {
.owl-cstudies .owl-prev{top:0px; left:0px; float:left; display: contents;}
.owl-cstudies .owl-next {top:0px; left:0px; float:left; margin-left:10px; display: contents;}
.owl-cstudies .owl-nav {float:left; width:100%; text-align:center; margin-top: 20px;}
.owl-cstudies .owl-prev img{ margin-right: 8px;}


.owl-awards .owl-prev{top:0px; left:0px; float:left; display: contents;}
.owl-awards .owl-next {top:0px; left:0px; float:left; margin-left:10px; display: contents;}
.owl-awards .owl-nav {float:left; width:100%; text-align:center; margin-top: 20px; margin-bottom:15px;}
.owl-awards .owl-prev img{ margin-right: 8px;}


.owl-cntry .owl-prev{top:0px; left:0px; float:left; display: contents;}
.owl-cntry .owl-next {top:0px; left:0px; float:left; margin-left:10px; display: contents;}
.owl-cntry .owl-nav {float:left; width:100%; text-align:center; margin-top: 20px; margin-bottom:15px;}
.owl-cntry .owl-prev img{ margin-right: 8px;}


.owl-iae .owl-prev{top:0px; left:0px; float:left; display: contents;}
.owl-iae .owl-next {top:0px; left:0px; float:left; margin-left:10px; display: contents;}
.owl-iae .owl-nav {float:left; width:100%; text-align:center; margin-top: 20px; margin-bottom:15px;}
.owl-iae .owl-prev img{ margin-right: 8px;}

}


@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 150%;
  }
  100% {
    scale: 100%;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}
.filters select{
    background: #bff0ff;
    border: 1px solid #a8e9ff;
    padding: 10px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.filters select option{
    width: 100%;
    float: left;
    font-size: 15px;
}


.grecaptcha-badge {
    visibility: hidden !important;
}
