@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700;800;900&family=Reem+Kufi:wght@400;500;600;700&display=swap');
/*Global Styling*/



body {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Overpass', sans-serif;
  position: relative;
  background-color: #fff;
  color: #000;
}

html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
::after,
::before {
  box-sizing: border-box;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  outline: none;
}

button {
  cursor: pointer;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

em.up {
  text-transform: uppercase;
  font-style: initial;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1;
  font-family: 'Reem Kufi', sans-serif;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: #0F1738;
}

h3 {
  font-size: 26px;
  ;
}

h4 {
  font-size: 26px;
  ;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.background-position {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

/* main container */
.main-container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* loader styling start */
.loader .loader-container {
  text-align: center;
}

.loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #273C90;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.progress-container {
  width: 305px;
  background-color: #f2f2f2;
  margin-top: 25px;
  background: rgba(196, 196, 196, 1);
}

.progress-bar {
  height: 3px;
  background: #EEBD1A;
  animation: loader 4s linear;

}

@keyframes loader {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.loader-logo {
  height: 46px;
  overflow: hidden;
}

.loader-logo img {
  transition: all 1s ease-in-out;
}

/* loader styling end */
/* header start */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 24px 0;
  transition: all .4s ease-in-out;
}

header.home {
  transition: all .8s ease-in-out;
  transform: translateY(-100px);
}

header.scroll-nav {
  background-color: #fff;
  box-shadow: 0px 0px 27px -14px rgb(27 48 89 / 80%);
}

header.animate-header {
  transform: translateY(0);
}

.header-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-flex .site-logo {
  width: 15%;
}

.header-flex .site-logo a img {
  filter: brightness(0) invert(1);
  transition: all .3s ease-in-out;
}

.scroll-nav .header-flex .site-logo a img {
  filter: none;
}

.header-flex .site-nav {
  width: 70%;
  padding-left: 70px;
}

.header-flex .header-search {
  width: 15%;
  display: flex;
  /* justify-content: flex-end; */
}

.header-flex .site-nav nav>ul {
  display: flex;
  align-items: center;
}

.header-flex .site-nav nav>ul>li>a {
  font-size: 14px;
  color: #fff;
  font-style: 300;
  position: relative;
}

.header-flex .site-nav nav>ul>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 0;
  background-color: #EEBD1A;
  transition: all .4s ease-in-out;
}

.header-flex .site-nav nav>ul>li.active>a::after,
.header-flex .site-nav nav>ul>li>a:hover::after {
  width: 100%;
}

.scroll-nav .header-flex .site-nav nav ul>li>a {
  color: #1B3059;
}

.scroll-nav .header-flex .site-nav nav ul>li ul.submenu>li>a {
  color: #fff;
}

.header-flex .site-nav nav>ul>li {
  margin-left: 34px;
  line-height: 1;
  padding: 8px 0;
}

.header-flex .site-nav nav>ul>li:first-child {
  margin-left: 0;
}

ul.submenu {
  position: absolute;
  background: linear-gradient(170.61deg, #152142 61.05%, rgba(21, 33, 66, 0.8) 86.36%);
  display: none;
  min-width: 129px;
  margin-top: 8px;
  z-index: 999;
}

ul.submenu .back-sub {
  display: none;
}

ul.submenu>li {
  display: block;
}

ul.submenu>li>a {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  padding: 10px 10px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-style: 300;
  transition: all .3s ease-in-out;
}

.header-flex .header-search input {
  width: 100%;
  padding: 0 0 0 7px;
  background: transparent;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
  font-weight: 300;
  transition: all .3s ease-in-out;
}

.scroll-nav .header-flex .header-search input {
  color: #141F3D;
}

.header-flex .header-search input::placeholder {
  color: #fff;
  font-size: 14px;
  font-style: 300;
}

.scroll-nav .header-flex .header-search input::placeholder {
  color: #141F3D;
}

.header-flex .header-search .form-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid transparent;
  width: 54%;
  transition: all .3s ease-in-out;
  margin-left: auto;
  height: 20px;
}

.header-flex .header-search:hover .form-group {
  width: 100%;
  border-color: #fff;
}

.scroll-nav .header-flex .header-search:hover .form-group {
  border-color: #141F3D;
}

.header-flex .header-search .form-group img {
  margin-bottom: 3px;
  width: 100%;
  filter: brightness(0) invert(1);
  transition: all .3s ease-in-out;
  height: 12px;
  width: 14px;
}

.scroll-nav .header-flex .header-search .form-group img {
  filter: none;
}

/* header end */
/* common styles */
.para-before {
  position: relative;
  padding-left: 33px;
}

.para-before::before {
  content: "";
  position: absolute;
  background-color: #EEBD1A;
  height: 60%;
  width: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

}

/* comman styles end */
/*****************************
  index page start
******************************/
.main-banner {
  position: relative;
  overflow: hidden;
}

.main-banner-slider-thumbnail .swiper-slide .slide-progress-bar {
  width: 100%;
  margin-top: 0px;
}

.swiper-slide-thumb-active .progress-bara-after {
  height: 3px;
  background: #EEBD1A;
  animation: slide 4.4s linear forwards;
  display: block;
}

@keyframes slide {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

span.progress-bara-after {
  height: 3px;
  background: transparent;
  display: block;
}

span.progress-bara-after.active {
  height: 3px;
  background: #EEBD1A;
  display: block;
}

.banner-slide-bg {
  height: 100vh;
  display: flex;
  align-items: center;
  /* background-size: 140%; */
  transition: all 5s ease-in-out;
  overflow: hidden;
}
.main-banner-slider {
  position: relative;
}
.banner-slide-bg img{
  width: 100%;
  transform: scale(1.6);
  transition: all 5s ease-in-out;
}
.main-banner-slider .main-banner-content{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.swiper-slide:nth-child(even) .banner-slide-bg img{
  /* background-size: 100%; */
  transform: scale(1);
}

.swiper-slide-active.swiper-slide:nth-child(even) .banner-slide-bg img{
  /* background-size: 140%; */
  transform: scale(1.6);
}

.swiper-slide-active .banner-slide-bg img{

  /* background-size: 100%; */
  transform: scale(1);
}

.swiper-slide:first-child .main-banner-content {
  transform: translateY(50px);
  opacity: 0;
  transition: all .8s ease-in-out;
}

.animate-slide-content .swiper-slide:first-child .main-banner-content {
  transform: translateY(00px);
  opacity: 1;
}

.banner-slide-bg::before {
  content: "";
  background: linear-gradient(170.61deg, #152142 61.05%, rgba(21, 33, 66, 0.29) 86.36%);
  opacity: 0.55;
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.banner-slide-bg .main-container {
  position: relative;
}

.main-banner-slider-thumbnail {
  width: 70%;
  background: #1B3059;
  backdrop-filter: blur(94px);
  height: 112px;
  position: absolute;
  bottom: 0px;
  z-index: 9;
  overflow: hidden;
  right: 0;
  transform: translateY(120px);
  transition: all .8s ease-in-out;
}

.main-banner-slider-thumbnail.animate-thumb {
  transform: translateY(0px);

}

.banner-slide-thumbnail {
  display: flex;
  padding: 20px;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.banner-slide-thumbnail::before {
  content: "";
  position: absolute;
  height: 47px;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  right: 0;
}

.main-banner-slider-thumbnail .swiper-slide:last-child .banner-slide-thumbnail::before {
  content: none;
}

.banner-slide-thumbnail-img {
  width: 40%;
}

.banner-slide-thumbnail-img img {
  height: 71px;
  width: 100%;
  object-fit: cover;
}
.main-banner-thumbnail-content h6{
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 2;
}
.main-banner-thumbnail-content p {
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.main-banner-thumbnail-content {
  width: 60%;
  padding-left: 14px;
}

.main-banner-content {
  color: #fff;
}

.main-banner-content h1 {
  max-width: 670px;
  line-height: 1.3;
}

.main-banner-content p {
  font-size: 18px;
  max-width: 482px;
  margin-top: 8px;
}

.main-banner-btn {
  margin-top: 24px;
}

.common-style-btn a {
  font-size: 16px;
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease-in-out;
  display: inline-flex;
  z-index: 99;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.common-style-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(44px);
  transition: all .3s ease-in-out;
  z-index: -1;
}

.common-style-btn a:hover::before {
  transform: translateY(0);
}

.common-style-btn a:hover {
  font-size: 14px;
  position: relative;
  z-index: 999;
}

.common-style-btn.white a:hover {
  color: #273C90;
  font-size: 14px;
  position: relative;
  z-index: 999;
}

.common-style-btn.blue a:hover {
  color: #fff;
}

.main-banner-btn.common-style-btn a {
  min-width: 177px;
}

.common-style-btn.white a {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.common-style-btn.blue a {
  color: #273C90;
  border-top: 1px solid #273C90;
  border-bottom: 1px solid #273C90;
}

.common-style-btn.white a::before {
  background-color: #fff;
}

.common-style-btn.blue a::before {
  background-color: #273C90;
}

/* we do section  start */
.home-we-do {
  padding: 50px 0 100px 0;
  position: relative;
}

.we-do-btn.common-style-btn.blue a {
  min-width: 132px;
  margin-left: 33px;

}

.we-do-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.we-do-width {
  width: 50%;
}

.we-do-content .sub-heading h6 {
  color: rgba(20, 31, 61, .3);

}

.we-do-content .sub-heading {
  transform: translateY(4000%);
  transition: all 1.3s ease-in-out;
  /* height: 100%; */
}

.we-do-animate-out .sub-heading {
  transform: translatex(-200%);
}

.do-content-area p {
  color: rgba(20, 31, 61, .8);
  font-weight: 400;
  font-size: 22px;
  margin-top: 20px;
  position: relative;

}

.do-content-area {
  transform: translateY(320%);
  transition: all 1.5s ease-in-out;
}

.we-do-animate-out .do-content-area {
  transform: translatex(-200%);
}


.we-do-btn.common-style-btn.blue {
  margin-top: 36px;
}

.do-content-img img {
  display: block;
  margin-left: auto;
  position: relative;
  width: 184px;
  height: 234px;
  object-fit: cover;
}

.we-do-animate-out .do-content-img {
  transform: translatey(30%);
  opacity: 0;
}

.do-content-img {
  padding-right: 80px;
  margin-top: -10px;
  transform: translateY(320%);
  transition: all 1.5s ease-in-out;
  opacity: 1;
}

.home-we-do::before {
  content: "";
  position: absolute;
  width: 39.5%;
  height: 380px;
  background: rgba(231, 236, 241, .2);
  top: 0;
  transform: translateY(200%);
  transition: all 1.5s ease-in-out;
}

.we-do-animate-out.home-we-do::before {
  transform: translatex(-200%);
}

.home-we-do::after {
  content: "";
  position: absolute;
  bottom: 110px;
  background-image: url(../images/we-do-line2.png);
  width: 330px;
  height: 1004px;
  /* z-index: 9; */
  left: 0;
  background-repeat: no-repeat;
  /* background-size: contain; */
  transform: translateY(200%);
  transition: all 1.5s ease-in-out;
}

.we-do-animate-out.home-we-do::after {
  transform: translatex(-200%);
}

.we-do-main-img-area {
  display: flex;
  height: 100%;
}

.weo-do-img-title h6 {
  color: rgba(182, 191, 225, .8);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0;
  transition: all 1s ease-in-out;
}

.we-do-animate .weo-do-img-title h6 {
  opacity: 1;
}

.we-do-main-img {
  padding: 0 0px 0 85px;
  position: relative;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  transform: translate3d(70%, 140%, 0);
  transition: all 1.5s ease-in-out;
}

.we-do-main-img:before {
  content: "";
  position: absolute;
  height: 92%;
  background-color: rgba(39, 60, 144, 1);
  width: 80%;
  top: 4%;
  right: -40px;
  transform: translate3d(90%, 0%, 0);
  transition: all 1.5s ease-in-out;
}

.we-do-main-img img {
  position: relative;
width: 368px;
height: 431px;object-fit: cover;}

.we-do-content {
  padding: 30px 0;
}

.weo-do-img-title {
  padding-left: 90px;
}

.we-do-animate .we-do-content .sub-heading,
.we-do-animate .do-content-area,
.we-do-animate .do-content-img,
.we-do-animate.home-we-do::after,
.we-do-animate.home-we-do::before,
.we-do-animate .we-do-main-img,
.we-do-animate .we-do-main-img:before {
  transform: none;
}

/* we do section  end */

/* service section start */
.home-service {
  background-color: #F6F7FA;
  padding: 310px 0 120px 0;
  position: relative;
}

.home-service::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(../images/ser-wind.png);
  width: 524.66px;
  height: 640.46px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-service-content {
  max-width: 600px;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 20px;
}

.service-content-btn a {
  min-width: 132px;
  margin-top: 18px;
}

.home-service-content p {
  color: rgba(86, 90, 105, .8);
  margin-top: 10px;
  position: relative;
}

.home-service-content p::before {
  content: "";
  position: absolute;
  background-color: #EEBD1A;
  height: 60%;
  width: 2px;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
}

.service-box-width {
  width: 33.33%;
  padding: 8px;

}

.service-box-width:first-child {
  top: -377px;
  position: absolute;
  left: 0;
  visibility: visible;
  opacity: 1;
  transition: all 1s ease-in-out;

}

.service-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -8px;
  position: relative;
  margin-top: 90px;
  justify-content: flex-end;
}

.service-box-width .service-box {
  position: relative;
  z-index: 1;
  top: 0;
  height: 100%;
  position: relative;
  height: 363px;
}

.service-box-width .service-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 4;
}

.service-content-animation {
  position: relative;
  color: #fff;
}

.service-content-animation h4 {
  transform: translateY(54px);
  transition: all .3s ease-in-out;
  font-weight: 500;
  max-width: 274px;
}

.service-box-width .service-box:hover h4 {
  transform: translateY(0);
}

.service-box-width .service-box .service-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-top: 13px;
}

.service-box-width .service-box .service-btn a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
}

.service-box-width .service-box .service-btn img {
  margin-right: 7px;
}

.service-content-animation p {
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all .4s ease-in-out;
}

.service-box-width .service-box:hover p {
  visibility: visible;
  opacity: 1;
}

.service-box-width video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content-bg {
  position: absolute;
  padding: 28px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  top: 0;
}

/* .service-ani .service-content-bg {
  background-image: none !important;
} */
.service-content-bg .service-num {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
}

.service-content-bg .service-num h6 {
  color: rgba(182, 191, 225, .8);
  font-weight: 500;
  font-size: 16px;
}

.service-content-bg.vid-active {
  background-image: none !important;
}

.service-content-area {
  position: relative;
  z-index: 9;
}

.service-animation {
  transform: translateY(40%);
  transition: all 1.5s ease-in-out;

}

.service-animation.service-ani {
  transform: translateY(0);
  /* z-index: 999; */
  /* position: absolute; */
  /* position: sticky;
  top: 0;
  height: 100vh; */
  top: 0;
  bottom: 0;
  width: 100%;
}

.service-ani-two .home-service-content {
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition: all 2s ease-in-out;

}

.service-ani-two .service-box-width:first-child {
  top: -377px;
  /* position: static; */
  visibility: hidden;
  opacity: 0;
}

.service-ani-two .service-type {
  margin-top: 0;
  transition: all 2s ease-in-out;
  transform: translateY(-300px);
}

.service-type.service-ani-three {
  transform: translateY(-300%);
}

/* service section end */

/* work section start */
.home-work-heading {
  position: absolute;
  z-index: 9;
  top: 70px;
  left: 7%;
}

.home-work {
  position: relative;
}

.home-work-heading h2 {
  font-weight: 500;
  font-size: 95px;
  color: rgba(255, 255, 255, .5);
}

.home-work .home-work-box {
  height: 753px;
  position: relative;
  display: flex;
  align-items: center;
}

.home-work .home-work-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(44px);
}

.home-work .home-work-content {
  position: relative;
  max-width: 506px;
}

.home-work .home-work-content .home-work-tag p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  margin: 0;
}

.home-work .home-work-content .home-work-tag {
  display: inline-block;
  padding: 6px 13px 4px 13px;
  background: #213278;
  border-radius: 14px;
}

.home-work .home-work-content h2 {
  font-size: 40px;
  color: #fff;
  margin-top: 15px;
  line-height: 1;
}

.home-work .home-work-content h4 {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 16px;
  margin-top: 14px;
}

.home-work .home-work-content p {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 14px;
  margin-top: 15px;
}
.home-work .home-work-content > p:first-child{
  margin-top: 20px;
}
.home-work-slider .swiper-button-next,
.home-work-slider .swiper-button-prev {
  top: 75%;
}

.home-work-slider .swiper-button-next:after,
.home-work-slider .swiper-button-prev:after {
  font-size: 18px;
}

.home-work-slider .swiper-button-prev,
.home-work-slider .swiper-button-next {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100px;
  width: 45px;
  height: 45px;
}

.home-work-slider .swiper-button-next {
  left: 55px;
  right: auto;
}

.home-work-slider .swiper-button-prev {
  left: 0px;
  right: auto;
}

.work-arrows {
  position: absolute;
  left: 30px;
  right: 0;
  top: 75%;
}

/* .service-ani {
  position: fixed;
  transition: all 2s ease-in-out;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;

} */
/* .home-work {
   transform: translateY(100%); 
  transition: all 2s ease-in-out;
}
.service-ani .home-work {
  transform: translateY(0%);

} */

/* work section end */
.stories {
  padding: 120px 0 50px 0;
}

.stories-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 15px;
}

.stories-heading h2 {
  color: #272727;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}

.story-area {
  margin-top: 35px;
}

.story-box {
  display: flex;
  flex-wrap: wrap;
  padding: 35px 0;
  border-bottom: 2px solid rgba(158, 165, 180, .2);
}

.story-img {
  width: 27%;
}

.story-content {
  width: 73%;
  padding-left: 24px;
  position: relative;
}

.story-content h4 {
  max-width: 562px;

}

.story-content p {
  max-width: 539px;
}

.story-content p {
  color: rgba(86, 90, 105, .8);
  margin-top: 10px;
  line-height: 1.6;
}

.story-content h4 {
  color: #273C90;
  font-size: 26px;
  font-weight: 500;
}

.story-date {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 97%;
  align-items: center;
}

.story-date span {
  color: rgba(86, 90, 105, 0.3);
  font-weight: 400;
  font-size: 16px;
}

.story-btn a {
  margin-top: 100px;
  min-width: 132px;
}

.story-btn {
  text-align: center;
}

.team-container {
  max-width: 995px;
  margin: 0 auto;
  /* padding: 0 15px; */
}

.our-team {
  padding: 70px 0;
  display: none;
}

.team-box {

  padding: 30px;
}

.team-flex {
  background: #FFFFFF;
  box-shadow: 0px 0px 26px rgb(24 37 71 / 6%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* flex-direction: row-reverse; */
}

.team-img {
  width: 50%;
}

.team-content {
  width: 50%;
}

.team-img img {
  width: 100%;
}

.team-content h6 {
  color: rgba(39, 39, 39, 0.1);
  padding-left: 33px;
}

.team-content {
  padding: 50px;
}

.member-name {
  position: relative;
  padding-left: 33px;
}

.member-name:before {
  content: "";
  position: absolute;
  background-color: #EEBD1A;
  height: 60%;
  width: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.member-name h3 {
  color: #273C90;
  font-size: 28px;
  font-weight: 500;
  margin-top: 20px;
}

.member-name p {
  color: rgba(86, 90, 105, .6);
  margin-top: 7px;
}

.swiper-slide-active .team-img img {
  width: 100%;
}

.team-img img {
  transition: all .8s ease-in-out;
  width: 0;
  height: 472px;
  display: block;
  margin-left: auto;
  object-fit: cover;
}

.team-slider .swiper-button-next:after,
.team-slider .swiper-button-prev:after {
  content: none;
}

.team-slider .swiper-button-next,
.team-slider .swiper-button-prev {
  top: auto;
  bottom: 40px;
}

.team-slider .swiper-button-prev {
  left: auto;
  right: 100px;
  color: #273C90;
}

.team-slider .swiper-button-next {
  left: auto;
  right: 70px;
  color: #273C90;
}

/*****************************
  index page end
******************************/

/*****************************
  Control system page start
******************************/
.mini-banner {
  height: 426px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mini-banner-heading {
  position: relative;
}

.mini-banner-heading h1 {
  color: #fff;
}

.mini-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 33, 66, 0.7);
}

.offer-experience {
  padding: 115px 0 70px 0;
}

.offer-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.offer-flex {
  display: flex;
  flex-wrap: wrap;
}

.offer-width {
  width: 50%;
}

.offer-content {
  position: relative;
  margin-left: 80px;
}

.offer-content::before {
  content: "";
  position: absolute;
  width: 396px;
  height: 436px;
  background-color: rgba(231, 236, 241, .3);
  top: -65px;
}

.offer-images {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
}

.offer-images .offer-img1 {
  margin-top: 135px;
}

.offer-images .offer-img1,
.offer-images .offer-img2 {
  padding: 0 7px;
  width: 50%;
}

.offer-images img {
  object-fit: contain;
  height: 315px;
}

.offer-images .offer-img1 img,
.offer-images .offer-img2 img {
  width: 100%;
  object-fit: cover;
}

.offer-content .offer-sub h6 {
  font-size: 16px;
  color: rgba(20, 31, 61, .3);
}

.offer-content .offer-sub p {
  color: rgba(20, 31, 61, .8);
  font-size: 18px;
  line-height: 1.3;
  margin-top: 27px;
  padding-right: 10px;
}

.offer-btn a {
  min-width: 132px;
  margin-top: 27px;
}

.offer-sub {
  padding-left: 60px;
  position: relative;
  /* margin-right: -80px; */
}

.enabling {
  position: relative;
  padding: 80px 0 80px 0;
}

.enabling::before {
  background: #F6F7FA;
  content: "";
  position: absolute;
  top: 0;
  height: 481px;
  width: 100%;
}

.enabling-container {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.enabling-flex {
  display: flex;
  flex-wrap: wrap;
}

.enabling-width-heading {
  width: 45%;
}

.enabling-width {
  width: 55%;
}

.enabling-heading h2 {
  color: #0F1738;
  line-height: 1.4;
}

.enabling-heading img {
  object-fit: cover;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  width: 364px;
  height: 407px;
}

.enabling-content img {
  margin-top: 78px;
  width: 184px;
  height: 234px;
  object-fit: cover;
}

.enabling-content p {
  color: rgba(86, 90, 105, .8);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 60px;
}

.enabling-btn a {
  min-width: 132px;
  margin-top: 33px;
  margin-left: 60px;
}

section.quality-work {
  padding-top: 50px;
}

.quality-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.quality-heading {
  max-width: 723px;
  margin: 0 auto;
  text-align: center;
}

.quality-heading p {
  margin-top: 15px;
  color: rgba(86, 90, 105, .8);
}

.work-gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.work-gallery ul>li {
  width: 33.33%;
  padding: 8px 8px;
}

.work-gallery {
  padding: 72px 0;
}

.work-gallery ul>li>a {
  display: flex;
  align-items: flex-end;
  height: 429px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.work-gallery ul>li>a::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translatey(-100%);
  transition: all .3s ease-in-out;

}

.work-gallery ul>li>a:hover::before {
  transform: translate(0);
}

.galler-content {
  position: relative;
  transform: translatey(119%);
  transition: all .3s ease-in-out;
}

.work-gallery ul>li>a:hover .galler-content {
  transform: translate(0);
}

.work-gallery ul>li>a h5 {
  font-size: 28px;
  max-width: 80%;
  line-height: 1.2;
}

.work-gallery ul>li>a p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.work-gallery ul>li>a span {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  text-transform: uppercase;
  color: rgba(244, 244, 244, .8);
}

.work-gallery ul>li>a span img {
  margin-right: 5px;
}

.work-popup-data {
  position: fixed;
  z-index: 9999;
  width: 1140px;
  height: 540px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.for-close-work {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .33);
  top: 0;
  left: 0;
  z-index: 999;
}
.for-close-work::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  right: 18%;
  top: 10%;
}

.for-close-work:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  right: 18%;
  top: 10%;
}
.work--popup-container {
  max-width: 934px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.work--popup-container .work-popup-content {
  max-width: 400px;
  color: #fff;
}

.work--popup-container .work-popup-content h2 {
  color: #fff;
  margin-top: 10px;
}

.work-popup-data:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(34.8333px);
}

.work--popup-container .work-popup-content h5 {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  margin-top: 10px;
}

.work--popup-container .work-popup-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-top: 18px;
}

.work-popup {
  display: none;
}

body.popup-scroll {
  overflow-y: hidden;
  height: 100vh;
}

/*****************************
  Control system page end
******************************/

/*****************************
  about page start
******************************/
.about-we-do {
  padding: 120px 0;
}

.about-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-flex {
  display: flex;
}

.about-we-width {
  WIDTH: 50%;
}

.about-we-img img {
  width: 100%;
}

.about-do-content {
  position: relative;
  padding-top: 65px;
  padding-left: 50px;
}

.about-do-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 444px;
  height: 436px;
  background-color: rgba(231, 236, 241, .3);
}

