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;
}
b,strong{
  font-weight: 600;
}
table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
  color: #0f62ab;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}
a:hover,
a:active{
  color: #000;
  outline: none;
}
button{
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
}
img{
  display: block;
  max-width: 100%;
}
.clearfix::after{
  content: '';
  clear: both;
  display: table;
}
/*fonts*/
html,body{
    scroll-behavior: smooth;
}
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
body{
  font-family: 'Arial';
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  padding-top: 103px;
}
h1{
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
}
h2{
  font-size: 50px;
  line-height: 1.2;
  font-weight: 400;
}
h3{
  font-size: 25px;
  line-height: 1.4;
  font-weight: normal;
}
h4{
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
h5{
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
h6{
  font-size: 16px;
  font-weight: 600;
}
.row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -30px;
}
.col-4{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  padding: 0 30px;
}
.col-6{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
  padding: 0 30px;
}
.col-3{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  padding: 0 30px;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid transparent;
}
.d-block{
  display: block !important;
}
header.sticky{
  border-color: #9e9e9e;
}
.header_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mega_menu{
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99;
  top: 100%;
  -webkit-box-shadow: 0 9px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 16px rgba(0, 0, 0, 0.1);
}
.mega_menu_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mm_lft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 750px;
          flex: 0 0 750px;
  width: 750px;
  padding: 30px 0;
}
.mm_lft ul{
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mm_lft ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 30px;
  margin: 0 !important;
}
.mm_lft ul li a{
  display: block;
  height: 100%;
  padding: 0;
  text-transform: capitalize;
  font-weight: normal;
  color: #000;
  padding: 20px 0;
}
.mm_lft ul li a span{
  font-size: 20px;
  display: block;
  margin-bottom:  10px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mm_lft ul li a p{
  font-size: 15px;
  text-transform: none;
  color: #717171;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mm_lft ul li a:hover p{
  color: #000;
}
.mm_img {
  width: 100%;
  max-width: 396px;
  min-height: 572px;
  overflow: hidden;
}
.mm_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header nav{
  /*margin-left: 100px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav ul li{
  margin: 0 20px;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul li a{
  text-transform: uppercase;
  padding: 0;
  position: relative;
  color: #0f62ab;
  font-weight: 600;
}
.article_cnt h3 a::after,
nav ul li a::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #0f62ab;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mm_lft ul li a:after{
  width: 100%;
  background: #a1a1a1;
  bottom: 0;
}
.dropdown_btn.open:after,
.mm_lft ul li a:hover:after{
  background: #0f62ab;
  width: 100%;
}
.mm_lft ul li a:hover span{
  color: #0f62ab;
}
nav ul li a.active,
nav ul li a:hover{
  color: #000;
}
nav ul li a:hover::after,
nav ul li a.active::after{
  width: 100%;
}
.header_lft{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.git_btn{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: none;
  background: transparent;
  line-height: 24px;
  margin-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 20px;
}
.git_btn span{
  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;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 12px;
  height: 12px;
  color: #191919;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.git_btn span small{
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4px;
          flex: 0 0 4px;
  width: 4px;
  height: 4px;
  background: #191919;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.git_btn:hover span small{
  background: #0f62ab;
}
.git_btn span small:nth-child(odd){
  margin-right: 4px;
}
.git_btn b{
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 20px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.git_btn:hover b{
  color: #0f62ab; 
}
.header_rht {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu_toggle{
  display: none;
  margin-left:  20px;
}   
.menu_toggle button {   
  padding: 0;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  -webkit-transition: background-color 2s ease;
  -o-transition: background-color 2s ease;
  transition: background-color 2s ease;
}
.button-inner-wrapper {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
/* Menu toggle button */
.icon {
    line-height: 0;
}
.menu-icon {
  text-align: right;
  width: 27px;
}
.menu-icon::after, .menu-icon::before {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 3px;
  width: 27px;
  margin: 3px 0;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.menu-icon::before {
  width: 27px;
}
.menu-icon::after {
  width: 18px;
}
#menu-button:hover .menu-icon::before {
  width: 18px;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#menu-button:hover .menu-icon::after{
  width: 27px;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#menu-button.is-opened .menu-icon::before {
  -webkit-transform: rotateZ(135deg) translate(3px, -3px);
      -ms-transform: rotate(135deg) translate(3px, -3px);
          transform: rotateZ(135deg) translate(3px, -3px);
  width: 27px;
}
#menu-button.is-opened .menu-icon::after {
  -webkit-transform: rotateZ(-135deg) translate(3px, 3px);
      -ms-transform: rotate(-135deg) translate(3px, 3px);
          transform: rotateZ(-135deg) translate(3px, 3px);
  width: 27px;
}



.banner{
  background: #ccc no-repeat center bottom / cover;
  overflow: hidden;
  position: relative;
}
.banner:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.2;
}
.banner .container{
  min-height: 780px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.banner_cnt{
  max-width: 70%;
}
.banner_cnt h1{
  color: #fff;
  margin-bottom: 30px;
}
.banner_contact{
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  width: calc(100% / 3);
  min-height: 230px;
  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;
  padding: 50px 90px;
  z-index: 9;
}
.banner_contact::after{
  content: '';
  width: 10000px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: -5px;
}
.banner_contact a{
  text-transform: uppercase;
}
.banner_contact span{
  font-size: 36px;
  line-height: 1.2;
  display: block;
  margin-bottom: 10px;
}
.title{
  display: block;
  text-transform: capitalize;
}
.title::after{
  content: '';
  width: 50px;
  height: 1px;
  background: #0f62ab;
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.btn{
  background: #fff;
  line-height: 52px;
  padding: 0 40px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #000;
}
.btn:hover{
  background: #0090e2;
  color: #fff;
}
.btn_white{
  border: 1px solid #0f62ab;
  color: #0f62ab;
}
.btn_white:hover{
  border-color: #0090e2;
  background: #0090e2;
  color: #fff;
}
.btn_blk:hover{
}


.our_values{
  padding: 50px 0;
}
.hov_item span{
  display: block;
  margin-bottom: 25px;
  color: #717171;
  font-weight: 600;
}
.hov_item p{
  font-size: 24px;
  line-height: 31px;
}

.pw_head{
  max-width: 720px;
  margin-bottom: 30px;
}
.pw_head h2{
  margin-bottom: 30px;
}
.projects_wrapper{
  padding: 30px 0 50PX;
}
.projects_row{
  margin: 0 -30px;
}
.project_card{
  padding: 0 30px 10px;
}
.project_img{
  height: 522px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}
.project_img:hover img{
  -webkit-transform: scale(1.2,1.2);
      -ms-transform: scale(1.2,1.2);
          transform: scale(1.2,1.2);
}
.project_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s all ease-in-out;
  -o-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}
.article_cnt small{
  color: #717171;
  display: block;
  margin-bottom: 10px;
}
.article_cnt h3{
  margin-bottom: 10px;
}
.article_cnt h3 a{
  position: relative;
  display: inline-block;
}
.article_cnt h3 a:hover{
  color: #fa6400
}
.article_cnt h3 a:hover::after{
  width: 100%;
}
.article_cnt p{
  margin-bottom: 20px;
}
.os_wrapper{
  margin-bottom: 100px;
}
.os_wrapper h2{
  margin-bottom: 40px;
}
.os_item img{
  margin-bottom: 15px;
}
.os_item h3{
  margin-bottom: 15px;
  height: 34px;
  overflow: hidden;
}
.os_item p{
  margin-bottom: 20px;
  height: 78px;
  overflow: hidden;
}

.os_item{
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.os_item2{
  padding-top: 0 !important;
}
.view_btn{
  position: absolute;
  right: 0;
  bottom: 0;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.view_btn small{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62px;
          flex: 0 0 62px;
  width: 62px;
  display: inline-block;
  font-size: 35px;
  line-height: 62px;
  text-align: center;
  background: #fff;
  z-index: 1;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.view_btn span{
  position: absolute;
  right: 42px;
  top: 0;
  display: inline-block;
  width: 0;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  line-height: 62px;
  white-space: nowrap;
  padding: 0 0 0 20px;
  font-weight: 600;
}
.view_btn:hover span{
  width: 110px;
  right: 62px;
}
.view_btn:hover small{
  color: #000;
}

.our_process_wrapper{
  padding: 100px 0;
  margin: 0 !important;
  overflow: hidden;
}
.opw_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.opw_lft{
  width: 100%;
  padding: 0 50px 0 0;
}
.opw_lft h2{
  margin-bottom: 70px;
}
.opw_lft p{
  margin-bottom: 50px;  
}
.opw_lft ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10%;
}
.opw_lft ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
  margin-bottom: 50px;
}
.opw_lft ul li p{
  margin-bottom: 0;
}
.opw_lft ul li h3{
  font-size: 30px;
}
.opw_lft ul li::after{
  content: '';
  width: 50%;
  height: 2px;
  background: #0f62ab;
  position: absolute;
  bottom: -25px;
}
.opw_lft u l li + li{
  margin-top: 60px;
}
.opw_lft ul li small{
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
}
.opw_lft ul li small{

}
.opw_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 436px;
          flex: 0 0 436px;
  width: 436px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 473px;
}

.opw_rht > [class *= 'opw_img'] img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ois{
  width: 100%;
  height: 473px;
  overflow: hidden;
}
.opw_img_2{
  width: 335px;
  height: 335px;;
  bottom: -70px;
  left: 0;
}
.opw_img_3{
  width: 398px;
  height: 365px;
  bottom: -60%;
  right: 100px;
}

.obw_in {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.obw_in h2{
  margin-bottom: 45px;
}
.obw_in ul li a {
  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;
  border-bottom: 1px solid #959595;
  font-size: 30px;
  line-height: 1.2;
}
.obw_in ul li a svg{
  fill: #000;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.obw_in ul li a:hover{
  color: #fa6400;
  border-color: #fa6400;
}
.obw_in ul li a:hover svg{
  fill: #fa6400;
}
.our_records{
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 100px;
  padding: 0 0 50px;
}
.our_records ul li{
  padding: 20px 0 40px;
}
.our_records ul li + li{
  border-top: 1px solid #828383;
}
.our_records ul li span{
  font-size: 64px;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.our_best_wrapper{
  background: url(../images/bg_img_1.png) no-repeat center top;
  margin-bottom: 150px;
}
.btn_blk{
  background: #000;
  color: #fff;
}
.mol_lft{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  width: 33.33%;
}
.mol_lft h2{
  margin-bottom: 30px;
}
.mol_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ls_item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.leaders_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 435px;
          flex: 0 0 435px;
  width: 435px;
  height: 567px;
  overflow: hidden;
}
.leaders_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ls_cnt {
  padding: 40px 80px 40px 40px;
}
.ls_cnt h3 {
  margin:0 0 20px;
}
.ls_cnt h3 span{
  display: block;
  font-size: 16px;
}
.mol_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66%;
          flex: 0 0 66.66%;
  width: 66.66%;
}
.mol_wrapper{
  margin-bottom: 120px;
}
.our_client_wrapper{
  height: 102px;
  overflow: hidden;
  margin-bottom: 80px;
}
.oc_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.oc_title{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  width: 20%;
}
.oc_slider{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  width: 80%;
  padding: 20px 0;
  border-left: 1px solid #999;
}
.oc_slider .slick-slide{
  height: 62px;
  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;
}
.oc_slider .slick-slide {
  margin:0 5px;
}
.oc_slider .slick-slide img{
  max-width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.oc_slider .slick-slide img:hover{
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.get_in_tocuh{
  background: #000 url(../images/bg_2.webp) no-repeat center center;
  padding: 140px 0 80px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.git_cnt h2{
  color: #fff;
  line-height: 70px;
  margin-bottom: 30px;
}
.git_cnt h2 .animte_text{
  width: 180px;
  display: inline-block;
  vertical-align: middle;
}
.git_cnt h2 .word{
  font-weight: normal;
}

.btn_gray{
  background: #1c1a1a;
  color: #fff;
  line-height: 52px;
  margin-right: 10px;
}

footer{
  padding: 80px 0 50px;
  border-top: 5px solid #0f63ab;
  overflow: hidden;
}
footer h4 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}
.ft_logo p{
  font-size: 15px;
}
.footer_logo{
  margin-bottom: 50px;
  display: block;
}
footer h4 b{
  font-weight: 600;
}
.footer_top address strong{
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
}
.footer_top b{
  font-weight: bold;
  line-height: 26px;
}
.footer_top p {
  margin:5px 0 20px;
}
footer .container{
  position: relative;
}
footer nav{
  margin-bottom: 30px;
}
footer nav ul{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer nav ul li{
  margin: 0;
}
footer nav ul li a{
  padding: 0;
  display: block;
  font-weight: bold;
}
.footer_btm ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_btm ul li a{
  color: #000;
  font-weight: 400;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.copyRights{
  font-weight: 600;
}
.bck_top a:hover,
.footer_btm ul li a:hover{
  color: #0f62ab;
}
.bck_top{
  position: absolute;
  bottom: -15px;
  right: 0;
}
.bck_top a{
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: block;
  z-index: 9;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  color: #000;
  margin-bottom: 20px;
}
.slick-arrow{
  background: #e0e0e0;
  z-index: 9;
  width: 54px;
  height: 54px;
  -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:focus,
.slick-arrow:hover{
  background: #fff;
}
.slick-prev:before, .slick-next:before {
  opacity: 1;
  color: #707070;
  font-size: 42px;
  line-height: 54px;
  -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:hover::before{
  color: #000;
}
.projects_row .slick-prev{
  left: 50px;
  background: rgba(255,255,255,0.6);
}
.projects_row .slick-next{
  right: 50px;
  background: rgba(255,255,255,0.6);
}
.projects_row .slick-arrow{
  top: 235px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.projects_row .slick-arrow:hover{
  background: #fff;
}


.contact_sidebar{
  position: fixed;
  right: -100%;
  top: 0;
  width: 640px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  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;
  overflow: auto;
  -webkit-transition: 0.6s all ease-in-out;
  -o-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.contact_sidebar.show{
  right: 0;
  visibility: visible;
  opacity: 1;
}
.close_sidenav {
  position: absolute;
  left: 20px;
  top: 20px;
  background: none;
  border: none;
  font-weight: normal;
}
.close_sidenav svg{
  width: 50px;
  height: 50px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.close_sidenav:hover svg{
  fill: #fa6400;
}
.st_address{
  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;
  height: 50%;
}
.s_top {
  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;
}
.st_address{
  padding: 70px 50px;
}
.st_address,
.contact_form {
  height: 100%;
}
.st_address{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #b7b7b7;
}
.contact_form{
  padding: 30px 130px 40px;
  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;
}
.s_sm{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.s_sm a{
  color:#21205b;
  text-transform: capitalize;
}
.st_address .sb_logo{
  margin-bottom: 70px;
}
.contact_sidebar h3{
  color: #21205b;
  text-align: center;
  margin-bottom: 20px;
}
.st_address,
.st_address a{
  color: #21205b;
  text-align: center;
}
.st_address p{
  margin-bottom: 20px;
}
.form_control{
  display: block;
  width: 100%;
  border:1px solid #999;
  border-radius: 6px;
  font-family: 'Arial';
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  line-height: 52px;
  color: #000;
  padding: 0 15px;
  text-align: center;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.form_control:invalid[true],
.form_control.error{
  border-color: red;
  color: red;
}
.form_control.error:focus{
  border-color: red;
}
label.error{
  display: none !important;
}
textarea.form_control{
  height: 112px;
  padding: 15px;
  line-height: 24px;
  resize: none;
}
button.form_control{
  background: #fff;
  border-width: 2px;
  border-color: #000;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
button.form_control:hover,
button.form_control:focus{
  background: #000;
  color: #fff;
}
.form_control:focus{
  outline: none;
  border-color: #000;
}
.form_group{
  margin-bottom: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  color: #b7b7b7;
  opacity: 1; /* Firefox */
}
::-moz-placeholder {
  color: #b7b7b7;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder {
  color: #b7b7b7;
  opacity: 1; /* Firefox */
}
::-ms-input-placeholder {
  color: #b7b7b7;
  opacity: 1; /* Firefox */
}
::placeholder {
  color: #b7b7b7;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #b7b7b7;
}


.form_control.error::-ms-input-placeholder{
  color: red;
}
.form_control.error::-webkit-input-placeholder{
  color: red;
}
.form_control.error::-moz-placeholder{
  color: red;
}
.form_control.error:-ms-input-placeholder{
  color: red;
}
.form_control.error::placeholder{
  color: red;
}
.overlay {
  width: 100%;
  height: 100vh;
  background: rgba(153,153,153,0.7);
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 99;
  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;
}
.overlay.show{
  opacity: 1;
  visibility: visible;
}
body.overflow{
  overflow: hidden;
}
.page_head{
  padding: 50px 0 60px;
}
.inner_page .title::after{
  width: 90px;
}
.ph_row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pw_cnt{
  margin-top: 40px;
  padding-left: 0;
}
.pw_head h1{
  font-size: 70px;
}
.page_inner_banner{
  height: 530px;
  background-size: cover;
  background-position: center;
  margin-bottom: 90px;
}
.page_wrapper{
  margin-bottom: 100px;
}
.page_wrapper .pw_head{
  width: 70%;
  margin: 0 0 170px auto;
}
.page_wrapper .pw_head .title{
  margin-bottom: 15px;
}
.page_cnt{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pc_cnt,
.pc_img{
  width: 50%;
}
.pc_img{
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.pc_cnt{
  min-height: 200vh;
  padding-left: 218px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.pc_cnt h2,
.pc_cnt p{
  margin-bottom: 50px;
}
.pc_img img{
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ph_row .title{
  color: #21205b;
}
.ph_row .title2{
  color: #000;
}
.ph_row .pw_head{
  margin-bottom: 0;
}
.ocv_wrapper{
  margin-bottom: 100px;
  padding: 0 !important;
}
.ocv_wrapper .ph_row{
  margin-bottom: 60px;
}
.ocv_img{
  height: 550px;
  background: #ccc no-repeat center top / cover;
}
.history_wrapper{
  padding: 70px 0 0;
}
.hs_img{
  width: 477px;
  height: 500px;
  margin:0 auto 0;
  overflow: hidden;
}
.hs_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pointer{
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 1;
}
.point_circle{
  width: 32px;
  height: 32px;
  margin: auto;
  background: #fff;
  border:2px solid #0688d8;
  border-radius: 50%;
  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;
}
.point_circle span{
  width: 10px;
  height: 10px;
  display: block;
  background: #0688d8;
  border-radius: 50%;
}
.history_cnt {
  padding: 0 30px;
}
.history_cnt img{
  margin-bottom: 20px;
}
.history_cnt h3{
  font-size: 40px;
  margin-bottom: 10px;
}
.hl_row:first-child .spacer_2{
  height: 5vh;
}
.spacer{
  height: 35vh;
}
.hl_row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.hl_row:after{
  content: '';
  width: 1px;
  height: 100%;
  background: #9e9e9e;
  position: absolute;
  left: 50%;
  -webkit-transition: translateX(-50%);
  -o-transition: translateX(-50%);
  transition: translateX(-50%);
}
.sec_top{
  margin-top: 50px;
  font-weight: 600;
  text-align: center;
}
.sec_top a:hover{
  color: #fa6400;
}
.page_cnt .mol_wrapper{
  margin-bottom: 90px;
}
.page_wrapper .mol_lft{
  text-align: right;
}
.page_wrapper .mol_lft h2 span{
  display: block;
  font-size: 18px;
  line-height: 26px;
}
.page_cnt .ls_cnt{
  font-size: 24px;
  line-height: 1.3;
}
.team_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}
.profile{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
}
.profile figure{
  height: 361px;
  overflow: hidden;
  background: #ccc;
  position: relative;
}
.profile figure img{
  width: 100%;
  min-height: 100%;
}
.profile figcaption{
  padding: 20px;
  text-align: center;
}
.profile strong{
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
}
.profile .figcaption p{
  font-size: 14px;
}
.profile_dis {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  padding: 35px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(255, 100, 0, 0.9);
  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;
}
.profile figure:hover .profile_dis{
  visibility: visible;
  opacity: 1;
}

.service_info{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.service_info + .service_info{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.si_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
}
.si_cnt{
  width: 100%;
  padding-left: 80px;
}
.service_info + .service_info .si_cnt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0;
}
.service_info + .service_info .si_img{
  width: 100%;
  padding-left: 80px;
}
.si_cnt h2{
  margin-bottom: 30px;
}
.si_cnt .title{
  font-size: 18px;
  color: #21205b;
  margin-bottom: 25px;
}
.si_cnt p{
  margin-bottom: 30px;
}
.si_cnt ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.si_cnt ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 15px 30px 15px 0;
  border-bottom: 1px solid #fa6400;
  color: #21205b;
}
.si_cnt ul li:nth-child(odd).no-border,
.si_cnt ul li:last-child{
  border:none ;
}

.page_nav{
  clear: both;
  overflow: hidden;
}
.page_nav a{
  float: right;
  font-size: 18px;
  line-height: 30px;
  color: #21205b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_nav a svg{
  width: 50px;
  height: 30px;
  margin-left: 20px;
  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;
}
.page_nav a:hover svg,
.page_nav a:hover{
  color: #fa6400;
  opacity: 1 !important;
}
.page_nav a.lft{
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  opacity: 0.5;
}
.page_nav a.lft svg{
  margin:0 20px 0 0;
}


.project_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #fa6400;
}
.project_row:last-child{
  margin-bottom: 200px;
}
.pr_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 435px;
          flex: 0 0 435px;
  width: 435px;
  height: 310px;
  overflow: hidden;
  background: #ccc;
  margin-top: 72px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.pr_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_details{
  width: 100%;
  padding-left: 60px;
}
.project_details h4{
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 40px;
}
.project_details{
  overflow: auto;
}
.project_details table{
  width: 100%;
  max-width: 100%;
}
.project_details table tr{
  border-bottom: 1px solid #9e9e9e;
}
.project_details table td{
  padding: 13px 20px;
  color: #4f4f4f;
}
.project_details table th{
  padding: 0 20px 13px 20px;
  font-weight: 600;
}
.project_details table td,
.project_details table th{
  width: 50%;
  min-width: 50%;
}


.animte_text{
  height: 80px;
  position: relative;
  margin-bottom: 20px;
}
.text {
  height: 80px;
}

.word ,.word2{
  position: absolute;
  top: 10px;
  opacity: 0;
  font-size: 80px;
  font-weight: 600;
  color: #fff;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  -webkit-transform: translateZ(25px);
          transform: translateZ(25px);
  -webkit-transform-origin: 50% 50% 25px;
      -ms-transform-origin: 50% 50% 25px;
          transform-origin: 50% 50% 25px;
}

.letter.out {
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  -webkit-transform: rotateY(+90deg);
          transform: rotateY(+90deg);
}

.letter.in {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prc_cnt h4{
  font-size: 18px;
  line-height: 1;
  color: #21205b;
  margin-bottom:  10px;
}
.logos_wrapper ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;  
}
.logos_wrapper li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 290px;
  padding: 20px;
  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;
  border-top:1px solid #ccc;
  border-right:1px solid #ccc;
}
.logos_wrapper li:first-child,
.logos_wrapper li:nth-child(2),
.logos_wrapper li:nth-child(3),
.logos_wrapper li:nth-child(4),
.logos_wrapper li:nth-child(5){
  border-top: 0;
}
.logos_wrapper li:nth-child(5n){
  border-right:none;
}

.dropdown_btn{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropdown_btn span {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
.dropdown_btn span svg{
  width: 100%;
  height: 100%;
  -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.open svg{
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
nav ul li a:hover svg{
  fill:#0f62ab;
}
.pw_cnt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
}
.page_wrapper .ls_cnt h3{
  display: none;
}
.thanq_wrapper{
  border-bottom: 2px solid #000;
}
.thanq_cnt{
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 100px 0;
  text-align: center;
}
.thanq_cnt img{
  width: 100px;
  margin-bottom: 20px;
}
.thanq_cnt h2{
  font-size: 70px !important;
  margin-bottom: 20px;
  color: #22205c;
  font-weight: bold;
}
.thanq_cnt p{
  margin-bottom: 20px;
  font-size: 20px;
}







/*New css*/
.home_banner {
  overflow: hidden;
}
.home_banner .container{
  position: relative;
}
.home_banner .slick-dots{
  max-width: 1440px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 100px;
  z-index: 9;
  text-align: left;
}
.home_banner .slick-dots li{
  width: auto;
  height: auto;
}
.home_banner .slick-dots li button{
  width: 60px;
  height: 6px;
  background: #0090e2;
  padding: 0;
}
.home_banner .slick-dots li.slick-active button{
  background: #fff;
}
.link_blk{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 50px;
}
.link_blk span{
  display: block;
  height: 1px;
  background: #0f62ab;
  width: 100%;
}
.link_blk a{
  white-space: nowrap;
}
.article_cnt h3{
  font-size: 25px;
  color: #03356c;
}
.JoinNetwork{
  background: #0f62ab;
  color: #fff;
  padding: 50px;
}
.JoinNetwork h4{
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.JoinNetwork p{
  margin-bottom: 30px;
}
.opw_lft .pw_head{
  max-width: 550px;
}
.opw_lft .pw_head H2{
  margin-bottom: 10px;
}
.opw_lft .pw_head P{
  max-width: 90%;
}
.col-6{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 6);
          flex: 0 0 calc(100% / 12 * 6);
  padding: 0 30px;
}
.col-8{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 8);
          flex: 0 0 calc(100% / 12 * 8);
  padding: 0 30px;
}
.col-12{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 12);
          flex: 0 0 calc(100% / 12 * 12);
  padding: 0 30px;
}
.cta{
  padding: 70px 0;
  overflow: hidden;
  min-height: 480PX;
}
.cta_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cta_card{
  background: #00163d;
  color: #fff;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.cta_card a{
  color: #fff;
}
.cta_card h2{
  font-size: 40px;
}
.cta_card p{
  font-size: 20px;
}
.home_banner .slick-dots li button:before{
  display: none;
}
.hero-image{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero-image img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1 !important;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.hero-image [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  -o-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
          -webkit-animation-direction: revert;
                  animation-direction: revert;
}

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  -webkit-animation-direction: revert;
          animation-direction: revert;
}
.hb2 .slick-dots{
  display: none;
}
.hb2 .banner .container{
  min-height: auto !important;
  height: 540px;
}
.page_about{
  padding: 70px 0;
}
.page_about .pw_head{
  margin-bottom: 50px;
}
.page_about h3{
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.page_about p{
  margin-bottom: 30px;
}
.coreValues{
  border-top: 1px solid #0f62ab;
}
.coreValues{
  margin-top: 40px;
  padding-top: 40px;
}
.cv_rht{
  padding: 0 100px 0 0;
}
.cv_rht h3{
  margin-bottom: 20px;
}
.cv_rht p{
  margin-bottom: 40px;
}
.logo img{
  max-width: 220px;
}
.op_head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.op_head .pw_head{
  margin: 0 !important;
}
.partners_logo ul{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.partners_logo ul li{
  flex: 0 0 calc(100% / 6 - 13px);
  border:1px solid #e1e1e1;
  min-height: 137px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
  text-align: center;
}
.pl_img{
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv_card {
  color: #000;
  font-weight: 400;
}
.pv_card h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.pv_card p{
  font-size: 14px;
}
.partner_vidoes{
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.pv_card{
  display: block;
  flex: 0 0 calc(100% / 3 - 40px);
  max-width: calc(100% / 3 - 40px);
  text-transform: none;
}
.pv_img{
  display: block;
  height: 233px;
  background: #0f62ab;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.pv_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play_icon{
  position: absolute;
  width: 60px;
  height: 50px;
  right: 20px;
  top: 20px;
  background: url(../images/youtube.png) no-repeat center / contain;
}
.pv_card:hover{
  color: #0f62ab;
}
.op_wrapper{
  border-top: 1px solid #c2c2c2;
  padding: 70px 0;
}
.our_partners{
  border:1px solid #d7d7d7;
}
.our_partners_tabs ul{
  display: flex;
  justify-content: space-between;
}
.our_partners_tabs ul li{
  width: 100%;
}
.our_partners_tabs ul li a{
  display: block;
  padding: 20px;
  text-align: center;
  color: #707070;
  font-size: 18px;
  border-bottom: 1px solid transparent;
}
.our_partners_tabs ul li a:hover,
.our_partners_tabs ul li a.active{
  color: #00163d;
  border-bottom-color: #006bca;
}
.our_partners_cnt{
  padding: 30px;
  color: #00163d;
}
.opc_head{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.op_title{
  border-left: 1px solid #d7d7d7;
  padding-left: 15px;
  margin-left: 15px;
}
.op_title h6{
  font-weight: 600;
  line-height: 26px;
}
.op_title span{
  font-size: 16px;
  line-height: 26px;
  line-height: 26px;
}
.opc_imgs_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.opc_img{
  flex: 0 0 calc(100% / 4 - 15px);
  max-width: calc(100% / 4 - 15px);
  height: 210px;
  background: #0f62ab;
}
.opc_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opc_btns{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
.our_partners_cnt + .our_partners_cnt{
  border-top: 1px solid #006bca;
}
.oop_blk {
  padding: 15px 0;
  border-top: 1px solid #006bca;
}
.oop_blk ul{
  display: flex;
}
.oop_blk ul li{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 0 0 25%;
  max-width: 25%;
  word-break: break-all;
  color: #00163d;
  padding: 10px 20px;
}
.oop_blk ul li + li{
  border-left: 1px solid #b7b7b7;
}
.oop_blk ul li:first-child{
  flex: 0 0 12%;
  max-width: 12%;
  align-items: center;
  justify-content: center;
}
.oop_blk ul li:nth-child(2){
  flex: 0 0 13%;
  max-width: 13%;
}
.oop_blk ul li img{

}
.oop_blk ul li h6{
  font-weight: 600;
  text-transform: uppercase;
}
.oop_blk ul li span{
  text-transform: uppercase;
}
.oop_blk ul li span,
.oop_blk ul li p,
.oop_blk ul li a{
  font-size: 15px;
  color: #00163d;
  font-weight: 400;
  margin: 0;
}
.opt_tabContent{
  display: none;
}
.opt_tabContent:first-child{
  display: block;
}
.services_head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services_head p,
.services_head .pw_head,
.services_head h2{
  margin: 0;
}
.services_head .pw_head,
.services_head .sh_rht{
  flex: 0 0 48%;
  max-width: 48%;
}
.services_head .sh_rht{
  align-self: flex-end;
}
.services_page{
  padding: 40px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid #0f62ab;
}
.services_page h2{
  margin-bottom: 20px;
}
.services_page h4{
  font-weight: 400;
  margin-bottom: 30px;
}
.ewi_blk{
  margin-top: 50px;
}
.ewi_card{
  background: #00163d;
  color: #fff;
  padding: 40px;
  height: 100%;
}
.ewi_card h2{
  margin-bottom: 30px;
}
.ewi_card h3{
  font-size: 30px;
  margin-bottom: 30px;
}
.gbr_cnt{
  padding-top: 15px;
}
.row2{
  margin: 0;
  align-items: stretch;
  margin: 50px 0 0;
  flex-direction: row-reverse;
}
.row2 .col-6{
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
}
.ewi_card ul{
  padding-left: 30px;
  margin-bottom: 30px;
}
.ewi_card ul li{
  position: relative;
  margin-bottom: 5px;
}
.ewi_card ul li:before{
  content: '';
  position: absolute;
  left: -30px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0f64ac;
}
.ewi_card{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.sp_lft ul{
  list-style: disc;
  padding-left: 25px;
  margin: -20px 0 30px 0;
}
.gbr_cnt2{
  height: 100%;
}
.gbr_cnt2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}