@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
:root {
  --ec_primary-color: #000000;
  --ec_secondary-color: #b40f0d; 
  --ec_heading-font: 'Nunito', sans-serif;
  --ec_body-font: 'Nunito', sans-serif;
  --ec_italic-font: 'DM Serif Text', serif;
  --hdark-grey: #494949;
  --dark-grey: #707070;
  --mild-grey: #7d7d7d;
  --light-grey: #a0a0a0;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 500; /*400*/
  font-style: normal;
  font-size: 19px; /*18px*/  
  font-family: var(--ec_body-font);
  line-height: 1.7;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 50px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 40px; }

h3, .h3 {
  font-size: 26px;/*30px*/ }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 24px;/*20px*/ }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);
  clear: both;
  font-family: var(--ec_heading-font);
  font-weight: 700; /*600*/ 
  line-height: 1.2; /*1.3*/
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
.green-bg {
  background-color: var(--green);
}
.black-bg {
  background-color: var(--black);
}
.white-bg {
  background-color: var(--white);
}
.grey-bg {
  background-color: var(--grey);
}
.text-green {
  color: var(--dark-green);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.ec-btn {  
  padding: 9px 28px;
  border: 1px solid var(--hdark-grey);
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--hdark-grey);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
}
.ec-btn:hover {
  border: 1px solid var(--hdark-grey);
  text-decoration: none;
}
.btn--primary {
  z-index: 1;
  color: var(--white);
  background-color: var(--hdark-grey);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--mild-grey);
  border-color: var(--mild-grey);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--dark-grey);
  border-color: var(--dark-grey); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--dark-grey);
  border-color: var(--dark-grey); 
}
.btn--white {
  z-index: 1;
  color: var(--black);
  border: 1px solid var(--white);
  background-color: var(--white); 
  box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
}
.btn--white:hover {
  border: 1px solid var(--hdark-grey);
  color: var(--white);
  background-color: var(--hdark-grey);
}
.pad-tb {
  padding: 50px 0;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title.text-center {
  margin-bottom: 25px; /* 5px*/
  position: relative;
}
.section-title.text-left {
  margin-bottom: 15px;
  position: relative;
}
.section-title.text-left h2, .section-title.text-center h2 {
  color: var(--dark-title-blue);
  position: relative;
}
.section-title.pad-lr {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
  padding: 3px 0;
  border-top: 3px solid var(--dark-grey);
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  padding: 12px 1.5vw;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu > li.active > a {
  color: var(--dark-grey);
}
header .main-menu > li:hover > a {
  color: var(--dark-grey);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--dark-grey);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 220px;
  overflow: hidden;
  border-top: 2px solid var(--dark-grey);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 11px 10px;
  display: block;
  color: var(--black);
  font-size: 17px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--dark-grey);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--dark-grey);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 999999;/*15000*/
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-wrap ul.main-menu {
  margin-top: 35px !important;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
  display: none!important;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--dark-grey);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: #fff; 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: var(--dark-grey);
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/
.banner-wrap {
  position: relative;
  padding: 90px 0 90px;
  background: var(--grey);
  min-height: 450px;
}
.banner-content-wrap .rs-animated-heading .title-inner h1.title {
  font-size: 55px;
  line-height: 65px;
  color: var(--black);
  margin-bottom: 15px;
}
.banner-content-wrap .rs-animated-heading .title-inner h2 { 
  font-size: 42px;
  line-height: 52px;
}
.banner-content-wrap .rs-animated-heading .title-inner h3 { 
  font-size: 35px;
  line-height: 45px;
}
.banner-content-wrap .rs-animated-heading .description p {
  color: #fff;    
  font-size: 2rem;
  padding-right: 250px;
  margin-top: 25px;
}
.banner-content-wrap .btn-wrap {
  margin-top: 30px;
}
.intro-section {
  padding-right: 20px;
}
.bg-list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.bg-list li {
  list-style-type: none;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 15px 15px 45px;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
}
.bg-list li:before {
  font-family: "Font Awesome 6 Free";
  content:"\f058";/*f105 f0da*/
  position: absolute;
  left: 15px;
  font-weight: 600;    
  color: var(--dark-grey);
}
.intro-img {
  position: relative;
  z-index: 1;
  text-align: center;
}
.intro-img .circle-shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.top-featured {
  margin-bottom: 30px;
  background: #f7f7f7; /*#F8FBFF*/
  padding: 35px 20px;
  border-radius: 5px;
}
.top-featured-icon {
  height: 110px;
  width: 110px;
  line-height: 115px;
  background-color: #ffffff;
  box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.05);
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.top-featured-icon img {
  z-index: 1;
  position: relative;
  width: 75px;
  height: 75px;
}
.top-featured .btn-wrap {
  margin-top: 1rem;
}
.other-solutions {
  background: linear-gradient(45deg, #333, #555, #707070);    
  /*position: relative;
  z-index: 1;*/
}
.other-solutions .section-title.text-center h2 {
  color: var(--white);
}
.solutions-wrap {
  background-color: #ffffff;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  padding: 35px 15px;
  border-radius: 5px;
  transition: 0.5s;
  margin-bottom: 30px;    
  text-align: center;    
  min-height: 430px;    
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.solutions-wrap::before {
  position: absolute;
  right: -50px;
  top: -50px;
  content: "";
  height: 150px;
  width: 150px;
  background: rgba(112, 112, 112, 0.1);
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}
.solutions-wrap:after {
  position: absolute;
  right: -50px;
  top: -50px;
  content: "";
  height: 100px;
  width: 100px;
  background: rgba(112, 112, 112, 0.1);
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}
.solutions-wrap:hover:before {
  height: 180px;
  width: 180px;
}
.solutions-wrap:hover:after {
  height: 120px;
  width: 120px;
}
.solutions-wrap-icon.top-featured-icon {
  background: #333;
  height: 110px;
  width: 110px;
  line-height: 115px;
}
.latest-tech-section {
  padding-left: 20px;
}
.latest-tech-wrap .intro-img .circle-shape {
  top: 62%;
}
.why-choose {
  position: relative;
  padding: 130px 0px 70px;
  margin-top: 45px;
}
.why-choose .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;    
  background-image: url(../images/why-ecran-shape.png);
}
.why-choose p {
  font-family: var(--ec_italic-font);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
.footer {
  position: relative;
  background: #121212 none repeat scroll 0 0; 
  overflow: hidden; 
  z-index: 1;
}
.footer .footer-shape {
  background-image: url(../images/footer-shape.png);
  opacity: 0.06;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.footer-top {
  padding: 70px 0 40px;
  position: relative;
}
.footer-top .col-off-40 {
  margin-left: -40px;
  margin-right: 40px; 
}
.footer-top .col-off-20 {
  padding-left: 30px;
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}
.footer-widget h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--white);
}
.footer-widget p {
  color: #eee;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 10px;
}
.footer-widget ul.widget-links > li a {
  color: #eee;
  position: relative;
  /*padding-left: 25px;*/
} 
.footer-widget ul.widget-links > li a:hover {
  color: #eee;
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  font-family: "Font Awesome 6 Free";
  content:"\f0da";/*f105*/
  position: absolute;
  left: 0;
  font-weight: 600;
  display: none;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.icn {
  position: absolute;
  left: 0;
  color: #eee;
}
.txt {
  padding-left: 0px; /*30px*/
  color: #eee;
}
.footer-bottom {
  padding: 25px 0;position: relative;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #333;
  color: var(--white);
  display: inline-block;
  border-radius: 50%; 
}
ul.social-links > li a.facebook {
  background: #3b5998;
}
ul.social-links > li a.twitter {
  background: #1da1f2;
}
ul.social-links > li a.linkedin {
  background: #0077b5;
}
.working-hours {
  margin-bottom: 1.2rem;
}
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  text-transform: uppercase;
  font-size: 54px;
  color: var(--white);
  position: relative;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 50px;
}
textarea.form-control {
  height: 110px;
}
.form-control:focus {
  box-shadow: none;
  border:1px solid var(--hdark-grey);
}
.img-wrap {
  border-radius: 10px;
}
.bounce-y {
  -webkit-animation: bounce-y 5s infinite linear;
  animation: bounce-y 5s infinite linear;
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 5s infinite linear;
  animation: bounce-x 5s infinite linear;
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce {
  -webkit-animation: bounce 5s infinite alternate;
  animation: bounce 5s infinite alternate;
}
@-webkit-keyframes bounce {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}  
@keyframes bounce {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}
.industries-wrap .col-lg-push-6 {
  left: 50%;
}
.industries-wrap .col-lg-pull-6 {
  right: 50%;
}
.industries-wrap .row.align-items-center {
  margin-top: 50px;
}
.industries-wrap .industries-info-wrap p {
  text-align: justify;
}
.industries-wrap .industries-info-wrap h3 {
  font-size: 34px;    
  margin-bottom: 10px !important;
}
.contactform-wrap h3 {
  font-family: var(--ec_italic-font);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 25px;
}
.contact-info-wrap {
  margin-bottom: 20px;
}
.contact-info-wrap .contact-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 47px;
  background: var(--dark-grey);
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
}
.contact-info-wrap .contact-info {
  padding-left: 55px;
}
.contact-info-wrap .contact-info h4 {
  margin-bottom: 2px;
}
.career-sidebar {
  position: sticky;
  top: 110px;
}
.career-form {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}
.career-form h3 {
  background-color: var(--hdark-grey);
  color: var(--white);
  font-weight: 500;
  padding: 8px 10px;
}
.career-form form {
  padding: 10px 15px 20px;
}
.career-form label {
  margin-bottom: .1rem;
}
.career-form .form-control { 
  height: 48px;
}
.career-form .form-group {
  margin-bottom: 0.5rem;
}
.career-form textarea.form-control {
  height: 75px;
}
ul.ec-list {
  padding: 0;
  margin: 0px;
}
ul.ec-list > li {
  margin-bottom: 8px;
  position: relative;
  display: block;
  padding-left: 20px;
}
ul.ec-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";/*f560 f14a f058 f0da f105*/
  position: absolute;
  left: 0px;
  font-weight: 600;
  color: var(--dark-grey);
}
.career-wrap ul.ec-list {
  margin-bottom: 20px;
}
.vision-mission .top-featured {
  padding: 25px 15px;
  border-radius: 10px;
  min-height: 380px;
  border: 2px dashed #ccc;
  background: #fff;
}
.vision-mission .top-featured-icon {
  background-color: #333;
}
.about-wrap .intro-section {
  padding-right: 0;
}
blockquote {
  font-size: 1.3em;
  width: 90%;
  margin: 30px auto;
  /*font-family: Open Sans;
  font-style: italic;
  color: #555555;*/
  padding: 1.2em 30px 1.2em 75px;
  border-left: 8px solid var(--dark-grey);
  line-height: 1.6;
  position: relative;
  background: #f3f3f3;
  font-family: var(--ec_italic-font);
  font-style: italic;
}
blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: var(--hdark-grey);
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}
.mservices-detail-wrap.pad-tb {
  padding: 50px 0 35px;
}
.mservices-detail-wrap .solutions-wrap {
  padding: 30px 15px 25px;    
  min-height: 425px;
}
.bigdata-offerings-wrap {
  background: #f5f5f5;
}
.bigdata-offerings-wrap .nav-pills .nav-link {
  background-color: var(--dark-grey);
  color: var(--white);
}
.bigdata-offerings-wrap .nav-pills .nav-link.active {
  background-color: #121212;
  color: var(--white);
}
.bigdata-offerings-wrap .nav-pills > li {
  margin: 0px 6px;
}
.bigdata-offerings-wrap .tab-content .tab-pane .col-lg-7.col-md-7 {
  left: 41.666667%;
}
.bigdata-offerings-wrap .tab-content .tab-pane .col-lg-5.col-md-5 {
  right: 58.333333%;
}
.bigdata-offerings-wrap .offerings-content {
  margin-top: 20px;
}
.offerings-content p {
  text-align: justify;
}
.services-detail-img {
  padding: 20px 0;
}
.services-detail-img img {
  border-radius: 5px;
}
.thanks-sec {
  text-align: center;
  border-top: 1px solid #e1e1e1;
  padding: 55px 0;
}
.thanks-sec h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #211d21;
  font-size: 48px;
}
.thanks-sec h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}