.about-do-content .sub-heading h6 {
  color: rgba(20, 31, 61, .3);
}

.about-do-content-area p {
  color: rgba(20, 31, 61, .8);
  font-size: 22px;
  margin-top: 25px;
}

.about-we-btn a {
  min-width: 132px;
  margin-top: 40px;
  margin-left: 33px;
}

.about-we-img {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

.why-we {
  background-color: #1B3059;
  padding: 100px 0 125px 0;
  position: relative;
  display: none;
}

.why-we-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.why-we-flex {
  display: flex;
  flex-wrap: wrap;
}

.why-we-content-width {
  width: 50%;
}

.why-we-content-width:last-child .why-content {
  max-width: 428px;
}

.why-content {
  margin-top: 25px;
  max-width: 425px;
}

.why-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.why-we-heading h2 {
  color: #fff;
}

.why-we-img {
  position: absolute;
  top: -110px;
  right: 0;
  width: 20%;
}

.why-we-img img {
  width: 100%;
}

.we-img1 img {
  height: 358px;
  object-fit: cover;
  display: block;
  width: 226px;
  margin-left: auto;
}

.we-img2 img {
  height: 305px;
  object-fit: cover;
  margin: 30px auto 0 0;
  display: block;
  width: 236px;
}

.why-we-btn a {
  min-width: 132px;
  margin-top: 24px;
}

.core {
  padding: 80px 0 85px 0;
}

.core-container {
  max-width: 774px;
  margin: 0 auto;
  text-align: center;
}

.core-subheading h6 {
  color: rgba(20, 31, 61, .3);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}

.core-para p {
  color: rgba(20, 31, 61, .8);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  margin-top: 33px;
}

.core-btn a {
  min-width: 132px;
  margin-top: 30px;
}

.do-it {
  padding-top: 114px;
}

.do-it-container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  background-color: #F6F7FA;
}

