html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}
/*fonts*/

html,body{
  scroll-behavior: smooth;
}
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
/*Thin 100
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
ExtraBold 800
Black 900*/

body{
  font-family: "Montserrat", serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: #000;
  background: url(../images/logo-tile-bg.png) repeat;
}
/* scrool Progress bar */
.progress-bar-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 9999;
}
.progress-bar {
  height: 100%;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

h1{
  font-size: 70px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
h1 span{
  font-weight: 300;
  display: block;
}
h2{
  font-size: 50px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
h2 span{
  font-weight: 300;
  display: block;
}
h3{
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}
h3 span{
  font-weight: 300;
  display: block;
}
.btn {
  color: #fff;
  cursor: pointer;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  border: none !important;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  font-size: 15px;
  line-height: 52px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  min-width: 154px;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}
.btn span{
  position: relative;
  z-index: 1;
}
.btn:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  background: #0033ff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  opacity: 0;
}
.btn:hover:after{
  opacity: 1;
}
.btn-green{
  background: #00ff66;
  color: #000;
}
.btn-green:after{
  /*background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);*/
  background: #00ff66;
}
.btn-green:hover{
  color: #000;
}
a{
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
a:hover,
a:active{
  text-decoration: none;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
ul,ol{
  list-style: none;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header_btm{
  background: #fff;
}
header.sticky {
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.header_top{
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
}
.ht_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 42px;
}
.header_top a{
  font-weight: 600;
  color: #fff;
}
.hb_in{
  min-height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hb_rht{
  width: 100%;
  margin: 0 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header nav ul li{
  padding: 30px 0;
  margin: 0 20px 0 0;
}
header nav ul + ul .dropdown{
  left: auto;
  right: 0;
}
header nav ul + ul li{
  margin: 0 0 0 20px;
}
header nav ul li a{
  font-size: 16px;
  line-height: 22px;
  color: #000;
  font-weight: 400;
  padding:10px 0px ;
  position: relative;
  white-space: nowrap;
}
.dropdown_btn:after{
  content:'';
  width: 13px;
  height: 7px;
  background: url(../images/chevron_down.png) no-repeat center;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.dropdown_btn:hover:after{
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dropdown:before{
  content: '';
  left: 0;
  position: absolute;
  top: 0;
  height: 2px;
  margin: auto;
  width: 0;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
header nav{
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
header nav ul li a:hover{
  color: #0033ff;
}
header nav ul li a.active:before,
header nav ul li a:hover:before{
  width: 100%;
}
header nav ul li a.active{
  font-weight: 700;
  color: #0033ff;
}
.dropdown{
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 910px;
  border-radius: 0 0 15px 15px;
  display: block;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.dropdown .au_shape_img{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.05;
}
.dropdown .au_shape_img2{
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  opacity: 1;
}
.dropdown_in{
  position: relative;
  z-index: 1;
}
.dropdown_links h3{
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  padding: 30px 50px;
  position: relative;
  margin: 0 !important;
}
.dropdown_foot:after,
.dropdown_links h3:after{
  content: '';
  left: 0;
  position: absolute;
  bottom: 0;
  height: 2px;
  margin: auto;
  width: 35%;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
}
.dropdown_foot{
  position: relative;
  padding: 30px 50px;
}
.dropdown_foot span{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.dropdown_foot ul{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dropdown_foot ul LI{
  padding: 0 !important;
}
.dropdown_foot a{
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  padding: 0;
}
.dropdown_foot:after{
  height: 3px;
  width: 100%;
  top: 0;
  bottom: auto;
}
header nav ul li:hover .dropdown{
  visibility: visible;
  opacity: 1;
}
header nav ul li:hover .dropdown:before{
  width: 100%;
}

/*menu toggle*/
.menu_toggle {
  position: relative;
  display:  inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0 0 20px;
  display: none;
}
.menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 15px;
}
.menu_toggle span:before, .menu_toggle span:after {
  position: absolute;
  content: '';
}
.menu_toggle span, .menu_toggle span:before, .menu_toggle span:after {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
}
.menu_toggle span:before {
  margin-top: 10px;
}
.menu_toggle span:after {
  margin-top: -10px;
}
/* --- btn --- */
.menu_toggle span {
  -webkit-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s;
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}
.menu_toggle.active span {
  background-color: rgba(0,0,0,0.0);
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}


.menu_toggle span:before {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.menu_toggle span:after {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.banner_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.banner_slide{
  background-color: #0033ff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: none;
}
.banner_slide:first-child{
  display: block;
}
.banner_cnt{
  min-height: 960px;
  max-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}
.banner_cnt img{
  margin-bottom: 20px;
}
.banner_cnt h1{
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.35);
}
.banner_cnt p{
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 500;
}
.banner_form{
  position: absolute;
  right: 0;
  bottom: 100px;
  width: 408px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.banner_form h4{
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
.form_control {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  border-radius: 8px;
  height: 52px;
  padding: 0 20px;
  font-family: "Montserrat", serif;
  line-height: 52px;
  font-weight: 500;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.banner_form input{
  border:none;
  height: 30px;
  line-height: 30px;
  border-bottom: 1px solid #999;
  border-radius: 0;
  padding: 0;
  margin-bottom: 20px;
}
.banner_form input:focus{
  outline: none;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #999;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #999;
}
:-moz-placeholder { /* Firefox 18- */
  color: #999;
}
.banner_form .btn{
  width: 154px;
  display: block;
  margin-left: auto;
}
.banner_shape{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.banner {
  overflow: hidden;
}
.banner .slick-dots{
  bottom: 50px;
}
.slick-dots li{
  margin: 0 5px;
}
.slick-dots li button{
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.slick-dots li button:before{
  display: none;
}
.slick-dots li button:after{
  content: '';
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  left: -6px;
  top: -6px;
  border:1px solid #00ff66;
  border-radius: 50%;
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.slick-dots li.slick-active button{
  background: #00ff66;
}
.slick-dots li.slick-active button:after{
  visibility: visible;
  opacity: 1;
}
.count:before{
  content: '+';
}
.slick-dotted.slick-slider{
  margin: 0;
}
.about_us{
  padding: 70px 0;
  position: relative;
}
.route_map .container,
.ops_wrapper .container,
.about_us .container{
  position: relative;
  z-index: 9;
}
.about_us_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.aus_cnt{
  max-width: 45%;
}
.aus_cnt h2{
  color: #0033ff;
}
.aus_cnt p b{
  font-weight: bold;
  display: inline-block;
  color: #0033ff;
}
.aus_cnt p span{
  font-weight: 600;
  text-transform: uppercase;
  color: #0033ff;
}
.aus_img{
  max-width: 50%;
}
.counter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-bottom: 40px;
}
.count{
  font-size: 80px;
  line-height: 1;
  color: #0033ff;
  font-weight: 300;
  display: block;
}
.counter li{
  width: 100%;
}
.counter li p{
  font-weight: 15px;
  color: #999;
}
.about_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.al_card{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  margin: 30px 15px 0;
  background: #fff;
  border:1px solid #33cc00;
  border-radius: 8px;
  padding: 30px;
}
b,strong{
  font-weight: bold;
}
.ops_cnt h4,
.al_card strong{
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.ops_cnt p,
.al_card p{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.ops_cnt p{
  margin: 0;
  color: #999;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.al_card{
  background: #fff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  position: relative;
  overflow: hidden;
}
.al_card:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  background: -o-linear-gradient(160deg,#0033ff 20%, #00ff66);
  background: linear-gradient(-70deg,#0033ff 20%, #00ff66);
  visibility: hidden;
  opacity: 0;
}
.al_card:hover{
  border-color: #fff;
}
.al_card:hover:after{
  visibility: visible;
  opacity: 1;
}
.al_card *{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  position: relative;
  z-index: 1;
}
.al_card:hover *{
  color: #fff;
}
.al_card a{
  font-size: 14px;
  color: #0033ff;
  font-weight: 600;
  text-transform: uppercase;
}
.au_shape_img{
  position: absolute;
  left: 0;
  bottom: 0;
}
.au_shape_img2{
  left: auto;
  right: 0;
  top: 0;
}
.au_shape_img img{
  height: 100%;
}
.ops_wrapper{
  background: #6699cc url(../images/img_23.jpg) no-repeat right bottom / cover;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.ops_head{
  max-width: 650px;
  color: #fff;
  margin-bottom: 30px;
}
.ops_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  position: relative;
}
.ops_card{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 20px);
          flex: 0 0 calc(25% - 20px);
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
}
.ops_card:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -o-linear-gradient(160deg, #0033ff 20%, #00ff66);
  background: linear-gradient(-70deg, #0033ff 20%, #00ff66);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.ops_card:hover{
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 45px rgba(0, 0, 0, 0.4);
}
.ops_card:hover .ops_cnt{
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.ops_card:hover:before{
  visibility: visible;
  opacity: 1;
}
.ops_cnt{
  padding: 20px;
  position: relative;
  z-index: 3;
  border-radius: 0 0 10px 10px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.ops_card:hover .ops_cnt p,
.ops_card:hover .ops_cnt{
  color:#fff;
}
.ops_img{
  height: 190px;
  overflow: hidden;
  position: relative;
}
.ops_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ops_img:after{
  content: url(../images/favicon.png);
  position: absolute;
  right: 15px;
  top:15px;
  z-index: 2;
}
.ops_wrapper .au_shape_img{
  opacity: 1;
}
.ops_wrapper .au_shape_img2{
  top: auto;
  bottom: 0;
  right: 0;
}
.ops_wrapper .au_shape_img3{
  top: auto;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.au_shape_img3 img{
  height: 100%;
}
.route_map{
  position: relative;
  padding: 70px 0 120px;
  overflow: hidden;
}
.rout_map_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news_insights .ops_head,
.rout_map_in .ops_head {
  color: #000;
  max-width: 690px;
}
.news_insights .ops_head h2,
.rout_map_in .ops_head h2{
  color: #0033ff;
}
.routemap_imgs {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(49%, 1fr));
}
.rm_img{
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.rm_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.rm_img:nth-child(3){
  height: 240px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.routes_list{
  max-width: 580px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -60px;
}
.routes_list ul li b{
  display: block;
  margin-bottom: 10px;
}
.routes_list ul li{
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.routes_list ul li:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
}
.routes_list ul li:last-child:after{
  display: none;
}
.route_map .au_shape_img{
  top: 0;
  opacity: 1;
}
.route_map .au_shape_img2{
  opacity: 0.2;
}
.news_insights .container{
  position: relative;
  z-index: 1;
}
.news_insights{
  position: relative;
  padding: 70px 0 120px;
}
.news_insights .container{
  position: relative;
  z-index: 1;
}
.our_strength h2 span,
.news_insights .ops_head h2 span{
  display: inline-block;
}
.news_insights .ops_head p{
  margin-bottom: 30px;
}
.btb_outline{
  background: none;
  border:1px solid #0033ff !important;
  color: #0033ff;
}
.btb_outline:after{
  display: none;
}
.btb_outline:hover{
  background: #0033ff;
  color: #fff;
}
.ni_list{
  margin: 50px -15px 0 !important;
}
.ni_card{
  margin: 0 15px;
}
.ni_img{
  height: 283px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.ni_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ni_img:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/overlay.png) no-repeat left bottom / cover;
}
.ni_img span{
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  font-weight: 600;
  color: #fff;
}
.ni_cnt {
  padding: 20px 30px 0 0;
}
.ni_cnt strong{
  display: block;
  margin-bottom: 10px;
}
.ni_cnt p{
  color: #999;
  font-size: 14px;
  line-height: 18px;
}
.team_block .slick-dots,
.ni_list .slick-dots{
  bottom: -60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team_block .slick-dots li button,
.ni_list .slick-dots li button {
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  border-radius: 10px;
}
.team_block .slick-dots li button:after,
.ni_list .slick-dots li button:after{
  display: none;
}
.team_block .slick-dots li,
.ni_list .slick-dots li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  margin: 0 2px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  opacity: 0.5;
}
.team_block .slick-dots li.slick-active,
.team_block .slick-dots li.slick-active button,
.ni_list .slick-dots li.slick-active,
.ni_list .slick-dots li.slick-active button{
  width: 40px;
  opacity: 1;
}
.inovation_blk .au_shape_img,
.news_insights .au_shape_img{
  opacity: 0.08;
}
.our_strength{
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.our_strength h2{
  color: #0033ff;
}
.team_tab_nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 720px;
  border-bottom: 5px solid #999;
}
.team_tab_nav li{
  width: 100%;
}
.team_tab_nav li a{
  color: #999;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  display: block;
  text-align: center;
  position: relative;
}
.team_tab_nav li a:hover,
.team_tab_nav li a.active{
  color: #0033ff;
  font-weight: bold;
}
.team_tab_nav li a:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 5px;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.team_tab_nav li a:hover:after,
.team_tab_nav li a.active:after{
  visibility: visible;
  opacity: 1;
}
.tab_trigger{
  display: none;
}
.tab_trigger:first-child{
  display: block;
}
.tab_trigger ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0 0;
}
.teanCard,
.tab_trigger ul li{
  -webkit-box-flex:  0;
      -ms-flex:  0 0 272px;
          flex:  0 0 272px;
  margin: 30px 15px 0 ;
  text-align: center;
}
.team_img{
  height: 272px;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  background: #c1e4ec;
}
.team_img:after{
  content: "";
  width: 131px;
  height: 113px;
  opacity: 0.5;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/shape_6.png) no-repeat center;
}
.team_img img{
  width: 100%;
  min-height: 100%;
}
.teanCard h4,
.tab_trigger ul li h4{
  font-weight: bold;
  color: #0033ff;
  margin-bottom:  5px;
}
figcaption{
  padding: 0 15px;
}
.teanCard p,
.tab_trigger ul li p{
  color: #000;
  font-weight: 400;
}
.inovation_blk{
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.inovation_blk h2{
  color: #0033ff;
}
.inovation_blk h2 span{
  display: inline;
}
.inovation_blk .ops_head{
  font-weight: 400;
  color: #000;
  max-width: 45%;
}
.inovation_cards{
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  position: relative;
}
.horizontal {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
}
.horizontal_2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
.ic_card{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #ccc;
  display: block;
}
a.ic_card{display: block;}
.ic_card img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ic_cnt{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ic_cnt h3{
  padding: 30px;
  color: #fff;
}
.ic_cnt a{
  margin: 20px;
}
.inovation_btn{
  position: absolute;
  right: 0;
  top: -80px;
}
.our_stories{
  padding: 70px 0 180px;
  position: relative;
  overflow: hidden;
}
.our_stories h2 {
    color: #0033ff;
}
.testmonials{
  margin-top: ;
  margin: 40px -15px 0!important;
}
.testmonial_Card{
  border:1px solid #d8d8d6;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  margin: 0 15px;
}
.testmonial_Card:hover{
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.testmonials_cnt{
  height: 120px;
  overflow: hidden;
}.testmonials_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.avatar{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
  margin:0 20px 0 0;
}
.avatar img{
  width: 100%;
  min-height: 100%;
}
.tst_info b{
  font-weight: bold;
  display: block;
  color: #0033ff;
}
.tst_info span{
  font-size: 14px;
 color: #999;
}
.testmonials_cnt {
  height: 88px;
  overflow: hidden;
  margin: 0 0 30px 0;
}
footer .au_shape_img:first-child img{
  max-width: 550px;
}
.our_stories .au_shape_img:first-child img{
  max-width: 400px;
}
footer .au_shape_img,
.our_stories .au_shape_img{
  opacity: 1;
}
.slick-arrow {
  top: auto;
  left: 15px;
  bottom: -80px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
}
.slick-arrow:hover{
  opacity: 1;
}
.slick-next{
  left: 79px;
}
.slick-arrow:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(../images/right_arrow.png) no-repeat center !important;
  z-index: 1;
  opacity: 1 !important;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.slick-arrow:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  opacity: 0.2;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.slick-prev:before{
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slick-arrow:hover:after{
  opacity: 1;
}
.slick-arrow:hover:before{
  background: url(../images/right_arrow_white.png) no-repeat center !important;
}
.input_group {
  width: 420px;
  margin: auto;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.input_group .form_control{
  border-color: #1044ff;
  border-right: none;
  width: 100%;
  border-radius: 8px 0 0 8px;
}
.form_group {
  margin-bottom: 10px;
}
.form_control.btn{
  height: 52px;
  min-width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  max-width: 110px;
  border-radius: 8px;
}
.input_group .form_control.btn{
  border-radius: 0 8px 8px 0;
}
.ft_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}
.sm ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sm li{
  margin: 0 10px 0 0;
}
.sm a{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border:1px solid #1044ff;
  border-radius: 50%;
}
.sm a svg{
  width: 20px;
  height: 20px;
  fill: #1044ff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.sm a:hover{
  background: #1044ff;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.sm a:hover svg{
  fill: #fff
}
.fb_col ul{
  margin-bottom: 30px;
}
.fb_col ul li a{
  font-size: 14px;
  color: #000;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 5px;
}
.fb_col ul li h6{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #1044ff;
  margin-bottom: 5px;
}
footer{
  background: #fff;
  overflow: hidden;
  position: relative;
border-top: 1px solid #d8d8d6;
}
footer h5 a,
footer h5{
  font-size: 15px;
  font-weight: 600;
  color: #1044ff;
  display: inline-block;
  margin-bottom: 5px;
}
footer h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.copy_right p{
  font-size: 15px;
  font-weight: 400;
  color: #000;
  padding: 0;
}
.fb_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fb_col{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  position: relative;
}
.fb_col:after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  opacity: 0.4;
}
.fb_col + .fb_col{
  padding: 15px 30px;
}
.fb_text{
  padding: 15px 20px 15px 0;
  position: relative;
}
.footer_btm{
  position: relative;
}
.fb_text:before,
.footer_btm:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
  opacity: 0.4;
}
.fb_text:before{
  top: auto;
  bottom: 0;
  width: 10000px;
  left: auto;
  right: 0;
  opacity: 0.4;
}
.fb_loc{
  padding: 15px 15px 0 0;
}
.fb_loc ul{
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  position: relative;
}
.fb_loc ul li{
  height: auto !important;
}
.fb_loc ul li img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: bottom;
}
address{
  margin-bottom: 20px;
}
footer a:hover{
  color: #00ff66 !important;
}
.footer_top,.footer_btm{
  position: relative;
  z-index: 1;
}
.our_strength .container{
  position: relative;
  z-index: 1;
}
.inovation_blk .au_shape_img2{
  opacity: 1;
}
.banner_shape img{
  max-width: 100%;
  height: 100%;
}
img{
  display: block;
  max-width: 100%;
}
.our_strength .au_shape_img {
  top: 0;
}
.sm {
  padding: 20px;
}
.banner .form_group{
  margin: 0;
}
.inovation_blk .container{
  position: relative;
  z-index: 1;
}
.testmonials .slick-track{
  padding: 30px 0;
}
.dl_ctg{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
}
.dropdown_links h4{
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px !important;
}
.dl_ctg_blk{
  margin: 0 30px 0 0;
}
.dropdown_links a{
  font-size: 15px;
  padding: 10px 20px;
  border:1px solid transparent;
  border-radius: 8px;
  display: inline-block;
  font-weight: 400;
  color: #000;
}
.dropdown_links a:hover{
  border:1px solid #0033ff;
  background: #fff;
}
.dl_ctg_blk ul{
  display: block;
}
.dl_ctg ul li{
  margin: 0 0 5px;
  padding: 0 !important;
}
.dl_ctg_links{
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px 0 0;
}
.dl_ctg_links li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
footer,
.our_stories,
.inovation_blk,
.our_strength,
.news_insights,
.about_us{
  overflow: hidden;
}
.dropdown_link:after{
  display: none;
}
.dl_ctg_blk2 h4{
  padding: 10px 20px;
}
.copy_right:after,
.footer_cntus:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: -o-linear-gradient(left, #00ff66, #0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66), to(#0033ff));
  background: linear-gradient(to right, #00ff66, #0033ff);
  opacity: 0.4;
}
.fb_col_last{
  padding: 0 !important;
}
.copy_right,
.footer_cntus{
  position: relative;
  padding: 20px;
}
.footer_cntus h5,
.footer_cntus h5 a{
  margin: 0 !important;
}
.footer_cntus h5 span{
  color: #000;
  font-weight: 500;
}
.btn_white_outline{
  border:1px solid #fff !important;
  color: #fff;
  background: none;
}
.btn_white:after,
.btn_white_outline:after{
  display: none;
}
.btn_white_outline:hover{
  background: #fff;
  color:#1044ff;
}
.btn_white{
  border:1px solid #fff !important;
  background: #fff;
  color: #1044ff;
}
.btn_white:hover{
  color: #fff;
  background:#1044ff;
  border:1px solid #1044ff !important;
}
.banner_btns .btn{
  margin: 0 10px 0 0;
}
.banner2 h1{
  font-size: 40px;
  text-shadow: none;
}
.banner2 .banner_cnt{
  min-height: auto;
  height: 620px;
  padding: 50px 0 !important;
}
.banner2 .banner_form{
  bottom: 60px;
}
.banner_cnt h4{
  text-transform: uppercase;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.banner2 {
  position: relative;
  overflow: hidden;
}
.banner2 .slick-dots{
  display: none;
}
.banner2 .banner_slide:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.3;
}
.banner2 .banner_slide{
  position: relative;
  z-index: 1;
}
.au_shape_img3{
  top: 50%;
  z-index: 2;
}
.banner2 .au_shape_img,
.banner2 .au_shape_img2{
  width: 500px;
}
.au_shape_img3 img{
  width: 100%;
}
.au_shape_img3 {
  top: 60%;
  bottom: auto;
  z-index: 2;
}
.banner2 .container{
  position: relative;
  z-index: 99;
}
.pc-lists{
  padding: 60px 0;
}
.pc_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.pc_row:nth-child(2n){
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.pc_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.pc_row + .pc_row{
  margin-top: 60px;
}
.pc_txt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
}
.page_cnt_Wrapper{
  position: relative;
  z-index: 1;
}
.pc_row h3{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
  color: #0033ff;
  margin-bottom: 20px;
}
.our_top_trends h4,
.pc_txt h4{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 10px;
}
.pc_txt p{
  margin-bottom: 30px;
}
.pc_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
  position: relative;
  background: #ccc;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.nl_cnt .ic_card:after,
.pc_img:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 424px;
  height: 330px;
  max-height: calc(100% - 50px);
  background: url(../images/shape_18.png) no-repeat left bottom / contain;
}
.our_top_trends{
  background: -o-linear-gradient(left, #00ff66, #0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66), to(#0033ff));
  background: linear-gradient(to right, #00ff66, #0033ff);
  border-radius: 10px;
  padding: 40px 25px 0;
  text-align: center;
  color: #fff;
}
.our_top_trends img{
  display: inline-block;
}
.our_top_trends ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.our_top_trends ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  padding:40px;
  position: relative;
}
.our_top_trends ul li:after{
  content: '';
  right: 0;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: #fff;
  position: absolute;
  opacity: 0.4;
}
.our_top_trends ul li:nth-child(n+4){
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.our_top_trends ul li:nth-child(3n):after{
  display: none;
}
.ot_icon{
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.our_top_trends h3{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}
.page_cnt_Wrapper .au_shape_img{
    bottom: auto;
    top: 0;
    opacity: 0.15;
}
.page_cnt_Wrapper .container{
  position: relative;
  z-index: 1;
}
.reach_us{
  min-height: 325px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -o-linear-gradient(left, #00ff66, #0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66), to(#0033ff));
  background: linear-gradient(to right, #00ff66, #0033ff);
  color: #fff;
  border-radius: 10px;
}
.reach_us h2{
  font-weight: 300;
  margin-bottom: 10px;
}
.reach_us p{
  font-size: 20px;
  margin-bottom: 20px;
}
.page_cnt_Wrapper{
  padding-bottom: 70px;
  overflow: hidden;
  max-width: 100vw;
}
body.page-home{
  background: #fff;
}

.pci_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
}
.pc_row2{
  padding: 60px 0 0;
}
.pc_row2 .pc_img{
  height: 350px;
  margin-bottom: 20px;
}
.pc_row2 p{
  margin-bottom: 20px;
}
.pc-lists + .pc_row2{
  padding: 0 0 50px;
}
.isim_list{
  text-align: left;
}
.lsim_blk  h3{
  margin-bottom: 50px;
}
.lsim_blk  ul li ul{
  display: block;
}
.lsim_blk ul.isim_list li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 40px;
  BORDER:none;
  border-right:1px solid rgba(255, 255, 255, 0.4);
}
.lsim_blk ul.isim_list li:nth-child(4n){
  border-right: 0;
}
.lsim_blk ul.isim_list li li{
  border:none !important;
  padding: 0;
}
.lsim_blk ul li:after{
  display: none;
}
.lsim_blk h5{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.lsim_blk ul.isim_list li li{
  font-size: 15px;
  margin-bottom: 15px;
}
.lsim_blk{
  padding: 60px 30px;
}
.our_top_trends ul li h6{
  font-size: 80px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 10px;
}
.dyk_blk li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
  padding: 80px;
  border:none !important;
}
.pci_blk ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pci_blk ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0 20px 10px 0;
  font-weight: 500;
}
.pc_txt ul{
  padding: 0 0 0 15px;
  font-size: 15px;
}
.banner_shape.au_shape_img3{
  opacity: 0.1 !important;
}
.pc_txt p:last-child{
  margin: 0;
}
.banner_btns .btn{
  font-size: 14px;
}
.banner_btns a:last-child{
  margin: 0;
}
.our_top_trends.els_blk li{
  border-top: none !important;
}
.lsim_blk ul.isim_list li li:last-child{
  margin: 0;
}
.banner3 .banner_shape {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.banner3 .au_shape_img2 {
  left: auto;
  right: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.banner3 .banner_cnt {
  height: 420px;
  margin: auto;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner3 .banner_cnt h1{
  font-size: 50px;
  font-weight: 300;
  margin: 0;
}
.banner3{
  text-align: center;
}
.icc_cnt{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 40%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 40%);
  color: #fff;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 30px;
  z-index: 2;
}

.ic_card:hover img{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.ic_card:hover img{
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.icc_cnt h5{
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.icc_cnt p{
  font-size: 18px;
  line-height: 26px;
}
.nl_cnt .ic_card:after{
  left: 0;
  bottom: 0;
  width: 75%;
  height: 75%;
  z-index: 1;
}
.btn_outline{
  color: #000;
  border:1px solid #cccccc !important;
}
.view_more{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}
.page_head{
  padding: 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nl_cnt{
  padding: 30px 0 0;
}
.ph_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  margin: 0 0 0 50px;
  padding: 30px 0 0;
}
label{
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
select:focus{
  outline: none;
}
.view_more .btn{
  width: auto;
  min-width: auto;
}
.pc_row3{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column: 30px;
      grid-column-start: 30px;
}
.form_blk{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.w_50{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
.form_group{
  margin-bottom: 20px;
}
.page_form{
  background: -o-linear-gradient(left, #00ff66, #0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66), to(#0033ff));
  background: linear-gradient(to right, #00ff66, #0033ff);
  border-radius: 10px;
  padding: 3% 15%;
  color: #fff;
  text-align: center;
}
.page_form h2{
  font-weight: 300;
}
.form_blk{
  max-width: 70%;
  margin: 50px auto 0;
  text-align: left;
}
.page_form .input_group{
  width: 100%;
}
.page_form .form_control{
  border:none;
}
.rq_form .input_group span,
.ca_form_blk .input_group span,
.page_form .input_group span{
  color: #999;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  font-size: 15px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-right: 1px solid #ccc;
  font-weight: 500;
}
.form_control:focus{
  outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number]{
    -moz-appearance: textfield;
}
.w_100 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
textarea.form_control{
  height: 120px;
  line-height: 20px;
  padding: 20px;
  resize: none;
}
.terms_conditiona{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}
.checkbox{
  margin: 0 10px 0 0;
}
.terms_conditiona label{
  font-size: 15px;
  font-weight: 300;
}
.terms_conditiona label strong,
.terms_conditiona label a,
.terms_conditiona label b{
  font-weight: 600;
  color: #fff;
}
.form_submit{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form_submit .btn{
  border:1px solid #fff !important;
}
.checkbox_LABEL{
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #fff;
  display: block;
}
.checkbox {
  position: relative;
}
.checkbox input{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.checkbox input + .checkbox_LABEL:after {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  left: 9px;
  width: 8px;
  height: 18px;
  border: solid #0036fc;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.checkbox input:checked + .checkbox_LABEL:after {
  visibility: visible;
  opacity: 1;
}
.terms_conditiona span,
.terms_conditiona a{
  display: inline-block;
}
select{
  background: #fff url(../images/chevron_down_2.png) no-repeat right 20px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.nl_cnt .ops_cnt{
  border:1px solid #ccc;
  border-top: none;
}
.nl_cnt .ops_card:hover .ops_cnt{
  border-color: transparent;
}
.nl_cnt .ops_card:hover .ops_cnt *{
  color: #fff;
}
.nl_cnt .ops_cnt h4,
.nl_cnt .ops_cnt span{
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: #999;
  display: block;
  line-height: 1;
}
 .nl_cnt .ops_cnt p{
  margin-bottom: 10px;
  font-weight: 500;
  color: #000;
 }

.nl_cnt .ops_list{
  display: block;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  padding: 0 10px;
}
.nl_cnt .ops_list .ops_card{
  display: block;
  margin: 0 0 20px;
  -webkit-transition: ;
  -o-transition: ;
  transition: ;
}
.page_Detail{
  max-width: 974px;
  margin: auto;
  padding: 70px 0 0;
}
.page_Detail h5{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.page_Detail h2{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}
.pi_nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.pi_nav span,
.pi_nav a{
  font-weight: 600;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pi_nav a:after{
  content: url(../images/share.png);
  margin-left: 5px;
  width: 20px;
}
.page_Detail a:hover{
  color: #0033ff;
}
.page_cnt p{
  margin-bottom: 20px;
}
.download_blk{
  margin-top: 50px;
}
.page_cnt h6{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.dc{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border:1px solid #ccc;
  padding: 5px 20px 5px 5px;
  border-radius: 8px;
}
.dc img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 67px;
          flex: 0 0 67px;
  height: 67px;
  margin: 0 15px 0 0;
}
.dc p{
  font-weight: 400;
  color: #000;
  margin: 0;
}
.dc p b{
  display: block;
  color: #999;
  font-size: 13px;
}
.mi_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mi_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  height: 70px;
  border-radius: 6px;
  margin: 0 20px 0 0;
}
.mi_img img{
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mi_cnt{
  font-size: 14px;
}
.mi_cnt p{
  margin: 0;
  font-weight: 400;
}
.mi_cnt a{
  color: #000;
  font-weight: 400;
}
a.mail_link{
  font-weight: 600;
  color: #0033ff;
  word-break: break-all;
}
.download_blk{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_img{
  position: relative;
  height: 440px;
  margin-bottom: 20px;
}
.page_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.page_img:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 75%;
  max-height: calc(100% - 50px);
  background: url(../images/shape_18.png) no-repeat left bottom / contain;
}
.news_details .page_img:after{
  display: none;
}
.table_wrapper{
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  margin: 30px 0;
}
table{
  width: 100%;
}
tr:last-child{
  border:none;
}
tr{
  border-bottom: 1px solid #ccc;
}
th,td{
  padding: 10px 15px;
  font-size: 15px;
}
th{
  background: rgba(204, 204, 204, 0.6);
  padding: 20px 15px;
  font-weight: 600;
}
.pc_lists2 .pc_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  height: 372px;
  position: relative;
}
.pc_lists2 img{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.pc_lists2 .ic_card{
  height: 372px;
}
.pci_btns{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pci_btns a{
  margin: 0 15px 0 0;
}
.pci_cnt{
  padding: 15px 30px 20px;
}
.nid_cards .pci_blk{
  border:1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.nid_cards .pci_blk .pc_img img,
.nid_cards .pci_blk .pc_img{
  border-radius: 0;
  margin: 0;
}
.nid_cards .pci_blk .pc_img{
  height: 210px;
}
.pci_cnt h4{
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
.page_support_cnt{
  border:1px solid #ccc;
  margin: 30px 0 0;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}
.page_support_cnt b,
.page_support_cnt strong{
  font-weight: 600;
}
.page_support_cnt ul,
.page_support_cnt p{
  margin-bottom: 20px;
}
.page_support_cnt ul{
  padding-left: 20px;
}
.page_support_cnt p + ul{
  margin-top: -15px;
}
.page_head p a{
  font-weight: 600;
}
.page_head p a:hover{
  color: #0000ff;
}
.psc_terms_conditions{
  padding: 0;
}
.psc_tabs_nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.psc_tabs_nav ul li{
  width: 100%;
}
.psc_tabs_nav ul li a{
  display: block;
  padding: 20px 30px;
  text-align: center;
  color: #999;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.psc_tabs_nav ul li a.active,
.psc_tabs_nav ul li a:hover{
  color: #0033ff;
}
.psc_tabs_nav ul li a:after{
  content: '';
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  height: 2px;
  margin: auto;
  width: 0%;
  background: -o-linear-gradient(left, #00ff66, #0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66), to(#0033ff));
  background: linear-gradient(to right, #00ff66, #0033ff);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.psc_tabs_nav ul li a.active:after,
.psc_tabs_nav ul li a:hover:after{
  width: 100%;
}
.psc_tab{
  display: none;
}
.psc_tab:first-child{
  display: block;
}
.according_content{
  display: none;
}
.psc_tabContent{
  padding: 30px;
}
.tab_pane{
  border:1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
.tab_pane + .tab_pane{
  margin-top: -1px;
}
.accordin_toggle{
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  padding: 15px 50px 15px 40px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tab_pane.active{
  border-color: #0033ff;
  z-index: 1;
}
.tab_pane_group{
  counter-reset: my-sec-counter;
}
.accordin_toggle::before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
  margin: 0 15px 0 0;
  position: absolute;
  left: 15px;
}
.accordin_toggle::after{
  content: '+';
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  letter-spacing: -5px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab_pane.active .accordin_toggle::after{
  content: '--';
  color: #0033ff;
}
.according_content{
  padding: 0 40px;
}
.careers_banner .banner_cnt{
  min-height: auto;
  height: 500px;
  margin: auto;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: flex-start;
  padding: 30px 0 !important;
}
.careers_banner .banner_cnt h1{
  font-size: 50px;
  font-weight: 600;
}
.careers_banner .banner_cnt p{
  font-weight: 400;
  margin: 0;
}
.page_careers {
  padding: 70px 0;
}
.page_careers h2{
  font-weight: 600;
  background: -o-linear-gradient(left, #00ff66 30%,#0033ff, #0033ff);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #00ff66),color-stop(#0033ff), to(#0033ff));
  background: linear-gradient(to right, #00ff66 30%,#0033ff, #0033ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 0 0 50px 0;
}
.page_careers .nid_cards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 30px;
  position: relative;
}
.page_careers .nid_cards .pci_btns{
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_careers .pci_btns a{
  width: auto;
  min-width: auto;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_careers .nid_cards .pci_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  margin: 15px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page_careers .nid_cards .pci_cnt{
  padding-bottom: 80px;
}
.pci_top{
}
.page_careers .nid_cards .pci_cnt p{
  margin: 0 0 20px;
}
.arrow_link{
  visibility: hidden;
  opacity: 0;
}
.arrow_link{
  background: #e6eaf4;
}
.arrow_link:hover{
  background: #fff;
}
.page_careers .nid_cards .pci_blk.current,
.page_careers .pci_blk:hover {
  border-color: #0033ff;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}
.page_careers .pci_blk:hover .arrow_link{
  visibility: visible;
  opacity: 1;
}
.page_careers .nid_cards .pci_blk .pc_img h3{
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
.job_card_Wrapper {
  border: 1px solid #0033ff;
  border-radius: 10px;
  padding: 20px;
  display: none;
}
.job_card_Wrapper.current{
  display: block;
}
.job_card_Wrapper h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.job_card_Wrapper p{
  font-size: 15px;
  font-weight: 400;
}
.job_cards_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0 0;
}
.jcl_card{
  border: 1px solid #ccc;
  border-radius: 10px;
}
.jcl_card:nth-child(n+3){
  margin: 30px 0 0;
}
.jcl_top{
  padding: 20px;
}
.job_cards_list h4{
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.jcl_title{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.jcl_title span{
  color: #999;
  font-weight: 300;
}
.jcl_btm{
  border-top: 1px solid #ccc;
  padding: 20px;
}
.jcl_btm ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.jcl_btm ul li{
  margin: 0 50px 0 0;
}
.jcl_btm ul li:last-child{
  margin: 0;
}
.jcl_btm ul li span{
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
}
.jcl_btm .pci_btns{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 0;
}
.jcl_card{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.jcl_card:hover{
  background: #e6eaf4;
}
.page_careers .page_head{
  padding: 0;
  margin: 0 0 30px;
}
.page_careers .page_head h2{
  text-align: left;
  background: none;
  color: #000;
  webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 10px;
}
.jobs_ctgnav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_careers .ph_lft{
  width: 45%;
}
.page_careers .ph_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}
.jobs_ctgnav li{
  margin: 0 0 0 10px;
}
.jobs_ctgnav li a:hover,
.jobs_ctgnav li a.active{
  background: #fff;
  border-color: #0033ff !important;
  color: #000;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}
.job_details_Wraper{
  border:1px solid #ccc;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 820px;
}
.job_details_Wraper .job_cards_list{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 584px;
          flex: 0 0 584px;
  border-right: 1px solid #ccc;
  padding: 20px;
  margin: 0;
  overflow: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.job_details_Wraper .job_cards_list .jcl_card{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.job_details_Wraper .job_cards_list .jcl_card.current{
  border-color: #0033ff;
  background: #e6eaf4;
}
.job_details_Wraper .job_cards_list .jcl_card + .jcl_card{
  margin: 20px 0 0;
}
.job_details_Wraper .jcl_btm{
  padding: 10px 20px 20px;
  height: 100%;
  overflow: auto;
}
.jobAdd .arrow_link{
  visibility: visible;
  opacity: 1;
  background: #fff;
  border-color: #0033ff !important;
}
.job_dtls{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.jdls_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.job_dtls:first-child{
  display: block;
}
.job_full_disc .jcl_title h4{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
  color: #0033ff;
}
.job_full_disc .jcl_title h4 span{
  font-size: 15px;
  color: #000;
  font-weight: 400;
}
.job_full_disc p{
  font-weight: 400;
  font-size: 15px;
}
.job_full_disc p span{
  color: #000;
}
.jobAdd{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.jobAdd address{
  margin: 0;
}
.job_full_disc .jcl_top,
.job_full_disc .jcl_btm{
  padding: 30px;
}
.job_full_disc .jcl_btm p{
  font-size: 16px;
  margin-bottom: 30px;
}
.job_full_disc .jcl_btm li{
  font-size: 16px;
  font-weight: 400;
}
.job_full_disc .jcl_btm .job_info{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.job_full_disc .jcl_btm .job_info li{
  margin: 0;
  white-space: nowrap;
}
.job_full_disc .jcl_btm .job_info li + li{
  margin: 0 0 0 50px;
}
.job_full_disc .jcl_btm .job_info li:first-child{
  width: 100%;
  white-space: wrap;
}
.qualifications p{
  margin: 0 !important;
}
.qualifications ul{
  display: block !important;
  margin: 5px 0 0;
}
.qualifications ul li{
  margin: 0 !important;
}
.job_full_disc .jcl_btm H3{
  font-size: 20px;
  margin: 0;
}
.job_discription h3{
  margin: 0 0 15px !important;
}
.job_details_Wraper .jcl_btm ul{
  width: 100%;
  position: relative;
  padding-right: 50px;
}
.jcl_btm ul:after{
  content: url(../images/right_arrow.png);
  position: absolute;
  right: 0;
  top: 20px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.jcl_card.current .jcl_btm ul:after,
.jcl_card:hover .jcl_btm ul:after{
  content: url(../images/right_Arrow_blue.png);
}
.tooltip{
  position: relative;
  overflow: visible;
}
.tooltip_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -70px;
  background: red;
  width: 133px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: #999;
  font-weight: 600;
  border: 1px solid #ccc;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.tooltip_text:before,
.tooltip_text:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  bottom: -21px;
  margin: auto;
  border:10px solid transparent;
  border-top-color: #ccc;
}
.tooltip_text:after{
  bottom: -20px;
  border-top-color: #fff;
}
.tooltip_text img{
  margin: 0 5px 0 0;
}
.tooltip:hover .tooltip_text{
  visibility: visible;
  opacity: 1;
}
.jodtb_triiger{
  display: none;
}
.jodtb_triiger.active{
  display: block;
}
.career_Application{
  max-width: 1055px;
  margin: auto;
}
.career_Application .page_head .ph_lft{
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ca_form_blk{
  background: #fff;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  text-align: left;
}
.caf_top{
  padding: 10px 30px;
}
.caf_top .form_group{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  max-width: 340px;
  margin: 0;
}
.caf_top p{
  font-size: 15px;
  font-weight: 400;
}
.ca_form_feilds{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ca_form_feilds{
  padding: 30px;
  border-top: 1px solid #ccc;
}
.ca_form_feilds .input_group{
  border:1px solid #ccc;
  margin: 0;
  width: 100% !important;
}
.ca_form_feilds .input_group .form_control{
  border:none;
}
.ca_form_feilds .checkbox_LABEL{
  border-color: #000;
  border:1px solid #000;
}
.ca_form_feilds .checkbox input + .checkbox_LABEL:after{
  border-color:#000;
}
.ca_form_feilds .terms_conditiona label strong,
.ca_form_feilds .terms_conditiona label a,
.ca_form_feilds .terms_conditiona label b{
  color: #000;
}
.uploads{
  padding: 20px 30px;
  border-top:1px solid #ccc;
  background: #f7f7f7;
}
.uploads h4{
  font-size: 16px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
}
.file_uploads{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
.form_upload{
  width: 100%;
  margin: 0 5px;
  height: 140px;
  padding: 20px;
  border:1px dashed #ccc;
  border-radius: 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.form_upload img{
  display: block;
  margin-bottom: 15px;
}
.file_upload{
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.form_upload span{
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}
.filename{
  position: absolute;
  top: 0;
  background: #FFF;
  left: 65px;
  top: 0;
  width: 150px;
  height: 75px;
  overflow: hidden;
  word-break: break-all;
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #0033ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_upload:after{
  content: '*';
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #999;
}
.job_full_disc .jcl_btm ul:after{
  display: none;
}

:focus::-webkit-input-placeholder {
 color: transparent;
 -webkit-transition: color 0.2s ease;
 transition: color 0.2s ease;
}

:focus:-moz-placeholder { /* Firefox 18- */
 color: transparent;
 -webkit-transition: color 0.2s ease;
 -moz-transition: color 0.2s ease;
 transition: color 0.2s ease;
}

:focus::-moz-placeholder {  /* Firefox 19+ */
 color: transparent;
 -webkit-transition: color 0.2s ease;
 -moz-transition: color 0.2s ease;
 transition: color 0.2s ease;
}

:focus:-ms-input-placeholder {  
 color: transparent;
 -webkit-transition: color 0.2s ease;
 -ms-transition: color 0.2s ease;
 transition: color 0.2s ease;
}
.company_banner {
  position: relative;
}
.company_banner .banner_cnt {
  min-height: 710px;
  padding: 30px 0 !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
}
.company_banner:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.2;
}
.banner_nav {
  margin-top: 60px;
}
.banner_nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner_nav ul li {
  margin: 0 75px;
}
.banner_nav ul li a{
  border-radius: 10px;
  color: #fff;
  display: block;
  min-height: 157px;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.banner_nav ul li a *{
  position: relative;
  z-index: 1;
}
.banner_nav ul li a span{
  display: block;
  font-size: 20px;
  margin: 15px 0 0;
}
.banner_nav ul li a:hover:after,
.banner_nav ul li a.active:after{
  visibility: visible;
  opacity: 1;
}
.banner_nav ul li a:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: linear-gradient(to right, #00ff66,#0033ff);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.btn_blue_outline {
  border-color: #1044ff !important;
}
.company_Wrapper .pc_row{
/*  align-items: center;*/
}
.company_Wrapper .pc_row .pc_txt p {
    margin-bottom: 20px;
}
.company_Wrapper .pc_row:first-child{
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.company_Wrapper .our_top_trends ul {
  padding: 50px 0;
}
.company_Wrapper .our_top_trends ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  padding: 40px 10px;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company_Wrapper .our_top_trends ul li:after{
  display: none !important;
}
.company_Wrapper .our_top_trends ul li:nth-child(4){
  border-top: 0;
}
.company_Wrapper .our_top_trends h4{
  font-size: 50px;
  line-height: 1;
}
.pc_txt .routes_list{
  max-width: 100%;
  height: 100%;
  padding: 20px 0;
}
.pc_txt .routes_list p{
  margin: 0 !important;
}
.pc_txt .routes_list ul{
  padding: 0;
}
.vm_row{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.pc_txt .routes_list ul {
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pc_txt .routes_list ul li:last-child{
  padding-bottom: 0;
  margin: 0;
}
.team_Wrapper{
  padding: 70px 0 40px;
  text-align: center;
}
.tw_head{
  padding: 0 10%;
  margin: 0 0 30px;
}
.team_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bordOfDirectors ul{
  width: 100% !important;
}
.team_row figcaption{
  padding: 0;
}
.team_block{
  margin-bottom: 100px;
}
.team_block h3{
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  color: #0033ff;
  text-align: left;
  margin: 0;
}
.team_block + .team_block{
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
.bordOfAdv .slick-dots{
  display: none;
}
.team_block:last-child{
  margin: 0 0 70px;
}

.modal_dialog {
  position: relative;
  width: auto;
  margin: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100% - (3rem * 2));
  z-index: 9999999;
}
.close {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border:none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.close:hover{
  color: #0033ff;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #fff;
  opacity: 0.77;
  display: none;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: auto;
  outline: 0;
}
button{
  cursor: pointer;
}
.modal_content{
  background: #fff;
  border:1px solid #ccc;
  border-radius: 10px;
  padding: 30px 60px 30px 30px;
  max-width: 1000px;
  position: relative;
  z-index: 9999;
}
.team_slide{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ts_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 265px;
          flex: 0 0 265px;
  max-width: 265px;
  height: 265px;
  overflow: hidden;
  background: #c1e4ec;
  border-radius: 10px;
}
.ts_img img{
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team_discription{
  padding: 0 0 0 30px;
}
.team_discription p{
  font-weight: 400;
}
.team_dis_top{
  margin: 0 0 30px;
}
.team_dis_top h4{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}
.team_dis_top p{
  margin: 0;
}
.team_dis p{
  margin: 0 0 30px;
}
.team_share a{
  min-width: auto;
  border:1px solid #ccc !important;
  height: 54px;
  width: 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team_share a img{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.team_share a:hover img{
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(289deg) brightness(118%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(289deg) brightness(118%) contrast(100%);
}
.sg_banner:after{
  opacity: 0.5;
}
.download_broucher{
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: linear-gradient(to right, #00ff66,#0033ff);
  padding: 50px;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
}
.download_broucher h2{
  width: 100%;
  text-align: center;
}
.dbc_cnt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  max-width: 45%;
}
.dbc_cnt p {
  margin-bottom: 30px;
}
.company_Wrapper .ops_wrapper{
  background: none;
  padding: 50px 0 100px;
  position: relative;
}
.company_Wrapper .ops_wrapper .ops_head{
  color: #000;
  max-width: 62%;
}
.company_Wrapper .ops_wrapper .inovation_btn{
  right: 0;
  left: auto;
  top: 140px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.company_Wrapper .ops_wrapper .ops_card{
  border:1px solid #ccc;
}
.company_Wrapper .ops_list{
  display: block;
}
.company_Wrapper .ops_wrapper .ops_card:hover{
  -webkit-box-shadow: none;
          box-shadow: none;
}
.company_Wrapper .ops_wrapper .ops_card:hover:before{
  display: none;
}
.company_Wrapper .ops_wrapper .ops_card:hover .ops_cnt p,
.company_Wrapper .ops_wrapper .ops_card:hover .ops_cnt{
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    color: #000 !important;
}
.company_Wrapper .ops_wrapper .ops_img:after{
  display: none;
}
.company_Wrapper .ops_wrapper .ops_img:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 424px;
  height: 330px;
  max-height: calc(100% - 50px);
  background: url(../images/shape_18.png) no-repeat left bottom / contain;
}
.company_Wrapper .ops_wrapper .slick-next{
  left: auto;
  right: 15px;
}
.company_Wrapper .ops_wrapper .slick-prev{
  left: auto;
  right: 80px;
}
.lmas_blk ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.lmas_blk ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  margin: 15px;
  border:1px solid #ccc;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
.lmas_blk ul li .lmas_icon{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.lmas_blk ul li h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lmas_blk ul li p{
  height: 66px;
  overflow: hidden;
  margin-bottom: 10px;
}
.lmas_blk ul li .btn{
  background: #0033ff;
  color: #fff;
}
.company_Wrapper + .company_Wrapper:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: linear-gradient(to right, #00ff66,#0033ff);
}

.sg_banner h2{
  margin: 0;
}
.contact_cards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.cc-col-4{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 30px);
          flex: 0 0 calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  margin: 15px;
}
.cc-col-8{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(66.66%  - 30px);
          flex: 0 0 calc(66.66%  - 30px);
  max-width: calc(66.66% - 30px);
  margin: 15px;
}

.page_Contact{
  position: relative;
  padding: 50px 0;
}
.pc_head{
  max-width: 55%;
  margin: 0 auto 30px;
  text-align: center;
}
.pc_head p{
  font-size: 16px;
}
.page_Contact .pci_cnt {
    padding: 20px;
}
.page_Contact .pci_btns{
  margin: 20px 0 0;
}
.page_Contact .pci_cnt h4{
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}
.page_Contact .pci_btns .btn{
  height: 45px;
  line-height: 45px;
  width: auto;
  min-width: auto;
  font-weight: 600;
}
.card_enquiry input{
  background:#fff url(../images/location.png) no-repeat left 15px center;
  padding-left: 40px;
}
.card_enquiry .input_group .btn{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #0033ff;
  width: auto;
  color: #fff;
}
.page_Contact .pci_blk{
  height: 100%;
}
.page_Contact .pci_btns .mail_link{
  color: #000;
  font-weight: 400;
}
.card_enquiry .input_group .btn{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
}
.card_enquiry .input_group .form_control{
  border-color: #ccc;
}
.contact_Add{
  border:1px solid #ccc;
  border-radius: 10px;
  background: #ffff;
  padding: 30px;
  height: 318px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.contact_Add img{
  width: 165px;
  margin: 0 0 30px;
}
.contact_Add address{
  margin-bottom: 50px;
}
.contact_Add address b{
  color: #0033ff;
}
.contact_Add p{
  color: #000;
  font-weight: 400;
}
.contact_Add p a{
  font-size: 20px;
  color: #0033ff;
  font-weight: 600;
}
.map {
  border-radius: 10px;
  overflow: hidden;
  border:1px solid #ccc;
}
.map iframe{
  width: 100%;
  height: 100%;
}
.contact_froms{
  padding: 30px 0 0;
  color: #000;
}
.forms_block{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 50px;
}
.ca_form_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border:1px solid #ccc;
}
.Subscribe_block{
  margin: 0 0 0 30px;
  width: 100%;
  background: #0066ff;
  padding: 30px;
  color: #fff;
  border-radius: 10px;
}
.Subscribe_block form{
  margin: 50px 0;
}
.Subscribe_block form button{
  min-width: auto;
  width: 100px;
  margin: 10px 0 0 auto;
  display: block;
  border:1px solid #fff !important;
  font-weight: 600;
}
.Subscribe_block form button:hover:after{
  background: #fff;
}
.Subscribe_block form button:hover{
  color: #0033ff;
}
.Subscribe_block a{
  text-decoration: underline;
  font-weight: 6000;
  color: #fff;
}
.Subscribe_block form input{
  background:#fff url(../images/email.png) no-repeat left 15px center;
  padding-left: 50px !important;
}
select:required:invalid {
  color: #999;
}
option[value=""][disabled] {
  display: none;
}
option {
  color: #000;
}
.contact_submit{
  width: 100px;
  margin: 0 0 0 auto;
}
.products_landing{
  background: #fff;
}
.products_landing .au_shape_img {
  bottom: auto;
  top:0;
}
.products_landing .ops_head{
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
.products_landing .ops_head h2 span{
  display: inline-block;
}
.products_landing .ops_list{
  margin-bottom: 100px;
}
.rq_form .input_group span{
  color: #fff;
  border-right: 1px solid #fff;
}
.pl_page_banner .banner_cnt{
  height: 520px;
  min-height: auto;
  padding: 50px 0 !important;
}
.pl_page_banner .banner_cnt h2{
  font-size: 40px;
  margin: 0;
}
.rq_block{
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: linear-gradient(to right, #00ff66,#0033ff);
  color: #fff;
  position: relative;
}
.rq_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 540px;
}
.rq_form{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 550px;
          flex: 0 0 550px;
  max-width: 550px;
  padding: 30px 15px;
}
.rq_txt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 30px 18% 30px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.rq_form .ca_form_feilds{
  border: none;
  padding: 0;
}
.rq_txt p{
  margin: 0 0 60px;
}
.rq_form .form_control{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.rq_form .ca_form_feilds .input_group {
  border: 1px solid #fff;
  margin: 0;
  width: 100% !important;
  background-color: transparent;
}
.rq_form .form_control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.rq_form .form_control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.rq_form .form_control::-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.rq_form .form_control::-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.rq_form select:required:invalid {
  color: #fff;
}
.rq_form .ca_form_feilds select.form_control{
  background: url(../images/chevron_down_white.png) no-repeat right 20px center;
}
.btn_blue:after{
  display: none;
}
.btn_blue{
  background: #0033ff;
  font-weight: 600;
}
.rq_submit{
  margin-left: auto;
}
.rq_submit button{
  width: 100%;
}
.btn2{
  background: rgba(255, 255, 255, 0.4);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  height: 84px;
  border-radius: 50px;
}
.btn2:hover{
  background: #fff;
  color: #0033ff;
}
.btn2 span{
  font-weight: 500;
  margin: 0 20px 0 0;
  color: #fff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.btn2 small{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.btn2:hover span{
  color: #0033ff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.btn2:hover small{
  background: #0033ff;
}
.btn2:hover small img{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.btn2:hover small img{
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(289deg) brightness(118%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(289deg) brightness(118%) contrast(100%);
}

.banner_form .form_group{
  margin: 0;
}

/*routemap2*/
.rmp2 {
  justify-content: space-between;
}
.rmp2 .ops_head{
  flex: 0 0 620px;
  max-width: 620px;
}
.rn_list{
  margin-top: 30px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
}
.rn_card:first-child{
  grid-area: 1 / 1 / span 2 / span 2;
}
.rn_card:nth-child(2){
  grid-area: 1 / 3 / span 2 / span 2;
  height: auto;
}
.rn_card:nth-child(3){
  grid-area: 2 / 3 / span 1 / span 2;
}
.rn_card:nth-child(4){
  grid-area: 3 / 1 / span 4 / span 4;
}
.rnl_child{
  flex: 0 0 327px;
}
.rn_card {
  border:1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}
.rn_title{
  display: flex;
  align-items: center;
}
.rn_title img{
  flex: 0 0 20px;
  max-width: 20px;
  margin: 0 10px 0 0;
}
.rn_title h4{
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 0 0 15px;
  position: relative;
  width: 100%;
}
.rn_title h4::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: -o-linear-gradient(left, #00ff66,#0033ff);
  background: -webkit-gradient(linear, left top, right top, from(#00ff66),to(#0033ff));
  background: linear-gradient(to right, #00ff66,#0033ff);
}
.rn_card ul{
  padding: 0 0 0 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rn_card ul li{
  font-weight: 400;
  color: #000;
  margin: 10px 0 0;
  text-transform: capitalize;
  flex: 0 0 49%;
}
.rn_card:nth-child(4) ul{
  justify-content: flex-start;
}
.rn_card:nth-child(4) li{
  flex: 0 0 25%;
  max-width: 25%;
}
.rn_2{
  flex: 0 0 283px;
  margin: 0 0 0 10px;
}
.rn_2 .rn_card + .rn_card{
  margin-top: 10px;
}
.rmp2 h2 span{
  display: inline-block;
}
.route_map2{
  padding: 70px 0;
  overflow: hidden;
}
.rmp_img {
  width: 100%;
  margin: 0 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers_banner .banner_slide:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0a189a;
  opacity: 0.2;
}