.do-it-content {
  max-width: 709px;
  padding: 45px 20px;
  text-align: center;
  margin: 0 auto;
}

.do-it-btn a {
  min-width: 190px;
  margin-top: 33px;
}

.do-it-content .do-it-para p {
  color: rgba(20, 31, 61, .8);
  margin-top: 20px;
  font-size: 14px;
}

.do-it-heading h2 {
  color: #1B3059;
}

.career {
  padding: 115px 0 100px 0;
}

.career-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.career-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.career-width {
  width: 50%;
  padding: 0 15px;
}

.career-content h2 {
  color: #0F1738;
  padding-left: 33px;
  font-weight: 500;
}

.manufacture {
  padding: 120px 0 100px 0;
}

.manufacture-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.manufacture-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.manufacture-width {
  width: 50%;
  padding: 0 15px;
}

.manufacture-content p {
  margin-top: 20px;
  color: rgba(86, 90, 105, .8);
  line-height: 1.6;
}

.manufacture-btn a {
  min-width: 132px;
  margin-left: 33px;
  margin-top: 30px;
}

.manufacture-img img {
  width: 100%;
}

.manufacture-content {
  padding-left: 30px;
}

/*****************************
   about page end
******************************/



/*****************************
   career page start
******************************/

.career {
  padding: 115px 0 100px 0;
}

.career-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.career-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.career-width {
  width: 50%;
  padding: 0 15px;
}

.career-content h2 {
  color: #0F1738;
  padding-left: 33px;
  font-weight: 500;
}

.career-content p {
  margin-top: 20px;
  color: rgba(86, 90, 105, .8);
  line-height: 1.6;
}

.career-btn a {
  min-width: 132px;
  margin-left: 33px;
  margin-top: 30px;
}

.career-img img {
  width: 100%;
}

.career-content {
  padding-left: 30px;
}

.position-container {
  max-width: 892px;
  margin: 0 auto;
  padding: 0 15px;
}

.job-position {
  background-color: #F6F7FA;
  padding: 100px 0 50px 0;
}

.position-heading h2 {
  font-size: 38px;
  color: #0F1738;
  text-align: center;
}

.job-iframe img {
  width: 100%;
}

.job-iframe {
  /* margin-top: 85px; */
  overflow: hidden;
  height: 1050px;
}

.job-iframe iframe {
  width: 100%;
  height: 100%;
}

.career-bottom-img {
  margin-top: -40px;
  margin-bottom: -180px;
}

.career-bottom-img img {
  display: block;
  margin-left: auto;
  height: 331px;
  width: 237px;
  object-fit: cover;
}

.career-detail-area .blog-para h4 {
  margin-top: 30px;
  font-weight: 500;
  color: #0F1738;
}

.career-detail-area .blog-para h2 {
  margin-top: 30px;
  text-align: center;
}

.career-detail-area .blog-para h2:first-child {
  margin-top: 0;

}

.career-detail-area .blog-para b {
  display: block;
  color: #0F1738;
  margin-top: 10px;
}

/*****************************
   career page end
******************************/


/*****************************
   blog detail page start
******************************/
.blog-detail header {
  top: 53px;
}

.blog-detail header {
  transform: translateY(-153px);
}

.blog-detail header.animate-header {
  transform: translateY(0);
}

.blog-detail header.scroll-nav {
  top: 0;
}

.blog-tag-line {
  background-color: #E42121;
  padding: 17px 15px;
  text-align: center;
}

.blog-tag-line p {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}

.blog-detail-area {
  padding: 100px 0 50px 0;
}

.blog-container {
  max-width: 855px;
  padding: 0 15px;
  margin: 0 auto;
}

.about-blog-detail ul {
  display: flex;
  align-items: center;
}

.about-blog-detail ul>li span {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-left: 12px;
}

.about-blog-detail ul>li {
  display: flex;
  align-items: center;
  margin-left: 44px;
}

.about-blog-detail ul>li:first-child {
  margin-left: 0;
}

.blog-detail-area .blog-para p {
  margin-top: 15px;
}

.blog-detail-area .blog-img-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 50px -8px 0 -8px;
}

.blog-detail-area .blog-img-flex .blog-img {
  width: 50%;
  padding: 0 8px;
}

.blog-detail-area .blog-img-flex .blog-img img {
  width: 100%;
}

/*****************************
   blog detail page end
******************************/
/*****************************
   contact page start
******************************/
.contact-addresses {
  padding: 100px 0 90px 0;
}

.address-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-support-heading {
  text-align: center;
  max-width: 754px;
  margin: 0 auto 120px auto;
}
.contact-support-heading .contact-support-para a{
    /* background-color: #1B3059; */
    color: #000;
    display: inline-block;
    line-height: 1;
    /* padding: 6px 10px 5px 10px; */
}
.contact-support-heading h2 {
  font-size: 30px;
  line-height: 1.4;
  max-width: 624px;
  margin: 0 auto;
}

.contact-support-heading .contact-support-para p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
}

.contact-support-heading .contact-support-para p:first-child {
  margin-top: 25px;
}

.address-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}

.address-width {
  width: 50%;
  padding: 0 9px;
}

.address-box {
  height: 711px;
  display: flex;
  align-items: flex-end;
}

.address-contact {
  background: #1B3059;
  padding: 32px;
}

.address-contact ul {
  max-width: 365px;
}

.address-contact h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.address-contact ul>li {
  color: rgba(255, 255, 255, 0.63);
  font-size: 21px;
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
}

.address-contact ul>li:first-child {
  margin-top: 34px;
}

.address-contact ul>li i {
  width: 6%;
  text-align: center;
}

.address-contact ul>li>a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 21px;
  display: inline-block;
  font-weight: 300;
  width: 96%;
  padding-left: 10px;
}

.touch-with-us {
  background-color: #F6F7FA;
  padding: 100px 0 150px 0;
}

.touch-form {
  max-width: 816px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 50px;
  display: none;
}
.email-us {padding: 0 15px;text-align: center;}

.email-us a {color: #000;display: inline-block;margin-top: 30px;}
.touch-heading {
  padding: 0 15px;
  text-align: center;
  color: #1B3059;
}

.touch-form .touch-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.touch-form .width50 {
  width: 50%;
  padding: 0 15px;
}

.touch-form .width100 {
  width: 100%;
  padding: 0 15px;
}

.touch-form .touch-flex label {
  display: block;
  color: #112A50;
  font-size: 14px;
  margin-bottom: 5px;
}

.touch-form .touch-flex .form-group {
  margin-top: 25px;
}

.touch-form .touch-flex select,
.touch-form .touch-flex textarea,
.touch-form .touch-flex input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.06632px solid rgba(17, 42, 80, 0.36);
  height: 40px;
  font-size: 14px;
  color: #112A50;
  outline: none;
}

.touch-form button.submit-btn {
  background-color: rgba(27, 48, 89, 1);
  color: #fff;
  font-size: 20px;
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  margin-top: 50px;
}

/*****************************
   contact page end
******************************/

/*****************************
   IMS page start
******************************/
.manage-heading-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 100px 15px 112px 15px;
  display: flex;
  flex-wrap: wrap;
}

.manage-heading {
  width: 40%;
}

.manage-para {
  width: 60%;
  max-width: 590px;
}

.manage-para p {
  margin-top: 30px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.manage-para p:first-child {
  margin-top: 0;
}

.manage-heading h2 {
  color: #0F1738;
  line-height: 1.3;
}

.manage-img-area {
  background-color: #F6F7FA;
  padding: 75px 0;
  position: relative;
}

.manage-img-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.manage-img-area .manage-img-one {
  margin-top: -350px;
  width: 40%;
  padding-right: 55px;
}

.manage-img-area .manage-img-two {
  position: absolute;
  right: 0;
  bottom: -100px;
}

.manage-img-area .manage-img-two img {
  width: 154px;
}

.manage-img-area img {
  width: 100%;
  height: 528px;
  object-fit: cover;
}

.manage-img-text {
  width: 60%;
  max-width: 595px;
}

.manage-img-text p {
  margin-top: 30px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.manage-img-text p:first-child {
  margin-top: 0;
}

.industrail-area {
  padding: 100px 0;
}

.industrial-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.industrial-content h2 {
  padding-left: 33px;
}

.industrial-content {
  max-width: 604px;
}

.industrial-content p {
  margin-top: 25px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.on-call {
  background-color: #F6F7FA;
}

.on-call-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.on-call h2 {
  color: #0F1738;
}

.on-call p {
  margin-top: 20px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.automated,
.expertise {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.expertise-content {
  width: 50%;
  max-width: 540px;
}

.expertise-img {
  width: 50%;
  margin-top: -100px;
}

.expertise-img img {
  object-fit: cover;
  display: block;
  margin-left: auto;
  width: 369px;
  height: 437px;
}

.automated-img {
  width: 40%;
  margin-top: -20px;

}

.automated-img img {
  object-fit: cover;
  display: block;
  margin-left: 0;
  width: 344px;
  height: 404px;
}

.automated-content {
  width: 60%;
  max-width: 713px;
}

.technology-content {
  width: 65%;
}


.technology-img img {
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: -100px;
  width: 343px;
height: 410px;
object-fit: cover;
}

.technology {
  padding: 80px 0;
}

.technology-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.technology-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.technology-img {
  width: 35%;
  position: absolute;
  right: 0;
}

.technology-content p {
  max-width: 722px;
}

.industrial-service {
  padding: 100px 0 135px 0;
  clear: both;
}

.in-service-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.in-service-flex {
  display: flex;
  align-items: flex-end;
}

.in-content-img-width {
  width: 75%;
  background-color: #F6F7FA;
  padding: 117px 0;
  margin-bottom: -55px;
  margin-left: -113px;
  z-index: 1;

}

.in-service-content {
  max-width: 516px;
  margin-left: auto;
  margin-right: 60px;
}

.in-service-content p {
  margin-top: 20px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.in-service-content h2 {
  color: #0F1738;
}

.in-service-img img {
  height: 534px;
  object-fit: cover;
  width: 100%;
}

.in-service-img-width {
  width: 50%;
  z-index: 9;
}

.skills-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.skills-flex {
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.skills-flex:nth-child(even) {
  flex-direction: row-reverse;
}

.skills-width {
  width: 50%;
}

.skills-img img {
  width: 100%;
}

.skills-content p {
  margin-top: 20px;
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.skills-content {
  max-width: 467px;
}

.skills-flex:nth-child(even) .skills-content {
  margin-left: auto;
}

.skills-content h2 {
  color: #0F1738;
}

.ims-table-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.ims-table-content {
  text-align: center;
  padding-top: 70px;
  max-width: 774px;
  margin: 0 auto;
}

.ims-table-content p {
  color: rgba(20, 31, 61, .8);
  font-size: 22px;
  font-weight: 400;
  margin-top: 35px;
}

.ims-table-content h6 {
  color: rgba(20, 31, 61, .3);
  font-size: 16px;
}

.ims-table-img {
  padding: 80px 0 100px 0;
}

.ims-table-img img {
  width: 100%;
}

.table-btn {
  padding-left: 33px;
}

.table-btn a {
  min-width: 132px;
  margin-top: 30px;
}

tr:not(:first-child) {
  text-align: center;
}

.table-img table {
  width: 100%;
  border-collapse: collapse;
  background-color: #F2FBFF;
}

.table-img table tr {
  text-align: left;
}

.table-img table tr th,
.table-img table tr td {
  padding: 24px;
}

.table-img table tr td {
  color: #343334;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.table-img table tbody tr:nth-child(even) {
  background-color: #ECF3FF;
}

.table-img table tr td:first-child {
  text-align: left;
}

.table-img table tr:first-child th {
  background-color: #1B3059;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.table-img table tr.sub-table-heading th {
  background-color: #273C90;

}

.sub-table-heading {
  position: relative;
  height: 69px;
}

.sub-table-heading th {
  width: 100%;
  display: block;
  position: absolute;
  /* text-align: center */
}

/*****************************
   IMS page end
******************************/
/*****************************
   what we do page start
******************************/

.technology-service {
  padding: 100px 0 50px 0;
}

.tech-service-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.tech-service-content {
  display: flex;
  flex-wrap: wrap;
}

.tech-service-heading {
  width: 40%;
}

.tech-service-para {
  width: 60%;
}

.tech-service-para p {
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
}

.tech-box-flex {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: 290px;
  padding: 34px 0;
  background-color: #F6F7FA;
}

.tech-box-icon {
  width: 50%;
  padding: 34px 34px;
  text-align: center;
}

.tech-ser-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 100px -10px 0 -10px;
}

.tech-ser-width {
  width: 50%;
  padding: 0 10px;
}

.tech-box-heading {
  background-color: #1B3059;
  padding: 9px;
  text-align: center;
}

.tech-box-heading h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}

.tech-box-icon h4 {
  font-size: 22px;
  font-weight: 500;
  color: #0F1738;
  margin-top: 25px;
}

.tech-box-flex::before {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .5px;
  position: absolute;
  background-color: rgba(0, 0, 0, .1);
  height: 65%;
}

.tech-box-bottom-heading {
  background-color: #EEBD1A;
  padding: 9px;
  text-align: center;
}

.tech-box-bottom-heading h4 {
  font-size: 22px;
  font-weight: 500;
  color: #1B3059;
}

.you-want {
  padding: 50px 0 90px 0;
}

.you-want-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.you-want-heading h2 {
  text-align: center;
}

.you-want-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 45px -10px 0 -10px;
}

.you-want-width {
  width: 50%;
  padding: 10px;
}

.you-want-box {
  background-color: #F6F7FA;
  padding: 37px 46px;
  text-align: center;
}

.you-want-icon {
  margin-top: 30px;
  position: relative;
}

.you-want-icon:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 18px;
  background-color: rgba(218, 224, 228, .7);
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}

.you-want-icon img {
  position: relative;
  z-index: 1;
}

.you-want-content h3 {
  margin-top: 30px;
  color: #0F1738;
  font-size: 28px;
}

.you-want-content p {
  color: rgba(86, 90, 105, .8);
  font-weight: 400;
  line-height: 1.7;
  margin-top: 20px;
}

.career-detail-area {
  padding: 90px 0;
}

.working-team-container,
.career-detail-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.lifelong .lifelong-heading {
  padding-left: 33px;
}

.lifelong-content {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.lifelong-para p {
  line-height: 1.7;
  color: rgba(86, 90, 105, .8);
  max-width: 530px;
}

.lifelong-para {
  width: 50%;
}

.lifelong-note {
  width: 50%;
}

.lifelong-note p {
  color: rgba(158, 165, 180, .8);
  font-style: italic;
  max-width: 435px;
  margin-left: auto;
}

.lifelong-note em {
  color: rgba(158, 165, 180, .8);
  font-style: italic;
  max-width: 435px;
  margin-left: auto;
  text-align: right;
  font-size: 16px;
  display: block;
  margin-top: 10px;
}

.dynamic {
  margin-top: 120px;
}

.dynamic-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dynamic-img {
  width: 50%;
  padding-left: 100px;
}

.dynamic-img img {
  width: 100%;
}

.dynamic-content {
  width: 50%;
  padding-left: 40px;
}

.dynamic-text p {
  line-height: 1.7;
  color: rgba(86, 90, 105, .8);
  margin-top: 10px;
}

.dynamic-note {
  margin-top: 25px;
}

.dynamic-note p {
  color: rgba(158, 165, 180, .8);
  font-style: italic;
}

.dynamic-note em {
  color: rgba(158, 165, 180, .8);
  font-style: italic;
  text-align: right;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
}

.working-team .working-team-content {
  background-color: #1B3059;
  padding: 60px 0 225px 0;
}

.working-team-imgs {
  display: flex;
  flex-wrap: wrap;
  margin: -170px -8px 0px -8px;
}

.working-team-imgs .members {
  width: 25%;
  padding: 0 8px;
}

.working-team-imgs .members img {
  width: 100%;
  height: 266px;
    object-fit: cover;
}

.working-team-content h2 {
  text-align: center;
  color: #fff;
}

.working-team-content .working-team-container>p {
  max-width: 900px;
  text-align: center;
  margin: 20px auto;
  color: rgba(244, 244, 244, .8);
}

.working-team-note {
  max-width: 535px;
  text-align: center;
  margin: 0 auto;
}

.working-team-note p {
  color: rgba(244, 244, 244, .8);
  font-style: italic;
}

.working-team-note em {
  color: rgba(244, 244, 244, .8);
  font-size: 16px;
  margin: 10px 0 0 0;
  display: inline-block;
}

/*****************************
   what we do page end
******************************/
/**********************************
   thinking out loud page start
***********************************/

.thinking-loud-heading {
  text-align: center;
}
.thinking-loud-area .offer-flex{
  margin-top: 80px;

}
.thinking-loud-area .offer-content {
  margin-left: 0;
}
.thinking-loud-area .offer-sub {
  padding-left: 30px;
}
.thinking-loud-area .offer-content::before {
  height: 336px;
  top: -35px;
  content: none;
}
/**********************************
   thinking out loud page  end
***********************************/

/******************************
   core details page start
*******************************/
.core-detail-area {
  padding: 80px 0 80px 0;
}

.core-detail-para h4 {
  font-weight: 500;
  line-height: 1.2;
  color: #0F1738;
  margin-top: 30px;
}

.core-detail-para h4:first-child {
  margin-top: 0;
}

.core-detail-para p {
  margin-top: 15px;
}

.ims-detail2 .core-detail-para h2:first-child {
  margin-bottom: 30px;
}

.ims-detail2 .core-detail-para p {
  margin-top: 20px;
}

/******************************
  core details page end
*******************************/
/*********************
    footer start
**********************/
footer {
  background-color: #1B3059;
  padding: 68px 0 108px 0;
}

.footer-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #697DA5;
  padding-bottom: 20px;
}

.footer-social ul,
.footer-top .footer-icon ul {
  display: flex;
  align-items: center;
}

.footer-top .footer-icon ul>li {
  margin-left: 8px;
}

.footer-top .footer-icon ul>li:first-child {
  margin-left: 0px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.footer-social ul>li>a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
}

.footer-social ul>li {
  margin-left: 40px;
}

.footer-social ul>li:first-child {
  margin-left: 0;
}

.copyright p {
  color: rgba(143, 150, 180, 0.6);
  font-size: 14px;
}
.company-privacy-policy {
  text-align: right;
}

.company-privacy-policy a {
  color: white;
  font-size: 14px;
  margin-top: 20px;
  display: block;
}
/*********************
    footer end
**********************/

/*********************
    Privacy Policy start
**********************/
.our-privacy-related-questions {
  padding: 40px 20px;
}

.privacy-policy-content .our-privacy-related-questions:nth-child(even) {
  background-color: #F2F3F8;
}

.our-privacy-related-questions h3 {
  color: #283C8D;
}

.our-privacy-related-questions p {
  margin-top: 20px;
  font-size: 20px;
  color: #1F1F1F;
}

.our-privacy-related-questions h2 {
  font-size: 36px;
  color: #000000;
}

body.privacy-policy-page header {
  background-color: #283C8D;
  position: relative;
}



.our-privacy-related-questions ul {
  list-style: disc;
  margin: 32px 0 24px 48px;

}

.our-privacy-related-questions ul li {
  font-size: 20px;
  color: #1F1F1F;
  line-height: 1.5;
}

.our-privacy-related-questions span {
  font-size: 20px;
  color: #1F1F1F;
  margin: 32px 0 0;
  display: block;
}


/*********************
    Privacy Policy end
**********************/
/***********************
    MEDIA QUERY
************************/
@media (max-width:1400px) {
  .we-img1 img {
    height: 328px;
    width: 206px;
  }

  .we-img2 img {
    height: 285px;
    width: 216px;
  }
}

@media(max-width:1300px) {
  h1 {
    font-size: 50px;
  }

}

@media(max-width:1100px) {
  h1 {
    font-size: 38px;
  }

  h4 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  h2 {
    font-size: 30px;
  }
.our-privacy-related-questions ul li,.our-privacy-related-questions p,
.our-privacy-related-questions span  {
  font-size: 15px;
}
.our-privacy-related-questions h2 {
  font-size: 30px;
}
  .main-banner-content h1 {
    max-width: 520px;
  }

  .we-do-main-img:before {
    height: 100%;
    top: 0;
  }

  .we-do-main-img {
    padding: 0 0px 0 80px;
  }

  .main-banner-slider-thumbnail {
    width: 100%;
    height: 90px;
  }

  .banner-slide-bg {
    height: 50vh;
  }

  .banner-slide-thumbnail {
    padding: 12px;
  }

  .banner-slide-thumbnail-img img {
    height: 60px;
  }

  .banner-slide-bg {
    background-size: 150%;
  }

  .swiper-slide-active .banner-slide-bg {
    background-size: 125%;
  }

  .swiper-slide:nth-child(even) .banner-slide-bg {
    background-size: 140%;
  }

  .swiper-slide-active.swiper-slide:nth-child(even) .banner-slide-bg {
    background-size: 180%;
  }

  .we-do-main-img:before,
  .we-do-main-img,
  .do-content-img,
  .do-content-area,
  .we-do-content .sub-heading {
    transform: none;
  }

  .weo-do-img-title h6 {
    opacity: 1;
  }

  .do-content-img img {
    width: 140px;
  height: 184px;}

  .do-content-area p {
    font-size: 18px;
    margin-top: 15px;
  }

  .common-style-btn a {
    font-size: 14px;
    min-height: 37px;
  }
  .we-do-main-img img {
    height: 391px;
}
  .story-btn a,
  .we-do-btn.common-style-btn.blue a {
    min-width: 102px;
  }

  .team-img img {
    height: 415px;
  }

  .home-work .home-work-box {
    height: 50vh;
  }

  .home-work .home-work-content h2 {
    font-size: 33px;
    margin-top: 20px;
  }

  .home-work .home-work-content h4 {
    font-size: 15px;
    margin-top: 12px;
  }

  .home-work .home-work-content p {
    font-size: 15px;
    margin-top: 20px;
  }

  .home-work .home-work-content .home-work-tag p {
    font-size: 13px;
  }

  .home-work .home-work-content {
    max-width: 380px;
  }

  .home-work-slider .swiper-button-prev,
  .home-work-slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .work-arrows {
    top: 78%;
    left: 15px;
  }

  .stories {
    padding: 60px 0 0 0;
  }

  .story-box {
    padding: 25px 0;
  }

  .story-area {
    margin-top: 15px;
  }

  .story-content h4 {
    font-size: 24px;
  }

  .story-date {
    width: 96%;
  }

  .home-service-content {
    max-width: 500px;
  }

  .service-box-width .service-box {
    height: 263px;
  }

  .home-service {
    padding: 200px 0 120px 0;
  }

  .service-content-bg {
    padding: 15px;
  }

  .service-box-width:first-child {
    top: -278px;
  }

  .service-type {
    margin-top: 20px;
  }

  .home-service::before {

    width: 324px;
    height: 440px;
  }

  .story-btn a {
    margin-top: 50px;
  }

  .our-team {
    padding: 40px 0;
  }

  .why-we-content-width {
    width: 44%;
  }

  .we-img1 img {
    height: 285px;
    width: 172px;
  }

  .about-do-content:before {
    height: 376px;
  }

  .we-img2 img {
    height: 295px;
    width: 170px;
  }

  .why-we {
    background-color: #1B3059;
    padding: 70px 0 90px 0;
    position: relative;

  }

  .why-content {
    max-width: 375px;
  }

  .do-it {
    padding-top: 0;
  }

  .offer-content {
    margin-left: 0;
  }

  .offer-sub {
    padding-left: 30px;
  }

  .work-popup-data {
    width: 97%;
  }

  .tech-box-icon {
    padding: 34px 24px;
  }

  .in-service-content {

    margin-right: 0;
    padding-right: 20px;
  }
}

@media(max-width:992px) {
  header {
    padding: 12px 0;
    transition: all .6s ease-in-out;
  }

  header.open-nav {
    background-color: #152142;
  }

  .scroll-nav.open-nav .header-flex .site-logo a img {
    filter: brightness(0) invert(1);
  }

  .scroll-nav.open-nav .hamburger span {
    background-color: #fff;
  }

  .scroll-nav.open-nav .header-flex .header-search .form-group img {
    filter: brightness(0) invert(1);
  }

  .scroll-nav.open-nav .header-flex .header-search input::placeholder,
  .scroll-nav.open-nav .header-flex .header-search input {
    color: #fff;
  }

  .scroll-nav.open-nav .header-flex .header-search:hover .form-group {
    border-color: #fff;
  }

  .header-flex .site-logo {
    width: 35%;
  }

  .header-flex {
    justify-content: space-between;
  }

  .header-flex .site-nav {
    width: 6%;
    padding-left: 10px;
    order: 3;
  }

  .header-flex .site-nav nav {
    position: absolute;
    background: linear-gradient(170.61deg, #152142 61.05%, rgba(21, 33, 66, 0.8) 86.36%);
    right: -100%;
    width: 100%;
    padding: 20px 0;
    top: 69px;
    height: calc(100vh - 69px);
    transition: all .4s ease-in-out;
    overflow: hidden;

  }
.our-privacy-related-questions h2 {
  font-size: 25px;
}
.our-privacy-related-questions h3
{
    font-size:20px;
}
  .open-nav .header-flex .site-nav nav {
    right: 0;
  }

  .scroll-nav .header-flex .site-nav nav ul>li>a {
    color: #fff;
  }

  .hamburger {
    height: 18px;
    width: 100%;
    position: relative;
    margin-left: auto;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 8);
    bottom: 0;
    transition: all .4s ease-in-out;
  }

  .scroll-nav .hamburger span {
    background-color: #1B3059;
  }

  .hamburger span:first-child {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 50%;
  }

  .hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 7px;
  }

  .hamburger.active span:last-child {
    opacity: 0;
  }

  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    top: 7px;
  }

  .header-flex .site-nav nav>ul {
    display: block;
    align-items: center;
    padding: 0 15px;
  }

  .header-flex .header-search {
    width: 50%;
    display: flex;
    order: 2;
  }

  .header-flex .header-search .form-group {
    width: 22%;
  }

  .header-flex .site-nav nav>ul>li {
    margin-left: 0;
    padding: 0;
  }

  ul.submenu {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    padding: 20px 15px;
    left: -100%;
    transition: all .4s ease-in-out;
    display: block;
  }

  ul.submenu.slide-sub {
    left: 0px;
  }

  ul.submenu .back-sub {
    font-size: 24px;
    padding: 20px 0;
    color: #fff;
    position: relative;
    display: flex;
    justify-content: flex-end;
  }

  ul.submenu>li>a {
    padding: 8px 20px;
    display: block;
    border-bottom: none;
  }

  .header-flex .site-nav nav>ul>li>a {
    display: block;
  }

  .header-flex .site-nav nav>ul>li a {
    font-size: 22px;
    position: relative;
    padding: 20px 0px 16px 0;
    border-bottom: 2px solid #EEBD1A;
  }

  .header-flex .site-nav nav>ul>li a::after {
    content: none;
  }

  .header-flex .site-nav nav>ul>li.has-submenu>a {
    position: relative;
  }

  .header-flex .site-nav nav>ul>li.has-submenu>a::before {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 12px;
    position: absolute;
    top: 22px;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 12px;
    right: 5px;
    transform: rotate(45deg);
  }

  .header-flex .site-nav nav>ul>li.has-submenu .back-sub::before {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 12px;
    position: absolute;
    top: 21px;
    vertical-align: top;
    width: 12px;
    left: 5px;
    transform: rotate(223deg);
  }

  .home-work-heading {

    top: 40px;
    left: -20px;
  }

  .home-work-heading h2 {
    font-size: 68px;
  }

  .we-do-main-img:before {
    height: 87%;
    top: 7%;
  }
  .we-do-main-img img {
    height: 371px;
}
  .we-do-main-img {
    padding: 0 0px 0 35px;
  }

  .about-do-content-area p {
    font-size: 17px;
    margin-top: 20px;
  }

  .about-we-btn a {
    min-width: 110px;
    margin-top: 30px;
  }

  .about-do-content:before {
    height: 326px;
    width: 374px;
  }

  .about-do-content {
    padding-left: 40px;
  }

  .why-we-content-width {
    width: 40%;
  }

  .we-img1 img {
    height: 235px;
    width: 154px;
  }

  .why-content {
    padding-right: 10px;
  }

  .why-we {
    padding: 50px 0 70px 0;
  }

  .why-we-img {
    top: -60px;
    width: 25%;
  }

  .manufacture-content {
    padding-left: 10px;
  }

  .career-bottom-img {
    margin-top: 0px;
    margin-bottom: -140px;
  }

  .career-content {
    padding-left: 0;
  }

  .career {
    padding: 75px 0 70px 0;
  }

  /* .job-iframe {
    margin-top: 50px;
  } */
  .blog-detail-area {
    padding: 70px 0 50px 0;
  }

  .contact-addresses {
    padding: 60px 0 50px 0;
  }

  .contact-support-heading {
    margin: 0 auto 70px auto;
  }

  .address-contact ul>li>a {
    font-size: 18px;
  }

  .address-box {
    height: 611px;
  }

  .address-contact ul>li:first-child {
    margin-top: 24px;
  }

  .address-contact ul>li {
    font-size: 20px;
    margin-top: 20px;
  }

  .touch-with-us {
    padding: 60px 0 80px 0;
  }

  .touch-form {
    margin-top: 40px;
  }

  .enabling-content img {
    margin-top: 38px;
    margin-left: 20px;
  }

  .enabling-content p {
    padding-left: 20px;
  }

  .offer-images img {
    height: 235px;
  }

  .offer-content::before {
    width: 376px;
    height: 396px;
  }

  .work-gallery ul>li>a {
    height: 310px;
    padding: 18px;
  }

  .work-gallery {
    padding: 42px 0 50px 0;
  }

  .quality-work {
    padding-top: 10px;
  }

  .work-popup-data {
    height: 440px;
  }

  .work--popup-container .work-popup-content {
    padding: 0 15px;
  }

  .technology-service {
    padding: 60px 0 50px 0;
  }

  .tech-box-icon {
    padding: 20px 10px;
  }

  .tech-box-flex {
    min-height: 250px;
    padding: 30px 0;
  }

  .you-want {
    padding: 0px 0 60px 0;
  }

  .automated-content {
    padding-left: 20px;
  }

  .in-service-img img {
    height: 400px;

  }

  .in-service-content {
    max-width: 436px;
    margin-right: 0;
    padding-right: 20px;
  }

  .in-service-img-width {
    width: 42%;
  }

  .in-content-img-width {
    width: 68%;
    padding: 90px 0;
    margin-left: -64px;
    z-index: 1;
  }

  .technology-img img {
    height: 350px;
  }

  .skills-content {
    padding: 0 20px;
  }

  .about-we-do {
    padding: 60px 0 120px 0;
  }

  .sub-table-heading {
    height: 41px;
  }

  .table-img table tr td,
  .table-img table tr:first-child th {
    font-size: 14px;
  }

  .table-img table tr th,
  .table-img table tr td {
    padding: 10px;
  }
  .lifelong-para p {
    padding-right: 10px;
  }
  .dynamic-img{
    padding-left: 0;
  }
  .dynamic-content {
    padding-left: 20px;
  }
  .working-team {
    margin-bottom: 30px;
  }
  .working-team .working-team-content {
    padding: 60px 0 175px 0;
  }
  .working-team-imgs {
    margin: -120px -8px 0px -8px;
  }
}

@media(max-width:767px) {
  h1 {
    font-size: 26px;
  }

  .header-flex .site-nav {
    width: 10%;
  }

  .header-flex .header-search .form-group {
    width: 48%;
  }

  .header-flex .site-nav nav {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .banner-slide-bg {
    height: 50vh;
  }

  .we-do-width,
  .banner-slide-thumbnail-img,
  .main-banner-thumbnail-content {
    width: 100%;
  }

  .main-banner-thumbnail-content {
    padding: 8px 0;
  }

  .main-banner-slider-thumbnail {
    height: auto;
  }
  .banner-slide-bg img {
    height: 100%;
    object-fit: cover;
}
  .banner-slide-thumbnail::before {
    height: 97px;
  }

  .banner-slide-bg {
    background-size: 200%;
  }

  .swiper-slide-active .banner-slide-bg {
    background-size: 250%;
  }

  .swiper-slide:nth-child(even) .banner-slide-bg {
    background-size: 180%;
  }

  .swiper-slide-active.swiper-slide:nth-child(even) .banner-slide-bg {
    background-size: 200%;
  }
  .service-animation {
    transform: translateY(0%);
}
  .service-box-width:first-child,
  .main-banner-slider-thumbnail {
    position: static;
  }

  .service-box-width {
    width: 50%;
  }

  .we-do-main-img:before {
    height: 100%;
    top: 0%;
  }

  .weo-do-img-title {
    padding-left: 50px;
  }

  .we-do-main-img {
    padding: 30px 0px 30px 30px;
  }

  .home-service {
    padding: 80px 0 400px 0;
  }

  .home-service-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 0px;
  }

  .home-service-content p::before {
    left: -20px;
  }

  .service-content-animation h4 {
    transform: translateY(34px);
  }

  .home-work .home-work-box {
    height: 80vh;
    align-items: flex-start;
    padding: 80px 0 0 0;
  }

  .home-work .home-work-content .home-work-tag p {
    font-size: 12px;
  }

  .home-work .home-work-content h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .home-work .home-work-content h4 {
    font-size: 14px;
    margin-top: 10px;
  }

  .home-work .home-work-content p {
    font-size: 14px;
    margin-top: 12px;
  }

  .work-arrows {
    top: 38%;
  }

  .automated-img,
  .automated-content,
  .expertise-img,
  .expertise-content,
  .technology-img,
  .technology-content,
  .in-content-img-width,
  .in-service-img-width,
  .skills-width,
  .you-want-width,
  .tech-service-para,
  .tech-service-heading,
  .tech-ser-width,
  .offer-width,
  .enabling-width,
  .enabling-width-heading,
  .touch-form .width50,
  .address-width,
  .blog-detail-area .blog-img-flex .blog-img,
  .career-width,
  .manufacture-width,
  .why-we-content-width,
  .about-we-width,
  .team-img,
  .team-content,
  .story-img {
    width: 100%;
  }

  .story-img img {
    width: 100%;
  }

  .story-content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .story-date {
    width: 100%;
    position: static;
    margin-top: 20px;
  }

  .team-img img {
    height: 350px;
    object-fit: cover;
  }

  .team-content {
    padding: 20px 20px 70px 20px;
  }

  .team-content h6,
  .member-name {
    padding-left: 20px;
  }

  .member-name h3 {
    font-size: 22px;
    margin-top: 15px;
  }

  .footer-top {
    display: block;
  }

  .footer-bottom {
    display: block;
  }

  footer {
    padding: 40px 0 50px 0;
  }

  .footer-social ul,
  .footer-top .footer-icon ul {
    margin-top: 15px;
  }

  .home-work .home-work-box:before {
    width: 100%;
    height: 60%;
  }

  .home-work-heading h2 {
    font-size: 55px;
  }

  .home-work-heading {
    top: 10px;
  }

  .work-arrows {
    top: 52%;
  }

  .about-we-do {
    padding: 60px 0;
  }

  .about-flex {
    display: block;
  }

  .about-we-img {
    padding-top: 0;
  }

  .about-do-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .why-we-img {
    top: 0;
    width: 100%;
    position: static;

  }

  .why-we-img-width {
    width: 100%;
    margin-top: 40px;
    margin-bottom: -60px;
  }

  .we-img1 img {
    height: auto;
    width: 60%;
  }

  .we-img2 img {
    height: 100%;
    width: 60%;
  }

  .why-we {
    padding: 50px 0 0px 0;
  }

  .core {
    padding: 110px 0 65px 0;
  }

  .core-para p {
    font-size: 18px;
    margin-top: 20px;
  }

  .core-container {
    padding: 0 15px;
  }

  .do-it-content {
    padding: 30px 0px;

  }

  .do-it-btn a {
    min-width: 160px;
    margin-top: 30px;
  }

  .manufacture {
    padding: 70px 0 60px 0;
  }

  .manufacture-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .career-content {
    margin-top: 30px;
  }

  .career-content h2,
  .para-before {
    padding-left: 25px;
  }

  .career-btn a {
    min-width: 110px;
    margin-left: 25px;
  }

  .career-bottom-img img {
    margin-top: 50px;
  }

  .blog-tag-line p {
    font-size: 11px;
  }

  .blog-detail-area .blog-img-flex {
    margin: 20px -8px 0 -8px;
  }

  .blog-detail-area .blog-img-flex .blog-img {
    margin-top: 20px;
  }

  .address-contact {
    padding: 20px;
  }

  .touch-form .touch-flex .form-group {
    margin-top: 15px;
  }

  .work-gallery ul>li {
    width: 50%;
  }

  .enabling {
    padding: 40px 0 40px 0;
  }

  .enabling-content p {
    padding-left: 0;
    margin-top: 20px;
  }

  .enabling-content img {
    display: none;
    margin-left: 0;
    margin-top: 20px;
  }

  .enabling-heading img {
    margin-top: 20px;
  }

  .offer-content::before {
    width: 100%;
  }

  .work-popup-data:before {
    width: 100%;
    height: 50%;
  }

  .work-popup-data {
    height: 600px;
  }
  .work--popup-container .work-popup-content h2 {
    font-size: 24px;
}
.work--popup-container .work-popup-content p {

  margin-top: 15px;
}
  .work--popup-container {
    align-items: flex-start;
    padding-top: 20px;
  }

  .you-want-box {
    padding: 20px 20px;
  }

  .tech-ser-flex {
    margin: 30px -10px 0 -10px;
  }

  .tech-ser-width {
    margin-top: 20px;
  }

  .about-blog-detail ul>li {
    margin-left: 15px;
  }

  .about-blog-detail ul>li span {
    font-size: 14px;
    margin-left: 8px;
  }

  .automated-img img {
    height: auto;
    width: 100%;
  }

  .automated {
    flex-direction: column-reverse;
  }

  .automated-img,
  .expertise-img {
    margin-top: 20px;
  }

  .on-call {
    padding: 30px 0;
  }

  .technology-content,
  .automated-content {
    margin: 20px 0 0 0;
  }

  .technology-img img {
    height: auto;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 20px;
    width: 100%;
  }

  .in-content-img-width {
    padding: 50px 0;
    margin-bottom: 0;
  }

  .in-service-flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .in-service-img img {
    height: auto;

  }

  .in-service-content {
    margin-right: 0;
    padding: 0 20px;
  }

  .industrial-service {
    padding: 80px 0 40px 0;
  }

  .skills-img img {
    margin-top: 20px;
  }

  .skills-flex {
    margin-bottom: 40px;
  }

  .ims-table-img {
    padding: 40px 0 60px 0;
  }

  .ims-table-content p {
    font-size: 18px;
    margin-top: 25px;
  }

  .sub-table-heading {
    height: 30px;
  }

  .table-img table tr td,
  .table-img table tr:first-child th {
    font-size: 11px;
  }

  .table-img table tr th,
  .table-img table tr td {
    padding: 8px 5px;
  }

  .expertise-img img {
    height: 100%;
    width: 100%;
  }

  .automated-content {
    padding-left: 0;
  }

  .technology-img {
    position: static;
  }

  .technology {
    padding: 0px 0;
  }
  .career-detail-area {
    padding: 40px 0;
  }
  .dynamic-content,
  .dynamic-img,
  .lifelong-note,
  .lifelong-para {
    width: 100%;
  }
  .lifelong-para p {
    padding-right: 0px;
  }
  .lifelong .lifelong-heading {
    padding-left: 23px;
  }
  .lifelong-note p {
    margin-top: 20px;
  }
  .dynamic-content {
    padding-left: 0px;
    margin-top: 20px;
  }
  .dynamic-note {
    margin-top: 10px;
  }
  .working-team-imgs .members {
    width: 50%;
    padding: 8px;
  }
  .working-team .working-team-content {
    padding: 40px 0 150px 0;
  }
  .you-want-flex {
    margin: 30px -10px 0 -10px;
  }
  .dynamic {
    margin-top: 50px;
}
}

@media(max-width:580px) {
  .service-box-width {
    width: 100%;
  }

  .work-gallery ul>li {
    width: 100%;
  }
}